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

INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (1, 1, 2572, NULL, '5.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (2, 2, 2572, NULL, '5.0000', 1, '', 'addition');


#
# TABLE STRUCTURE FOR: sma_adjustments
#

DROP TABLE IF EXISTS `sma_adjustments`;

CREATE TABLE `sma_adjustments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `note` text 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=MyISAM AUTO_INCREMENT=3 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, '2022-08-14 15:18:00', '2022/08/0001', 1, '&lt;p&gt;dfghjkl&semi;&lt;&sol;p&gt;', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (2, '2022-08-14 15:18:00', '2022/08/0002', 1, '', NULL, 2, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_api_keys
#

DROP TABLE IF EXISTS `sma_api_keys`;

CREATE TABLE `sma_api_keys` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `reference` varchar(40) NOT NULL,
  `key` varchar(40) NOT NULL,
  `level` int(2) NOT NULL,
  `ignore_limits` tinyint(1) NOT NULL DEFAULT 0,
  `is_private_key` tinyint(1) NOT NULL DEFAULT 0,
  `ip_addresses` text DEFAULT NULL,
  `date_created` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_api_limits
#

DROP TABLE IF EXISTS `sma_api_limits`;

CREATE TABLE `sma_api_limits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uri` varchar(255) NOT NULL,
  `count` int(10) NOT NULL,
  `hour_started` int(11) NOT NULL,
  `api_key` varchar(40) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_api_logs
#

DROP TABLE IF EXISTS `sma_api_logs`;

CREATE TABLE `sma_api_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uri` varchar(255) NOT NULL,
  `method` varchar(6) NOT NULL,
  `params` text DEFAULT NULL,
  `api_key` varchar(40) NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `time` int(11) NOT NULL,
  `rtime` float DEFAULT NULL,
  `authorized` varchar(1) NOT NULL,
  `response_code` smallint(3) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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

INSERT INTO `sma_calendar` (`id`, `title`, `description`, `start`, `end`, `color`, `user_id`) VALUES (1, 'sales', '', '2022-10-01 00:00:00', '2022-10-29 00:00:00', '#3a87ad', 5);


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

INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('35', 1662651241, '102.176.65.224', 'vuVdI');
INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('31', 1662651188, '102.176.65.224', 'ATYbu');
INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('30', 1662651060, '197.159.139.219', 'SoYDv');
INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('34', 1662651241, '102.176.65.224', 'he3YR');
INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('33', 1662651213, '102.176.65.224', 'R29F9');
INSERT INTO `sma_captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES ('32', 1662651213, '102.176.65.224', 'trjGM');


#
# TABLE STRUCTURE FOR: sma_cart
#

DROP TABLE IF EXISTS `sma_cart`;

CREATE TABLE `sma_cart` (
  `id` varchar(40) NOT NULL,
  `time` varchar(30) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('58f84bacbb78e22d72f5db4f1c2c7d6e', '1660291083', NULL, '{\"cart_total\":20.4,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"1a2bc84dd03959b7ac37172763f6fbe8\":{\"id\":\"e24fc789b957f8b7f5fe12c42c28fea0\",\"product_id\":\"1099\",\"qty\":1,\"name\":\"Vermox 500mg Tablets\",\"slug\":\"vermox-500mg-tablets\",\"code\":\"3223\",\"price\":10.2,\"tax\":\"0.00\",\"image\":\"afa26959da098c831ca5d5ac118852aa.jpg\",\"option\":false,\"options\":null,\"rowid\":\"1a2bc84dd03959b7ac37172763f6fbe8\",\"row_tax\":\"0.0000\",\"subtotal\":\"10.2000\"},\"f666e52c62332c89d6d51bb45aa5a499\":{\"id\":\"513eb92b80279e0bbf4ea4ea1a34072d\",\"product_id\":\"1099\",\"qty\":1,\"name\":\"Vermox 500mg Tablets\",\"slug\":\"vermox-500mg-tablets\",\"code\":\"3223\",\"price\":10.2,\"tax\":\"0.00\",\"image\":\"afa26959da098c831ca5d5ac118852aa.jpg\",\"option\":false,\"options\":null,\"rowid\":\"f666e52c62332c89d6d51bb45aa5a499\",\"row_tax\":\"0.0000\",\"subtotal\":\"10.2000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('37ddb3dcbfcbdd27a26f7efbc7ed7220', '1660395908', NULL, '{\"cart_total\":7.2,\"total_item_tax\":0,\"total_items\":1,\"total_unique_items\":1,\"6ece79a1cb193cb115d7edd6e2a4249a\":{\"id\":\"cc83159b7dd1532a324ed4c04d83a41c\",\"product_id\":\"1975\",\"qty\":1,\"name\":\"Day Nurse Capsules 20&amp;apos;s\",\"slug\":\"998\",\"code\":\"998\",\"price\":7.2,\"tax\":\"0.00\",\"image\":\"day-nurse.jpeg\",\"option\":false,\"options\":null,\"rowid\":\"6ece79a1cb193cb115d7edd6e2a4249a\",\"row_tax\":\"0.0000\",\"subtotal\":\"7.2000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('85cd475963583784c6cbeaa5b07e379f', '1661222837', 2, '{\"cart_total\":3.63,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"266dba059ed52d726249d7b1c159dce0\":{\"id\":\"57f9ecc7a60363d1f082f926af104e29\",\"product_id\":\"1985\",\"qty\":1,\"name\":\"Mist Expect Sed Mal-Titi\",\"slug\":\"1016\",\"code\":\"1016\",\"price\":0,\"tax\":\"0.00\",\"image\":\"mist-expect-sed.jpg\",\"option\":false,\"options\":null,\"rowid\":\"266dba059ed52d726249d7b1c159dce0\",\"row_tax\":\"0.0000\",\"subtotal\":\"0.0000\"},\"5c2853b6974c87791155bc2036c74975\":{\"id\":\"d4c08fbfb908e742ef9e3db74d2f1ab7\",\"product_id\":\"2572\",\"qty\":1,\"name\":\"SOFTCARE DIAPER\",\"slug\":\"3425\",\"code\":\"3425\",\"price\":3.63,\"tax\":\"0.00\",\"image\":\"\",\"option\":false,\"options\":null,\"rowid\":\"5c2853b6974c87791155bc2036c74975\",\"row_tax\":\"0.0000\",\"subtotal\":\"3.6300\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('93d790a8406723287918213b3993b740', '1661220291', NULL, '{\"cart_total\":46,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"0b94b70a15040908ae3832fc3d902a30\":{\"id\":\"3446050c2ac9230bbbee061cfae6246c\",\"product_id\":\"1998\",\"qty\":1,\"name\":\"Voltfast Powder 50mg 30&amp;apos;s\",\"slug\":\"1042\",\"code\":\"1042\",\"price\":24,\"tax\":\"0.00\",\"image\":\"download-1.jpeg\",\"option\":false,\"options\":null,\"rowid\":\"0b94b70a15040908ae3832fc3d902a30\",\"row_tax\":\"0.0000\",\"subtotal\":\"24.0000\"},\"89fd55a49ed9c606337a30a467840834\":{\"id\":\"223337a6991e43da2f4e29b803516a74\",\"product_id\":\"2008\",\"qty\":1,\"name\":\"Exforge HCT 10\\/160\\/12. 5mg 28&amp;apos;s\",\"slug\":\"1058\",\"code\":\"1058\",\"price\":22,\"tax\":\"0.00\",\"image\":\"download-44.jpeg\",\"option\":false,\"options\":null,\"rowid\":\"89fd55a49ed9c606337a30a467840834\",\"row_tax\":\"0.0000\",\"subtotal\":\"22.0000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('b9ae55d984160855a5f843c2c3a26b46', '1661626251', 2, '{\"cart_total\":7.2,\"total_item_tax\":0,\"total_items\":1,\"total_unique_items\":1,\"61b7f6eb641afb72e260f3f158c193d3\":{\"id\":\"29b4e622b7ec77e7eb0c6ff12fca2ee4\",\"product_id\":\"1975\",\"qty\":1,\"name\":\"Day Nurse Capsules 20&amp;apos;s\",\"slug\":\"998\",\"code\":\"998\",\"price\":7.2,\"tax\":\"0.00\",\"image\":\"day-nurse.jpeg\",\"option\":false,\"options\":null,\"rowid\":\"61b7f6eb641afb72e260f3f158c193d3\",\"row_tax\":\"0.0000\",\"subtotal\":\"7.2000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('976479cc9230386ebba1681976a46849', '1662688210', 2, '{\"cart_total\":40,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"152728bafdaeb15646dd199ce0ae8c33\":{\"id\":\"e536652a38f3a4ee18beb8fa4dc6e5a7\",\"product_id\":\"3048\",\"qty\":1,\"name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"slug\":\"1\",\"code\":\"1\",\"price\":20,\"tax\":\"0.00\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"option\":\"1\",\"options\":[{\"id\":\"1\",\"name\":\"Red\",\"price\":null,\"total_quantity\":null,\"quantity\":null},{\"id\":\"2\",\"name\":\"Blue\",\"price\":null,\"total_quantity\":null,\"quantity\":null},{\"id\":\"3\",\"name\":\"Black\",\"price\":null,\"total_quantity\":\"90.0000\",\"quantity\":\"90.0000\"},{\"id\":\"4\",\"name\":\"White\",\"price\":null,\"total_quantity\":null,\"quantity\":null}],\"rowid\":\"152728bafdaeb15646dd199ce0ae8c33\",\"row_tax\":\"0.0000\",\"subtotal\":\"20.0000\"},\"94bc83e43ffea886d884584d64f904b4\":{\"id\":\"c8a19087fe4286808c4cafec0103175e\",\"product_id\":\"3048\",\"qty\":1,\"name\":\"WHITE ALCOHOL 50oz\\/24CT\",\"slug\":\"1\",\"code\":\"1\",\"price\":20,\"tax\":\"0.00\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"option\":\"1\",\"options\":[{\"id\":\"1\",\"name\":\"Red\",\"price\":\"0.0000\",\"total_quantity\":\"0.0000\",\"quantity\":null},{\"id\":\"2\",\"name\":\"Blue\",\"price\":\"0.0000\",\"total_quantity\":\"0.0000\",\"quantity\":null},{\"id\":\"3\",\"name\":\"Black\",\"price\":\"0.0000\",\"total_quantity\":\"0.0000\",\"quantity\":\"0.0000\"},{\"id\":\"4\",\"name\":\"White\",\"price\":\"0.0000\",\"total_quantity\":\"0.0000\",\"quantity\":null}],\"rowid\":\"94bc83e43ffea886d884584d64f904b4\",\"row_tax\":\"0.0000\",\"subtotal\":\"20.0000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('5c927a326d1eeea325f8eaf0def21e83', '1663844135', NULL, '{\"cart_total\":2.3,\"total_item_tax\":0,\"total_items\":1,\"total_unique_items\":1,\"704dbae4ff59043ce02820eaf1a31199\":{\"id\":\"4a3fd911279cd8bc597fa13222ef83be\",\"product_id\":\"6075\",\"qty\":1,\"name\":\"Kiss Condom Classic\",\"slug\":\"672\",\"code\":\"672\",\"price\":2.3,\"tax\":\"0.00\",\"image\":\"kiss-classic.jpg\",\"option\":false,\"options\":null,\"rowid\":\"704dbae4ff59043ce02820eaf1a31199\",\"row_tax\":\"0.0000\",\"subtotal\":\"2.3000\"}}');


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

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1687, 'C39', 'Liniment', 'c1.png', 0, 'Liniment', 'Liniment');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1684, 'C24', 'Dewormer', 'c1.png', 0, 'dewormer', 'Deworming is the giving of an anthelmintic drug to a human or animals to rid them of helminths parasites, such as roundworm, flukes and tapeworm');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1679, 'C47', 'Minerals', 'c1.png', 0, 'Minerals', 'Minerals');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1661, 'C20', 'Appetite Stimulants', 'c1.png', 0, 'appetiteStimulants', 'Appetite stimulants are medications prescribed to increase appetite and improve the nutritional status in patients experiencing severe weight loss associated with certain chronic illnesses.');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1662, 'C1', 'Haematinics', 'c1.png', 0, 'haematinics', 'Haematinics');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1663, 'C18', 'Cold', 'c1.png', 0, 'cold', 'Description for category c50');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1664, 'C13', 'Coughs', 'c1.png', 0, 'coughs', 'Coughing can have causes that aren\\\'t due to underlying disease. Examples include normal clearing of airways, irritants such as smoke and gas, tobacco use or improperly swallowing food and liquids.');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1665, 'C9', 'Anti-Hypertensives', 'c1.png', 0, 'anti-Hypertensives', 'Antihypertensives are a class of drugs that are used to treat hypertension. Antihypertensive therapy seeks to prevent the complications of high blood pressure, such as stroke and myocardial infarction');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1666, 'C40', 'Prescriptions', 'c1.png', 0, 'Prescriptions', 'Prescriptions');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1673, 'C38', 'Anti-Histamins', 'c1.png', 0, 'anti-Histamins', 'Antihistamines are drugs which treat allergic rhinitis, common cold, influenza, and other allergies.');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1674, 'C42', 'Anti-fungal', 'c1.png', 0, 'anti-fungal', 'Antifungal medicines are used to treat fungal infections, which most commonly affect your skin, hair and nails. You can get some antifungal medicines from a pharmacy without needing a GP prescription.');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1675, 'C16', 'NSAIDs', 'c1.png', 0, 'NSAIDs', 'NSAIDs');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1686, 'C43', 'Nasal Drops', 'c1.png', 0, 'nasal-drops', 'NasalDrops');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1685, 'C17', 'Lubricant', 'c1.png', 0, 'Lubricant', 'Lubricant');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1654, 'C4', 'Medicines', 'c1.png', 0, 'Medicines', 'Medicines');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1683, 'C23', 'Contraception', 'c1.png', 0, 'Contraception', 'Contraception');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1682, 'C35', 'Injections', 'c1.png', 0, 'Injections', 'Injections');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1681, 'C3', 'Topical', 'c1.png', 0, 'topical', 'Topical');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1680, 'C46', 'Anti-Diabetics', 'c1.png', 0, 'anti-Diabetics', 'A number of generic and branded antidiabetic drugs fall under these types. Biguanides are incredibly common and include metformin (Glucophage) Sulfonylureas include glipizide (Glucotrol), glyburide (Glynase, Micronase), chlorpropamide (Diabinese), and tol');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1678, 'C7', 'Anti-inflammatory1', 'c1.png', 0, 'anti-inflammatory', 'Non-steroidal anti-inflammatory drugs (NSAIDs) are medicines that are widely used to relieve pain, reduce inflammation, and bring down a high temperature. They&#039;re often used to relieve symptoms of headaches, painful periods, sprains and strains, cold');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1677, 'C32', 'Creams', 'c1.png', 0, 'Creams', 'Creams');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1676, 'C48', 'Antiemetic', 'c1.png', 0, 'antiemetic', 'An antiemetic is a drug that is effective against vomiting and nausea. Antiemetics are typically used to treat motion sickness and the side effects of opioid analgesics, general anaesthetics, and chemotherapy directed against cancer');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1672, 'C31', 'Surgicals', 'c1.png', 0, 'Surgicals', 'Surgicals');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1671, 'C21', 'Eye Drops', 'c1.png', 0, 'eye-drops', 'Tetrahydrozoline is a decongestant used to relieve redness in the eyes caused by minor eye irritations (such as smog, swimming, dust, or smoke).');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1667, 'C6', 'Sexual Health', 'c1.png', 0, 'sexual-health', 'Sexual Health');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1655, 'C27', 'Candy/Cookies', 'c1.png', 0, 'Candy', 'Description for category c9');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1656, 'C15', 'Uncategorized', 'c1.png', 0, 'Uncategorized', 'Uncategorized');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1657, 'C26', 'Ointments', 'c1.png', 0, 'Ointments', 'Ointments');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1669, 'C12', 'Multivitamins', 'c1.png', 0, 'Multivitamins', 'Multivitamins');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1670, 'C25', 'Anti-Malaria', 'c1.png', 0, 'anti-Malaria', 'Antimalarial medications or simply antimalarials are a type of antiparasitic chemical agent, often naturally derived, that can be used to treat or to prevent malaria, in the latter case, most often aiming at two susceptible target groups, young children a');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1668, 'C28', 'Oils', 'c1.png', 0, 'Oils', 'Oils');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1660, 'C19', 'Antibiotic', 'c1.png', 0, 'antibiotic', 'Antibiotics, also known as antibacterials, are medications that destroy or slow down the growth of bacteria. They include a range of powerful drugs and are ...');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1658, 'C11', 'Antacids', 'c1.png', 0, 'antacids', 'Antacids are medicines that counteract (neutralise) the acid in your stomach to relieve indigestion and heartburn. They come as a liquid or chewable tablets');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1659, 'C5', 'Herbals', 'c1.png', 0, 'herbal', 'Herbals');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1688, 'C34', 'Gel', 'c1.png', 0, 'gel', 'gel');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1689, 'C50', 'Mouth Wash', 'c1.png', 0, 'mouth-wash', 'mouthwash');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1690, 'C45', 'Anti-inflammatory', 'c1.png', 0, 'Anti-inflammatory1', 'Non-steroidal anti-inflammatory drugs (NSAIDs) are medicines that are widely used to relieve pain, reduce inflammation, and bring down a high temperature. They\\\'re often used to relieve symptoms of headaches, painful periods, sprains and strains, colds an');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1691, 'C8', 'Blood Tonic', 'c1.png', 0, 'blood-tonic', 'A blood tonic is a supplement that may be consumed as a means to produce more blood cells within the body. The exact recipe for such tonics may vary widely, but frequently contain iron, plus a variety of vitamins.');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1692, 'C51', 'Anti-Convulsants', 'c1.png', 0, 'anti-Convulsants', 'Anticonvulsants (also known as antiepileptic drugs or recently as antiseizure drugs) are a diverse group of pharmacological ·');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1693, 'C44', 'Disinfectant', 'c1.png', 0, 'Disinfectant', 'Disinfectant');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1694, 'C22', 'Eye Ointment', 'c1.png', 0, 'eye-ointmentey', 'Description for category c1286');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1695, 'C29', 'Vitamins', 'c1.png', 0, 'Vitamins', 'Description for category c1317');


#
# 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=MyISAM 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=MyISAM AUTO_INCREMENT=428 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', 'Greater Accra', 'Madina', '00233', 'Ghana', '0123456789', 'info@customer.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 (2, 4, 'supplier', NULL, NULL, 'Default Supplier', 'Default Supplier', '', 'Supplier Address', 'Accra', 'Madina', '00233', 'Ghana', '0123456789', 'info@default.com', '-', '-', '-', '-', '-', '-', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (3, NULL, 'biller', NULL, NULL, 'Grace', 'FMMS MADINA WHOLESALE', '', 'Madina', '.', '', '', '', '0597470660', 'sales@fmmsgh.com', '', '', '', '', '', '', 'We declare this invoice shows actual price of goods described and all particulars are true and correct.', 0, 'logo-fmms1.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, 3, 'customer', 1, 'General', 'Ebenezer Abakah', 'Sims Soft', NULL, NULL, NULL, NULL, NULL, NULL, '+233243835463', 'eben1xx@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', 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 (370, 3, 'customer', 1, 'General', 'Obaa Yaa', 'Obaa Yaa', '', 'Baba Yara', 'Accra', '', '', '', '0549721626', 'obaayaaa@fvtechcanada.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 (5, 3, 'customer', 1, 'General', 'Stella', 'Stella', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', '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 (6, 3, 'customer', 1, 'General', 'Banni', 'Banni ', '', 'Adenta', 'Accra', '', '', '', '0242943385', 'banni@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 (7, 3, 'customer', 1, 'General', 'JULIET', 'JULIET CHEMICAL SHOP', '', 'DEKPOR', 'VOLTA', '', '', '', '0244125472', 'juliet@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 (8, 3, 'customer', 1, 'General', 'Mercy', 'Mercy Arthur', '', 'Amahia', 'Accra', '', '', '', '0242325443', 'mercy@fvtechcanada.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 (9, 3, 'customer', 1, 'General', 'A.Y.D', 'A.Y.D', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '541041901', 'alex.fvtechcanada@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 (10, 3, 'customer', 1, 'General', 'ABASS', 'ABASS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242550128', 'kingdady@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 (11, 3, 'customer', 1, 'General', 'ABDUL RAZAK', 'ABDUL RAZAK', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '541478267', 'ayizak40@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 (12, 3, 'customer', 1, 'General', 'abokumachem', 'abokumachem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546535326', 'abokumachem@fvtechcanada.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 (13, 3, 'customer', 1, 'General', 'Hannah', 'Hannah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243262329', 'achimotahospital@fvtechcanada.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 (14, 3, 'customer', 1, 'General', 'ADAMS', 'ADAMS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244613490', 'adamschem.shop@fvtechcanada.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 (15, 3, 'customer', 1, 'General', 'ADENTA PHARMACY', 'ADENTA PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'remedyezekielboahen@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 (16, 3, 'customer', 1, 'General', 'ADEPA HERBAL SHOP', 'ADEPA HERBAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '558553560', 'Adepaherbal@fvtechcanada.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 (17, 3, 'customer', 1, 'General', 'admin', 'admin', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '7632000198', 'admin@ghospital.fvtechcanada.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 (18, 3, 'customer', 1, 'General', 'admin01', 'admin01', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'admin01@example.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 (19, 3, 'customer', 1, 'General', 'Engr Kwame', 'Engr Kwame', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917040', 'admin@fvtechcanada.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 (20, 3, 'customer', 1, 'General', 'Dr. Appiah Kubi', 'Dr. Appiah Kubi', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'kojoappiah@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 (21, 3, 'customer', 1, 'General', 'ADOM', 'ADOM', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '505325777', 'adom@fvtechcanada.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, 3, 'customer', 1, 'General', 'Samuel Adu', 'Samuel Adu', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548863242', 'adusamuel@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (23, 3, 'customer', 1, 'General', 'Kwame Afrane', 'Kwame Afrane', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '591536510', 'kwameafrane@fvtechcanada.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 (24, 3, 'customer', 1, 'General', 'AGIBANS PHARMACY LTD', 'AGIBANS PHARMACY LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '307058713', 'agibans@yahoo.com', '545897740', '', '', '', '', '', 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 (25, 3, 'customer', 1, 'General', 'AGYEIWAA', 'AGYEIWAA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246935550', 'agyeiwaa@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (26, 3, 'customer', 1, 'General', 'AHMED CHEMICAL SHOP', 'AHMED CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548454668', 'ahmedchem@fvtechcanada.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 (27, 3, 'customer', 1, 'General', 'Sarah Osae Konadu', 'Sarah Osae Konadu', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'akosuaosae17@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 (28, 3, 'customer', 1, 'General', 'Sarah Konadu', 'Sarah Konadu', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'sarah@fvtechcanada.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 (29, 3, 'customer', 1, 'General', 'Cecilia Ardiabah', 'Cecilia Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917040', 'akuba@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 (30, 3, 'customer', 1, 'General', 'AKWESI', 'AKWESI', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241641064', 'akwesib@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (31, 3, 'customer', 1, 'General', 'allenchem', 'allenchem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '248338920', 'allenchem@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (32, 3, 'customer', 1, 'General', 'AMOS', 'AMOS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '501194519', 'amosboanya@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (33, 3, 'customer', 1, 'General', 'Ann CUSTOMER', 'Ann CUSTOMER', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ann@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (34, 3, 'customer', 1, 'General', 'Anthony', 'Anthony', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'aardiabah11@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 (35, 3, 'customer', 1, 'General', 'Anthony', 'Anthony', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'fmmsapp@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 (36, 3, 'customer', 1, 'General', 'APPIAH', 'APPIAH', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '543232308', 'appiahdankwah@fvtechcanada.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 (37, 3, 'customer', 1, 'General', 'Dr Appiah', 'Dr Appiah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'fmmsmedina@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 (38, 3, 'customer', 1, 'General', 'ardibah', 'ardibah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ardibah@fvtechgh.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 (39, 3, 'customer', 1, 'General', 'AS FRIENDS', 'AS FRIENDS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '550435541', 'asfriends@fvtechcanada.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 (40, 3, 'customer', 1, 'General', 'Asamoah Gyan', 'Asamoah Gyan', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546259655', 'agyanchemical@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (41, 3, 'customer', 1, 'General', 'GORDON', 'GORDON', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '540198424', 'asaregordon@hotmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (42, 3, 'customer', 1, 'General', 'Asempa', 'Asempa', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246575091', 'Asempachem@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (43, 3, 'customer', 1, 'General', 'Aseye', 'Aseye', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'aseyepharmacy@fvtechcanada.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 (44, 3, 'customer', 1, 'General', 'Ashley Horning', 'Ashley Horning', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ashleyhorning28@path.ovaki.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 (45, 3, 'customer', 1, 'General', 'baahchem', 'baahchem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '553279552', 'Baahchem@fvtechcanada.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (46, 3, 'customer', 1, 'General', 'BAIDEN\'S CHEMIST Buckman', 'BAIDEN\'S CHEMIST Buckman', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '543034056', 'verabuckam16@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 (47, 3, 'customer', 1, 'General', 'Banini', 'Banini', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242943385', 'emmanuelbaninikwame@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 (48, 3, 'customer', 1, 'General', 'BB CHEMICAL SHOP', 'BB CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245191501', 'elizabethankobea68@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 (49, 3, 'customer', 1, 'General', 'BECKY', 'BECKY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546247347', 'margaretenam5@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 (50, 3, 'customer', 1, 'General', 'BEKKEN PHARMACY', 'BEKKEN PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243425295', 'Bekkenpharmacy@fvtechcanada.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 (51, 3, 'customer', 1, 'General', 'BETVEN PHARMACY REDCO', 'BETVEN PHARMACY REDCO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'Betven@fvtechcanada.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 (52, 3, 'customer', 1, 'General', 'BETVEN PHARMACY MARKET', 'BETVEN PHARMACY MARKET', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'Betvenpharma@fvtechcanada.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 (53, 3, 'customer', 1, 'General', 'BISAM CHEMICAL SHOP', 'BISAM CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244212117', 'bisamchem@fvtechcanada.com', '547273179', '', '', '', '', '', 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 (54, 3, 'customer', 1, 'General', 'Bless', 'Bless', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '541233850', 'blessmikorda@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 (55, 3, 'customer', 1, 'General', 'Mavis Lanyo', 'Mavis Lanyo', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548272453', 'brightphar@fvtech.canada.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 (56, 3, 'customer', 1, 'General', 'C.DANSO', 'C.DANSO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'c.dansochemshop@fvtechcanada.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 (57, 3, 'customer', 1, 'General', 'CASH CUSTOMER', 'CASH CUSTOMER', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'cashcustomer@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 (58, 3, 'customer', 1, 'General', 'Christiana Tome', 'Christiana Tome', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245652322', 'christiana@fvtechcanada.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 (59, 3, 'customer', 1, 'General', 'CLIFCO', 'CLIFCO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244786297', 'Clifco@fvtechcanada.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 (60, 3, 'customer', 1, 'General', 'Collins Akotia', 'Collins Akotia', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', '1983Akotia@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 (61, 3, 'customer', 1, 'General', 'CND', 'CND', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '274382611', 'cnd@fvtechcanada.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 (62, 3, 'customer', 1, 'General', 'comfortdoe261', 'comfortdoe261', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240590715', 'comfortdoe261@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 (63, 3, 'customer', 1, 'General', 'Cynthia', 'Cynthia', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244837986', 'cynthiachemist@fvtechcanada.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 (64, 3, 'customer', 1, 'General', 'cynthiachem', 'cynthiachem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244837986', 'cynthiachem@fvtechcanada.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 (65, 3, 'customer', 1, 'General', 'DAINA OBENG', 'DAINA OBENG', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243253202', 'd.obeng@bisghana.com.gh', '', '', '', '', '', '', 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 (66, 3, 'customer', 1, 'General', 'Damien Milton', 'Damien Milton', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'damienmilton26@tea.sudeu.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 (67, 3, 'customer', 1, 'General', 'Daniel', 'Daniel', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'dyeboah@fvtech.canda.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 (68, 3, 'customer', 1, 'General', 'danielyeboah', 'danielyeboah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '549616161', 'DANIELYEBOAH@FVTECHCANADA.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 (69, 3, 'customer', 1, 'General', 'dannychem', 'dannychem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '248900412', 'dannychem@fvtechcanada.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 (70, 3, 'customer', 1, 'General', 'DAVID', 'DAVID', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243089226', 'davidtt@fvtechcanada.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 (71, 3, 'customer', 1, 'General', 'DEBORAH', 'DEBORAH', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242169808', 'deborah.chem@fvtechcanada.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 (72, 3, 'customer', 1, 'General', 'Dela Lorm', 'Dela Lorm', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244876018', 'delalorm@fvtechcanada.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 (73, 3, 'customer', 1, 'General', 'DERIJEN HERBAL', 'DERIJEN HERBAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '271263590', 'jennifernyalley@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 (74, 3, 'customer', 1, 'General', 'dinkalph', 'dinkalph', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '233010101', 'Dinkalph@fvtechcanada.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 (75, 3, 'customer', 1, 'General', 'DM', 'DM', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242169808', 'dm@fvtechcanada.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 (76, 3, 'customer', 1, 'General', 'Dr Jude', 'Dr Jude', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'jude@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 (77, 3, 'customer', 1, 'General', 'DROMO', 'DROMO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243664689', 'ashaleymabel@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 (78, 3, 'customer', 1, 'General', 'Daniel', 'Daniel', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'aardiabah12@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 (79, 3, 'customer', 1, 'General', 'Dunia Chemical Shop', 'Dunia Chemical Shop', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243273301', 'dunia@fvtechcanada.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 (80, 3, 'customer', 1, 'General', 'East Orange', 'East Orange', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '576111222', 'eyarfi@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 (81, 3, 'customer', 1, 'General', 'Slivia Donkor', 'Slivia Donkor', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244539579', 'silviaeddydonkoh@fvtech.canada.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 (82, 3, 'customer', 1, 'General', 'EGE\'S', 'EGE\'S', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244528728', 'egespharmacy@fvtechcanada.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 (83, 3, 'customer', 1, 'General', 'Liberty Lancet', 'Liberty Lancet', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '549455116', 'lancentchemical@fvtechcanada.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 (84, 3, 'customer', 1, 'General', 'ELINDA', 'ELINDA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242138700', 'elinda@fvtechcanada.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 (85, 3, 'customer', 1, 'General', 'ELIZABETH CHEMICAL SHOP', 'ELIZABETH CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245191501', 'elizabeth@fvtechcanada.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 (86, 3, 'customer', 1, 'General', 'EMerald herbal shop', 'EMerald herbal shop', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '275555300', 'Elizabetha.ministries@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 (87, 3, 'customer', 1, 'General', 'RITA ASHLYN', 'RITA ASHLYN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '551449710', 'Emash@fvtechcanada.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 (88, 3, 'customer', 1, 'General', 'EMMALEN', 'EMMALEN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243244969', 'emmalen@fvtechcanada.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 (89, 3, 'customer', 1, 'General', 'EMPIRIC', 'EMPIRIC', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '203146431', 'empiricpharma@outlook.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 (90, 3, 'customer', 1, 'General', 'Eric Arhin', 'Eric Arhin', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '552880421', 'ericarhin@fvtechcanada.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 (91, 3, 'customer', 1, 'General', 'Eugene', 'Eugene', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'aardiabah23@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 (92, 3, 'customer', 1, 'General', 'EUNICE', 'EUNICE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '552372708', 'akrofi42@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 (93, 3, 'customer', 1, 'General', 'Evans Appiah', 'Evans Appiah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243925304', 'reigntcomputers@live.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 (94, 3, 'customer', 1, 'General', 'Evans Baah', 'Evans Baah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '268577311', 'evans.baah@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 (95, 3, 'customer', 1, 'General', 'FAIRGOLD PHARMACY', 'FAIRGOLD PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '555241160', 'Fairgold@fvtechcanada.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 (96, 3, 'customer', 1, 'General', 'FATIMA', 'FATIMA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '547370286', 'musahfatibiney@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 (97, 3, 'customer', 1, 'General', 'Ernestina', 'Ernestina', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243312318', 'ernestinaasare77@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 (98, 3, 'customer', 1, 'General', 'Five Two', 'Five Two', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243306418', 'FiveTwopharmacy@fvtechcanada.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 (99, 3, 'customer', 1, 'General', 'florencegamali', 'florencegamali', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'florencedamali@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 (100, 3, 'customer', 1, 'General', 'FMMS1LAKESIDE', 'FMMS1LAKESIDE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241803504', 'fmms1@fvtechcanada.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 (101, 3, 'customer', 1, 'General', 'FMMS2COMMANDOS', 'FMMS2COMMANDOS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '596062260', 'fimmsapp@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 (102, 3, 'customer', 1, 'General', 'FMMS 3 PHARMACY ROSAROSA', 'FMMS 3 PHARMACY ROSAROSA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '596060915', 'fmms3@fvtechcanada.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 (103, 3, 'customer', 1, 'General', 'fmmsapp2', 'fmmsapp2', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'fmmsapp2@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 (104, 3, 'customer', 1, 'General', 'Dr Kwame Ardiabah', 'Dr Kwame Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917040', 'fmmsapp24@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 (105, 3, 'customer', 1, 'General', 'Fortune', 'Fortune', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '595313145', 'fortunechemical@fvtechcanada.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 (106, 3, 'customer', 1, 'General', 'francisocloo', 'francisocloo', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244985489', 'francisocloo@fvtechcanada.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 (107, 3, 'customer', 1, 'General', 'FREDAKU', 'FREDAKU', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'fredaku@fvtechcanada.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 (108, 3, 'customer', 1, 'General', 'freddi4delord', 'freddi4delord', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'freddi4delord@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (109, 3, 'customer', 1, 'General', 'GABRIEL CHEMICAL SHOP', 'GABRIEL CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245782183', 'gabsmart23@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 (110, 3, 'customer', 1, 'General', 'gakuab', 'gakuab', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245892737', 'gakuab@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (111, 3, 'customer', 1, 'General', 'GD CHEMIST', 'GD CHEMIST', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242225964', 'gdchemist@fvtechcanada.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 (112, 3, 'customer', 1, 'General', 'Gella', 'Gella', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242709668', 'angiedosty135@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 (113, 3, 'customer', 1, 'General', 'GETWELL CHEMICAL SHOP', 'GETWELL CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '577526688', 'Lawprincex@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 (114, 3, 'customer', 1, 'General', 'GINA CHEMICAL SHOP', 'GINA CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'Ginachem@fvtechcanada.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 (115, 3, 'customer', 1, 'General', 'GINAD PHARMACY', 'GINAD PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '553640488', 'Ginad@fvtechcanada.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 (116, 3, 'customer', 1, 'General', 'Gloria', 'Gloria', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240040144', 'gloria@fvtechcanada.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 (117, 3, 'customer', 1, 'General', 'George', 'George', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244373341', 'gatsrefi@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (118, 3, 'customer', 1, 'General', 'GN', 'GN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244373341', 'gnpharmacy@fvtechcanada.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 (119, 3, 'customer', 1, 'General', 'Tina', 'Tina', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '540652937', 'goldcare@fvtechcanada.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 (120, 3, 'customer', 1, 'General', 'Good Morning Chemical Shop', 'Good Morning Chemical Shop', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242036132', 'goodmngchemshop@fvtechcanada.com', '243173127', '', '', '', '', '', 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 (121, 3, 'customer', 1, 'General', 'Grace Bosompem', 'Grace Bosompem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'graceba735@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 (122, 3, 'customer', 1, 'General', 'Jude', 'Jude', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '266259685', 'judedrah@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 (123, 3, 'customer', 1, 'General', 'Gretchen Curr', 'Gretchen Curr', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'gretchencurr87@bort.radities.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 (124, 3, 'customer', 1, 'General', 'GTG PHARMACY', 'GTG PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241282071', 'GTgpharma@fvtechcanada.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 (125, 3, 'customer', 1, 'General', 'Hakadam chemical', 'Hakadam chemical', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246489074', 'diyamorla@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 (126, 3, 'customer', 1, 'General', 'Gladys Baah', 'Gladys Baah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '558624845', 'healthlinkpharmacy@fvtechcanada.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 (127, 3, 'customer', 1, 'General', 'Ciello', 'Ciello', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ciello20@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 (128, 3, 'customer', 1, 'General', 'HOBET', 'HOBET', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '541094522', 'Hobetpharma@fvtechcanada.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 (129, 3, 'customer', 1, 'General', 'Claribel Haynie', 'Claribel Haynie', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'giana@flynow.link', '', '', '', '', '', '', 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 (130, 3, 'customer', 1, 'General', 'isaackwakuasantesk', 'isaackwakuasantesk', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'isaackwakuasantesk@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 (131, 3, 'customer', 1, 'General', 'isabellaquarshie', 'isabellaquarshie', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'isabellaquarshie@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 (132, 3, 'customer', 1, 'General', 'jameshph', 'jameshph', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '558787129', 'Jameshph@fvtechcanada.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 (133, 3, 'customer', 1, 'General', 'JANICE', 'JANICE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242546472', 'janicechem@fvtechcanada.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 (134, 3, 'customer', 1, 'General', 'JB', 'JB', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244367498', 'jbchemicalshop@fvtechcanada.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 (135, 3, 'customer', 1, 'General', 'JC CHEMICALS', 'JC CHEMICALS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240525654', 'jc@fvtechcanada.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 (136, 3, 'customer', 1, 'General', 'JESS', 'JESS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '549567372', 'jessherbal@fvtechcanada.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 (137, 3, 'customer', 1, 'General', 'Joel', 'Joel', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546539937', 'joab@fvtechcanada.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 (138, 3, 'customer', 1, 'General', 'Joseph', 'Joseph', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'josei@fvtechcanada.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 (139, 3, 'customer', 1, 'General', 'JOY', 'JOY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243660224', 'joynartey@fvtechcanada.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 (140, 3, 'customer', 1, 'General', 'Dr Jude Ammah', 'Dr Jude Ammah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ammah77jude@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 (141, 3, 'customer', 1, 'General', 'JULIET KPOTSU', 'JULIET KPOTSU', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244125472', 'julietchemical@fvtechcanada.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 (142, 3, 'customer', 1, 'General', 'Felix Mensah Jnr.', 'Felix Mensah Jnr.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '544570734', 'my234@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 (143, 3, 'customer', 1, 'General', 'Justina', 'Justina', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242520079', 'justina@fvtechcanada.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 (144, 3, 'customer', 1, 'General', 'Kali Grant', 'Kali Grant', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'kaligrant22@bort.radities.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 (145, 3, 'customer', 1, 'General', 'GLADYS', 'GLADYS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245686127', 'kasbapharmacy@fvtechcanada.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 (146, 3, 'customer', 1, 'General', 'KENEVE PHARMACY', 'KENEVE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243584212', 'kenevepharmacy@yahoo.com', '558522306', '', '', '', '', '', 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 (147, 3, 'customer', 1, 'General', 'kik prestige', 'kik prestige', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '593839832', 'kikprestigepharm@fvtechcanada.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 (148, 3, 'customer', 1, 'General', 'KINGS WALK', 'KINGS WALK', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'kingswalk@fvtechcanada.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 (149, 3, 'customer', 1, 'General', 'Kobby', 'Kobby', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243717079', 'kobby@fvtechcanada.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 (150, 3, 'customer', 1, 'General', 'Kofi', 'Kofi', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243444026', 'kosei@fvtechcanada.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 (151, 3, 'customer', 1, 'General', 'KOFI KONADU', 'KOFI KONADU', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243035596', 'Kofikonadu@fvtechcanada.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 (152, 3, 'customer', 1, 'General', 'konash1966', 'konash1966', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'konash1966@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 (153, 3, 'customer', 1, 'General', 'ANANE', 'ANANE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557603505', 'kwabenaanane@fvtechcanada.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 (154, 3, 'customer', 1, 'General', 'Anthony', 'Anthony', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917042', 'aardiabah1@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 (155, 3, 'customer', 1, 'General', 'Las Nah', 'Las Nah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '555895236', 'las-nah@fvtechcanada.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 (156, 3, 'customer', 1, 'General', 'latyadms1', 'latyadms1', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247683065', 'latyadms1@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 (157, 3, 'customer', 1, 'General', 'LAWMERC PHARMACY', 'LAWMERC PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247966984', 'sarpong794@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 (158, 3, 'customer', 1, 'General', 'LEAD ME OH GOD', 'LEAD ME OH GOD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '249390386', 'musilinhans@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 (159, 3, 'customer', 1, 'General', 'LENUS PHARMACY', 'LENUS PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '544349645', 'Lenuspharmltd@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 (160, 3, 'customer', 1, 'General', 'LEXGINA PHARMA', 'LEXGINA PHARMA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208157478', 'lexgina@fvtechcanada.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 (161, 3, 'customer', 1, 'General', 'LIM PHARMACY', 'LIM PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '554997466', 'Limpharma@fvtechcanada.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 (162, 3, 'customer', 1, 'General', 'Lorri Eoff', 'Lorri Eoff', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'cheriemelanie@kogobee.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 (163, 3, 'customer', 1, 'General', 'LOWER DODOWA HEALTH CENTER', 'LOWER DODOWA HEALTH CENTER', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242204290', 'lowerdodowahealthcenter@fvtechcanada.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 (164, 3, 'customer', 1, 'General', 'Lydiachem', 'Lydiachem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244185164', 'Lydiachemist@fvtechcanada.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 (165, 3, 'customer', 1, 'General', 'monic adiaba', 'monic adiaba', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'madiaba@fvtechcanada.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 (166, 3, 'customer', 1, 'General', 'Madna Pharmacy', 'Madna Pharmacy', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245026904', 'madnapharma@fvtechcanada.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 (167, 3, 'customer', 1, 'General', 'majeedokaiadnan', 'majeedokaiadnan', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'majeedokaiadnan@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 (168, 3, 'customer', 1, 'General', 'Monique Ardiabah', 'Monique Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'mardiabah@fvtechcanada.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 (169, 3, 'customer', 1, 'General', 'mavisamoakoa', 'mavisamoakoa', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242649093', 'Mavisamoakoa@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 (170, 3, 'customer', 1, 'General', 'MAWUDOR CHEMICAL SHOP', 'MAWUDOR CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245938607', 'coffiedoris68@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 (171, 3, 'customer', 1, 'General', 'MAY MART PHARMACY', 'MAY MART PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244651043', 'sirtonygoms@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (172, 3, 'customer', 1, 'General', 'Ofosuhene Baafo', 'Ofosuhene Baafo', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '595231665', 'mediservice@fvtechcanada.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 (173, 3, 'customer', 1, 'General', 'MEDNET BEN', 'MEDNET BEN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'mednet@fvtechcanada.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 (174, 3, 'customer', 1, 'General', 'MEIRACARE PHARMACY', 'MEIRACARE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'meiracarepharmacy@fvtechcanada.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 (175, 3, 'customer', 1, 'General', 'MENDMEDICS', 'MENDMEDICS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '200647861', 'mend-medics@fvtechcanada.com', '550422524', '', '', '', '', '', 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 (176, 3, 'customer', 1, 'General', 'MJ CHEMICAL SHOP', 'MJ CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '249332480', 'mawjoy@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 (177, 3, 'customer', 1, 'General', 'ISSAH', 'ISSAH', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '597110399', 'mohammed@fvtechcanada.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 (178, 3, 'customer', 1, 'General', 'MON AMIE PHARMACY', 'MON AMIE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '266125140', 'monamie@fvtechcanada.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 (179, 3, 'customer', 1, 'General', 'MR. ANIM', 'MR. ANIM', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243186875', 'animchemshop@fvtechcanada.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 (180, 3, 'customer', 1, 'General', 'Mensah Tabitah', 'Mensah Tabitah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'mensahtabit4@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 (181, 3, 'customer', 1, 'General', 'MUSFIRAH CHEMICAL SHOP', 'MUSFIRAH CHEMICAL SHOP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'musfirah@fvtechcanada.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 (182, 3, 'customer', 1, 'General', 'N-GEO', 'N-GEO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244064419', 'ngeopharma@fvtechcanada.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 (183, 3, 'customer', 1, 'General', 'NANA', 'NANA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243738855', 'NANA@FVTECHCANADA.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 (184, 3, 'customer', 1, 'General', 'NANA KOFI', 'NANA KOFI', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247789574', 'evansquaye1990@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 (185, 3, 'customer', 1, 'General', 'NAND T THELMA', 'NAND T THELMA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240443962', 'nnt@fvtechcanada.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 (186, 3, 'customer', 1, 'General', 'NANORMAN PHARMACY', 'NANORMAN PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244071301', 'eagyeiwaa52@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 (187, 3, 'customer', 1, 'General', 'NARTEVA', 'NARTEVA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302982662', 'nartevapharmacy@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 (188, 3, 'customer', 1, 'General', 'nasamda', 'nasamda', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'nasamda@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 (189, 3, 'customer', 1, 'General', 'NAYRAM HERBAL', 'NAYRAM HERBAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247064854', 'nayramherbal@fvtechcanada.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 (190, 3, 'customer', 1, 'General', 'NLMC', 'NLMC', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244282043', 'nlmcrosa@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 (191, 3, 'customer', 1, 'General', 'NGEO', 'NGEO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240319849', 'Ngeopharmacy@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 (192, 3, 'customer', 1, 'General', 'nipahiamoa', 'nipahiamoa', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241319888', 'nipahiamoa@fvtechcanada.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 (193, 3, 'customer', 1, 'General', 'nnn3', 'nnn3', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917040', 'nnn3@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 (194, 3, 'customer', 1, 'General', 'Zakaria', 'Zakaria', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '248931215', 'nyarko@fvtechcanada.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 (195, 3, 'customer', 1, 'General', 'obinkytt', 'obinkytt', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'store2@example.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 (196, 3, 'customer', 1, 'General', 'ochere', 'ochere', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ochere@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 (197, 3, 'customer', 1, 'General', 'OFORI', 'OFORI', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '597201028', 'oforianthony@fvtechcanada.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 (198, 3, 'customer', 1, 'General', 'George Hood', 'George Hood', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240319849', 'oldroadchemists@fvtechcanada.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 (199, 3, 'customer', 1, 'General', 'NANABA', 'NANABA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246158757', 'opk@fvtechcanada.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 (200, 3, 'customer', 1, 'General', 'Kenneth', 'Kenneth', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241224067', 'kopoku@fvtechcanada.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 (201, 3, 'customer', 1, 'General', 'OPTIMAX PHARMACY', 'OPTIMAX PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '248543099', 'optimaxpharma@fvtechcanada.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 (202, 3, 'customer', 1, 'General', 'Osei', 'Osei', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'osei@fvtechcanada.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 (203, 3, 'customer', 1, 'General', 'OSEI', 'OSEI', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '205411010', 'oseitutu@fvtechcanada.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 (204, 3, 'customer', 1, 'General', 'GINA', 'GINA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '592758034', 'oyarifapharmacy@fvtechcanada.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 (205, 3, 'customer', 1, 'General', 'Dr. Ayisha', 'Dr. Ayisha', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '209115595', 'agnesayisha@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 (206, 3, 'customer', 1, 'General', 'palaryea', 'palaryea', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'palaryea@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 (207, 3, 'customer', 1, 'General', 'PALZA', 'PALZA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548133516', 'palzapharmacy@fvtechcanada.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 (208, 3, 'customer', 1, 'General', 'Patricia Akakpo', 'Patricia Akakpo', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557027773', 'patmael@fvtechcanada.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 (209, 3, 'customer', 1, 'General', 'PAULINA', 'PAULINA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244430607', 'paulina@fvtechcanada.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 (210, 3, 'customer', 1, 'General', 'PHILYN', 'PHILYN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '201548454', 'evelynquacoe-takrama@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 (211, 3, 'customer', 1, 'General', 'PM', 'PM', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '545117407', 'peggykoronteng49@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 (212, 3, 'customer', 1, 'General', 'prahbecky95', 'prahbecky95', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '554908835', 'prahbecky95@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 (213, 3, 'customer', 1, 'General', 'PRIMARY CARE PHARMACY', 'PRIMARY CARE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'primarycare@fvtechcanada.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 (214, 3, 'customer', 1, 'General', 'Princilla', 'Princilla', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241430980', 'priscypress@fvtechcanada.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 (215, 3, 'customer', 1, 'General', 'Rabiatu Foster', 'Rabiatu Foster', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'fosterabena56@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 (216, 3, 'customer', 1, 'General', 'Rabi', 'Rabi', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'rabifroster@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 (217, 3, 'customer', 1, 'General', 'Ramatu', 'Ramatu', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242216561', 'rramatu@fvtechcanada.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 (218, 3, 'customer', 1, 'General', 'ramatuchem', 'ramatuchem', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'ramatuchem@fvtechcanada.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 (219, 3, 'customer', 1, 'General', 'RANDOM CHEMICAL', 'RANDOM CHEMICAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244077251', 'randomchem@fvtech.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 (220, 3, 'customer', 1, 'General', 'KENT PHARMACY', 'KENT PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '554908835', 'PRANECKY95@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 (221, 3, 'customer', 1, 'General', 'REGINA', 'REGINA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546275735', 'reginaedog@fvtechcanada.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 (222, 3, 'customer', 1, 'General', 'REXFORD', 'REXFORD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '555886793', 'boabenggodfred@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 (223, 3, 'customer', 1, 'General', 'RITZ PHARMABAY', 'RITZ PHARMABAY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546539937', 'joelnarh1991@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 (224, 3, 'customer', 1, 'General', 'ROSA', 'ROSA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '554057267', 'rosa@fvtechcanada.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 (225, 3, 'customer', 1, 'General', 'royalcarepharmacy06', 'royalcarepharmacy06', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240714641', 'royalcarepharmacy06@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 (226, 3, 'customer', 1, 'General', 'DARKO', 'DARKO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '553930094', 'sodarko@fvtechcanada.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 (227, 3, 'customer', 1, 'General', 'saada', 'saada', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242589334', 'saada@fvtechcanada.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 (228, 3, 'customer', 1, 'General', 'Sampson Obeng', 'Sampson Obeng', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '553921036', 'obengsampson@fvtechcanada.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 (229, 3, 'customer', 1, 'General', 'samueltetteh', 'samueltetteh', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245002980', 'Samueltetteh@fvtechcanada.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 (230, 3, 'customer', 1, 'General', 'Sandra Chemists', 'Sandra Chemists', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '546198385', 'sandra.ananor@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (231, 3, 'customer', 1, 'General', 'SAVEWAY CHEMICAL', 'SAVEWAY CHEMICAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '277492383', 'saveway@fvtechcanada.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 (232, 3, 'customer', 1, 'General', 'SAVIOUR', 'SAVIOUR', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242302471', 'saviourchemshop@fvtechcanada.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 (233, 3, 'customer', 1, 'General', 'SEED PHARMACY', 'SEED PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246524612', 'Seedpharma@fvtechcanada.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 (234, 3, 'customer', 1, 'General', 'SEED', 'SEED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246524612', 'seedpharmacy@fvtechcanada.com', '551761567', '', '', '', '', '', 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 (235, 3, 'customer', 1, 'General', 'Noah', 'Noah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '207865151', 'sellynoid@fvtechcanada.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 (236, 3, 'customer', 1, 'General', 'SETH CHEM', 'SETH CHEM', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '540377218', 'sethchem@fvtechcanada.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 (237, 3, 'customer', 1, 'General', 'sfiamavle', 'sfiamavle', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245972926', 'sfiamavle@yahoo.co.uk', '', '', '', '', '', '', 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 (238, 3, 'customer', 1, 'General', 'SHALOM VP PHARMACY', 'SHALOM VP PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240703997', 'shalom@fvtechcanada.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 (239, 3, 'customer', 1, 'General', 'Sheila Adusa', 'Sheila Adusa', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548853152', 'shielaadu@fvtechcanada.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 (240, 3, 'customer', 1, 'General', 'sna', 'sna', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244209237', 'SNA@fvtechcanada.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 (241, 3, 'customer', 1, 'General', 'Somah Ardiabah', 'Somah Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'engkwame@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 (242, 3, 'customer', 1, 'General', 'Somah Ardiabah', 'Somah Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917040', 'somah@fvtechcanada.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 (243, 3, 'customer', 1, 'General', 'Osuman Sumaila', 'Osuman Sumaila', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'sumnde7@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 (244, 3, 'customer', 1, 'General', 'FAUSTINA', 'FAUSTINA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '5404115603', 'faustinaamanor@fvtechcanada.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 (245, 3, 'customer', 1, 'General', 'store3', 'store3', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'store3@example.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 (246, 3, 'customer', 1, 'General', 'SUCCESS', 'SUCCESS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '204015156', 'successpharmacy@fvtechcanada.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 (247, 3, 'customer', 1, 'General', 'Diana', 'Diana', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244185164', 'successannex@fvtechcanada.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 (248, 3, 'customer', 1, 'General', 'summerhillsph', 'summerhillsph', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243183964', 'summerhillsph@fvtechcanada.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 (249, 3, 'customer', 1, 'General', 'SUPREME', 'SUPREME', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '548439879', 'supremebos@fvtechcanada.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 (250, 3, 'customer', 1, 'General', 'TAP', 'TAP', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '579332678', 'nanatwumadabo@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 (251, 3, 'customer', 1, 'General', 'Esther', 'Esther', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244135743', 'target@fvtechcanada.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 (252, 3, 'customer', 1, 'General', 'Test Wholesale', 'Test Wholesale', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '2424242424', 'wtest@fvtechcanada.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 (253, 3, 'customer', 1, 'General', 'Engr Kwame Ardiabah SN', 'Engr Kwame Ardiabah SN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917042', 'wisdom@fvtechcanada.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 (254, 3, 'customer', 1, 'General', 'Monicah Ardiabah', 'Monicah Ardiabah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '9026253334', 'somah1@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 (255, 3, 'customer', 1, 'General', 'Theressa', 'Theressa', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '547695629', 'theressa@fvtechcanada.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 (256, 3, 'customer', 1, 'General', 'T K', 'T K', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '552905142', 'tk@fvtechcanada.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 (257, 3, 'customer', 1, 'General', 'TODO', 'TODO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246806454', 'todopharmacy@fvtechcanada.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 (258, 3, 'customer', 1, 'General', 'Tony Ackah', 'Tony Ackah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '9557917042', 'admin5@fvtechcanada.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 (259, 3, 'customer', 1, 'General', 'tony ardibah', 'tony ardibah', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557917042', 'aardiabah123@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 (260, 3, 'customer', 1, 'General', 'topoola', 'topoola', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'topoola@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (261, 3, 'customer', 1, 'General', 'TOSH', 'TOSH', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '553916506', 'toshherbal@fvtechcanada.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 (262, 3, 'customer', 1, 'General', 'Elder TT', 'Elder TT', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247100194', 'ttherbal@fvtechcanada.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 (263, 3, 'customer', 1, 'General', 'URBAN', 'URBAN', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243778877', 'dorcasboadu23@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 (264, 3, 'customer', 1, 'General', 'Ven', 'Ven', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244773336', 'venpharmacy@fvtechcanada.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 (265, 3, 'customer', 1, 'General', 'VICENTIA CHEMICAL', 'VICENTIA CHEMICAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '207447073', 'vicentiachem@fvtechcanada.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 (266, 3, 'customer', 1, 'General', 'VIDA', 'VIDA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244448944', 'vidaopoku@fvtechcanada.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 (267, 3, 'customer', 1, 'General', 'Vida Herbal Shop', 'Vida Herbal Shop', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '249484195', 'vidaherbalshop@fvtechcanada.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 (268, 3, 'customer', 1, 'General', 'Vida London', 'Vida London', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'vidalondon@bort.radities.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 (269, 3, 'customer', 1, 'General', 'VINCENT', 'VINCENT', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '249871004', 'legalasada@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (270, 3, 'customer', 1, 'General', 'VINKAY', 'VINKAY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246086756', 'vinkay@fvtechcanada.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 (271, 3, 'customer', 1, 'General', 'VYNE PHARMACY', 'VYNE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244773336', 'vynepharmacy@fvtechcanada.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 (272, 3, 'customer', 1, 'General', 'Walter', 'Walter', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'walterchemical@fvtechcanada.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 (273, 3, 'customer', 1, 'General', 'WESTCO', 'WESTCO', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '542950477', 'westcoinvt@fvtechcanada.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 (274, 3, 'customer', 1, 'General', 'OB', 'OB', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '6125169712', 'will@someone.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 (275, 3, 'customer', 1, 'General', 'williamdarko48', 'williamdarko48', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '543663575', 'williamdarko48@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 (276, 3, 'customer', 1, 'General', 'Williams', 'Williams', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'obinkytt@yahoo.co.uk', '', '', '', '', '', '', 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 (277, 3, 'customer', 1, 'General', 'Williams 2', 'Williams 2', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'wobinkyereh@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 (278, 3, 'customer', 1, 'General', 'Wisdom', 'Wisdom', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '12345678', 'aardiabah22@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 (279, 3, 'customer', 1, 'General', 'YAKOS CHEMIST LTD.', 'YAKOS CHEMIST LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '206900699', 'yakoschemist@fvtechcanada.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 (280, 3, 'customer', 1, 'General', 'Yayera', 'Yayera', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '207447800', 'yayera@fvtechcanada.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 (281, 3, 'customer', 1, 'General', 'Zeinab', 'Zeinab', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '543819553', 'zeinab@fvtechcanadada.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 (282, 3, 'customer', 1, 'General', 'MENDMEDICS', 'MENDMEDICS', '', 'DAMFA', 'ACCRA', '', '', '', '0579039811', 'MENDMEDICS@FVTECHCANADA.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 (283, 3, 'customer', 1, 'General', 'Empiric', 'Empiric ', '', 'Botwe', 'Accra', '', '', '', '0203146431', 'empiric@fvtechcanada.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 (284, 3, 'customer', 1, 'General', 'DREAM', 'Dreamland', '', 'ACCRA', 'ACCRA', '', '', '', '0242017166', 'DREAM@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 (285, 3, 'customer', 1, 'General', 'tabitha', 'tabitha', '', 'madina', 'Accra', '', '', '', '0550605133', 'tabitah@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 (286, 3, 'customer', 1, 'General', 'Ahmed', 'Ahmed', '', 'Adenta', 'Accra', '', '', '', '0548454668', 'ahmed@fvtechcanada.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 (287, 3, 'customer', 1, 'General', 'MADNA', 'MADNA PHARMACY', '', 'MADINA', 'ACCRA', '', '', '', '0245026904', 'MADNAPHARMACY@FVTECHCANADA.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 (288, 3, 'customer', 1, 'General', 'optimax', 'Optimax', '', 'Botwe', 'Accra', '', '', '', '0540893361', 'optimax@fvtechcanada.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 (289, 3, 'customer', 1, 'General', 'justice', 'JusticeElect', '', 'madina', 'Accra', '', '', '', '0240821529', 'justice@fvtechcanada.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 (290, 3, 'customer', 1, 'General', 'Isaac', 'Isaac Brako', '', 'madina', 'Madina', 'Accra', '', '', '055332247', 'isaacbrako@fvtechcanada.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 (291, 3, 'customer', 1, 'General', 'Health is wealth', 'Health is wealth', '', 'madina', 'Accra', '', '', '', '0256445756', 'healthiswealth@fvtechcanada.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 (292, 4, 'supplier', NULL, NULL, 'ICE HERBAL CENTRE', 'ICE HERBAL CENTRE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240744426', 'normail@email.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 (293, 4, 'supplier', NULL, NULL, 'MEDI-MOSES PROSTATE CENTRE', 'MEDI-MOSES PROSTATE CENTRE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243503025', 'normail@email.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 (294, 4, 'supplier', NULL, NULL, 'MEDITAB PHARMACY WHOLESALE', 'MEDITAB PHARMACY WHOLESALE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208231311', 'normail@email.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 (295, 4, 'supplier', NULL, NULL, 'CEDAR POINT CHEMIST LTD', 'CEDAR POINT CHEMIST LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302737720', 'normail@email.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 (296, 4, 'supplier', NULL, NULL, 'KINGDOM INDUSTRIES', 'KINGDOM INDUSTRIES', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (297, 4, 'supplier', NULL, NULL, 'ROYAL DACH PHARMACEUTICALS', 'ROYAL DACH PHARMACEUTICALS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '243150609', 'normail@email.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 (298, 4, 'supplier', NULL, NULL, 'SENES PHARMA CO. LTD.', 'SENES PHARMA CO. LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (299, 4, 'supplier', NULL, NULL, 'AGBEVE HEBAL CENTER', 'AGBEVE HEBAL CENTER', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208130790', 'normail@email.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 (300, 4, 'supplier', NULL, NULL, 'MTV MARKETING', 'MTV MARKETING', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '20465613', 'normail@email.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 (301, 4, 'supplier', NULL, NULL, 'BAKUNAF ENTERPRISE FADA MARTINS', 'BAKUNAF ENTERPRISE FADA MARTINS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245631849', 'normail@email.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 (302, 4, 'supplier', NULL, NULL, 'ESKAY THERAPEUTIC LTD.', 'ESKAY THERAPEUTIC LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '597470660', 'normail@email.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 (303, 4, 'supplier', NULL, NULL, 'FIRDAWS PHARMACY', 'FIRDAWS PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244282043', 'normail@email.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 (304, 4, 'supplier', NULL, NULL, 'ADAN ISSA PERSONAL', 'ADAN ISSA PERSONAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (305, 4, 'supplier', NULL, NULL, 'FRIMATA PHARMACY', 'FRIMATA PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208203926', 'normail@email.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 (306, 4, 'supplier', NULL, NULL, 'DKT INTERNATIONAL GHANA', 'DKT INTERNATIONAL GHANA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244134085', 'normail@email.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 (307, 4, 'supplier', NULL, NULL, 'OA & J PHARMACEUTICALS LTD.', 'OA & J PHARMACEUTICALS LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '2010778227', 'normail@email.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 (308, 4, 'supplier', NULL, NULL, 'Yellow & Orange Pharmaticals Ltd', 'Yellow & Orange Pharmaticals Ltd', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '233542208000', 'normail@email.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 (309, 4, 'supplier', NULL, NULL, 'J.M. ADDO & SONS PHARMACY LTD.', 'J.M. ADDO & SONS PHARMACY LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302663413', 'normail@email.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 (310, 4, 'supplier', NULL, NULL, 'GOKALS', 'GOKALS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (311, 4, 'supplier', NULL, NULL, 'TRIUNE-TRUEVINE VENTURES/ DAROSE', 'TRIUNE-TRUEVINE VENTURES/ DAROSE', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '543386858', 'normail@email.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 (312, 4, 'supplier', NULL, NULL, 'GOKALS LIMITED', 'GOKALS LIMITED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '240041149', 'normail@email.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 (313, 4, 'supplier', NULL, NULL, 'WELLGIANT PHARMACY LTD.', 'WELLGIANT PHARMACY LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '557649961', 'normail@email.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 (314, 4, 'supplier', NULL, NULL, 'MAL-TITI CHEMIST LTD.', 'MAL-TITI CHEMIST LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '264629884', 'normail@email.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 (315, 4, 'supplier', NULL, NULL, 'PHINAS PHARMA LTD.', 'PHINAS PHARMA LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (316, 4, 'supplier', NULL, NULL, 'BIG MARON PHARMACY', 'BIG MARON PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244638671', 'normail@email.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 (317, 4, 'supplier', NULL, NULL, 'KIS HEALTH INDUSTRIES LTD.', 'KIS HEALTH INDUSTRIES LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '289115035', 'normail@email.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 (318, 4, 'supplier', NULL, NULL, 'suzzy HERBAL CENTER LTD.', 'suzzy HERBAL CENTER LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247546346', 'normail@email.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 (319, 4, 'supplier', NULL, NULL, 'OSONS CHEMIST', 'OSONS CHEMIST', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '267492008', 'normail@email.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 (320, 4, 'supplier', NULL, NULL, 'BEDITA PHARMACEUTICALS', 'BEDITA PHARMACEUTICALS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244642111', 'normail@email.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 (321, 4, 'supplier', NULL, NULL, 'Hajia', 'Hajia', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '550118851', 'normail@email.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 (322, 4, 'supplier', NULL, NULL, 'RICHBEN PHARMACY LIMITED', 'RICHBEN PHARMACY LIMITED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '242360088', 'normail@email.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 (323, 4, 'supplier', NULL, NULL, 'TAABEA COMPANY LTD', 'TAABEA COMPANY LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '245749206', 'normail@email.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 (324, 4, 'supplier', NULL, NULL, 'SALOM PHARMACY LTD.', 'SALOM PHARMACY LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '3022094101', 'normail@email.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 (325, 4, 'supplier', NULL, NULL, 'ALBY CHEMIST', 'ALBY CHEMIST', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208117674', 'normail@email.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 (326, 4, 'supplier', NULL, NULL, 'PHARMATRUST PHARMACEUTICAL', 'PHARMATRUST PHARMACEUTICAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '506590760', 'normail@email.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 (327, 4, 'supplier', NULL, NULL, 'BASE PHARMACY', 'BASE PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (328, 4, 'supplier', NULL, NULL, 'PEGRA', 'PEGRA', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (329, 4, 'supplier', NULL, NULL, 'RENIE CHEMIST LTD', 'RENIE CHEMIST LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302245303', 'normail@email.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 (330, 4, 'supplier', NULL, NULL, 'ROXIN GHANA LTD.', 'ROXIN GHANA LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '203775116', 'normail@email.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 (331, 4, 'supplier', NULL, NULL, 'OMEGA MEYER GHANA LTD.', 'OMEGA MEYER GHANA LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302251585', 'normail@email.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 (332, 4, 'supplier', NULL, NULL, 'DEPENDABLE HERBAL HOME', 'DEPENDABLE HERBAL HOME', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302916432', 'normail@email.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 (333, 4, 'supplier', NULL, NULL, 'GOKALS-LABOREX LTD.', 'GOKALS-LABOREX LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '30223800', 'normail@email.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 (334, 4, 'supplier', NULL, NULL, 'UNIC CARE CHEMIST LTD.', 'UNIC CARE CHEMIST LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '322035415', 'normail@email.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 (335, 4, 'supplier', NULL, NULL, 'POKUPHARMA  LTD.', 'POKUPHARMA  LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '322064220', 'normail@email.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 (336, 4, 'supplier', NULL, NULL, 'GIVERS HERBAL', 'GIVERS HERBAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '549047085', 'normail@email.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 (337, 4, 'supplier', NULL, NULL, 'TINATTE HERBAL', 'TINATTE HERBAL', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '208160807', 'normail@email.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 (338, 4, 'supplier', NULL, NULL, 'SHARP HERBS', 'SHARP HERBS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '246208496', 'normail@email.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 (339, 4, 'supplier', NULL, NULL, 'JOY INDUSTRIES LTD', 'JOY INDUSTRIES LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244585531', 'normail@email.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 (340, 4, 'supplier', NULL, NULL, 'PANACEA PHARMACEUTICALS LTD.', 'PANACEA PHARMACEUTICALS LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '241803504', 'normail@email.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 (341, 4, 'supplier', NULL, NULL, 'ERNEST CHEMISTS LTD', 'ERNEST CHEMISTS LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '3022034242', 'normail@email.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 (342, 4, 'supplier', NULL, NULL, 'FINEST NUTRITION', 'FINEST NUTRITION', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (343, 4, 'supplier', NULL, NULL, 'LETAP PHARMACEUTICALS LTD.', 'LETAP PHARMACEUTICALS LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302224613', 'normail@email.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 (344, 4, 'supplier', NULL, NULL, 'SHAUNA HEALTHCARE GHANA LTD', 'SHAUNA HEALTHCARE GHANA LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '597470660', 'normail@email.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 (345, 4, 'supplier', NULL, NULL, 'M&G PHARMA LTD', 'M&G PHARMA LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302666613', 'normail@email.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 (346, 4, 'supplier', NULL, NULL, 'Unichem(Ghana) Limited', 'Unichem(Ghana) Limited', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302227722', 'normail@email.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 (347, 4, 'supplier', NULL, NULL, 'Tobinco Pharmaceuticals', 'Tobinco Pharmaceuticals', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (348, 4, 'supplier', NULL, NULL, 'Qunloon GH LTD', 'Qunloon GH LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244139176', 'normail@email.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 (349, 4, 'supplier', NULL, NULL, 'ROKMER PHARMACY LTD', 'ROKMER PHARMACY LTD', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '247499499', 'normail@email.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 (350, 4, 'supplier', NULL, NULL, 'BEDREICH PHARMACY', 'BEDREICH PHARMACY', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '2050841491', 'normail@email.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 (351, 4, 'supplier', NULL, NULL, 'AMPONSAH-EFAH PHARMACEUTICALS LTD.', 'AMPONSAH-EFAH PHARMACEUTICALS LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302238312', 'normail@email.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 (352, 4, 'supplier', NULL, NULL, 'SUPRA PHARMA LIMITED', 'SUPRA PHARMA LIMITED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '3022781900', 'normail@email.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 (353, 4, 'supplier', NULL, NULL, 'PHILIPS PHARMACEUTICALS (GHANA) LTD.', 'PHILIPS PHARMACEUTICALS (GHANA) LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '558754576', 'normail@email.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 (354, 4, 'supplier', NULL, NULL, 'HEALTH SITE GHANA LTD.', 'HEALTH SITE GHANA LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302246346', 'normail@email.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 (355, 4, 'supplier', NULL, NULL, 'PHYTO-RIKER  (GIHOC) PHARMACEUTICALS', 'PHYTO-RIKER  (GIHOC) PHARMACEUTICALS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302400984', 'normail@email.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 (356, 4, 'supplier', NULL, NULL, 'G R INDUSTRIES LIMITED', 'G R INDUSTRIES LIMITED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '123456678', 'normail@email.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 (357, 4, 'supplier', NULL, NULL, 'ROOTER NATURAL PRODUCTS', 'ROOTER NATURAL PRODUCTS', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '244503443', 'normail@email.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 (358, 4, 'supplier', NULL, NULL, 'ASTERISKS LIFESCIENCES (GH) LIMITED', 'ASTERISKS LIFESCIENCES (GH) LIMITED', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '200097096', 'normail@email.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 (359, 4, 'supplier', NULL, NULL, 'G. B. PHARMA GHANA LTD.', 'G. B. PHARMA GHANA LTD.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '204330344', 'normail@email.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 (360, 4, 'supplier', NULL, NULL, 'Kinapharma Limited', 'Kinapharma Limited', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302220390', 'normail@email.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 (361, 4, 'supplier', NULL, NULL, 'Dannex Ayrton Starwin Pie.', 'Dannex Ayrton Starwin Pie.', '', 'N/A', 'Greater Accra', '', '233', 'Ghana', '302232574', 'normail@email.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 (362, 3, 'customer', 1, 'General', 'Benjamin Asamoah', 'Benjamin', '', 'madina', 'Accra', '', '', '', '0246450179', 'benjamin@fvtechcanada.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 (363, 3, 'customer', 1, 'General', 'Agnes Asuman', 'Agnes ', '', 'Adenta SDA', 'Accra', '', '', '', '0557563626', 'agnes@fvtechcanada.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 (364, 3, 'customer', 1, 'General', 'Diana', 'Diana Nyarko', '', 'Dodowa', 'ACCRA', '', '', '', '0244578113', 'diananyarko@fvtechcanada.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 (365, 4, 'supplier', NULL, NULL, 'SOLAK', 'SOLAK BIOCHEMIST CO. LTD.', '', 'Kumasi', 'ACCRA', '', '', '', '0245616028', 'solak@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 (366, 3, 'customer', 1, 'General', 'PHYLLIS', 'PHYLLIS', '', 'Asheyiye', 'Accra', '', '', '', '0244796039', 'sexydonmama@rocketmail.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 (367, 3, 'customer', 1, 'General', 'BRIGHT', 'BRIGHT CHEMICAL SHOP', '', 'Botwhey', 'Accra', '', '', '', '0245972926', 'sandra@fvtechcanada.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 (368, 4, 'supplier', NULL, NULL, 'mPHARMA', 'Mpharma', '', 'east legon', 'accra', '', '', '', '0243232129', 'mpharma@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 (369, 3, 'customer', 1, 'General', 'Arhin', 'Arhin Chemist', '', 'adjiriganol', 'accra', '', '', '', '0264743547', 'arhin@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 (371, 3, 'customer', 1, 'General', 'kedem V', 'KEDEM V', '', 'madina', 'accra', '', '', '', '00000', 'kedemv@fvtechcanada.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 (372, 3, 'customer', 1, 'General', 'JOE', 'JOE', '', 'Madina', 'Accra', '', '', '', '0553954457', 'joe@fvtechcanada.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 (373, 3, 'customer', 1, 'General', 'Michael', 'St. michael', '', 'madina', 'Accra', '', '', '', '0247012122', 'michael@fvtechcanada.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 (374, 3, 'customer', 1, 'General', 'LD', 'LD PHARMACY', '', 'Pantang', 'Accra', '', '', '', '0244308175', 'ld@fvtechcanada.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 (375, 3, 'customer', 1, 'General', 'Gideon', 'Gideo Mensah', '', 'Madina', 'Accra', '', '', '', '0549133319', 'gideonm@fvtechcanada.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 (376, 3, 'customer', 1, 'General', 'Gifty', 'Gifty Agyeiwaa', '', 'Madina', 'Acca', '', '', '', '0542761668', 'giftya@fvtechcanada.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 (377, 3, 'customer', 1, 'General', 'Old Soja', 'old soja', '', 'madina', 'accra', '', '', '', '0549150671', 'oldsoja@fvtechcanada.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 (378, 4, 'supplier', NULL, NULL, 'COA MIXTURE', 'COA HEALTH CARE CENTRE', '', 'ACCRA', 'ACCRA', '', '', '', '0244726611', 'info@coadrugs.org', '', '', '', '', '', '', 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 (379, 3, 'customer', 1, 'General', 'Kasba', 'Kasba', '', 'madina', 'Accra', '', '', '', '0555370530', 'kasbapharmacy@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 (380, 3, 'customer', 1, 'General', 'Faustina Amanor', 'Stable Plus Healthcare', '', 'madina', 'Accra', '', '', '', '0540115603', 'stable@fvtechcanada.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 (381, 3, 'customer', 1, 'General', 'Lona Chemicals', 'Lona', '', 'madina', 'Accra', '', '', '', '0244763214', 'lona@fvtechcanada.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 (382, 3, 'customer', 1, 'General', 'kojo', 'kojo', '', 'madina', 'Accra', '', '', '', '055653 1819', 'kojo@fvtechcanada.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 (383, 3, 'customer', 1, 'General', 'VERLOR', 'VELOR', '', 'PANTANG VILLAGE', 'ACCRA', '', '', '', '0203648009', 'gpopsy@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 (384, 3, 'customer', 1, 'General', 'NATDAS', 'NATDAS', '', 'DANFA-OTINIBI', 'ACCRA', '', '', '', '0546062986', 'dososeiant@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 (385, 3, 'customer', 1, 'General', 'ANFEGA', 'ANFEGA HOSPITAL', '', 'ANFEGA', 'ANFEGA', '', '', '', '0542977424', 'onaiwilfredditese@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 (386, 3, 'customer', 1, 'General', 'Regina', 'Regina', '', 'madina', 'Accra', '', '', '', '0546002881', 'regina@fvtechcanada.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 (387, 3, 'customer', 1, 'General', 'BBLITO', 'BBLITO', '', 'Oyarifa', 'Accra', '', '', '', '0248418169', 'biyimbabilito@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 (388, 3, 'customer', 1, 'General', 'Ayirebi Health Center', 'Ayirebi Health Center', '', 'Eastern ', 'Oda', '', '', '', '0242843561', 'ayirebi@fvtechcanada.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 (389, 3, 'customer', 1, 'General', 'Mike', 'Mike', '', 'madina', 'Accra', '', '', '', '0247420010', 'mike@fvtechcanada.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 (390, 3, 'customer', 1, 'General', 'Joyce', 'Joyce Chemicals', '', 'Adenta', 'Accra', '', '', '', '0244752129', 'joyce@fvtechcanada.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 (391, 3, 'customer', 1, 'General', 'Mavis Boateng ', 'Mavis Boateng', '', 'Madina ', 'Accra', '', '', '', '0206951860', 'mavis@fvtechcanada.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 (392, 3, 'customer', 1, 'General', 'Magpat', 'Magpat Pharmacy ', '', 'Ogbjo', 'Accra', '', '', '', '0201198421', 'magpat@fvtechcanada.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 (393, 3, 'customer', 1, 'General', 'Harriet', 'Harriet', '', 'Madina ', 'Accra', '', '', '', '0244591941', 'harriet@fvtechcanada.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 (394, 3, 'customer', 1, 'General', 'SIMONY', 'SIMONY', '', 'School Junction, Botchwey', 'Accra', '', '', '', '0245892737', 'simony@fvtechcanada.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 (395, 3, 'customer', 1, 'General', 'TREASURED LIFE ', 'TREASURED LIFE CHEMICAL SHOP', '', 'OYARIFA', 'ACCRA', '', '', '', '0244027425', 'treasuredlife@fvtechcanada.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 (396, 4, 'supplier', NULL, NULL, 'G B PHARMA', 'G B PHARMA', '', 'OKAISHIE', 'ACCRA', '', '', '', '0204330344', 'GB@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 (397, 3, 'customer', 1, 'General', 'NAIBA ', 'NAIBA', '', 'new legon', 'accra', '', '', '', '0244785548', 'naiba@fvtechcanada.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 (398, 3, 'customer', 1, 'General', 'AB CHEMICAL SHOP', 'AB CHEMICAL SHOP', '', 'Oyarifa', 'Accra', '', '', '', '0244678813', 'ab@fvtechcanada.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 (399, 3, 'customer', 1, 'General', 'FELCHRIS HERBAL CENTER', 'FELCHRIS HERBAL CENTER', '', 'MADINA MARKET', 'ACCRA', '', '', '', '0244210391', 'FELCHRIS@FVTECHCANADA.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 (400, 3, 'customer', 1, 'General', 'SHARP CURVE', 'SHARP CURVE CHEMICAL SHOP', '', 'ASHEYIYE', 'ACCRA', '', '', '', '0553779292', 'sharpcurve@fvtechcanada.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 (401, 3, 'customer', 1, 'General', 'AMAZING GRACE OCT', 'AMAZING GRACE OCT', '', 'Volta Region', 'Alavanyo', '', '', '', '0540833674', 'amazinggrace@fvtechcanada.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 (402, 3, 'customer', 1, 'General', 'WONEME CHEMICAL SHOP', 'WONEME CHEMICAL SHOP', '', 'MADINA', 'ACCRA', '', '', 'Ghana', '0247422952', 'amaliawoneme@futechcanada.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 (403, 3, 'customer', 1, 'General', 'ENOCK CHEMICAL SHOP', 'ENOCK CHEMICAL SHOP', '', 'MADINA', 'ACCRA', '', '', 'Ghana', '0247341564', 'enock@futechcanada.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 (404, 3, 'customer', 1, 'General', 'HAJARA', 'HAJARA', '', 'MADINA', 'ACCRA', '', '', '', '0207074809', 'hajara@fvtechcanada.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 (405, 3, 'customer', 1, 'General', 'NARSTEP ', 'NARSTEP CHEMICAL SHOP', '', 'MAAMOBI', 'ACCRA', '', '', '', '0249248517', 'narstep@fvtechcanada.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 (406, 3, 'customer', 1, 'General', 'FRANK OSEI', 'FRAN OSEI CHEMIST', '', 'MADINA', 'ACCRA', '', '', '', '0244033819', 'franko@fvtechcanada.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 (407, 3, 'customer', 1, 'General', 'DEKAY PHARMACY', 'DEKAY PHARMACY', '', 'MADINA', 'ACCRA', '', '', '', '0555107070', 'dekay@fvtechcanada.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 (408, 3, 'customer', 1, 'General', 'NEW CARE CHEMICAL', 'NEW CARE CHEMICAL', '', 'MADINA', 'ACCRA', '', '', '', '0244059081', 'newcare@fvtechcanada.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 (409, 3, 'customer', 1, 'General', 'GREEN HEAVENLY', 'GREEN HEAVENLY', '', 'MADINA', 'ACCRA', '', '', '', '0266259685', 'green@fvtechcanada.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 (410, 3, 'customer', 1, 'General', 'JOSEPHINE ASANTE CHEMICAL', 'JOSEPHINE ASANTE CHEMICAL', '', 'MADINA', 'ACCRA', '', '', '', '0245034629', 'josephine@fvteschcanada.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 (411, 3, 'customer', 1, 'General', 'DEMARYDAN PHARMACY', 'DEMARYDAN PHARMACY', '', 'MADINA', 'ACCRA', '', '', '', '0248094907', 'demarydan@fvtechcanada.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 (412, 3, 'customer', 1, 'General', 'MARGARET', 'MARGARET CHEMICAL SHOP', '', 'Oyibi', 'ACCRA', '', '', '', '0543964611', 'margaret@fvtechcanada.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 (413, 4, 'supplier', NULL, NULL, 'JEKENU ENTERPRISE', 'JEKENU ENTERPRISE', '', 'P. O. Box AD 212', 'ACCRA', '', '', '', '0543628878', 'jekenu@fvtechcanada.comw', '', '', '', '', '', '', 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 (414, 4, 'supplier', NULL, NULL, 'KELMED', 'KELMED PHARMACEUTICALS LTD.', '', 'F1 03 SERV. PLOT, DTD COMM.16 LASHIBI-SKM', 'ACCRA', '', '', '', '0302673151', 'kelmed@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 (415, 4, 'supplier', NULL, NULL, 'IONA ', 'IONA PHARMACY LTD.', '', 'P. O. Box 20329 GP ACCRA', 'ACCRA', '', '', '', '0553134185/ 05430367', 'info@ionapharmacygh.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 (416, 4, 'supplier', NULL, NULL, 'ATTA BAMPO VENTURES', 'ATTA BAMPO VENTURES', '', 'D. N. T. HOUSE NO. 15, ASAFO ADJEI STREET', 'ACCRA', '', '', '', '0550161783', 'attabampo@fvtechcanada.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 (417, 4, 'supplier', NULL, NULL, 'STEPHEN', 'CARINSTIC VENTURES AGENT 5', '', 'HEAD OFFICE', 'ACCRA', '', '', '', '0548313407', 'stephen@fvtechcanada.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 (418, 4, 'supplier', NULL, NULL, 'E. B. PHARMACEUTICALS LTD.', 'E. B. PHARMACEUTICALS LTD.', '', 'Westcoast Group Premises PLT# IND/A24/15-16', 'TEMA INDUSTRIAL AREA', '', '', '', '0244138338/024448417', 'eb@fvtechcanada.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 (419, 3, 'customer', 1, 'General', 'ROMEE CHEMIST', 'ROMEE CHEMIST', '', 'MADINA', 'ACCRA', '', '', '', '0245873044', 'romee@fvtechcanada.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 (420, 3, 'customer', 1, 'General', 'AISHA', 'AISHA', '', 'MADINA', 'ACCRA', '', '', '', '026401716', 'aisha@fvcanada.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 (421, 3, 'customer', 1, 'General', 'SAMPSON BOAHEN CHEMICAL', 'SAMPSON BOAHEN CHEMICAL', '', 'MADINA MARKET', 'ACCRA', '', '', 'Ghana', '0241343102', 'sampsonb@fvtechcanada.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 (422, 3, 'customer', 1, 'General', 'Equity Pharmacy ', 'Equity pharmacy', '', 'Madina ', 'Accra', '', '', '', '0243979369', 'euity@fvcanada.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 (423, 3, 'customer', 1, 'General', 'EBETODA', 'EBETODA', '', 'MADINA', 'ACCRA', '', '', 'Ghana', '0244033819', 'ebetoda@fvtechcanada.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 (424, 3, 'customer', 1, 'General', 'heaven', 'heavenly karis chemist', '', 'east legon', 'accra', '', '', '', '0244444444', 'heavenly1@fmmsgh.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 (425, 3, 'customer', 1, 'General', 'BEN', 'BEN', '', 'MADINA', 'ACCRA', '', '', '', '0249681268', 'ben@fvtechcanada.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 (426, 3, 'customer', 1, 'General', 'BB2 CHEMICAL', 'BB2 CHEMICAL', '', 'MADINA', 'ACCRA', '', '', '', '0248789456', 'bb2@fvtechcanada.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 (427, 4, 'supplier', NULL, NULL, 'STIPPS COMPANY LTD.', 'STIPPS COMPANY LTD.', '', 'DT 2823, ADENTA', 'ACCRA', '', '', '', '0302959867', 'stipps@fvtechcanada.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,
  `transfer_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20308 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`, `transfer_id`) VALUES (419, '2022-09-12', 6753, 264, 79, 2307, '1.0000', '85.0000', '85.0000', '85.0000', '85.0000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (662, '2022-09-12', 6074, 484, 90, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1865.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1119, '2022-09-12', 6744, 921, 82, 1145, '5.0000', '9.9600', '9.9600', '9.9600', '9.9600', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1118, '2022-09-12', 5793, 920, 82, 519, '2.0000', '47.0000', '47.0000', '47.0000', '47.0000', '29.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1117, '2022-09-12', 6341, 919, 82, 956, '2.0000', '62.3000', '62.3000', '62.3000', '62.3000', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1116, '2022-09-12', 5740, 918, 82, 2274, '20.0000', '15.5000', '15.5000', '15.5000', '15.5000', '556.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (417, '2022-09-12', 6518, 262, 78, 974, '1.0000', '61.2000', '61.2000', '61.2000', '61.2000', '30.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (420, '2022-09-12', 6445, 265, 80, 1985, '3.0000', '21.8000', '21.8000', '21.8000', '21.8000', '27.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (418, '2022-09-12', 6800, 263, 78, 324, '1.0000', '5.5000', '5.5000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (416, '2022-09-12', 5640, 261, 77, 2030, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '97.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (423, '2022-09-12', 5993, 268, 80, 1868, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1115, '2022-09-12', 6601, 917, 82, 1931, '1.0000', '44.6000', '44.6000', '44.6000', '44.6000', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (424, '2022-09-12', 5634, 269, 80, 392, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '43.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1114, '2022-09-12', 6285, 916, 82, 2324, '10.0000', '9.4700', '9.4700', '9.4700', '9.4700', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1113, '2022-09-12', 6053, 915, 82, 2331, '5.0000', '14.9000', '14.9000', '14.9000', '14.9000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1112, '2022-09-12', 5641, 914, 82, 2319, '3.0000', '31.1000', '31.1000', '31.1000', '31.1000', '111.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1111, '2022-09-12', 6316, 913, 82, 2359, '3.0000', '62.0000', '62.0000', '62.0000', '62.0000', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1365, '2022-09-12', 5472, 1145, 81, 2400, '-8.0000', '0.0000', '0.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1364, '2022-09-12', 6860, 1144, 81, 1977, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '200.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1363, '2022-09-12', 6074, 1143, 81, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1778.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1362, '2022-09-12', 5986, 1142, 81, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '33.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1361, '2022-09-12', 6275, 1141, 81, 2032, '4.0000', '4.7000', '4.7000', '4.7000', '4.7000', '322.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1360, '2022-09-12', 6529, 1140, 81, 2006, '1.0000', '12.5000', '12.5000', '12.5000', '12.5000', '29.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1359, '2022-09-12', 5991, 1139, 81, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1358, '2022-09-12', 6217, 1138, 81, 2377, '5.0000', '2.8800', '2.8800', '2.8800', '2.8800', '55.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1357, '2022-09-12', 5657, 1137, 81, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '349.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1356, '2022-09-12', 6234, 1136, 81, 1098, '1.0000', '33.3000', '33.3000', '33.3000', '33.3000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1355, '2022-09-12', 5969, 1135, 81, 2252, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '215.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1354, '2022-09-12', 6764, 1134, 81, 1417, '5.0000', '6.3000', '6.3000', '6.3000', '6.3000', '95.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1353, '2022-09-12', 6205, 1133, 81, 1886, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1366, '2022-09-12', 5472, 1145, 81, NULL, '11.0000', '0.0000', '0.0000', '4.5000', '4.5000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (448, '2022-09-12', 5464, 292, 80, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (447, '2022-09-12', 6717, 291, 80, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '13.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (446, '2022-09-12', 6267, 290, 80, 1425, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '83.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (445, '2022-09-12', 5605, 289, 80, 907, '5.0000', '21.5000', '21.5000', '21.5000', '21.5000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (444, '2022-09-12', 5605, 288, 80, 907, '1.0000', '21.5000', '21.5000', '21.5000', '21.5000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (443, '2022-09-12', 6744, 287, 80, 1145, '5.0000', '9.9600', '9.9600', '9.9600', '9.9600', '25.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (442, '2022-09-12', 6720, 286, 80, 1005, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (441, '2022-09-12', 5793, 285, 80, 519, '2.0000', '47.0000', '47.0000', '47.0000', '47.0000', '31.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (440, '2022-09-12', 6341, 284, 80, 956, '2.0000', '62.3000', '62.3000', '62.3000', '62.3000', '33.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (439, '2022-09-12', 5740, 283, 80, 2274, '20.0000', '15.5000', '15.5000', '15.5000', '15.5000', '580.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (438, '2022-09-12', 6601, 282, 80, 1931, '1.0000', '44.6000', '44.6000', '44.6000', '44.6000', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (437, '2022-09-12', 6285, 281, 80, 2324, '10.0000', '9.4700', '9.4700', '9.4700', '9.4700', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (436, '2022-09-12', 6053, 280, 80, 2331, '5.0000', '14.9000', '14.9000', '14.9000', '14.9000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (435, '2022-09-12', 5641, 279, 80, 2319, '3.0000', '31.1000', '31.1000', '31.1000', '31.1000', '117.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (434, '2022-09-12', 6316, 278, 80, 2359, '3.0000', '62.0000', '62.0000', '62.0000', '62.0000', '45.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (433, '2022-09-12', 5556, 277, 80, 585, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '18.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (432, '2022-09-12', 5847, 276, 80, NULL, '10.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1110, '2022-09-12', 5633, 912, 82, 1033, '2.0000', '226.2100', '226.2100', '226.2100', '226.2100', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1109, '2022-09-12', 6294, 911, 82, 1412, '5.0000', '23.0000', '23.0000', '23.0000', '23.0000', '81.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1108, '2022-09-12', 6434, 910, 82, 1895, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '138.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1107, '2022-09-12', 6078, 909, 82, 2352, '3.0000', '42.0000', '42.0000', '42.0000', '42.0000', '589.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1106, '2022-09-12', 5605, 908, 82, 907, '5.0000', '21.5000', '21.5000', '21.5000', '21.5000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1105, '2022-09-12', 6267, 907, 82, 1425, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '63.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1104, '2022-09-12', 5634, 906, 82, 392, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '38.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1103, '2022-09-12', 5464, 905, 82, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1102, '2022-09-12', 5847, 904, 82, NULL, '26.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-26.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1101, '2022-09-12', 5847, 904, 82, 2399, '-16.0000', '0.0000', '0.0000', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1100, '2022-09-12', 6658, 903, 82, NULL, '2.0000', '65.8000', '65.8000', '65.8000', '65.8000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1099, '2022-09-12', 6658, 903, 82, 2398, '-1.0000', '65.8000', '65.8000', '65.8000', '65.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (431, '2022-09-12', 5633, 275, 80, 1033, '2.0000', '226.2100', '226.2100', '226.2100', '226.2100', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (430, '2022-09-12', 5633, 274, 80, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (429, '2022-09-12', 6658, 273, 80, NULL, '1.0000', '65.8000', '65.8000', '65.8000', '65.8000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (428, '2022-09-12', 6658, 273, 80, 558, '1.0000', '65.8000', '65.8000', '65.8000', '65.8000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (427, '2022-09-12', 6294, 272, 80, 1412, '5.0000', '23.0000', '23.0000', '23.0000', '23.0000', '86.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (426, '2022-09-12', 6434, 271, 80, 1895, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '150.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (425, '2022-09-12', 6078, 270, 80, 2352, '3.0000', '42.0000', '42.0000', '42.0000', '42.0000', '597.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1098, '2022-09-12', 6717, 902, 82, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '12.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1097, '2022-09-12', 6720, 901, 82, NULL, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1096, '2022-09-12', 6720, 901, 82, 1005, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (421, '2022-09-12', 6488, 266, 80, NULL, '3.0000', '0.0000', '0.0000', '12.0000', '12.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (422, '2022-09-12', 6252, 267, 80, NULL, '10.0000', '0.0000', '0.0000', '4.9800', '4.9800', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1120, '2022-09-12', 6489, 922, 82, 642, '4.0000', '13.0000', '13.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (495, '2022-09-12', 5947, 334, 84, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '39.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (494, '2022-09-12', 6074, 333, 83, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1908.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (493, '2022-09-12', 6664, 332, 83, NULL, '2.0000', '0.0000', '0.0000', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (713, '2022-09-12', 5949, 532, 95, 1311, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '959.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (663, '2022-09-12', 5593, 485, 90, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (496, '2022-09-12', 6590, 335, 84, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (531, '2022-09-12', 5640, 364, 85, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '96.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (530, '2022-09-12', 6421, 363, 85, NULL, '1.0000', '0.0000', '0.0000', '9.9400', '9.9400', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (529, '2022-09-12', 6303, 362, 85, NULL, '9.0000', '1.4300', '1.4300', '1.4300', '1.4300', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (498, '2022-09-12', 6218, 337, 84, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (497, '2022-09-12', 6389, 336, 84, 961, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (532, '2022-09-12', 6074, 365, 85, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1905.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (533, '2022-09-12', 6205, 366, 86, 1886, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (538, '2022-09-12', 6860, 371, 86, 1977, '5.0000', '16.8000', '16.8000', '16.8000', '16.8000', '204.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (537, '2022-09-12', 6605, 370, 86, 2270, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (536, '2022-09-12', 6437, 369, 86, 1275, '2.0000', '18.1000', '18.1000', '18.1000', '18.1000', '30.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (535, '2022-09-12', 6316, 368, 86, 2359, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '40.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (534, '2022-09-12', 6220, 367, 86, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '390.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (539, '2022-09-12', 6532, 372, 86, 1958, '5.0000', '7.6000', '7.6000', '7.6000', '7.6000', '55.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (542, '2022-09-12', 5601, 375, 86, NULL, '5.0000', '0.0000', '0.0000', '4.3000', '4.3000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (541, '2022-09-12', 5600, 374, 86, NULL, '5.0000', '0.0000', '0.0000', '2.6000', '2.6000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (540, '2022-09-12', 5418, 373, 86, 2061, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '61.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (543, '2022-09-12', 6610, 376, 86, 2271, '1.0000', '70.0000', '70.0000', '70.0000', '70.0000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (546, '2022-09-12', 6285, 379, 87, 2324, '3.0000', '9.4700', '9.4700', '9.4700', '9.4700', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (545, '2022-09-12', 5641, 378, 87, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '113.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (544, '2022-09-12', 6590, 377, 87, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '77.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (547, '2022-09-12', 6417, 380, 87, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '74.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (548, '2022-09-12', 6232, 381, 87, 1424, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '93.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (549, '2022-09-12', 6386, 382, 87, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '410.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (554, '2022-09-12', 6136, 386, 87, 1324, '4.0000', '3.8000', '3.8000', '3.8000', '3.8000', '194.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (553, '2022-09-12', 6334, 385, 87, NULL, '2.0000', '0.0000', '0.0000', '16.5000', '16.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (552, '2022-09-12', 5600, 384, 87, NULL, '8.0000', '0.0000', '0.0000', '2.6000', '2.6000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (551, '2022-09-12', 5600, 384, 87, 2418, '-5.0000', '0.0000', '0.0000', '2.6000', '2.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (550, '2022-09-12', 5440, 383, 87, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '295.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (555, '2022-09-12', 6202, 387, 87, 2334, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '58.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (584, '2022-09-12', 6205, 411, 88, 1886, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (585, '2022-09-12', 5593, 412, 88, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (586, '2022-09-12', 6610, 413, 88, 2271, '1.0000', '70.0000', '70.0000', '70.0000', '70.0000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (589, '2022-09-12', 6075, 416, 88, 2043, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '427.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (588, '2022-09-12', 5640, 415, 88, 2030, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '92.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (587, '2022-09-12', 6675, 414, 88, 1391, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (590, '2022-09-12', 6076, 417, 88, 1997, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '619.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (765, '2022-09-12', 5657, 583, 96, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '353.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (764, '2022-09-12', 6434, 582, 89, 1895, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '138.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (763, '2022-09-12', 6663, 581, 89, 2328, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '198.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (762, '2022-09-12', 6219, 580, 89, 2117, '20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '202.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (594, '2022-09-12', 5792, 421, 88, 1978, '1.0000', '30.2000', '30.2000', '30.2000', '30.2000', '77.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (593, '2022-09-12', 5740, 420, 88, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '556.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (592, '2022-09-12', 6408, 419, 88, 2068, '5.0000', '4.6700', '4.6700', '4.6700', '4.6700', '115.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (591, '2022-09-12', 6865, 418, 88, 1026, '10.0000', '3.5000', '3.5000', '4.0000', '4.0000', '46.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (761, '2022-09-12', 6466, 579, 89, 1088, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '28.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (760, '2022-09-12', 6642, 578, 89, NULL, '4.0000', '0.0000', '0.0000', '5.9000', '5.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (759, '2022-09-12', 5765, 577, 89, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (758, '2022-09-12', 5586, 576, 89, NULL, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (757, '2022-09-12', 6288, 575, 89, 1416, '2.0000', '56.0000', '56.0000', '56.0000', '56.0000', '92.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (528, '2022-09-12', 6303, 362, 85, 1406, '1.0000', '1.4300', '1.4300', '1.4300', '1.4300', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (756, '2022-09-12', 6862, 574, 89, 1023, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '94.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (755, '2022-09-12', 6281, 573, 89, 1336, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (754, '2022-09-12', 6302, 572, 89, 2116, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '55.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (753, '2022-09-12', 6652, 571, 89, 1414, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '101.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (752, '2022-09-12', 5749, 570, 89, 2107, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (751, '2022-09-12', 6569, 569, 89, 2347, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '30.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (750, '2022-09-12', 5487, 568, 89, 507, '1.0000', '18.9000', '18.9000', '18.9000', '18.9000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (749, '2022-09-12', 6114, 567, 89, 2297, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '76.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (748, '2022-09-12', 5696, 566, 89, 514, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '75.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (747, '2022-09-12', 5696, 566, 89, 1936, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (746, '2022-09-12', 5969, 565, 89, 2252, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '231.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (745, '2022-09-12', 6408, 564, 89, 2068, '5.0000', '4.6700', '4.6700', '4.6700', '4.6700', '97.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (744, '2022-09-12', 6393, 563, 89, 2082, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '57.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (743, '2022-09-12', 6463, 562, 89, 1345, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (742, '2022-09-12', 5980, 561, 89, NULL, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (741, '2022-09-12', 5731, 560, 89, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '297.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (740, '2022-09-12', 6285, 559, 89, 2324, '4.0000', '9.4700', '9.4700', '9.4700', '9.4700', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (739, '2022-09-12', 5710, 558, 89, 1300, '5.0000', '4.0200', '4.0200', '4.0200', '4.0200', '200.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (738, '2022-09-12', 5827, 557, 89, 2055, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '43.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (737, '2022-09-12', 6592, 556, 89, 2373, '3.0000', '3.1800', '3.1800', '3.1800', '3.1800', '117.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (736, '2022-09-12', 5535, 555, 89, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1595.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (735, '2022-09-12', 5476, 554, 89, NULL, '2.0000', '0.0000', '0.0000', '13.3000', '13.3000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (734, '2022-09-12', 5977, 553, 89, 2360, '4.0000', '7.5000', '7.5000', '7.5000', '7.5000', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (733, '2022-09-12', 5949, 552, 89, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '959.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (732, '2022-09-12', 5624, 551, 89, 908, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (731, '2022-09-12', 6424, 550, 89, 2380, '2.0000', '7.9300', '7.9300', '7.9300', '7.9300', '28.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (730, '2022-09-12', 5641, 549, 89, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '112.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (729, '2022-09-12', 6538, 548, 89, 770, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '38.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (728, '2022-09-12', 6131, 547, 89, 769, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '18.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (727, '2022-09-12', 6667, 546, 89, NULL, '6.0000', '0.0000', '0.0000', '2.0000', '2.0000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (726, '2022-09-12', 6074, 545, 89, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1841.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (766, '2022-09-12', 5616, 584, 97, NULL, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (664, '2022-09-12', 5898, 486, 90, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '322.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (665, '2022-09-12', 6371, 487, 91, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (666, '2022-09-12', 5970, 488, 91, 2310, '1.0000', '9.1500', '9.1500', '9.1500', '9.1500', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (667, '2022-09-12', 6337, 489, 91, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (668, '2022-09-12', 6408, 490, 91, 2068, '3.0000', '4.6700', '4.6700', '4.6700', '4.6700', '107.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (669, '2022-09-12', 6417, 491, 91, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '72.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (670, '2022-09-12', 6074, 492, 91, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1861.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (671, '2022-09-12', 6333, 493, 91, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '138.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (672, '2022-09-12', 6692, 494, 91, NULL, '5.0000', '0.0000', '0.0000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (673, '2022-09-12', 5853, 495, 91, 2363, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '180.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (674, '2022-09-12', 6095, 496, 91, NULL, '3.0000', '0.0000', '0.0000', '8.3200', '8.3200', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (675, '2022-09-12', 6082, 497, 91, 1154, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '23.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (676, '2022-09-12', 6348, 498, 91, NULL, '1.0000', '0.0000', '0.0000', '8.1000', '8.1000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (677, '2022-09-12', 6543, 499, 91, 2062, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '28.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (678, '2022-09-12', 6202, 500, 91, 2334, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (679, '2022-09-12', 6394, 501, 91, 1446, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '30.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (680, '2022-09-12', 6042, 502, 92, 938, '3.0000', '25.9500', '25.9500', '25.9500', '25.9500', '55.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (681, '2022-09-12', 6245, 503, 93, 2111, '10.0000', '2.9900', '2.9900', '2.9900', '2.9900', '120.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (682, '2022-09-12', 6176, 504, 93, 2323, '2.0000', '4.1000', '4.1000', '4.1000', '4.1000', '286.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (683, '2022-09-12', 6177, 505, 93, NULL, '2.0000', '0.0000', '0.0000', '3.5000', '3.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (684, '2022-09-12', 6328, 506, 93, 2434, '1.0000', '26.9000', '26.9000', '26.9000', '26.9000', '18.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (685, '2022-09-12', 6838, 507, 93, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '25.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (686, '2022-09-12', 6005, 508, 93, 1939, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (687, '2022-09-12', 5464, 509, 94, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (714, '2022-09-12', 6332, 533, 95, 2456, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '61.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (715, '2022-09-12', 6333, 534, 95, 2361, '6.0000', '7.7000', '7.7000', '7.7000', '7.7000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (716, '2022-09-12', 5623, 535, 95, 2452, '6.0000', '18.9000', '18.9000', '18.9000', '18.9000', '98.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (717, '2022-09-12', 6078, 536, 95, 2352, '3.0000', '42.0000', '42.0000', '42.0000', '42.0000', '591.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (718, '2022-09-12', 6408, 537, 95, 2068, '10.0000', '4.6700', '4.6700', '4.6700', '4.6700', '97.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (719, '2022-09-12', 5640, 538, 95, 2030, '10.0000', '11.1000', '11.1000', '11.1000', '11.1000', '82.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (720, '2022-09-12', 6074, 539, 95, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1841.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (721, '2022-09-12', 5926, 540, 95, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '590.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (722, '2022-09-12', 6301, 541, 95, 1339, '10.0000', '10.5000', '10.5000', '10.5000', '10.5000', '74.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (723, '2022-09-12', 6651, 542, 95, 1127, '4.0000', '7.4400', '7.4400', '7.4400', '7.4400', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (724, '2022-09-12', 6816, 543, 95, NULL, '1.0000', '0.0000', '0.0000', '11.9000', '11.9000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (725, '2022-09-12', 6267, 544, 95, 1425, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '63.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (767, '2022-09-12', 6652, 585, 97, 1414, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '96.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (768, '2022-09-12', 6381, 586, 97, 1490, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '59.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (769, '2022-09-12', 5418, 587, 97, 2061, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '55.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (770, '2022-09-12', 6832, 588, 97, 1381, '5.0000', '2.6000', '2.6000', '2.6000', '2.6000', '398.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (771, '2022-09-12', 6807, 589, 97, 1282, '2.0000', '9.0000', '9.0000', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (772, '2022-09-12', 6197, 590, 97, 2500, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (773, '2022-09-12', 6117, 591, 97, 2028, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '15.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (774, '2022-09-12', 6059, 592, 97, NULL, '1.0000', '0.0000', '0.0000', '25.4000', '25.4000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (775, '2022-09-12', 6391, 593, 97, 762, '4.0000', '3.3200', '3.3200', '3.3200', '3.3200', '102.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (776, '2022-09-12', 6399, 594, 97, 2019, '7.0000', '6.1000', '6.1000', '6.1000', '6.1000', '233.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (777, '2022-09-12', 5677, 595, 98, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (778, '2022-09-12', 5427, 596, 98, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '148.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (779, '2022-09-12', 5898, 597, 98, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '320.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (780, '2022-09-12', 5640, 598, 98, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '80.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (781, '2022-09-12', 6106, 599, 98, 941, '6.0000', '1.5000', '1.5000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (782, '2022-09-12', 6213, 600, 98, 2096, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (783, '2022-09-12', 6213, 600, 98, 1148, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (784, '2022-09-12', 6529, 601, 98, 2006, '1.0000', '12.5000', '12.5000', '12.5000', '12.5000', '29.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (785, '2022-09-12', 5847, 602, 98, 2399, '-20.0000', '0.0000', '0.0000', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (786, '2022-09-12', 5847, 602, 98, NULL, '22.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-22.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (787, '2022-09-12', 5856, 603, 99, 2505, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '21.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (788, '2022-09-12', 6020, 604, 99, 2302, '2.0000', '16.3100', '16.3100', '16.3100', '16.3100', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (789, '2022-09-12', 6835, 605, 99, 326, '10.0000', '3.6000', '3.6000', '3.6000', '3.6000', '16.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (790, '2022-09-12', 6436, 606, 99, 1448, '5.0000', '1.9500', '1.9500', '1.9500', '1.9500', '23.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (791, '2022-09-12', 6345, 607, 99, 1922, '5.0000', '3.6300', '3.6300', '3.6300', '3.6300', '120.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (792, '2022-09-12', 5853, 608, 100, 2363, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '174.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (793, '2022-09-12', 6751, 609, 100, NULL, '1.0000', '0.0000', '0.0000', '35.0000', '35.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (794, '2022-09-12', 5991, 610, 100, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '19.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (795, '2022-09-12', 5418, 611, 100, 2061, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '53.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (796, '2022-09-12', 5973, 612, 100, 1398, '1.0000', '8.3000', '8.3000', '8.3000', '8.3000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (797, '2022-09-12', 5973, 613, 100, 1398, '3.0000', '8.3000', '8.3000', '8.3000', '8.3000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (798, '2022-09-12', 6221, 614, 100, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (799, '2022-09-12', 6675, 615, 100, 1391, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (800, '2022-09-12', 5640, 616, 100, 2030, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '77.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (801, '2022-09-12', 5641, 617, 100, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '111.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (802, '2022-09-12', 6032, 618, 100, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (803, '2022-09-12', 5677, 619, 100, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (804, '2022-09-12', 6007, 620, 100, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '119.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (805, '2022-09-12', 6838, 621, 100, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '24.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (806, '2022-09-12', 5926, 622, 100, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '587.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (807, '2022-09-12', 6817, 623, 100, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '73.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (808, '2022-09-12', 5654, 624, 100, 2031, '1.0000', '2.0000', '2.0000', '2.0000', '2.0000', '290.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (809, '2022-09-12', 6083, 625, 100, 2332, '1.0000', '2.7000', '2.7000', '2.7000', '2.7000', '839.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (810, '2022-09-12', 6419, 626, 101, 1137, '5.0000', '4.6700', '4.6700', '4.6700', '4.6700', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1566, '2022-09-12', 6864, 1337, 102, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4747.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1565, '2022-09-12', 6002, 1336, 102, 934, '3.0000', '6.8000', '6.8000', '6.8000', '6.8000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1564, '2022-09-12', 6508, 1335, 102, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1563, '2022-09-12', 6865, 1334, 102, 1026, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1562, '2022-09-12', 5975, 1333, 102, 2253, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1561, '2022-09-12', 5631, 1332, 102, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '115.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1560, '2022-09-12', 6171, 1331, 102, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1559, '2022-09-12', 5969, 1330, 102, 2252, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '215.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1558, '2022-09-12', 5886, 1329, 102, 927, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '130.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1557, '2022-09-12', 6225, 1328, 102, 2250, '6.0000', '2.8000', '2.8000', '2.8000', '2.8000', '290.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1556, '2022-09-12', 6074, 1327, 102, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1753.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1555, '2022-09-12', 6353, 1326, 102, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '370.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1554, '2022-09-12', 6304, 1325, 102, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '173.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1553, '2022-09-12', 6117, 1324, 102, 2028, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '12.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1552, '2022-09-12', 6667, 1323, 102, NULL, '10.0000', '0.0000', '0.0000', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1551, '2022-09-12', 6667, 1323, 102, 2440, '-6.0000', '0.0000', '0.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1567, '2022-09-12', 6863, 1338, 102, 1024, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1144, '2022-09-13', 5535, 943, 123, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1585.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (829, '2022-09-12', 6473, 644, 103, 548, '1.0000', '54.8000', '54.8000', '54.8000', '54.8000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (830, '2022-09-12', 5853, 645, 103, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (831, '2022-09-12', 6184, 646, 103, 945, '2.0000', '7.8500', '7.8500', '7.8500', '7.8500', '42.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (832, '2022-09-12', 5548, 647, 103, 2374, '2.0000', '2.9800', '2.9800', '2.9800', '2.9800', '298.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (833, '2022-09-12', 6042, 648, 103, 938, '1.0000', '25.9500', '25.9500', '25.9500', '25.9500', '54.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (834, '2022-09-12', 5957, 649, 103, NULL, '1.0000', '0.0000', '0.0000', '8.8200', '8.8200', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (835, '2022-09-12', 6202, 650, 103, 2504, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '31.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (836, '2022-09-12', 6133, 651, 103, 1322, '1.0000', '25.9500', '25.9500', '25.9500', '25.9500', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (837, '2022-09-12', 6340, 652, 103, 955, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (838, '2022-09-12', 6860, 653, 103, 1977, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '202.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (960, '2022-09-12', 6247, 771, 104, 2326, '1.0000', '78.0000', '78.0000', '78.0000', '78.0000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (959, '2022-09-12', 5948, 770, 104, 2075, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '495.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (958, '2022-09-12', 5926, 769, 104, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '582.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (961, '2022-09-12', 6037, 772, 104, 1315, '3.0000', '9.1000', '9.1000', '9.1000', '9.1000', '46.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (843, '2022-09-12', 5911, 658, 105, NULL, '3.0000', '0.0000', '0.0000', '23.1000', '23.1000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (844, '2022-09-12', 6205, 659, 105, 1886, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (845, '2022-09-12', 6277, 660, 105, 1147, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '13.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (846, '2022-09-12', 6345, 661, 106, 1922, '3.0000', '3.6300', '3.6300', '3.6300', '3.6300', '117.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (847, '2022-09-12', 5996, 662, 107, 2089, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (848, '2022-09-12', 6074, 663, 107, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1834.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (849, '2022-09-12', 6079, 664, 107, 939, '1.0000', '19.0000', '19.0000', '19.0000', '19.0000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1081, '2022-09-12', 6662, 887, 108, 1918, '10.0000', '4.6000', '4.6000', '4.6000', '4.6000', '600.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1080, '2022-09-12', 5757, 886, 108, 1115, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '109.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1079, '2022-09-12', 6205, 885, 108, 1886, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1078, '2022-09-12', 6409, 884, 108, 1422, '1.0000', '4.6700', '4.6700', '4.6700', '4.6700', '179.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1077, '2022-09-12', 6408, 883, 108, 2068, '2.0000', '4.6700', '4.6700', '4.6700', '4.6700', '95.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1076, '2022-09-12', 6121, 882, 108, 1907, '1.0000', '25.5000', '25.5000', '25.5000', '25.5000', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1075, '2022-09-12', 5629, 881, 108, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '139.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1074, '2022-09-12', 6379, 880, 108, NULL, '5.0000', '0.0000', '0.0000', '2.1000', '2.1000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1073, '2022-09-12', 5710, 879, 108, 1300, '6.0000', '4.0200', '4.0200', '4.0200', '4.0200', '189.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1072, '2022-09-12', 6730, 878, 108, 1454, '1.0000', '27.3000', '27.3000', '27.3000', '27.3000', '8.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1071, '2022-09-12', 6740, 877, 108, 2001, '1.0000', '36.3000', '36.3000', '36.3000', '36.3000', '10.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1070, '2022-09-12', 6137, 876, 108, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '148.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1069, '2022-09-12', 6316, 875, 108, 2359, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1068, '2022-09-12', 6594, 874, 108, 1119, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '51.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1067, '2022-09-12', 5975, 873, 108, 2253, '3.0000', '9.1500', '9.1500', '9.1500', '9.1500', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1066, '2022-09-12', 5624, 872, 108, 908, '3.0000', '20.1000', '20.1000', '20.1000', '20.1000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1065, '2022-09-12', 5592, 871, 108, 906, '4.0000', '7.1500', '7.1500', '7.1500', '7.1500', '66.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1064, '2022-09-12', 6671, 870, 108, 1996, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '55.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1063, '2022-09-12', 5969, 869, 108, 2252, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '221.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1062, '2022-09-12', 6703, 868, 108, 1069, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '20.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1061, '2022-09-12', 6394, 867, 108, 1446, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '26.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1060, '2022-09-12', 6478, 866, 108, 1281, '4.0000', '7.2000', '7.2000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1059, '2022-09-12', 6528, 865, 108, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '350.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1058, '2022-09-12', 5667, 864, 108, 910, '4.0000', '11.8000', '11.8000', '11.8000', '11.8000', '65.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1057, '2022-09-12', 6312, 863, 108, 1118, '4.0000', '7.5000', '7.5000', '7.5000', '7.5000', '24.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1056, '2022-09-12', 6538, 862, 108, 770, '3.0000', '10.3000', '10.3000', '10.3000', '10.3000', '35.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1055, '2022-09-12', 5588, 861, 108, 768, '3.0000', '14.9600', '14.9600', '14.9600', '14.9600', '139.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1054, '2022-09-12', 5587, 860, 108, 1981, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '117.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1053, '2022-09-12', 5779, 859, 108, 1468, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '65.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1052, '2022-09-12', 5911, 858, 108, NULL, '5.0000', '0.0000', '0.0000', '23.1000', '23.1000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1051, '2022-09-12', 5911, 858, 108, 2516, '-3.0000', '0.0000', '0.0000', '23.1000', '23.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1050, '2022-09-12', 6274, 857, 108, 1888, '2.0000', '19.8000', '19.8000', '19.8000', '19.8000', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1049, '2022-09-12', 6275, 856, 108, 2032, '4.0000', '4.7000', '4.7000', '4.7000', '4.7000', '327.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1048, '2022-09-12', 5770, 855, 108, 2329, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1047, '2022-09-12', 5648, 854, 108, NULL, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1046, '2022-09-12', 6281, 853, 108, 1336, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1045, '2022-09-12', 6333, 852, 108, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '129.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1044, '2022-09-12', 6332, 851, 108, 2487, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '61.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1043, '2022-09-12', 6508, 850, 108, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1042, '2022-09-12', 5676, 849, 108, 2018, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '117.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1041, '2022-09-12', 6276, 848, 108, 1157, '3.0000', '17.6000', '17.6000', '17.6000', '17.6000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1040, '2022-09-12', 5847, 847, 108, NULL, '26.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-26.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1039, '2022-09-12', 5847, 847, 108, 2399, '-22.0000', '0.0000', '0.0000', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1038, '2022-09-12', 6078, 846, 108, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '589.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1037, '2022-09-12', 5853, 845, 108, 2363, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '166.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1036, '2022-09-12', 5898, 844, 108, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '313.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1035, '2022-09-12', 5677, 843, 108, 2273, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1082, '2022-09-12', 6054, 888, 108, 1043, '1.0000', '30.0000', '30.0000', '39.4000', '39.4000', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1235, '2022-09-12', 5657, 1026, 109, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '349.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1234, '2022-09-12', 6007, 1025, 109, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '117.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1233, '2022-09-12', 5427, 1024, 109, 2365, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '145.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1232, '2022-09-12', 5898, 1023, 109, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '311.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1231, '2022-09-12', 5677, 1022, 109, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1230, '2022-09-12', 5710, 1021, 109, 1300, '5.0000', '4.0200', '4.0200', '4.0200', '4.0200', '189.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1229, '2022-09-12', 6777, 1020, 109, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '6.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1228, '2022-09-12', 5969, 1019, 109, 2252, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '216.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1227, '2022-09-12', 6674, 1018, 109, 1923, '3.0000', '4.4500', '4.4500', '4.4500', '4.4500', '317.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1226, '2022-09-12', 6851, 1017, 109, 2026, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '30.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1225, '2022-09-12', 5451, 1016, 109, 2387, '7.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1343.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1236, '2022-09-13', 6838, 1027, 129, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '23.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (957, '2022-09-12', 5715, 768, 110, 2389, '4.0000', '13.1400', '13.1400', '13.1400', '13.1400', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (982, '2022-09-12', 5452, 793, 111, 1030, '2.0000', '8.0000', '8.0000', '8.0000', '8.0000', '21.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (981, '2022-09-12', 6779, 792, 111, 1074, '1.0000', '46.0000', '46.0000', '46.0000', '46.0000', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (980, '2022-09-12', 6337, 791, 111, 2509, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '46.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (979, '2022-09-12', 6573, 790, 111, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (978, '2022-09-12', 6015, 789, 111, 568, '1.0000', '43.7000', '43.7000', '43.7000', '43.7000', '41.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (977, '2022-09-12', 6644, 788, 111, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '40.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (976, '2022-09-12', 6458, 787, 111, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '121.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (975, '2022-09-12', 5968, 786, 111, 1478, '3.0000', '10.7800', '10.7800', '10.7800', '10.7800', '23.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (974, '2022-09-12', 6037, 785, 111, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (983, '2022-09-12', 6075, 794, 111, 2043, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '403.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (972, '2022-09-12', 6224, 783, 112, 2385, '1.0000', '1.9000', '1.9000', '1.9000', '1.9000', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (973, '2022-09-12', 5969, 784, 112, 2252, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '221.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (984, '2022-09-12', 5947, 795, 113, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (985, '2022-09-12', 5472, 796, 114, 2400, '-3.0000', '0.0000', '0.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (986, '2022-09-12', 5472, 796, 114, NULL, '6.0000', '0.0000', '0.0000', '4.5000', '4.5000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1083, '2022-09-12', 5996, 889, 115, 2089, '1.0000', '2.0000', '2.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1084, '2022-09-12', 5996, 889, 115, 933, '19.0000', '2.0000', '2.0000', '2.0000', '2.0000', '727.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1085, '2022-09-12', 6074, 890, 116, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1824.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1086, '2022-09-12', 5792, 891, 116, 1978, '2.0000', '30.2000', '30.2000', '30.2000', '30.2000', '75.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1087, '2022-09-12', 6301, 892, 116, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '72.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1088, '2022-09-12', 5978, 893, 116, NULL, '1.0000', '21.3000', '21.3000', '21.3000', '21.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1089, '2022-09-12', 5751, 894, 116, 1112, '5.0000', '10.8000', '10.8000', '10.8000', '10.8000', '154.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1090, '2022-09-12', 5968, 895, 116, 1478, '2.0000', '10.7800', '10.7800', '10.7800', '10.7800', '21.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1091, '2022-09-12', 6246, 896, 117, 535, '2.0000', '99.3000', '99.3000', '99.3000', '99.3000', '11.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1092, '2022-09-12', 6870, 897, 118, 1423, '1.0000', '37.8200', '37.8200', '39.8200', '39.8200', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1093, '2022-09-12', 6590, 898, 119, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '76.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1094, '2022-09-12', 6218, 899, 119, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1095, '2022-09-12', 5593, 900, 119, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1121, '2022-09-13', 6379, 923, 120, 2518, '-5.0000', '0.0000', '0.0000', '2.1000', '2.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1122, '2022-09-13', 6379, 923, 120, NULL, '10.0000', '0.0000', '0.0000', '2.1000', '2.1000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1123, '2022-09-13', 5809, 924, 120, 390, '1.0000', '15.1000', '15.1000', '15.1000', '15.1000', '43.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1124, '2022-09-13', 5715, 925, 121, 2389, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '18.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1125, '2022-09-13', 5472, 926, 122, 2400, '-6.0000', '0.0000', '0.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1126, '2022-09-13', 5472, 926, 122, NULL, '7.0000', '0.0000', '0.0000', '4.5000', '4.5000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1145, '2022-09-13', 6288, 944, 123, 1416, '1.0000', '56.0000', '56.0000', '56.0000', '56.0000', '91.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1146, '2022-09-13', 6053, 945, 123, 2331, '4.0000', '14.9000', '14.9000', '14.9000', '14.9000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1147, '2022-09-13', 5623, 946, 123, 2483, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '99.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1148, '2022-09-13', 6445, 947, 123, 1985, '1.0000', '21.8000', '21.8000', '21.8000', '21.8000', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1149, '2022-09-13', 5948, 948, 123, 2075, '10.0000', '6.0000', '6.0000', '7.3000', '7.3000', '485.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1150, '2022-09-13', 5487, 949, 123, 507, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1151, '2022-09-13', 5956, 950, 123, 1144, '2.0000', '17.8400', '17.8400', '17.8400', '17.8400', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1152, '2022-09-13', 5729, 951, 123, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1153, '2022-09-13', 6739, 952, 123, 1407, '5.0000', '5.6000', '5.6000', '5.6000', '5.6000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1154, '2022-09-13', 6234, 953, 123, 1098, '1.0000', '33.3000', '33.3000', '33.3000', '33.3000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1155, '2022-09-13', 6287, 954, 123, 2110, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '23.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1156, '2022-09-13', 5968, 955, 123, 1478, '3.0000', '10.7800', '10.7800', '10.7800', '10.7800', '18.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1157, '2022-09-13', 6611, 956, 123, 1971, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1158, '2022-09-13', 6611, 956, 123, 1096, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1159, '2022-09-13', 5596, 957, 123, 2256, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '98.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1160, '2022-09-13', 6197, 958, 124, 2500, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '8.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1161, '2022-09-13', 5642, 959, 125, 2320, '1.0000', '24.4300', '24.4300', '24.4300', '24.4300', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1162, '2022-09-13', 6455, 960, 125, 2074, '1.0000', '19.5800', '19.5800', '19.5800', '19.5800', '59.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1163, '2022-09-13', 6273, 961, 125, 2065, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '29.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1164, '2022-09-13', 5956, 962, 125, 1144, '1.0000', '17.8400', '17.8400', '17.8400', '17.8400', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1165, '2022-09-13', 6225, 963, 125, 2250, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '290.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1166, '2022-09-13', 5977, 964, 125, 2360, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '113.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1167, '2022-09-13', 6214, 965, 125, 1934, '1.0000', '2.8000', '2.8000', '2.8000', '2.8000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1168, '2022-09-13', 6214, 965, 125, 750, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '151.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1169, '2022-09-13', 6528, 966, 125, 1899, '3.0000', '5.9800', '5.9800', '5.9800', '5.9800', '347.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1170, '2022-09-13', 6675, 967, 125, 1391, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1171, '2022-09-13', 6078, 968, 125, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '588.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1172, '2022-09-13', 6339, 969, 125, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1173, '2022-09-13', 5601, 970, 125, 2419, '-5.0000', '0.0000', '0.0000', '4.3000', '4.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1174, '2022-09-13', 5601, 970, 125, NULL, '7.0000', '0.0000', '0.0000', '4.3000', '4.3000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1175, '2022-09-13', 5988, 971, 125, 2485, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '59.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1176, '2022-09-13', 5677, 972, 125, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1177, '2022-09-13', 5886, 973, 125, 927, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '130.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1178, '2022-09-13', 6844, 974, 125, 2084, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '22.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1179, '2022-09-13', 6652, 975, 126, 1414, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '93.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1180, '2022-09-13', 6074, 976, 127, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1814.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1181, '2022-09-13', 6675, 977, 127, 1391, '7.0000', '8.5000', '8.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1182, '2022-09-13', 6675, 977, 127, NULL, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1183, '2022-09-13', 5601, 978, 127, 2419, '-7.0000', '0.0000', '0.0000', '4.3000', '4.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1184, '2022-09-13', 5601, 978, 127, NULL, '12.0000', '0.0000', '0.0000', '4.3000', '4.3000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1185, '2022-09-13', 5418, 979, 127, 2061, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '48.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1186, '2022-09-13', 6275, 980, 127, 2032, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '322.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1187, '2022-09-13', 6274, 981, 127, 1888, '1.0000', '19.8000', '19.8000', '19.8000', '19.8000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1188, '2022-09-13', 5799, 982, 127, 2066, '2.0000', '20.1300', '20.1300', '20.1300', '20.1300', '198.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1189, '2022-09-13', 6571, 983, 127, 1956, '2.0000', '15.4000', '15.4000', '15.4000', '15.4000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1190, '2022-09-13', 5592, 984, 127, 906, '6.0000', '7.1500', '7.1500', '7.1500', '7.1500', '60.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1191, '2022-09-13', 5969, 985, 127, 2252, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '216.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1192, '2022-09-13', 5586, 986, 127, 2444, '-2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1193, '2022-09-13', 5586, 986, 127, NULL, '4.0000', '28.9000', '28.9000', '28.9000', '28.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1194, '2022-09-13', 5676, 987, 127, 2018, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '115.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1195, '2022-09-13', 6399, 988, 127, 2019, '10.0000', '6.1000', '6.1000', '6.1000', '6.1000', '223.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1196, '2022-09-13', 5949, 989, 127, 1311, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '949.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1197, '2022-09-13', 6316, 990, 128, 2359, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1198, '2022-09-13', 5623, 991, 128, 2483, '10.0000', '18.9000', '18.9000', '18.9000', '18.9000', '89.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1199, '2022-09-13', 6074, 992, 128, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1794.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1200, '2022-09-13', 5853, 993, 128, 2363, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '163.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1201, '2022-09-13', 6010, 994, 128, 2362, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '164.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1202, '2022-09-13', 5677, 995, 128, 2273, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1203, '2022-09-13', 5898, 996, 128, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '311.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1204, '2022-09-13', 5586, 997, 128, 2444, '-4.0000', '28.9000', '28.9000', '28.9000', '28.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1205, '2022-09-13', 5586, 997, 128, NULL, '7.0000', '28.9000', '28.9000', '28.9000', '28.9000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1206, '2022-09-13', 6302, 998, 128, 2116, '4.0000', '23.0000', '23.0000', '23.0000', '23.0000', '51.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1207, '2022-09-13', 5799, 999, 128, 2066, '4.0000', '20.1300', '20.1300', '20.1300', '20.1300', '194.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1208, '2022-09-13', 6778, 1000, 128, 2052, '4.0000', '19.3400', '19.3400', '19.3400', '19.3400', '171.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1209, '2022-09-13', 6543, 1001, 128, 2062, '4.0000', '11.2000', '11.2000', '11.2000', '11.2000', '24.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1210, '2022-09-13', 6024, 1002, 128, 937, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '34.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1211, '2022-09-13', 6339, 1003, 128, 954, '2.0000', '60.3000', '60.3000', '60.3000', '60.3000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1212, '2022-09-13', 6118, 1004, 128, 647, '1.0000', '172.8000', '172.8000', '172.8000', '172.8000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1213, '2022-09-13', 6075, 1005, 128, 2043, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '379.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1214, '2022-09-13', 6076, 1006, 128, 1997, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '595.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1215, '2022-09-13', 6077, 1007, 128, NULL, '4.0000', '0.0000', '0.0000', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1216, '2022-09-13', 6863, 1008, 128, 1024, '4.0000', '3.5000', '3.5000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1217, '2022-09-13', 6865, 1009, 128, 1026, '4.0000', '3.5000', '3.5000', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1218, '2022-09-13', 6866, 1010, 128, NULL, '4.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1219, '2022-09-13', 6082, 1011, 128, 1154, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1220, '2022-09-13', 5629, 1012, 128, 1429, '10.0000', '8.4000', '8.4000', '8.4000', '8.4000', '129.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1221, '2022-09-13', 6744, 1013, 128, 1145, '3.0000', '9.9600', '9.9600', '9.9600', '9.9600', '17.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1222, '2022-09-13', 6083, 1014, 128, 2332, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '829.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1223, '2022-09-13', 6692, 1015, 128, 2446, '-5.0000', '0.0000', '0.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1224, '2022-09-13', 6692, 1015, 128, NULL, '15.0000', '0.0000', '0.0000', '4.0000', '4.0000', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1237, '2022-09-13', 5956, 1028, 130, 930, '4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1238, '2022-09-13', 6201, 1029, 130, 2315, '4.0000', '6.9000', '6.9000', '6.9000', '6.9000', '56.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1239, '2022-09-13', 6642, 1030, 130, 2445, '-4.0000', '0.0000', '0.0000', '5.9000', '5.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1240, '2022-09-13', 6642, 1030, 130, NULL, '9.0000', '0.0000', '0.0000', '5.9000', '5.9000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1241, '2022-09-13', 5770, 1031, 130, 2329, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1242, '2022-09-13', 6353, 1032, 131, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '385.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1243, '2022-09-13', 5640, 1033, 131, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '76.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1244, '2022-09-13', 6074, 1034, 132, 2303, '8.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1786.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1245, '2022-09-13', 5677, 1035, 132, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1246, '2022-09-13', 6218, 1036, 133, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1247, '2022-09-13', 6071, 1037, 134, 1911, '4.0000', '19.6000', '19.6000', '21.6000', '21.6000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1248, '2022-09-13', 6818, 1038, 134, 2027, '28.0000', '3.5000', '3.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1249, '2022-09-13', 6818, 1038, 134, 1369, '30.0000', '3.5000', '3.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1250, '2022-09-13', 6818, 1038, 134, NULL, '32.0000', '3.5000', '3.5000', '3.5000', '3.5000', '-32.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1251, '2022-09-13', 6652, 1039, 134, 1414, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '90.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1252, '2022-09-13', 6373, 1040, 134, 2294, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1253, '2022-09-13', 6684, 1041, 134, 2129, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '29.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1254, '2022-09-13', 6820, 1042, 134, 1458, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1329, '2022-09-13', 5418, 1110, 135, 2061, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '43.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1328, '2022-09-13', 6446, 1109, 135, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '140.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1327, '2022-09-13', 5995, 1108, 135, 524, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '45.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1326, '2022-09-13', 6860, 1107, 135, 1977, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '200.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1325, '2022-09-13', 5849, 1106, 135, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '138.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1324, '2022-09-13', 5631, 1105, 135, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '116.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1323, '2022-09-13', 5440, 1104, 135, 2686, '6.0000', '3.4100', '3.4100', '3.4100', '3.4100', '54.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1322, '2022-09-13', 6074, 1103, 135, 2303, '8.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1778.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1321, '2022-09-13', 6232, 1102, 135, 1424, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '91.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1320, '2022-09-13', 5792, 1101, 135, 1978, '1.0000', '30.2000', '30.2000', '30.2000', '30.2000', '74.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1319, '2022-09-13', 5581, 1100, 135, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '178.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1318, '2022-09-13', 5729, 1099, 135, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '106.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1330, '2022-09-13', 6820, 1111, 135, 1458, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1268, '2022-09-13', 6218, 1056, 136, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1269, '2022-09-13', 5947, 1057, 136, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1270, '2022-09-13', 5640, 1058, 137, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '74.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1271, '2022-09-13', 5906, 1059, 137, 2118, '1.0000', '15.8200', '15.8200', '15.8200', '15.8200', '25.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1272, '2022-09-13', 5710, 1060, 137, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '187.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1273, '2022-09-13', 6353, 1061, 137, 2339, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '383.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1274, '2022-09-13', 6872, 1062, 137, NULL, '3.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1275, '2022-09-13', 6221, 1063, 138, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1276, '2022-09-13', 6218, 1064, 139, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1296, '2022-09-13', 6605, 1081, 140, 2270, '26.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1297, '2022-09-13', 6605, 1081, 140, 2119, '24.0000', '5.8000', '5.8000', '5.8000', '5.8000', '156.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1316, '2022-09-13', 6745, 1097, 141, 1362, '3.0000', '12.9800', '12.9800', '12.9800', '12.9800', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1315, '2022-09-13', 6647, 1096, 141, 1353, '3.0000', '8.9000', '8.9000', '8.9000', '8.9000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1314, '2022-09-13', 6845, 1095, 141, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1313, '2022-09-13', 5472, 1094, 141, NULL, '11.0000', '0.0000', '0.0000', '4.5000', '4.5000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1312, '2022-09-13', 5472, 1094, 141, 2400, '-7.0000', '0.0000', '0.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1311, '2022-09-13', 5847, 1093, 141, NULL, '34.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-34.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1310, '2022-09-13', 5847, 1093, 141, 2399, '-26.0000', '0.0000', '0.0000', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1309, '2022-09-13', 6149, 1092, 141, 1949, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1308, '2022-09-13', 5926, 1091, 141, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '580.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1307, '2022-09-13', 6872, 1090, 141, NULL, '9.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1306, '2022-09-13', 6872, 1090, 141, 2598, '-3.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1305, '2022-09-13', 6399, 1089, 141, 2019, '10.0000', '6.1000', '6.1000', '6.1000', '6.1000', '213.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1304, '2022-09-13', 5949, 1088, 141, 1311, '12.0000', '5.2000', '5.2000', '5.2000', '5.2000', '935.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1303, '2022-09-13', 6007, 1087, 141, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '107.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1302, '2022-09-13', 5589, 1086, 141, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '178.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1301, '2022-09-13', 5986, 1085, 141, 2579, '2.0000', '13.7000', '13.7000', '13.7000', '13.7000', '34.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1317, '2022-09-13', 6843, 1098, 141, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1298, '2022-09-13', 5949, 1082, 140, 1311, '2.0000', '5.2000', '5.2000', '9.0000', '9.0000', '935.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1299, '2022-09-13', 6829, 1083, 140, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '17.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1300, '2022-09-13', 5527, 1084, 140, 1464, '1.0000', '27.0000', '27.0000', '27.0000', '27.0000', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1331, '2022-09-13', 6666, 1112, 142, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1332, '2022-09-13', 6605, 1113, 143, 2119, '6.0000', '5.8000', '5.8000', '5.8000', '5.8000', '150.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1333, '2022-09-13', 5640, 1114, 143, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '72.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1334, '2022-09-13', 5532, 1115, 144, 2005, '1.0000', '56.1000', '56.1000', '56.1000', '56.1000', '43.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1335, '2022-09-13', 5991, 1116, 145, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1336, '2022-09-13', 6220, 1117, 145, 2811, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1337, '2022-09-13', 6083, 1118, 145, 2332, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '827.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1338, '2022-09-13', 5640, 1119, 145, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '71.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1339, '2022-09-13', 5969, 1120, 145, 2252, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '215.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1340, '2022-09-13', 5898, 1121, 145, 2350, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '310.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1341, '2022-09-13', 5677, 1122, 145, 2273, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1342, '2022-09-13', 5632, 1123, 145, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '119.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1343, '2022-09-13', 6675, 1124, 145, 2520, '-3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1344, '2022-09-13', 6675, 1124, 145, NULL, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1345, '2022-09-13', 6353, 1125, 145, 2339, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '380.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1346, '2022-09-13', 5451, 1126, 145, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1347, '2022-09-13', 5949, 1127, 145, 1311, '1.0000', '5.2000', '5.2000', '5.2000', '5.2000', '934.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1348, '2022-09-13', 5584, 1128, 145, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '12.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1349, '2022-09-13', 6375, 1129, 145, 2304, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '179.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1350, '2022-09-13', 5440, 1130, 145, 2809, '1.0000', '3.4100', '3.4100', '3.4100', '3.4100', '53.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1351, '2022-09-13', 5714, 1131, 145, 2280, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1352, '2022-09-13', 5418, 1132, 145, 2061, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '41.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1367, '2022-09-12', 6508, 1146, 81, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1406, '2022-09-13', 5988, 1183, 146, 2558, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '57.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1405, '2022-09-13', 6605, 1182, 146, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '138.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1404, '2022-09-13', 6205, 1181, 146, 1886, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1403, '2022-09-13', 5751, 1180, 146, 1112, '5.0000', '10.8000', '10.8000', '10.8000', '10.8000', '149.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1402, '2022-09-13', 6455, 1179, 146, 2074, '2.0000', '19.5800', '19.5800', '19.5800', '19.5800', '57.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1401, '2022-09-13', 5991, 1178, 146, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1400, '2022-09-13', 5640, 1177, 146, 2030, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '65.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1399, '2022-09-13', 5451, 1176, 146, 2387, '10.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1331.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1398, '2022-09-13', 5532, 1175, 146, 2005, '3.0000', '56.1000', '56.1000', '56.1000', '56.1000', '40.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1397, '2022-09-13', 6095, 1174, 146, NULL, '13.0000', '0.0000', '0.0000', '8.3200', '8.3200', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1396, '2022-09-13', 6095, 1174, 146, 2447, '-3.0000', '0.0000', '0.0000', '8.3200', '8.3200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1395, '2022-09-13', 5740, 1173, 146, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '546.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1394, '2022-09-13', 5731, 1172, 146, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '287.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1407, '2022-09-13', 6691, 1184, 146, 1994, '10.0000', '6.5000', '6.5000', '6.5000', '6.5000', '50.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1382, '2022-09-13', 6595, 1160, 147, 2565, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '84.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1383, '2022-09-13', 6337, 1161, 147, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '45.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1384, '2022-09-13', 6082, 1162, 147, 1154, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1385, '2022-09-13', 6605, 1163, 147, 2119, '2.0000', '5.8000', '5.8000', '5.8000', '5.8000', '138.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1386, '2022-09-13', 6365, 1164, 148, 2038, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '157.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1387, '2022-09-13', 6228, 1165, 149, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1388, '2022-09-13', 5775, 1166, 149, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1389, '2022-09-13', 6221, 1167, 149, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1390, '2022-09-13', 6696, 1168, 149, 2282, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '398.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1391, '2022-09-13', 6117, 1169, 149, 2028, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '12.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1392, '2022-09-13', 5640, 1170, 149, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '65.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1393, '2022-09-13', 5710, 1171, 149, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '186.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1408, '2022-09-13', 6075, 1185, 146, 2043, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '369.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1409, '2022-09-13', 6076, 1186, 146, 1997, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '585.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1412, '2022-09-13', 6765, 1189, 150, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '55.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1413, '2022-09-13', 6074, 1190, 150, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1758.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1414, '2022-09-13', 6220, 1191, 150, 3000, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '32.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1415, '2022-09-13', 5853, 1192, 150, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '161.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1416, '2022-09-13', 5586, 1193, 151, 2444, '-7.0000', '28.9000', '28.9000', '28.9000', '28.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1417, '2022-09-13', 5586, 1193, 151, NULL, '13.0000', '28.9000', '28.9000', '28.9000', '28.9000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1418, '2022-09-13', 5847, 1194, 151, 2399, '-34.0000', '0.0000', '0.0000', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1419, '2022-09-13', 5847, 1194, 151, NULL, '44.0000', '0.0000', '0.0000', '6.1000', '6.1000', '-44.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1420, '2022-09-13', 5790, 1195, 152, 518, '1.0000', '149.2800', '149.2800', '149.2800', '149.2800', '19.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1421, '2022-09-13', 6509, 1196, 152, 2077, '3.0000', '13.2500', '13.2500', '13.2500', '13.2500', '117.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1422, '2022-09-13', 6327, 1197, 152, 649, '1.0000', '28.6000', '28.6000', '28.6000', '28.6000', '28.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1423, '2022-09-13', 5733, 1198, 152, 3019, '2.0000', '20.0000', '20.0000', '20.0000', '20.0000', '49.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1424, '2022-09-13', 6777, 1199, 152, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '5.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1425, '2022-09-13', 5775, 1200, 152, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '8.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1426, '2022-09-13', 5585, 1201, 152, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '58.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1427, '2022-09-13', 6371, 1202, 152, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1428, '2022-09-13', 6865, 1203, 152, 1026, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1429, '2022-09-13', 6077, 1204, 152, 2521, '-4.0000', '0.0000', '0.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1430, '2022-09-13', 6077, 1204, 152, NULL, '7.0000', '0.0000', '0.0000', '4.0000', '4.0000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1431, '2022-09-13', 5453, 1205, 152, 1397, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1432, '2022-09-13', 6807, 1206, 152, 1282, '2.0000', '9.0000', '9.0000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1433, '2022-09-13', 6375, 1207, 152, 3065, '4.0000', '3.5200', '3.5200', '3.5200', '3.5200', '56.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1434, '2022-09-13', 6738, 1208, 152, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '180.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1435, '2022-09-13', 5617, 1209, 152, 1843, '2.0000', '39.3000', '39.3000', '39.3000', '39.3000', '33.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1436, '2022-09-13', 6823, 1210, 152, 1488, '2.0000', '10.7800', '10.7800', '10.7800', '10.7800', '84.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1437, '2022-09-13', 6850, 1211, 152, 1292, '5.0000', '2.8900', '2.8900', '2.8900', '2.8900', '35.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1438, '2022-09-13', 5948, 1212, 152, 2075, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '480.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1439, '2022-09-13', 6306, 1213, 152, 1375, '3.0000', '6.2300', '6.2300', '6.2300', '6.2300', '34.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1440, '2022-09-13', 5535, 1214, 152, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1575.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1441, '2022-09-13', 5580, 1215, 152, 2263, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1442, '2022-09-13', 6329, 1216, 152, 1471, '1.0000', '16.9000', '16.9000', '16.9000', '16.9000', '1.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1443, '2022-09-13', 5986, 1217, 152, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '32.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1444, '2022-09-13', 6242, 1218, 152, 534, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '75.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1445, '2022-09-13', 6110, 1219, 152, 1116, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '15.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1446, '2022-09-13', 6451, 1220, 152, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '19.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1447, '2022-09-13', 6288, 1221, 152, 1416, '1.0000', '56.0000', '56.0000', '56.0000', '56.0000', '90.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1448, '2022-09-13', 5640, 1222, 152, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '197.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1449, '2022-09-13', 6078, 1223, 152, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '587.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1450, '2022-09-13', 6214, 1224, 152, 750, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '147.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1451, '2022-09-13', 6595, 1225, 152, 2565, '3.0000', '7.9000', '7.9000', '7.9000', '7.9000', '81.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1452, '2022-09-13', 6378, 1226, 152, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '89.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1453, '2022-09-13', 6864, 1227, 152, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4749.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1454, '2022-09-13', 6863, 1228, 152, 1024, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1455, '2022-09-13', 6297, 1229, 153, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '69.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1456, '2022-09-13', 6234, 1230, 154, 1098, '1.0000', '33.3000', '33.3000', '33.3000', '33.3000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1457, '2022-09-13', 5464, 1231, 154, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1458, '2022-09-13', 6809, 1232, 154, 1299, '4.0000', '13.8000', '13.8000', '13.8000', '13.8000', '75.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1459, '2022-09-13', 6326, 1233, 154, 1462, '3.0000', '14.0000', '14.0000', '14.0000', '14.0000', '67.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1460, '2022-09-13', 5527, 1234, 154, 1464, '3.0000', '27.0000', '27.0000', '27.0000', '27.0000', '15.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1461, '2022-09-13', 6193, 1235, 154, 2115, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '37.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1462, '2022-09-13', 6035, 1236, 154, 525, '3.0000', '7.9900', '7.9900', '7.9900', '7.9900', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1463, '2022-09-13', 6394, 1237, 154, 1446, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1464, '2022-09-13', 6245, 1238, 154, 2111, '10.0000', '2.9900', '2.9900', '2.9900', '2.9900', '110.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1465, '2022-09-13', 5765, 1239, 154, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1466, '2022-09-13', 5792, 1240, 154, 1978, '2.0000', '30.2000', '30.2000', '30.2000', '30.2000', '72.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1467, '2022-09-13', 6369, 1241, 154, 1278, '1.0000', '11.9800', '11.9800', '11.9800', '11.9800', '32.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1468, '2022-09-13', 5805, 1242, 154, 1305, '2.0000', '9.0000', '9.0000', '9.0000', '9.0000', '36.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1469, '2022-09-13', 6781, 1243, 154, 1367, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1470, '2022-09-13', 6613, 1244, 154, 2300, '1.0000', '45.6000', '45.6000', '45.6000', '45.6000', '127.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1471, '2022-09-13', 6473, 1245, 154, 548, '1.0000', '54.8000', '54.8000', '54.8000', '54.8000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1472, '2022-09-13', 6534, 1246, 154, 1061, '1.0000', '142.0500', '142.0500', '142.0500', '142.0500', '34.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1473, '2022-09-13', 6702, 1247, 154, 1068, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '25.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1474, '2022-09-13', 6340, 1248, 154, 955, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1475, '2022-09-13', 6294, 1249, 154, 1412, '3.0000', '23.0000', '23.0000', '23.0000', '23.0000', '78.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1476, '2022-09-13', 5849, 1250, 154, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '135.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1477, '2022-09-13', 5986, 1251, 154, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '31.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1478, '2022-09-13', 5447, 1252, 154, 3034, '5.0000', '19.8000', '19.8000', '19.8000', '19.8000', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1479, '2022-09-13', 5956, 1253, 154, 930, '3.0000', '17.8400', '17.8400', '17.8400', '17.8400', '19.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1480, '2022-09-13', 6337, 1254, 154, 2582, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '42.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1481, '2022-09-13', 6778, 1255, 154, 2052, '3.0000', '19.3400', '19.3400', '19.3400', '19.3400', '168.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1482, '2022-09-13', 5799, 1256, 154, 2066, '3.0000', '20.1300', '20.1300', '20.1300', '20.1300', '191.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1483, '2022-09-13', 6220, 1257, 154, 3000, '6.0000', '5.0000', '5.0000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1484, '2022-09-13', 6877, 1258, 154, 3091, '2.0000', '12.6000', '12.6000', '14.0000', '14.0000', '70.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1485, '2022-09-13', 6559, 1259, 154, 984, '1.0000', '66.2000', '66.2000', '66.2000', '66.2000', '26.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1486, '2022-09-13', 6010, 1260, 154, 2362, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1487, '2022-09-13', 5898, 1261, 154, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '306.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1488, '2022-09-13', 5540, 1262, 154, 1280, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '66.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1489, '2022-09-13', 5629, 1263, 154, 1429, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '125.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1490, '2022-09-13', 6317, 1264, 154, NULL, '4.0000', '0.0000', '0.0000', '19.1900', '19.1900', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1491, '2022-09-13', 5733, 1265, 154, 3019, '2.0000', '20.0000', '20.0000', '20.0000', '20.0000', '47.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1492, '2022-09-13', 5734, 1266, 154, 3020, '2.0000', '19.4000', '19.4000', '19.4000', '19.4000', '18.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1493, '2022-09-13', 5586, 1267, 154, 3084, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '288.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1494, '2022-09-13', 5676, 1268, 154, 2018, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '113.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1495, '2022-09-13', 6444, 1269, 155, 581, '1.0000', '25.8000', '25.8000', '25.8000', '25.8000', '7.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1496, '2022-09-13', 6137, 1270, 156, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '147.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1497, '2022-09-13', 6764, 1271, 157, 1417, '10.0000', '6.3000', '6.3000', '6.3000', '6.3000', '85.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1498, '2022-09-13', 6812, 1272, 157, 2036, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '22.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1499, '2022-09-13', 6401, 1273, 157, 1056, '1.0000', '37.3200', '37.3200', '37.3200', '37.3200', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1500, '2022-09-13', 6353, 1274, 157, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '370.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1501, '2022-09-13', 6702, 1275, 157, 1068, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '21.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1502, '2022-09-13', 6571, 1276, 157, 1956, '1.0000', '15.4000', '15.4000', '15.4000', '15.4000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1503, '2022-09-13', 5616, 1277, 157, 2512, '-5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1504, '2022-09-13', 5616, 1277, 157, NULL, '15.0000', '7.0000', '7.0000', '7.0000', '7.0000', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1505, '2022-09-13', 5926, 1278, 158, 2072, '1.0000', '10.9000', '10.9000', '10.9000', '10.9000', '579.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1506, '2022-09-13', 5640, 1279, 158, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '195.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1507, '2022-09-13', 6205, 1280, 158, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '215.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1508, '2022-09-13', 5629, 1281, 158, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '122.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1509, '2022-09-13', 6075, 1282, 158, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2075.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1510, '2022-09-13', 6860, 1283, 158, 1977, '4.0000', '16.8000', '16.8000', '16.8000', '16.8000', '196.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1511, '2022-09-13', 5640, 1284, 159, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '194.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1512, '2022-09-13', 5926, 1285, 159, 2072, '9.0000', '10.9000', '10.9000', '10.9000', '10.9000', '570.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1513, '2022-09-13', 5740, 1286, 160, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '543.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1514, '2022-09-13', 5731, 1287, 160, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '284.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1515, '2022-09-13', 5553, 1288, 161, NULL, '1.0000', '32.8000', '32.8000', '32.8000', '32.8000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1516, '2022-09-13', 5631, 1289, 162, 1992, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '115.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1517, '2022-09-13', 5632, 1290, 162, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '118.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1518, '2022-09-13', 6074, 1291, 162, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1753.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1519, '2022-09-13', 6143, 1292, 162, 1121, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '73.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1520, '2022-09-13', 5640, 1293, 162, 3066, '6.0000', '11.1000', '11.1000', '11.1000', '11.1000', '188.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1521, '2022-09-13', 5440, 1294, 162, 2998, '6.0000', '3.4100', '3.4100', '3.4100', '3.4100', '47.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1522, '2022-09-13', 6144, 1295, 162, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '20.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1523, '2022-09-13', 5906, 1296, 162, 2118, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '20.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1524, '2022-09-13', 5535, 1297, 162, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1565.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1525, '2022-09-13', 6082, 1298, 162, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '235.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1526, '2022-09-13', 5865, 1299, 162, 3052, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '395.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1527, '2022-09-13', 5853, 1300, 162, 2363, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '158.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1528, '2022-09-13', 5898, 1301, 162, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '303.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1529, '2022-09-13', 5714, 1302, 162, 2280, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1530, '2022-09-13', 6601, 1303, 162, 1931, '1.0000', '44.6000', '44.6000', '44.6000', '44.6000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1531, '2022-09-13', 5986, 1304, 162, 2579, '3.0000', '13.7000', '13.7000', '13.7000', '13.7000', '28.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1532, '2022-09-13', 5730, 1305, 162, 3005, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '115.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1533, '2022-09-13', 6434, 1306, 162, 1895, '5.0000', '5.2000', '5.2000', '5.2000', '5.2000', '133.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1534, '2022-09-13', 5487, 1307, 162, 507, '1.0000', '18.9000', '18.9000', '18.9000', '18.9000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1535, '2022-09-13', 6813, 1308, 162, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '59.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1536, '2022-09-13', 6220, 1309, 162, 3000, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1537, '2022-09-13', 5548, 1310, 162, 2374, '5.0000', '2.9800', '2.9800', '2.9800', '2.9800', '293.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1538, '2022-09-13', 6273, 1311, 163, 3033, '4.0000', '26.0000', '26.0000', '26.0000', '26.0000', '146.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1539, '2022-09-13', 6860, 1312, 164, 1977, '2.0000', '16.8000', '16.8000', '18.0000', '18.0000', '194.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1540, '2022-09-14', 6697, 1313, 165, 1357, '1.0000', '10.1000', '10.1000', '10.1000', '10.1000', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1541, '2022-09-14', 6352, 1314, 165, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '273.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1542, '2022-09-14', 5640, 1315, 165, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '186.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1543, '2022-09-14', 6696, 1316, 165, 2282, '6.0000', '4.2000', '4.2000', '4.2000', '4.2000', '392.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1544, '2022-09-14', 6379, 1317, 165, 2518, '-10.0000', '0.0000', '0.0000', '2.1000', '2.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1545, '2022-09-14', 6379, 1317, 165, NULL, '15.0000', '0.0000', '0.0000', '2.1000', '2.1000', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1546, '2022-09-14', 5906, 1318, 165, 2118, '1.0000', '15.8200', '15.8200', '15.8200', '15.8200', '19.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1547, '2022-09-14', 6590, 1319, 165, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '75.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1548, '2022-09-14', 6007, 1320, 165, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '106.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1549, '2022-09-14', 6838, 1321, 165, 3008, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1550, '2022-09-14', 6218, 1322, 166, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1781, '2022-09-14', 6316, 1557, 167, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1780, '2022-09-14', 6558, 1556, 167, 983, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1779, '2022-09-14', 6074, 1555, 167, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1726.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1778, '2022-09-14', 5792, 1554, 167, 1978, '2.0000', '30.2000', '30.2000', '30.2000', '30.2000', '65.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1777, '2022-09-14', 6823, 1553, 167, 1488, '5.0000', '10.7800', '10.7800', '10.7800', '10.7800', '79.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1776, '2022-09-14', 5419, 1552, 167, 2128, '2.0000', '14.9000', '14.9000', '14.9000', '14.9000', '59.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1775, '2022-09-14', 5540, 1551, 167, 1280, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '64.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1774, '2022-09-14', 6075, 1549, 167, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2051.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1773, '2022-09-14', 6456, 1548, 167, 1896, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1772, '2022-09-14', 6114, 1547, 167, 2297, '4.0000', '13.0000', '13.0000', '13.0000', '13.0000', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1771, '2022-09-14', 5956, 1546, 167, 930, '4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1770, '2022-09-14', 5640, 1545, 167, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '168.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1769, '2022-09-14', 5641, 1544, 167, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '107.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1768, '2022-09-14', 5847, 1543, 167, 3136, '10.0000', '3.1651', '3.1651', '6.1000', '6.1000', '549.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1767, '2022-09-14', 5586, 1542, 167, 3135, '3.0000', '28.9000', '28.9000', '28.9000', '28.9000', '285.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1766, '2022-09-14', 6121, 1541, 167, 1907, '1.0000', '25.5000', '25.5000', '25.5000', '25.5000', '24.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1810, '2022-09-14', 6078, 1584, 210, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '585.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1585, '2022-09-14', 6074, 1356, 168, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1738.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1586, '2022-09-14', 5695, 1357, 168, 665, '5.0000', '5.2000', '5.2000', '7.6300', '7.6300', '9.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1587, '2022-09-14', 5654, 1358, 168, 3030, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '115.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1588, '2022-09-14', 6663, 1359, 168, 2328, '5.0000', '2.5000', '2.5000', '2.5000', '2.5000', '193.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1589, '2022-09-14', 6662, 1360, 168, 1918, '4.0000', '4.6000', '4.6000', '4.6000', '4.6000', '596.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1590, '2022-09-14', 5557, 1361, 169, 565, '1.0000', '175.6100', '175.6100', '175.6100', '175.6100', '9.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1591, '2022-09-14', 6348, 1362, 170, 2448, '-1.0000', '0.0000', '0.0000', '8.1000', '8.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1592, '2022-09-14', 6348, 1362, 170, NULL, '2.0000', '0.0000', '0.0000', '8.1000', '8.1000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1593, '2022-09-14', 6882, 1363, 171, 3130, '1.0000', '22.5000', '22.5000', '25.0000', '25.0000', '29.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1594, '2022-09-14', 6353, 1364, 172, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '360.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1595, '2022-09-14', 6218, 1365, 173, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1596, '2022-09-14', 5476, 1366, 174, 2992, '24.0000', '-49557911.5565', '-49557911.5565', '13.3000', '13.3000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1597, '2022-09-14', 5715, 1367, 175, 3023, '3.0000', '13.1400', '13.1400', '13.1400', '13.1400', '81.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1598, '2022-09-14', 6267, 1368, 176, 1425, '1.0000', '7.1000', '7.1000', '7.1000', '7.1000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1599, '2022-09-14', 6267, 1369, 177, 1425, '1.0000', '7.1000', '7.1000', '7.1000', '7.1000', '61.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1600, '2022-09-14', 6332, 1370, 178, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '59.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1601, '2022-09-14', 5528, 1371, 179, 509, '2.0000', '11.5800', '11.5800', '11.5800', '11.5800', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1602, '2022-09-14', 6813, 1372, 179, 2037, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '57.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1603, '2022-09-14', 5958, 1373, 179, 521, '2.0000', '16.1000', '16.1000', '16.1000', '16.1000', '45.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1604, '2022-09-14', 5975, 1374, 179, 2253, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1605, '2022-09-14', 5451, 1375, 179, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1326.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1606, '2022-09-14', 5640, 1376, 179, 3066, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '177.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1607, '2022-09-14', 6378, 1377, 179, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1608, '2022-09-14', 6204, 1378, 180, 2312, '1.0000', '15.8000', '15.8000', '15.8000', '15.8000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1609, '2022-09-14', 6741, 1379, 181, 1361, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1610, '2022-09-14', 5725, 1380, 181, 1301, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1611, '2022-09-14', 5677, 1381, 181, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1612, '2022-09-14', 5616, 1382, 181, 2512, '-15.0000', '7.0000', '7.0000', '7.7000', '7.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1613, '2022-09-14', 5616, 1382, 181, NULL, '25.0000', '7.0000', '7.0000', '7.7000', '7.7000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1614, '2022-09-14', 6667, 1383, 181, 2440, '-10.0000', '0.0000', '0.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1615, '2022-09-14', 6667, 1383, 181, NULL, '20.0000', '0.0000', '0.0000', '2.0000', '2.0000', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1616, '2022-09-14', 5853, 1384, 181, 2363, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '157.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1617, '2022-09-14', 5535, 1385, 181, 2277, '4.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1561.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1618, '2022-09-14', 6189, 1386, 182, 2105, '1.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1619, '2022-09-14', 6702, 1387, 183, 1068, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1620, '2022-09-14', 5641, 1388, 184, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '108.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1621, '2022-09-14', 6691, 1389, 184, 1994, '10.0000', '6.5000', '6.5000', '6.5000', '6.5000', '40.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1622, '2022-09-14', 6205, 1390, 184, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '214.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1623, '2022-09-14', 6096, 1391, 184, 2990, '6.0000', '4.0000', '4.0000', '4.0000', '4.0000', '54.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1624, '2022-09-14', 6486, 1392, 184, 2090, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1625, '2022-09-14', 6703, 1393, 185, 1069, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1626, '2022-09-14', 6218, 1394, 186, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1627, '2022-09-14', 5715, 1395, 186, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '80.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1628, '2022-09-14', 6218, 1396, 187, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1629, '2022-09-14', 5980, 1397, 188, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '28.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1630, '2022-09-14', 5677, 1398, 189, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1631, '2022-09-14', 5898, 1399, 189, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '300.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1632, '2022-09-14', 5640, 1400, 189, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '174.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1633, '2022-09-14', 5969, 1401, 189, 2252, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '213.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1634, '2022-09-14', 5967, 1402, 189, 3132, '6.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2794.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1635, '2022-09-14', 6078, 1403, 189, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '586.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1636, '2022-09-14', 6813, 1404, 189, 2037, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '55.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1637, '2022-09-14', 6074, 1405, 189, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1733.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1638, '2022-09-14', 5949, 1406, 189, 1311, '5.0000', '5.2000', '5.2000', '5.2000', '5.2000', '929.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1639, '2022-09-14', 5853, 1407, 189, 2363, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '153.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1640, '2022-09-14', 6744, 1408, 189, 1145, '1.0000', '9.9600', '9.9600', '9.9600', '9.9600', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1641, '2022-09-14', 5975, 1409, 189, 2253, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1642, '2022-09-14', 5418, 1410, 189, 2061, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '36.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1643, '2022-09-14', 6333, 1411, 189, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '127.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1644, '2022-09-14', 5527, 1412, 189, 1464, '1.0000', '27.0000', '27.0000', '27.0000', '27.0000', '14.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1645, '2022-09-14', 5677, 1413, 190, 2273, '25.0000', '13.2000', '13.2000', '13.2000', '13.2000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1646, '2022-09-14', 6816, 1414, 191, 2480, '-1.0000', '0.0000', '0.0000', '11.9000', '11.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1647, '2022-09-14', 6816, 1414, 191, NULL, '4.0000', '0.0000', '0.0000', '11.9000', '11.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1648, '2022-09-14', 5603, 1415, 191, 3011, '10.0000', '4.4000', '4.4000', '4.4000', '4.4000', '109.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1649, '2022-09-14', 5947, 1416, 191, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '35.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1650, '2022-09-14', 6359, 1417, 191, NULL, '20.0000', '0.0000', '0.0000', '2.5000', '2.5000', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1651, '2022-09-14', 6817, 1418, 191, 2024, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '71.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1652, '2022-09-14', 6492, 1419, 191, 1288, '3.0000', '39.5000', '39.5000', '39.5000', '39.5000', '2.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1653, '2022-09-14', 6222, 1420, 191, 2279, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1654, '2022-09-14', 5983, 1421, 192, 2333, '4.0000', '5.9000', '5.9000', '5.9000', '5.9000', '196.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1655, '2022-09-14', 6074, 1422, 193, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1728.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1656, '2022-09-14', 5801, 1423, 194, 3123, '2.0000', '5.8500', '5.8500', '6.5000', '6.5000', '70.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1657, '2022-09-14', 6363, 1424, 194, 1411, '5.0000', '14.8000', '14.8000', '14.8000', '14.8000', '206.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1658, '2022-09-14', 6818, 1425, 194, 3067, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '235.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1659, '2022-09-14', 6328, 1426, 194, 2567, '3.0000', '26.9000', '26.9000', '26.9000', '26.9000', '16.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1660, '2022-09-14', 5792, 1427, 194, 1978, '4.0000', '30.2000', '30.2000', '30.2000', '30.2000', '66.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1661, '2022-09-14', 6232, 1428, 194, 1424, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '81.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1662, '2022-09-14', 5967, 1429, 194, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2784.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1663, '2022-09-14', 5814, 1430, 194, 1277, '5.0000', '24.0900', '24.0900', '24.0900', '24.0900', '110.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1664, '2022-09-14', 5949, 1431, 194, 1311, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '919.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1665, '2022-09-14', 5948, 1432, 194, 2075, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '475.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1666, '2022-09-14', 6202, 1433, 194, 3006, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '415.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1667, '2022-09-14', 6513, 1434, 194, 662, '3.0000', '14.0000', '14.0000', '14.0000', '14.0000', '14.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1668, '2022-09-14', 6863, 1435, 194, 1024, '5.0000', '3.5000', '3.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1669, '2022-09-14', 6076, 1436, 194, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2294.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1670, '2022-09-14', 6860, 1437, 194, 1977, '6.0000', '16.8000', '16.8000', '18.0000', '18.0000', '188.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1671, '2022-09-14', 6137, 1438, 195, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '146.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1672, '2022-09-14', 6020, 1439, 195, 2302, '1.0000', '16.3100', '16.3100', '16.3100', '16.3100', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1673, '2022-09-14', 6205, 1440, 195, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '213.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1674, '2022-09-14', 6096, 1441, 196, 2990, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1675, '2022-09-14', 5640, 1442, 196, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '171.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1676, '2022-09-14', 5991, 1443, 196, 2070, '2.0000', '37.7000', '37.7000', '37.7000', '37.7000', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1677, '2022-09-14', 5853, 1444, 196, 2363, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1678, '2022-09-14', 5986, 1445, 196, 2579, '2.0000', '13.7000', '13.7000', '13.7000', '13.7000', '26.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1679, '2022-09-14', 5418, 1446, 196, 2061, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '30.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1680, '2022-09-14', 5677, 1447, 196, 2273, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1681, '2022-09-14', 5740, 1448, 196, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '541.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1682, '2022-09-14', 6223, 1449, 196, 2011, '20.0000', '0.6000', '0.6000', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1683, '2022-09-14', 6223, 1449, 196, 1447, '2.0000', '0.6000', '0.6000', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1684, '2022-09-14', 6223, 1449, 196, NULL, '8.0000', '0.6000', '0.6000', '0.6000', '0.6000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1718, '2022-09-14', 5655, 1496, 204, 1114, '1.0000', '28.5000', '28.5000', '28.5000', '28.5000', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1719, '2022-09-14', 5605, 1497, 204, 907, '1.0000', '21.5000', '21.5000', '21.5000', '21.5000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1720, '2022-09-14', 6825, 1498, 205, 3002, '25.0000', '46.2800', '46.2800', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1721, '2022-09-14', 6699, 1499, 205, 1287, '1.0000', '7.0000', '7.0000', '7.0000', '7.0000', '198.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1722, '2022-09-14', 5418, 1500, 205, 3164, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1723, '2022-09-14', 5677, 1501, 205, 3163, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1724, '2022-09-14', 5740, 1502, 205, 3162, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1725, '2022-09-14', 5451, 1503, 205, 3161, '4.0000', '5.8600', '5.8600', '5.8600', '5.8600', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1726, '2022-09-14', 6386, 1504, 205, 3160, '2.0000', '3.2000', '3.2000', '3.2000', '3.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1727, '2022-09-14', 6386, 1504, 205, 2346, '2.0000', '3.2000', '3.2000', '3.2000', '3.2000', '406.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1728, '2022-09-14', 5886, 1505, 205, 3159, '1.0000', '8.6000', '8.6000', '8.6000', '8.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1729, '2022-09-14', 6117, 1506, 205, 3158, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1730, '2022-09-14', 6351, 1507, 205, 3157, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1698, '2022-09-14', 6679, 1463, 197, 1903, '5.0000', '9.9900', '9.9900', '9.9900', '9.9900', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1699, '2022-09-14', 6679, 1463, 197, 1382, '2.0000', '9.9900', '9.9900', '9.9900', '9.9900', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1700, '2022-09-14', 6679, 1463, 197, NULL, '11.0000', '9.9900', '9.9900', '9.9900', '9.9900', '0.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1731, '2022-09-14', 6178, 1508, 205, 3156, '5.0000', '1.6000', '1.6000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1732, '2022-09-14', 6007, 1509, 205, 3155, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1703, '2022-09-14', 5464, 1466, 198, 1031, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1704, '2022-09-14', 5947, 1467, 199, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1705, '2022-09-14', 5948, 1468, 199, 2075, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '474.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1706, '2022-09-14', 5740, 1469, 200, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '536.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1707, '2022-09-14', 5986, 1470, 200, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '25.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1708, '2022-09-14', 5640, 1471, 200, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '170.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1709, '2022-09-14', 6604, 1472, 201, 2099, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1710, '2022-09-14', 6604, 1472, 201, 766, '17.0000', '5.5000', '5.5000', '5.5000', '5.5000', '509.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1711, '2022-09-14', 5640, 1473, 202, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '169.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1712, '2022-09-14', 6696, 1474, 202, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '389.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1713, '2022-09-14', 5865, 1475, 202, 3052, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '394.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1714, '2022-09-14', 6117, 1476, 202, 2028, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '10.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1715, '2022-09-14', 6872, 1477, 202, 3009, '2.0000', '2.0000', '2.0000', '2.2000', '2.2000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1716, '2022-09-14', 5603, 1478, 202, 3011, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '108.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1717, '2022-09-14', 5988, 1479, 202, 2558, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '55.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1733, '2022-09-14', 5847, 1510, 205, 3154, '1.0000', '3.1651', '3.1651', '6.1000', '6.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1734, '2022-09-14', 6434, 1511, 205, 3153, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1735, '2022-09-14', 6838, 1512, 205, 3152, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1736, '2022-09-14', 6679, 1513, 205, 3151, '2.0000', '9.9900', '9.9900', '9.9900', '9.9900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1737, '2022-09-14', 6219, 1514, 205, 3150, '20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1738, '2022-09-14', 6286, 1515, 205, 3149, '1.0000', '9.6000', '9.6000', '9.6000', '9.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1739, '2022-09-14', 6675, 1516, 205, 2520, '-5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1740, '2022-09-14', 6675, 1516, 205, NULL, '7.0000', '8.5000', '8.5000', '8.5000', '8.5000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1741, '2022-09-14', 5976, 1517, 205, 2581, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '48.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1798, '2022-09-14', 5892, 1572, 206, NULL, '3.0000', '0.0000', '0.0000', '8.6000', '8.6000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1797, '2022-09-14', 5674, 1571, 206, NULL, '20.0000', '1.5000', '1.5000', '1.5000', '1.5000', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1796, '2022-09-14', 5540, 1570, 206, 1280, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '64.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1795, '2022-09-14', 5641, 1569, 206, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '107.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1794, '2022-09-14', 5535, 1568, 206, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1541.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1793, '2022-09-14', 6303, 1567, 206, NULL, '19.0000', '1.4300', '1.4300', '1.4300', '1.4300', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1792, '2022-09-14', 6303, 1567, 206, 2416, '-9.0000', '1.4300', '1.4300', '1.4300', '1.4300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1791, '2022-09-14', 6824, 1566, 206, 561, '1.0000', '18.4800', '18.4800', '18.4800', '18.4800', '15.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1799, '2022-09-14', 6420, 1573, 206, 2557, '1.0000', '15.6000', '15.6000', '15.6000', '15.6000', '49.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1808, '2022-09-14', 5714, 1582, 207, 2280, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1807, '2022-09-14', 6696, 1581, 207, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '386.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1806, '2022-09-14', 5958, 1580, 207, 521, '1.0000', '16.1000', '16.1000', '16.1000', '16.1000', '44.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1805, '2022-09-14', 6082, 1579, 207, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '233.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1804, '2022-09-14', 5623, 1578, 207, 2556, '1.0000', '18.9000', '18.9000', '18.9000', '18.9000', '88.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1803, '2022-09-14', 5629, 1577, 207, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '120.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1802, '2022-09-14', 6302, 1576, 207, 2116, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '50.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1801, '2022-09-14', 6753, 1575, 207, 2307, '1.0000', '85.0000', '85.0000', '85.0000', '85.0000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1800, '2022-09-14', 6316, 1574, 207, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1809, '2022-09-14', 6273, 1583, 207, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '145.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1761, '2022-09-14', 6337, 1536, 208, 2582, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '40.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1762, '2022-09-14', 6074, 1537, 209, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1726.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1763, '2022-09-14', 5792, 1538, 209, 1978, '1.0000', '30.2000', '30.2000', '30.2000', '30.2000', '65.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1764, '2022-09-14', 5640, 1539, 209, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '168.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1765, '2022-09-14', 5535, 1540, 209, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1541.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1811, '2022-09-14', 5731, 1585, 210, 1917, '1.0000', '17.2000', '17.2000', '17.2000', '17.2000', '283.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1812, '2022-09-14', 6248, 1586, 210, 1408, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '54.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1813, '2022-09-14', 5677, 1587, 210, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '348.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1814, '2022-09-14', 6202, 1588, 210, 3006, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '412.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1815, '2022-09-14', 5624, 1589, 210, 908, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1816, '2022-09-14', 6662, 1590, 210, 1918, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '591.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1817, '2022-09-14', 5975, 1591, 210, 2253, '3.0000', '9.1500', '9.1500', '9.1500', '9.1500', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1818, '2022-09-14', 5995, 1592, 210, 3071, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '75.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1819, '2022-09-14', 6097, 1593, 210, 3045, '5.0000', '7.2000', '7.2000', '7.2000', '7.2000', '115.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1820, '2022-09-14', 5654, 1594, 210, 3030, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1821, '2022-09-14', 6558, 1595, 210, 983, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '26.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1822, '2022-09-14', 6817, 1596, 211, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '70.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1823, '2022-09-14', 5640, 1597, 211, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '167.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1824, '2022-09-14', 5799, 1598, 212, 2066, '3.0000', '20.1300', '20.1300', '20.1300', '20.1300', '188.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1825, '2022-09-14', 6074, 1599, 212, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1716.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1826, '2022-09-14', 5926, 1600, 212, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '565.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1827, '2022-09-14', 5949, 1601, 212, 1311, '5.0000', '5.2000', '5.2000', '5.2000', '5.2000', '914.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1828, '2022-09-14', 6205, 1602, 212, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '212.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1829, '2022-09-14', 6075, 1603, 212, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2041.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1830, '2022-09-14', 5731, 1604, 212, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '278.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1831, '2022-09-14', 5751, 1605, 212, 1112, '5.0000', '10.8000', '10.8000', '10.8000', '10.8000', '144.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1832, '2022-09-14', 5792, 1606, 212, 1978, '1.0000', '30.2000', '30.2000', '30.2000', '30.2000', '64.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1833, '2022-09-14', 6860, 1607, 212, 1977, '2.0000', '16.8000', '16.8000', '18.0000', '18.0000', '186.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1834, '2022-09-14', 6560, 1608, 213, 551, '1.0000', '41.6300', '41.6300', '41.6300', '41.6300', '17.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1835, '2022-09-14', 6228, 1609, 214, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '22.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1836, '2022-09-14', 5775, 1610, 214, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1837, '2022-09-14', 6221, 1611, 214, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1838, '2022-09-14', 6117, 1612, 214, 2028, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '8.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1839, '2022-09-14', 6273, 1613, 215, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '142.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1840, '2022-09-14', 6877, 1614, 215, 3134, '1.0000', '12.6000', '12.6000', '14.0000', '14.0000', '59.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1841, '2022-09-14', 6010, 1615, 215, 2362, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1842, '2022-09-14', 5853, 1616, 215, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '148.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1843, '2022-09-14', 5949, 1617, 215, 1311, '4.0000', '5.2000', '5.2000', '5.2000', '5.2000', '910.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1952, '2022-09-15', 6222, 1723, 216, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '56.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1951, '2022-09-15', 5949, 1722, 216, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '897.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1950, '2022-09-15', 6074, 1721, 216, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1706.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1949, '2022-09-15', 5616, 1720, 216, NULL, '28.0000', '7.0000', '7.0000', '7.7000', '7.7000', '-28.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1948, '2022-09-15', 5616, 1720, 216, 2512, '-25.0000', '7.0000', '7.0000', '7.7000', '7.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1947, '2022-09-15', 5731, 1719, 216, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '268.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1946, '2022-09-15', 5970, 1718, 216, 2310, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1945, '2022-09-15', 5959, 1717, 216, 2575, '1.0000', '23.7000', '23.7000', '23.7000', '23.7000', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1944, '2022-09-15', 6137, 1716, 216, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '145.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1943, '2022-09-15', 5975, 1715, 216, 2253, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1942, '2022-09-15', 5657, 1714, 216, 3072, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1941, '2022-09-15', 6617, 1713, 216, 557, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '30.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1940, '2022-09-15', 6372, 1712, 216, 3419, '3.0000', '12.0000', '12.0000', '12.0000', '12.0000', '18.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1939, '2022-09-15', 5598, 1711, 216, 3031, '3.0000', '2.6000', '2.6000', '2.6000', '2.6000', '532.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1938, '2022-09-15', 6281, 1710, 216, 1336, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1937, '2022-09-15', 6273, 1709, 216, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '139.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1936, '2022-09-15', 6508, 1708, 216, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '26.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1935, '2022-09-15', 6538, 1707, 216, 3074, '3.0000', '10.3000', '10.3000', '10.3000', '10.3000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1934, '2022-09-15', 5990, 1706, 216, 1933, '3.0000', '6.8000', '6.8000', '6.8000', '6.8000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1933, '2022-09-15', 5993, 1705, 216, 1868, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1932, '2022-09-15', 6448, 1704, 216, 2265, '5.0000', '15.0000', '15.0000', '15.0000', '15.0000', '64.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1931, '2022-09-15', 5757, 1703, 216, 1115, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '108.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1930, '2022-09-15', 6749, 1702, 216, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '44.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1929, '2022-09-15', 5453, 1701, 216, 1397, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1928, '2022-09-15', 6363, 1700, 216, 1411, '3.0000', '14.8000', '14.8000', '14.8000', '14.8000', '203.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1927, '2022-09-15', 5969, 1699, 216, 2252, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '209.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1926, '2022-09-15', 6178, 1698, 216, 3060, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '695.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1925, '2022-09-15', 5853, 1697, 216, 2363, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1924, '2022-09-15', 6283, 1696, 216, 2335, '4.0000', '5.1000', '5.1000', '5.1000', '5.1000', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1923, '2022-09-15', 5976, 1695, 216, 2581, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '43.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1922, '2022-09-15', 6225, 1694, 216, 2250, '8.0000', '2.8000', '2.8000', '2.8000', '2.8000', '282.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1921, '2022-09-15', 5813, 1693, 216, 663, '1.0000', '4.9000', '4.9000', '4.9000', '4.9000', '44.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1920, '2022-09-15', 5418, 1692, 216, 2061, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1919, '2022-09-15', 6221, 1691, 216, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1918, '2022-09-15', 6220, 1690, 216, 3000, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1917, '2022-09-15', 6692, 1689, 216, 3043, '5.0000', '8.0000', '8.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1916, '2022-09-15', 6076, 1688, 216, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2282.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1915, '2022-09-15', 6075, 1687, 216, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2029.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1914, '2022-09-15', 6861, 1686, 216, 1022, '1.0000', '74.6800', '74.6800', '82.9800', '82.9800', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1913, '2022-09-15', 5834, 1685, 216, 1989, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1912, '2022-09-15', 5499, 1684, 216, 2378, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '77.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1911, '2022-09-15', 6232, 1683, 216, 1424, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1953, '2022-09-15', 6267, 1724, 221, 1425, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '51.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1887, '2022-09-15', 6218, 1659, 217, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1888, '2022-09-15', 6860, 1660, 218, 1977, '3.0000', '16.8000', '16.8000', '18.0000', '18.0000', '183.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1889, '2022-09-15', 6052, 1661, 218, 758, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '27.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1890, '2022-09-15', 6202, 1662, 218, 3006, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '409.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1891, '2022-09-15', 5676, 1663, 218, 2018, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '112.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1892, '2022-09-15', 6206, 1664, 218, 2029, '2.0000', '7.8400', '7.8400', '7.8400', '7.8400', '26.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1893, '2022-09-15', 6211, 1665, 218, 2305, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1894, '2022-09-15', 5598, 1666, 218, 3031, '5.0000', '2.6000', '2.6000', '2.6000', '2.6000', '532.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1895, '2022-09-15', 6417, 1667, 218, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '72.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1896, '2022-09-15', 6383, 1668, 218, 3064, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '57.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1897, '2022-09-15', 6220, 1669, 218, 3000, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1898, '2022-09-15', 5640, 1670, 218, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '166.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1899, '2022-09-15', 6876, 1671, 218, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1900, '2022-09-15', 5949, 1672, 218, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '897.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1901, '2022-09-15', 5657, 1673, 219, 3072, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1902, '2022-09-15', 5995, 1674, 219, 3071, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '72.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1903, '2022-09-15', 6379, 1675, 219, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '198.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1904, '2022-09-15', 5770, 1676, 219, 3079, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '57.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1905, '2022-09-15', 6096, 1677, 219, 2990, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '42.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1906, '2022-09-15', 6083, 1678, 219, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '235.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1907, '2022-09-15', 6260, 1679, 219, 2314, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1908, '2022-09-15', 5991, 1680, 219, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '14.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1909, '2022-09-15', 5967, 1681, 219, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2779.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1910, '2022-09-15', 5986, 1682, 220, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '24.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1954, '2022-09-15', 6612, 1725, 221, 1104, '3.0000', '15.9500', '15.9500', '15.9500', '15.9500', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1955, '2022-09-15', 6823, 1726, 221, 1488, '4.0000', '10.7800', '10.7800', '10.7800', '10.7800', '75.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1956, '2022-09-15', 6377, 1727, 221, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '30.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1957, '2022-09-15', 6529, 1728, 221, 2006, '2.0000', '12.5000', '12.5000', '12.5000', '12.5000', '27.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1958, '2022-09-15', 6221, 1729, 221, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1959, '2022-09-15', 5640, 1730, 221, 3066, '6.0000', '11.1000', '11.1000', '11.1000', '11.1000', '160.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1960, '2022-09-15', 5767, 1731, 221, 1845, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '3.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1961, '2022-09-15', 6888, 1732, 221, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '25.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1962, '2022-09-15', 6764, 1733, 221, 1417, '6.0000', '6.3000', '6.3000', '6.3000', '6.3000', '79.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1963, '2022-09-15', 5975, 1734, 221, 2253, '5.0000', '9.1500', '9.1500', '9.1500', '9.1500', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1964, '2022-09-15', 5841, 1735, 221, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '118.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1980, '2022-09-15', 6010, 1751, 222, 2362, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '154.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1979, '2022-09-15', 5898, 1750, 222, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '298.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1978, '2022-09-15', 6193, 1749, 222, 2115, '6.0000', '6.6000', '6.6000', '6.6000', '6.6000', '31.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1977, '2022-09-15', 6838, 1748, 222, 2996, '4.0000', '17.7100', '17.7100', '17.7100', '17.7100', '96.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1976, '2022-09-15', 6320, 1747, 222, 1053, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '37.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1975, '2022-09-15', 6205, 1746, 222, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '211.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1974, '2022-09-15', 6394, 1745, 222, 1446, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1981, '2022-09-15', 5677, 1752, 222, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '346.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1973, '2022-09-15', 6666, 1744, 223, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1982, '2022-09-15', 6063, 1753, 224, 1046, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '21.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1983, '2022-09-15', 6752, 1754, 224, 1073, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1984, '2022-09-15', 6753, 1755, 225, 2307, '2.0000', '85.0000', '85.0000', '85.0000', '85.0000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1985, '2022-09-15', 6063, 1756, 226, 1046, '2.0000', '38.5000', '38.5000', '41.3000', '41.3000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1986, '2022-09-15', 6750, 1757, 227, 2125, '4.0000', '6.7000', '6.7000', '6.7000', '6.7000', '60.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1987, '2022-09-15', 6552, 1758, 228, 1459, '2.0000', '186.8000', '186.8000', '186.8000', '186.8000', '9.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1988, '2022-09-15', 6337, 1759, 228, 2582, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '38.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1989, '2022-09-15', 6074, 1760, 228, 2303, '24.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1682.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1990, '2022-09-15', 6427, 1761, 228, 1475, '2.0000', '17.5000', '17.5000', '17.5000', '17.5000', '28.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1991, '2022-09-15', 5593, 1762, 228, 2290, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1992, '2022-09-15', 5740, 1763, 228, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '531.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1993, '2022-09-15', 5731, 1764, 228, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '258.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1994, '2022-09-15', 5897, 1765, 229, 1290, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '15.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1995, '2022-09-15', 5973, 1766, 230, 1398, '2.0000', '8.3000', '8.3000', '8.3000', '8.3000', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1996, '2022-09-15', 6838, 1767, 230, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '95.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1997, '2022-09-15', 5713, 1768, 230, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1998, '2022-09-15', 5435, 1769, 230, 2308, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1999, '2022-09-15', 5977, 1770, 230, 2360, '2.0000', '7.5000', '7.5000', '7.5000', '7.5000', '111.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2000, '2022-09-15', 6219, 1771, 230, 2117, '2.0000', '2.6900', '2.6900', '2.6900', '2.6900', '180.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2001, '2022-09-15', 6572, 1772, 230, 2993, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '142.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2002, '2022-09-15', 5451, 1773, 231, 2387, '1.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1321.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2004, '2022-09-15', 5447, 1776, 234, 3034, '5.0000', '19.8000', '19.8000', '19.8000', '19.8000', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2005, '2022-09-15', 5749, 1777, 234, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '133.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2006, '2022-09-15', 6764, 1778, 234, 1417, '5.0000', '6.3000', '6.3000', '6.3000', '6.3000', '74.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2007, '2022-09-15', 6232, 1779, 234, 1424, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '71.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2008, '2022-09-15', 6840, 1780, 234, 1371, '5.0000', '5.2000', '5.2000', '5.2000', '5.2000', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2009, '2022-09-15', 5749, 1781, 234, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '129.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2010, '2022-09-15', 6337, 1782, 234, 2582, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '36.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2011, '2022-09-15', 6304, 1783, 234, 1853, '5.0000', '13.5000', '13.5000', '13.5000', '13.5000', '168.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2012, '2022-09-15', 6652, 1784, 234, 1414, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2013, '2022-09-15', 5731, 1785, 234, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '248.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2014, '2022-09-15', 6095, 1786, 234, 3138, '5.0000', '8.3200', '8.3200', '8.3200', '8.3200', '222.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2015, '2022-09-15', 5509, 1787, 234, 1854, '5.0000', '6.8800', '6.8800', '6.8800', '6.8800', '41.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2016, '2022-09-15', 6873, 1788, 234, 3016, '5.0000', '1.7600', '1.7600', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2017, '2022-09-15', 6876, 1789, 234, 3015, '5.0000', '0.9800', '0.9800', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2018, '2022-09-15', 5949, 1790, 234, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '887.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2019, '2022-09-15', 5948, 1791, 234, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '464.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2020, '2022-09-15', 6399, 1792, 234, 2019, '5.0000', '6.1000', '6.1000', '6.1000', '6.1000', '208.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2021, '2022-09-15', 6872, 1793, 234, 3009, '8.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2022, '2022-09-15', 6872, 1793, 234, 3012, '2.0000', '2.0000', '2.0000', '2.2000', '2.2000', '18.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2023, '2022-09-15', 6445, 1794, 234, 1985, '6.0000', '21.8000', '21.8000', '21.8000', '21.8000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2024, '2022-09-15', 5926, 1795, 234, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '555.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2025, '2022-09-15', 5532, 1796, 234, 3396, '10.0000', '56.1000', '56.1000', '56.1000', '56.1000', '77.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2026, '2022-09-15', 6365, 1797, 234, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '155.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2027, '2022-09-15', 6611, 1798, 234, 1096, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '17.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2028, '2022-09-15', 6606, 1799, 234, 1352, '3.0000', '15.5300', '15.5300', '15.5300', '15.5300', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2029, '2022-09-15', 6607, 1800, 234, 2583, '3.0000', '16.0000', '16.0000', '16.0000', '16.0000', '97.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2030, '2022-09-15', 6287, 1801, 234, 2110, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '22.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2031, '2022-09-15', 6552, 1802, 234, 1459, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '8.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2032, '2022-09-15', 6035, 1803, 234, 525, '1.0000', '7.9900', '7.9900', '7.9900', '7.9900', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2033, '2022-09-15', 6035, 1803, 234, NULL, '2.0000', '7.9900', '7.9900', '7.9900', '7.9900', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2034, '2022-09-15', 6081, 1804, 234, 2585, '3.0000', '10.4000', '10.4000', '10.4000', '10.4000', '78.0000', 1, 0, NULL, 36, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2035, '2022-09-15', 6684, 1805, 234, 2129, '3.0000', '29.7000', '29.7000', '29.7000', '29.7000', '26.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2036, '2022-09-15', 5584, 1806, 234, 2124, '3.0000', '17.5000', '17.5000', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2037, '2022-09-15', 6605, 1807, 234, 2119, '3.0000', '5.8000', '5.8000', '5.8000', '5.8000', '135.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2038, '2022-09-15', 6490, 1808, 234, 2109, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '37.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2039, '2022-09-15', 6189, 1809, 235, 1884, '1.0000', '1.2000', '1.2000', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2040, '2022-09-15', 6508, 1810, 236, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2041, '2022-09-15', 5792, 1811, 237, 1978, '5.0000', '30.2000', '30.2000', '30.2000', '30.2000', '59.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2042, '2022-09-15', 5677, 1812, 237, 2351, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2043, '2022-09-15', 6292, 1813, 237, 1489, '5.0000', '7.8000', '7.8000', '7.8000', '7.8000', '32.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2044, '2022-09-15', 5540, 1814, 237, 1280, '3.0000', '22.0000', '22.0000', '22.0000', '22.0000', '61.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2045, '2022-09-15', 5584, 1815, 237, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '8.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2046, '2022-09-15', 6606, 1816, 237, 1352, '5.0000', '15.5300', '15.5300', '15.5300', '15.5300', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2047, '2022-09-15', 5926, 1817, 237, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '535.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2048, '2022-09-15', 5949, 1818, 237, 1311, '20.0000', '5.2000', '5.2000', '7.3000', '7.3000', '867.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2049, '2022-09-15', 5535, 1819, 237, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1531.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2050, '2022-09-15', 6242, 1820, 237, 534, '5.0000', '62.0000', '62.0000', '62.0000', '62.0000', '70.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2051, '2022-09-15', 6020, 1821, 237, 2302, '1.0000', '16.3100', '16.3100', '16.3100', '16.3100', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2052, '2022-09-15', 6281, 1822, 237, 1336, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2053, '2022-09-15', 5799, 1823, 237, 2066, '2.0000', '20.1300', '20.1300', '20.1300', '20.1300', '186.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2054, '2022-09-15', 6778, 1824, 237, 2052, '3.0000', '19.3400', '19.3400', '19.3400', '19.3400', '165.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2055, '2022-09-15', 5464, 1825, 237, 1031, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2056, '2022-09-15', 5650, 1826, 237, 1438, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '26.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2057, '2022-09-15', 6590, 1827, 238, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '74.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2058, '2022-09-15', 5865, 1828, 238, 3052, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '393.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2059, '2022-09-15', 5947, 1829, 239, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '33.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2060, '2022-09-15', 6218, 1830, 239, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2061, '2022-09-15', 6590, 1831, 240, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2062, '2022-09-15', 5640, 1832, 240, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '159.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2063, '2022-09-15', 6380, 1833, 240, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2064, '2022-09-15', 6193, 1834, 240, 2115, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '29.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2065, '2022-09-15', 6353, 1835, 240, 2339, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '357.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2066, '2022-09-15', 6667, 1836, 240, 2440, '-13.0000', '-6.5946', '-6.5946', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2067, '2022-09-15', 6667, 1836, 240, NULL, '18.0000', '-6.5946', '-6.5946', '2.0000', '2.0000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2068, '2022-09-15', 6359, 1837, 240, 3139, '-20.0000', '0.0000', '0.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2069, '2022-09-15', 6359, 1837, 240, NULL, '23.0000', '0.0000', '0.0000', '2.5000', '2.5000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2070, '2022-09-15', 5795, 1838, 241, 1421, '5.0000', '35.3000', '35.3000', '35.3000', '35.3000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2138, '2022-09-15', 6691, 1904, 242, 1994, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2137, '2022-09-15', 5541, 1903, 242, 905, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '27.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2136, '2022-09-15', 5629, 1902, 242, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '117.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2135, '2022-09-15', 5730, 1901, 242, 3005, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '113.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2134, '2022-09-15', 5640, 1900, 242, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '157.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2133, '2022-09-15', 6021, 1899, 242, 1844, '3.0000', '3.6000', '3.6000', '3.6000', '3.6000', '12.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2132, '2022-09-15', 5657, 1898, 242, 3072, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2131, '2022-09-15', 6376, 1897, 242, 2364, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2390.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2130, '2022-09-15', 6879, 1896, 242, 3121, '2.0000', '3.8700', '3.8700', '4.3000', '4.3000', '388.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2129, '2022-09-15', 5967, 1895, 242, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2776.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2128, '2022-09-15', 5849, 1894, 242, 2357, '4.0000', '3.1000', '3.1000', '3.1000', '3.1000', '131.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2127, '2022-09-15', 5552, 1893, 242, 3393, '1.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2126, '2022-09-15', 5865, 1892, 242, 3052, '3.0000', '3.5000', '3.5000', '3.5000', '3.5000', '390.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2125, '2022-09-15', 6078, 1891, 242, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '583.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2124, '2022-09-15', 5593, 1890, 242, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2123, '2022-09-15', 5892, 1889, 242, NULL, '5.0000', '0.0000', '0.0000', '8.6000', '8.6000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2122, '2022-09-15', 5892, 1889, 242, 3176, '-3.0000', '0.0000', '0.0000', '8.6000', '8.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2139, '2022-09-15', 6117, 1905, 242, 2028, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '7.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2089, '2022-09-15', 6218, 1856, 243, 1388, '2.0000', '13.5800', '13.5800', '13.5800', '13.5800', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2090, '2022-09-15', 5947, 1857, 243, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '32.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2091, '2022-09-15', 5656, 1858, 244, NULL, '1.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2092, '2022-09-15', 5607, 1859, 244, NULL, '1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2093, '2022-09-15', 6007, 1860, 244, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '103.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2094, '2022-09-15', 6850, 1861, 244, 1292, '2.0000', '2.8900', '2.8900', '2.8900', '2.8900', '33.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2095, '2022-09-15', 5589, 1862, 244, 2370, '1.0000', '9.4000', '9.4000', '9.4000', '9.4000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2096, '2022-09-15', 5587, 1863, 244, 3076, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '209.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2097, '2022-09-15', 6131, 1864, 244, 3077, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2098, '2022-09-15', 6302, 1865, 244, 2116, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '49.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2099, '2022-09-15', 6177, 1866, 244, 2972, '2.0000', '384366451507800.0000', '384366451507800.0000', '3.5000', '3.5000', '156.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2100, '2022-09-15', 6037, 1867, 244, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2101, '2022-09-15', 5726, 1868, 244, 2085, '1.0000', '15.9000', '15.9000', '15.9000', '15.9000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2102, '2022-09-15', 6074, 1869, 244, 2303, '7.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1675.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2103, '2022-09-15', 5926, 1870, 244, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '533.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2104, '2022-09-15', 6738, 1871, 244, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '178.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2105, '2022-09-15', 6853, 1872, 244, 2566, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2106, '2022-09-15', 6176, 1873, 244, 2323, '2.0000', '4.1000', '4.1000', '4.1000', '4.1000', '284.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2107, '2022-09-15', 5765, 1874, 244, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2108, '2022-09-15', 5993, 1875, 244, 1868, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2109, '2022-09-15', 6220, 1876, 244, 3000, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2110, '2022-09-15', 6339, 1877, 244, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2111, '2022-09-15', 5970, 1878, 244, 2310, '2.0000', '9.1500', '9.1500', '9.1500', '9.1500', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2112, '2022-09-15', 5995, 1879, 244, 3071, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2113, '2022-09-15', 5657, 1880, 244, 3072, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2114, '2022-09-15', 5847, 1881, 244, 3136, '1.0000', '3.1651', '3.1651', '6.1000', '6.1000', '548.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2115, '2022-09-15', 6078, 1882, 244, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '583.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2116, '2022-09-15', 6326, 1883, 244, 1462, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '66.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2117, '2022-09-15', 6750, 1884, 244, 2125, '1.0000', '6.7000', '6.7000', '6.7000', '6.7000', '59.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2118, '2022-09-15', 5799, 1885, 244, 2066, '1.0000', '20.1300', '20.1300', '20.1300', '20.1300', '185.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2119, '2022-09-15', 6684, 1886, 244, 2129, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '25.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2120, '2022-09-15', 6837, 1887, 244, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '15.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2121, '2022-09-15', 5884, 1888, 244, 1279, '1.0000', '3.3200', '3.3200', '3.3200', '3.3200', '12.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2140, '2022-09-15', 6115, 1906, 242, 1156, '1.0000', '7.1000', '7.1000', '7.1000', '7.1000', '41.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2141, '2022-09-15', 6136, 1907, 242, 1324, '1.0000', '3.8000', '3.8000', '3.8000', '3.8000', '193.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2142, '2022-09-15', 5629, 1908, 245, 1429, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '116.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2143, '2022-09-15', 5715, 1909, 246, 3023, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '78.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2144, '2022-09-15', 6683, 1910, 247, 1002, '1.0000', '8.2000', '8.2000', '8.2000', '8.2000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2185, '2022-09-15', 6271, 1949, 248, 537, '5.0000', '62.0000', '62.0000', '62.0000', '62.0000', '36.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2188, '2022-09-15', 6683, 1952, 249, 1002, '1.0000', '8.2000', '8.2000', '8.2000', '8.2000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2147, '2022-09-15', 6765, 1913, 250, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '53.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2148, '2022-09-15', 6800, 1914, 250, 324, '1.0000', '5.5000', '5.5000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2149, '2022-09-15', 6633, 1915, 250, 650, '1.0000', '32.0000', '32.0000', '32.0000', '32.0000', '10.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2150, '2022-09-15', 6326, 1916, 250, 1462, '3.0000', '14.0000', '14.0000', '14.0000', '14.0000', '63.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2151, '2022-09-15', 5527, 1917, 250, 1464, '1.0000', '27.0000', '27.0000', '27.0000', '27.0000', '13.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2152, '2022-09-15', 6604, 1918, 250, 766, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '505.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2153, '2022-09-15', 5695, 1919, 250, 665, '2.0000', '5.2000', '5.2000', '7.6300', '7.6300', '7.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2154, '2022-09-15', 6446, 1920, 250, 1449, '3.0000', '4.9000', '4.9000', '4.9000', '4.9000', '137.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2155, '2022-09-15', 5509, 1921, 250, 1854, '3.0000', '6.8800', '6.8800', '6.8800', '6.8800', '38.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2156, '2022-09-15', 6304, 1922, 250, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '166.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2157, '2022-09-15', 6273, 1923, 250, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '137.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2158, '2022-09-15', 6095, 1924, 250, 3138, '4.0000', '8.3200', '8.3200', '8.3200', '8.3200', '218.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2159, '2022-09-15', 6529, 1925, 250, 2006, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '24.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2160, '2022-09-15', 5562, 1926, 250, 3443, '1.0000', '47.7700', '47.7700', '47.7700', '47.7700', '19.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2161, '2022-09-15', 5648, 1927, 250, 3444, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2162, '2022-09-15', 6198, 1928, 251, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2163, '2022-09-15', 5657, 1929, 252, 3072, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2194, '2022-09-15', 6456, 1961, 261, 3515, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2165, '2022-09-15', 5476, 1931, 254, 2992, '3.0000', '-49557911.5565', '-49557911.5565', '13.3000', '13.3000', '3.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2166, '2022-09-15', 6353, 1932, 255, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '347.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2167, '2022-09-15', 6359, 1933, 255, 3468, '10.0000', '2.7010', '2.7010', '2.5000', '2.5000', '276.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2168, '2022-09-15', 5640, 1934, 255, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '155.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2169, '2022-09-15', 6738, 1935, 255, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2170, '2022-09-15', 6212, 1936, 255, 3048, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '107.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2171, '2022-09-15', 5983, 1937, 255, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '195.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2172, '2022-09-15', 6030, 1938, 255, 1128, '2.0000', '4.4300', '4.4300', '4.4300', '4.4300', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2173, '2022-09-15', 5710, 1939, 255, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '184.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2174, '2022-09-15', 6696, 1940, 255, 2282, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '384.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2175, '2022-09-15', 5603, 1941, 255, 3011, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '106.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2176, '2022-09-15', 6349, 1942, 255, 3014, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2177, '2022-09-15', 6349, 1942, 255, 1342, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2178, '2022-09-15', 6225, 1943, 255, 2250, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '280.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2192, '2022-09-15', 6337, 1959, 261, 3514, '10.0000', '49.5300', '49.5300', '49.5300', '49.5300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2193, '2022-09-15', 5677, 1960, 261, 3163, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2191, '2022-09-15', 5710, 1955, 258, 1300, '10.0000', '4.0200', '4.0200', '4.0200', '4.0200', '174.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2187, '2022-09-15', 5986, 1951, 257, 2579, '1.0000', '13.7000', '13.7000', '13.7000', '13.7000', '23.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2186, '2022-09-15', 6590, 1950, 257, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2195, '2022-09-15', 5710, 1962, 262, 1300, '10.0000', '4.0200', '4.0200', '4.0200', '4.0200', '164.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2196, '2022-09-15', 6205, 1963, 262, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '210.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2197, '2022-09-15', 6348, 1964, 262, 3418, '1.0000', '64.8559', '64.8559', '8.1000', '8.1000', '57.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2198, '2022-09-15', 6074, 1965, 263, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1655.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2199, '2022-09-15', 6205, 1966, 263, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '209.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2200, '2022-09-15', 6220, 1967, 263, 3000, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2201, '2022-09-15', 5447, 1968, 263, 3034, '3.0000', '19.8000', '19.8000', '19.8000', '19.8000', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2202, '2022-09-15', 6337, 1969, 263, 2582, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '24.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2203, '2022-09-15', 5853, 1970, 263, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '142.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2204, '2022-09-15', 5677, 1971, 264, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '333.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2205, '2022-09-15', 5640, 1972, 264, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '150.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2206, '2022-09-15', 6418, 1973, 265, 2580, '1.0000', '6.3300', '6.3300', '6.3300', '6.3300', '639.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2207, '2022-09-15', 6628, 1974, 266, 994, '1.0000', '5.4000', '5.4000', '5.4000', '5.4000', '50.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2208, '2022-09-15', 6855, 1975, 266, 563, '1.0000', '13.5000', '13.5000', '13.5000', '13.5000', '22.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2209, '2022-09-15', 6559, 1976, 267, 984, '1.0000', '66.2000', '66.2000', '66.2000', '66.2000', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2210, '2022-09-15', 6180, 1977, 268, 1861, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '83.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2211, '2022-09-15', 6336, 1978, 269, 567, '1.0000', '12.0000', '12.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2212, '2022-09-16', 6218, 1979, 270, 1388, '2.0000', '13.5800', '13.5800', '13.5800', '13.5800', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2244, '2022-09-16', 5696, 2011, 271, 514, '7.0000', '14.0000', '14.0000', '14.0000', '14.0000', '68.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2243, '2022-09-16', 5982, 2010, 271, 1963, '10.0000', '7.9400', '7.9400', '7.9400', '7.9400', '170.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2242, '2022-09-16', 6860, 2009, 271, 1977, '5.0000', '16.8000', '16.8000', '18.0000', '18.0000', '178.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2241, '2022-09-16', 5751, 2008, 271, 1112, '5.0000', '10.8000', '10.8000', '10.8000', '10.8000', '139.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2240, '2022-09-16', 6508, 2007, 271, 973, '5.0000', '13.3000', '13.3000', '13.3000', '13.3000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2245, '2022-09-16', 6753, 2012, 271, 2307, '5.0000', '85.0000', '85.0000', '85.0000', '85.0000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2219, '2022-09-16', 5906, 1986, 272, 2118, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '14.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2220, '2022-09-16', 6273, 1987, 272, 3033, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '132.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2221, '2022-09-16', 6332, 1988, 273, 2560, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '55.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2349, '2022-09-16', 6228, 2115, 274, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '19.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2348, '2022-09-16', 6353, 2114, 274, 2339, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '317.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2347, '2022-09-16', 5629, 2113, 274, 1429, '10.0000', '8.4000', '8.4000', '8.4000', '8.4000', '103.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2346, '2022-09-16', 6205, 2112, 274, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '204.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2345, '2022-09-16', 6809, 2111, 274, 1299, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '72.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2344, '2022-09-16', 5535, 2110, 274, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1521.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2343, '2022-09-16', 6222, 2109, 274, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2342, '2022-09-16', 5729, 2108, 274, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '101.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2341, '2022-09-16', 5640, 2107, 274, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '145.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2340, '2022-09-16', 5765, 2106, 274, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2339, '2022-09-16', 6326, 2105, 274, 1462, '10.0000', '14.0000', '14.0000', '14.0000', '14.0000', '48.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2338, '2022-09-16', 6316, 2104, 274, 2359, '3.0000', '62.0000', '62.0000', '62.0000', '62.0000', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2337, '2022-09-16', 6285, 2103, 274, 2324, '6.0000', '9.4700', '9.4700', '9.4700', '9.4700', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2336, '2022-09-16', 6408, 2102, 274, 2978, '10.0000', '4.6700', '4.6700', '4.6700', '4.6700', '77.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2335, '2022-09-16', 6304, 2101, 274, 1853, '10.0000', '13.5000', '13.5000', '13.5000', '13.5000', '156.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2334, '2022-09-16', 6125, 2100, 274, 3053, '10.0000', '10.5000', '10.5000', '10.5000', '10.5000', '190.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2333, '2022-09-16', 5731, 2099, 274, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '233.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2350, '2022-09-16', 5595, 2116, 274, NULL, '1.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2246, '2022-09-16', 6643, 2013, 271, 1902, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2247, '2022-09-16', 6643, 2013, 271, 1140, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '25.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2248, '2022-09-16', 6138, 2014, 275, 772, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '32.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2249, '2022-09-16', 6302, 2015, 275, 2116, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '48.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2250, '2022-09-16', 5770, 2016, 275, 3079, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2251, '2022-09-16', 6611, 2017, 275, 1096, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2252, '2022-09-16', 5596, 2018, 275, 2256, '1.0000', '16.8000', '16.8000', '16.8000', '16.8000', '97.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2253, '2022-09-16', 6644, 2019, 275, 1860, '2.0000', '4.6000', '4.6000', '4.6000', '4.6000', '38.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2254, '2022-09-16', 5584, 2020, 275, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2255, '2022-09-16', 5779, 2021, 275, 1468, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '64.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2256, '2022-09-16', 6446, 2022, 275, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '135.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2257, '2022-09-16', 5977, 2023, 275, 2360, '2.0000', '7.5000', '7.5000', '7.5000', '7.5000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2258, '2022-09-16', 6408, 2024, 275, 2978, '3.0000', '4.6700', '4.6700', '4.6700', '4.6700', '77.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2259, '2022-09-16', 5418, 2025, 275, 2061, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2260, '2022-09-16', 6750, 2026, 275, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '57.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2261, '2022-09-16', 5629, 2027, 275, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '103.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2262, '2022-09-16', 5962, 2028, 275, 522, '2.0000', '6.9900', '6.9900', '6.9900', '6.9900', '63.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2263, '2022-09-16', 6292, 2029, 275, 1489, '2.0000', '7.8000', '7.8000', '7.8000', '7.8000', '30.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2264, '2022-09-16', 6823, 2030, 275, 1488, '2.0000', '10.7800', '10.7800', '10.7800', '10.7800', '73.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2265, '2022-09-16', 5581, 2031, 275, 2343, '1.0000', '11.3000', '11.3000', '11.3000', '11.3000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2266, '2022-09-16', 6532, 2032, 275, 1958, '2.0000', '7.6000', '7.6000', '7.6000', '7.6000', '53.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2267, '2022-09-16', 5440, 2033, 275, 2998, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '44.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2268, '2022-09-16', 6556, 2034, 275, 3119, '2.0000', '3.4022', '3.4022', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2269, '2022-09-16', 6228, 2035, 276, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2270, '2022-09-16', 6747, 2036, 276, 3389, '3.0000', '12.9800', '12.9800', '12.9800', '12.9800', '24.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2271, '2022-09-16', 6285, 2037, 276, 2324, '4.0000', '9.4700', '9.4700', '9.4700', '9.4700', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2272, '2022-09-16', 6053, 2038, 276, 2331, '3.0000', '14.9000', '14.9000', '14.9000', '14.9000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2273, '2022-09-16', 6337, 2039, 276, 2582, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '21.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2274, '2022-09-16', 5948, 2040, 276, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '454.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2407, '2022-09-16', 6020, 2173, 277, 3512, '1.0000', '16.1378', '16.1378', '16.3100', '16.3100', '4.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2406, '2022-09-16', 5853, 2172, 277, 2363, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '137.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2405, '2022-09-16', 5677, 2171, 277, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '330.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2404, '2022-09-16', 5731, 2170, 277, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '233.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2403, '2022-09-16', 6607, 2169, 277, 2583, '5.0000', '16.0000', '16.0000', '16.0000', '16.0000', '92.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2402, '2022-09-16', 6573, 2168, 277, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2401, '2022-09-16', 6473, 2167, 277, 548, '1.0000', '54.8000', '54.8000', '54.8000', '54.8000', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2400, '2022-09-16', 5948, 2166, 277, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '434.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2399, '2022-09-16', 5949, 2165, 277, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '847.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2398, '2022-09-16', 5926, 2164, 277, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '503.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2397, '2022-09-16', 6228, 2163, 277, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '19.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2396, '2022-09-16', 6149, 2162, 277, 1949, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2395, '2022-09-16', 6222, 2161, 277, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2394, '2022-09-16', 6353, 2160, 277, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '317.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2393, '2022-09-16', 6590, 2159, 277, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '71.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2392, '2022-09-16', 6396, 2158, 277, 2980, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2391, '2022-09-16', 6294, 2157, 277, 1412, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2390, '2022-09-16', 5619, 2156, 277, 3509, '3.0000', '6.6300', '6.6300', '7.8000', '7.8000', '117.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2389, '2022-09-16', 5618, 2155, 277, 3510, '5.0000', '7.4800', '7.4800', '8.8000', '8.8000', '115.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2388, '2022-09-16', 6533, 2154, 277, 1441, '5.0000', '3.9000', '3.9000', '3.9000', '3.9000', '14.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2387, '2022-09-16', 6033, 2153, 277, 3490, '2.0000', '31.4000', '31.4000', '31.4000', '31.4000', '34.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2386, '2022-09-16', 5447, 2152, 277, 3034, '3.0000', '19.8000', '19.8000', '19.8000', '19.8000', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2385, '2022-09-16', 6014, 2151, 277, 1472, '2.0000', '10.6800', '10.6800', '10.6800', '10.6800', '16.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2384, '2022-09-16', 6015, 2150, 277, 568, '1.0000', '43.7000', '43.7000', '43.7000', '43.7000', '40.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2383, '2022-09-16', 5478, 2149, 277, 1511, '5.0000', '6.7000', '6.7000', '6.7000', '6.7000', '10.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2382, '2022-09-16', 5784, 2148, 277, 579, '1.0000', '78.0000', '78.0000', '78.0000', '78.0000', '6.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2381, '2022-09-16', 6110, 2147, 277, 1116, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '14.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2380, '2022-09-16', 6204, 2146, 277, 2312, '1.0000', '15.8000', '15.8000', '15.8000', '15.8000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2379, '2022-09-16', 5765, 2145, 277, 1035, '2.0000', '63.2200', '63.2200', '63.2200', '63.2200', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2378, '2022-09-16', 5675, 2144, 277, 314, '1.0000', '65.0000', '65.0000', '65.0000', '65.0000', '6.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2377, '2022-09-16', 6633, 2143, 277, 650, '2.0000', '32.0000', '32.0000', '32.0000', '32.0000', '8.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2376, '2022-09-16', 6394, 2142, 277, 1446, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2375, '2022-09-16', 6010, 2141, 277, 2362, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '152.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2374, '2022-09-16', 6253, 2140, 277, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '11.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2373, '2022-09-16', 5464, 2139, 277, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2372, '2022-09-16', 6232, 2138, 277, 1424, '7.0000', '7.1000', '7.1000', '7.1000', '7.1000', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2371, '2022-09-16', 5725, 2137, 277, 1301, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2370, '2022-09-16', 6741, 2136, 277, 1361, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2369, '2022-09-16', 6600, 2135, 277, 1351, '3.0000', '12.9000', '12.9000', '12.9000', '12.9000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2368, '2022-09-16', 5787, 2134, 277, 1470, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '12.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2367, '2022-09-16', 6326, 2133, 277, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '48.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2366, '2022-09-16', 6613, 2132, 277, 2300, '1.0000', '45.6000', '45.6000', '45.6000', '45.6000', '126.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2365, '2022-09-16', 5799, 2131, 277, 2066, '3.0000', '20.1300', '20.1300', '20.1300', '20.1300', '182.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2408, '2022-09-16', 6285, 2174, 277, 2324, '3.0000', '9.4700', '9.4700', '9.4700', '9.4700', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2363, '2022-09-16', 6560, 2129, 278, 551, '1.0000', '41.6300', '41.6300', '41.6300', '41.6300', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2362, '2022-09-16', 5765, 2128, 278, 1035, '2.0000', '63.2200', '63.2200', '63.2200', '63.2200', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2361, '2022-09-16', 6378, 2127, 278, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '87.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2360, '2022-09-16', 6837, 2126, 278, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '14.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2359, '2022-09-16', 5464, 2125, 278, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2358, '2022-09-16', 6205, 2124, 278, 3026, '3.0000', '38.5000', '38.5000', '38.5000', '38.5000', '204.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2357, '2022-09-16', 5948, 2123, 278, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '434.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2356, '2022-09-16', 5949, 2122, 278, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '847.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2355, '2022-09-16', 6078, 2121, 278, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '581.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2354, '2022-09-16', 5967, 2120, 278, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2766.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2353, '2022-09-16', 6626, 2119, 278, 1476, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '9.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2352, '2022-09-16', 6552, 2118, 278, 1459, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '7.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2351, '2022-09-16', 5926, 2117, 278, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '503.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2364, '2022-09-16', 6232, 2130, 278, 1424, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2468, '2022-09-16', 6391, 2230, 286, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '98.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2467, '2022-09-16', 5674, 2229, 279, NULL, '30.0000', '1.5000', '1.5000', '1.5000', '1.5000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2466, '2022-09-16', 5674, 2229, 279, 3175, '-20.0000', '1.5000', '1.5000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2465, '2022-09-16', 6751, 2228, 279, NULL, '2.0000', '0.0000', '0.0000', '35.0000', '35.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2464, '2022-09-16', 6751, 2228, 279, 2514, '-1.0000', '0.0000', '0.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2463, '2022-09-16', 5911, 2227, 279, 3042, '1.0000', '28.8750', '28.8750', '23.1000', '23.1000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2462, '2022-09-16', 6436, 2226, 279, 1448, '5.0000', '1.9500', '1.9500', '1.9500', '1.9500', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2461, '2022-09-16', 6075, 2225, 279, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2025.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2460, '2022-09-16', 5629, 2224, 279, 1429, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '99.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2459, '2022-09-16', 5677, 2223, 279, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '328.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2458, '2022-09-16', 6273, 2222, 279, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '130.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2469, '2022-09-16', 6352, 2231, 286, 3430, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2421, '2022-09-16', 6872, 2185, 280, 3012, '6.0000', '2.0000', '2.0000', '2.2000', '2.2000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2422, '2022-09-16', 5713, 2186, 280, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2423, '2022-09-16', 6331, 2187, 280, 1952, '10.0000', '1.4900', '1.4900', '1.4900', '1.4900', '105.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2424, '2022-09-16', 6024, 2188, 280, 937, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2425, '2022-09-16', 6218, 2189, 281, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2426, '2022-09-16', 6838, 2190, 282, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '94.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2427, '2022-09-16', 6007, 2191, 282, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '101.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2428, '2022-09-16', 6286, 2192, 282, 953, '1.0000', '9.6000', '9.6000', '9.6000', '9.6000', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2429, '2022-09-16', 5983, 2193, 282, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '193.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2430, '2022-09-16', 5472, 2194, 282, 3397, '2.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '65.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2431, '2022-09-16', 5640, 2195, 282, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '144.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2432, '2022-09-16', 5641, 2196, 282, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '106.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2433, '2022-09-16', 6378, 2197, 282, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '86.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2434, '2022-09-16', 6353, 2198, 282, 2339, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '314.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2435, '2022-09-16', 6417, 2199, 282, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '71.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2436, '2022-09-16', 5980, 2200, 282, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2437, '2022-09-16', 6225, 2201, 282, 2250, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '278.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2438, '2022-09-16', 5949, 2202, 282, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '844.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2439, '2022-09-16', 6132, 2203, 282, 1879, '2.0000', '4.3500', '4.3500', '4.3500', '4.3500', '131.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2440, '2022-09-16', 6134, 2204, 282, 2108, '1.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2441, '2022-09-16', 6348, 2205, 282, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '56.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2442, '2022-09-16', 6212, 2206, 282, 3048, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '106.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2443, '2022-09-16', 6083, 2207, 282, 3029, '3.0000', '2.7000', '2.7000', '2.7000', '2.7000', '232.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2444, '2022-09-16', 6020, 2208, 282, 3512, '1.0000', '16.1378', '16.1378', '16.3100', '16.3100', '3.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2445, '2022-09-16', 5967, 2209, 282, 3132, '2.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2764.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2446, '2022-09-16', 5926, 2210, 282, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '501.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2447, '2022-09-16', 6201, 2211, 282, 2315, '1.0000', '6.9000', '6.9000', '6.9000', '6.9000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2448, '2022-09-16', 5988, 2212, 282, 2558, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '53.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2449, '2022-09-16', 5592, 2213, 282, 3046, '1.0000', '7.1500', '7.1500', '7.1500', '7.1500', '39.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2450, '2022-09-16', 5714, 2214, 282, 2280, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2451, '2022-09-16', 6391, 2215, 282, 762, '1.0000', '3.3200', '3.3200', '3.3200', '3.3200', '101.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2452, '2022-09-16', 6666, 2216, 283, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2453, '2022-09-16', 6232, 2217, 284, 1424, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '57.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2454, '2022-09-16', 6074, 2218, 284, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1651.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2455, '2022-09-16', 5770, 2219, 285, 3079, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '54.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2456, '2022-09-16', 5980, 2220, 285, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2457, '2022-09-16', 5949, 2221, 285, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '842.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2470, '2022-09-16', 6352, 2231, 286, 1409, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '269.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2471, '2022-09-16', 6345, 2232, 287, 1922, '3.0000', '3.6300', '3.6300', '3.6300', '3.6300', '114.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2472, '2022-09-16', 5715, 2233, 288, 3023, '4.0000', '13.1400', '13.1400', '13.1400', '13.1400', '74.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2473, '2022-09-16', 5695, 2234, 289, 665, '2.0000', '5.2000', '5.2000', '7.6300', '7.6300', '5.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2474, '2022-09-16', 6675, 2235, 289, 2520, '-2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2475, '2022-09-16', 6675, 2235, 289, NULL, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2476, '2022-09-16', 5509, 2236, 290, 1854, '6.0000', '6.8800', '6.8800', '6.8800', '6.8800', '32.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2477, '2022-09-16', 5969, 2237, 290, 2252, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '205.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2478, '2022-09-16', 5799, 2238, 290, 2066, '2.0000', '20.1300', '20.1300', '20.1300', '20.1300', '180.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2479, '2022-09-16', 6778, 2239, 290, 2052, '2.0000', '19.3400', '19.3400', '19.3400', '19.3400', '163.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2480, '2022-09-16', 6538, 2240, 290, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2481, '2022-09-16', 6131, 2241, 290, 3077, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2482, '2022-09-16', 6037, 2242, 290, 1315, '4.0000', '9.1000', '9.1000', '9.1000', '9.1000', '38.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2483, '2022-09-16', 6304, 2243, 290, 1853, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '153.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2484, '2022-09-16', 6375, 2244, 290, 3065, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '50.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2485, '2022-09-16', 6232, 2245, 290, 1424, '4.0000', '7.1000', '7.1000', '7.1000', '7.1000', '53.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2486, '2022-09-16', 5418, 2246, 290, 2061, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2487, '2022-09-16', 6218, 2247, 291, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2488, '2022-09-16', 5977, 2248, 292, 2360, '5.0000', '7.5000', '7.5000', '7.5000', '7.5000', '104.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2489, '2022-09-16', 6337, 2249, 292, 2582, '4.0000', '49.5300', '49.5300', '49.5300', '49.5300', '17.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2490, '2022-09-16', 5976, 2250, 292, 2581, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '38.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2491, '2022-09-16', 6837, 2251, 292, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '13.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2492, '2022-09-16', 6605, 2252, 292, 2119, '1.0000', '5.8000', '5.8000', '5.8000', '5.8000', '134.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2493, '2022-09-16', 6559, 2253, 292, 984, '1.0000', '66.2000', '66.2000', '66.2000', '66.2000', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2494, '2022-09-16', 6232, 2254, 292, 1424, '10.0000', '7.1000', '7.1000', '7.1000', '7.1000', '43.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2495, '2022-09-16', 6233, 2255, 292, 1276, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '45.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2496, '2022-09-16', 5642, 2256, 292, 2320, '1.0000', '24.4300', '24.4300', '24.4300', '24.4300', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2497, '2022-09-16', 6328, 2257, 292, 2567, '3.0000', '26.9000', '26.9000', '26.9000', '26.9000', '13.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2498, '2022-09-16', 5535, 2258, 292, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1520.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2499, '2022-09-16', 5799, 2259, 292, 2066, '2.0000', '20.1300', '20.1300', '20.1300', '20.1300', '178.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2500, '2022-09-16', 5827, 2260, 292, 2055, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '38.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2501, '2022-09-16', 5853, 2261, 292, 2363, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '133.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2502, '2022-09-16', 6273, 2262, 292, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '128.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2503, '2022-09-16', 5988, 2263, 292, 2558, '3.0000', '3.0000', '3.0000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2504, '2022-09-16', 6275, 2264, 292, 2032, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '317.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2505, '2022-09-16', 5689, 2265, 292, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '195.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2506, '2022-09-16', 5967, 2266, 292, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2754.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2507, '2022-09-16', 6302, 2267, 293, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '46.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2508, '2022-09-16', 6074, 2268, 293, 2303, '7.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1644.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2509, '2022-09-16', 5640, 2269, 293, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '142.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2510, '2022-09-16', 6860, 2270, 294, 1977, '12.0000', '16.8000', '16.8000', '18.0000', '18.0000', '166.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2511, '2022-09-16', 5532, 2271, 294, 3396, '5.0000', '56.1000', '56.1000', '56.1000', '56.1000', '72.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2512, '2022-09-16', 5926, 2272, 294, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '481.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2513, '2022-09-16', 5528, 2273, 295, 509, '2.0000', '11.5800', '11.5800', '11.5800', '11.5800', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2514, '2022-09-16', 5624, 2274, 295, 908, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2515, '2022-09-16', 5957, 2275, 295, 2515, '-1.0000', '0.0000', '0.0000', '8.8200', '8.8200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2516, '2022-09-16', 5957, 2275, 295, NULL, '4.0000', '0.0000', '0.0000', '8.8200', '8.8200', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2517, '2022-09-16', 5535, 2276, 295, 2277, '9.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1511.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2518, '2022-09-16', 5487, 2277, 295, 507, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2519, '2022-09-16', 6074, 2278, 295, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1624.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2520, '2022-09-16', 6285, 2279, 296, 2324, '1.0000', '9.4700', '9.4700', '9.4700', '9.4700', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2521, '2022-09-16', 6838, 2280, 296, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '93.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2522, '2022-09-16', 6074, 2281, 296, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1622.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2523, '2022-09-16', 6889, 2282, 296, 3133, '1.0000', '24.3000', '24.3000', '14.0000', '14.0000', '44.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2524, '2022-09-16', 6182, 2283, 296, 2563, '1.0000', '5.5000', '5.5000', '5.5000', '5.5000', '23.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2525, '2022-09-16', 5985, 2284, 296, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '71.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2526, '2022-09-16', 6273, 2285, 297, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '126.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2527, '2022-09-16', 6696, 2286, 298, 2282, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '380.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2528, '2022-09-16', 5603, 2287, 298, 3011, '4.0000', '4.4000', '4.4000', '4.4000', '4.4000', '102.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2529, '2022-09-16', 5947, 2288, 298, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2530, '2022-09-16', 6218, 2289, 298, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2531, '2022-09-16', 6348, 2290, 299, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '54.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2532, '2022-09-16', 5826, 2291, 299, 921, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2533, '2022-09-16', 5640, 2292, 299, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '139.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2534, '2022-09-16', 5775, 2293, 299, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '6.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2535, '2022-09-16', 5657, 2294, 299, 3072, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2536, '2022-09-16', 5587, 2295, 299, 3076, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '206.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2537, '2022-09-16', 5464, 2296, 300, 1031, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2538, '2022-09-16', 5464, 2296, 300, NULL, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2539, '2022-09-16', 6883, 2297, 300, 3129, '5.0000', '6.3000', '6.3000', '7.0000', '7.0000', '95.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2540, '2022-09-16', 5792, 2298, 300, 1978, '3.0000', '30.2000', '30.2000', '30.2000', '30.2000', '56.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2541, '2022-09-16', 6824, 2299, 300, 561, '2.0000', '18.4800', '18.4800', '18.4800', '18.4800', '13.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2542, '2022-09-16', 6546, 2300, 300, NULL, '3.0000', '0.0000', '0.0000', '9.8000', '9.8000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2543, '2022-09-16', 6123, 2301, 300, 1878, '1.0000', '52.7000', '52.7000', '52.7000', '52.7000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2544, '2022-09-16', 6538, 2302, 301, 3074, '1.0000', '10.3000', '10.3000', '10.3000', '10.3000', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2545, '2022-09-16', 5632, 2303, 301, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '117.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2546, '2022-09-16', 6385, 2304, 301, 2251, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2547, '2022-09-16', 6161, 2305, 301, 2093, '1.0000', '5.3000', '5.3000', '5.3000', '5.3000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2548, '2022-09-16', 6297, 2306, 301, 1855, '1.0000', '10.4000', '10.4000', '10.4000', '10.4000', '68.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2549, '2022-09-16', 6464, 2307, 301, 1160, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2550, '2022-09-16', 6384, 2308, 301, 1477, '1.0000', '9.6600', '9.6600', '9.6600', '9.6600', '130.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2551, '2022-09-16', 5967, 2309, 301, 3132, '1.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2753.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2552, '2022-09-16', 6007, 2310, 302, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '91.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2553, '2022-09-16', 5710, 2311, 302, 1300, '20.0000', '4.0200', '4.0200', '4.0200', '4.0200', '144.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2554, '2022-09-16', 6825, 2312, 302, 3002, '5.0000', '46.2800', '46.2800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2555, '2022-09-16', 6825, 2312, 302, 2390, '30.0000', '46.2800', '46.2800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2556, '2022-09-16', 6825, 2312, 302, 2060, '1.0000', '46.2800', '46.2800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2557, '2022-09-16', 6825, 2312, 302, NULL, '114.0000', '46.2800', '46.2800', '1.0000', '1.0000', '-114.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2558, '2022-09-16', 6751, 2313, 302, 2514, '-2.0000', '0.0000', '0.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2559, '2022-09-16', 6751, 2313, 302, NULL, '3.0000', '0.0000', '0.0000', '35.0000', '35.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2560, '2022-09-16', 6379, 2314, 302, 3421, '30.0000', '8.7056', '8.7056', '2.1000', '2.1000', '168.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2561, '2022-09-16', 5988, 2315, 302, 2558, '1.0000', '3.0000', '3.0000', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2562, '2022-09-16', 6492, 2316, 302, 1288, '2.0000', '39.5000', '39.5000', '39.5000', '39.5000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2563, '2022-09-16', 6221, 2317, 302, 2301, '2.0000', '12.9800', '12.9800', '12.9800', '12.9800', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2564, '2022-09-16', 5775, 2318, 302, 2584, '4.0000', '22.1000', '22.1000', '22.1000', '22.1000', '2.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2565, '2022-09-16', 6228, 2319, 302, 2366, '4.0000', '20.9500', '20.9500', '20.9500', '20.9500', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2566, '2022-09-16', 6448, 2320, 303, 2265, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '63.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2567, '2022-09-16', 6214, 2321, 304, 750, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '145.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2568, '2022-09-16', 6386, 2322, 305, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '396.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2569, '2022-09-16', 6604, 2323, 305, 766, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '499.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2570, '2022-09-16', 6391, 2324, 305, 762, '4.0000', '3.3200', '3.3200', '3.3200', '3.3200', '94.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2571, '2022-09-16', 6183, 2325, 305, 749, '2.0000', '5.7500', '5.7500', '5.7500', '5.7500', '198.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2572, '2022-09-16', 5641, 2326, 305, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '105.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2573, '2022-09-16', 6560, 2327, 306, 551, '1.0000', '41.6300', '41.6300', '41.6300', '41.6300', '15.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2574, '2022-09-16', 5947, 2328, 307, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '30.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2575, '2022-09-16', 5715, 2329, 307, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '73.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2576, '2022-09-16', 6137, 2330, 308, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '144.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2577, '2022-09-17', 5715, 2331, 309, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '72.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2578, '2022-09-17', 6218, 2332, 309, 1388, '2.0000', '13.5800', '13.5800', '13.5800', '13.5800', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2579, '2022-09-17', 5947, 2333, 310, 2353, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '27.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2580, '2022-09-17', 5715, 2334, 310, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '71.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2581, '2022-09-17', 6218, 2335, 310, 1388, '2.0000', '13.5800', '13.5800', '13.5800', '13.5800', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2582, '2022-09-17', 5452, 2336, 311, 1030, '2.0000', '8.0000', '8.0000', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2583, '2022-09-17', 5586, 2337, 311, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '284.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2584, '2022-09-17', 6417, 2338, 311, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '70.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2585, '2022-09-17', 6225, 2339, 311, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '268.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2586, '2022-09-17', 6838, 2340, 311, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '92.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2587, '2022-09-17', 6825, 2341, 311, 3531, '-114.0000', '46.2800', '46.2800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2588, '2022-09-17', 6825, 2341, 311, NULL, '124.0000', '46.2800', '46.2800', '1.0000', '1.0000', '-124.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2589, '2022-09-17', 5451, 2342, 311, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1318.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2590, '2022-09-17', 5509, 2343, 311, 1854, '3.0000', '6.8800', '6.8800', '6.8800', '6.8800', '29.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2591, '2022-09-17', 6191, 2344, 311, 3018, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '100.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2592, '2022-09-17', 5840, 2345, 312, 2348, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2593, '2022-09-17', 6829, 2346, 312, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '16.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2594, '2022-09-17', 5993, 2347, 312, 1868, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2595, '2022-09-17', 6838, 2348, 312, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '91.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2596, '2022-09-17', 6615, 2349, 312, 2368, '1.0000', '11.0000', '11.0000', '11.0000', '11.0000', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2597, '2022-09-17', 5422, 2350, 312, NULL, '1.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2598, '2022-09-17', 5847, 2351, 312, 3136, '2.0000', '3.1651', '3.1651', '6.1000', '6.1000', '546.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2599, '2022-09-17', 5740, 2352, 312, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '529.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2600, '2022-09-17', 6840, 2353, 313, 1371, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2623, '2022-09-17', 6890, 2374, 314, 3548, '25.0000', '3.5000', '3.5000', '4.6000', '4.6000', '618.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2622, '2022-09-17', 5472, 2373, 314, 3397, '4.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '61.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2621, '2022-09-17', 5847, 2372, 314, 3136, '5.0000', '3.1651', '3.1651', '6.1000', '6.1000', '541.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2620, '2022-09-17', 5588, 2371, 314, 3075, '4.0000', '14.9600', '14.9600', '14.9600', '14.9600', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2619, '2022-09-17', 6663, 2370, 314, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '183.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2618, '2022-09-17', 6356, 2369, 314, 1891, '4.0000', '7.2000', '7.2000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2624, '2022-09-17', 5947, 2375, 316, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2616, '2022-09-17', 6635, 2367, 315, 2051, '3.0000', '11.8000', '11.8000', '11.8000', '11.8000', '5.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2617, '2022-09-17', 5497, 2368, 315, 2288, '2.0000', '5.6000', '5.6000', '5.6000', '5.6000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2625, '2022-09-17', 6007, 2376, 317, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '90.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2626, '2022-09-17', 6696, 2377, 317, 2282, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '376.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2627, '2022-09-17', 5710, 2378, 317, 1300, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '141.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2628, '2022-09-17', 6667, 2379, 317, 2440, '-14.0000', '-10.0325', '-10.0325', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2629, '2022-09-17', 6667, 2379, 317, NULL, '16.0000', '-10.0325', '-10.0325', '2.0000', '2.0000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2630, '2022-09-17', 6379, 2380, 317, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '163.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2631, '2022-09-17', 6873, 2381, 318, 3484, '10.0000', '1.7441', '1.7441', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2632, '2022-09-17', 6876, 2382, 318, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2633, '2022-09-17', 6074, 2383, 318, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1612.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2634, '2022-09-17', 5898, 2384, 318, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '293.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2635, '2022-09-17', 5911, 2385, 318, 3042, '3.0000', '28.8750', '28.8750', '23.1000', '23.1000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2636, '2022-09-17', 6572, 2386, 318, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '140.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2637, '2022-09-17', 5704, 2387, 318, 911, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '49.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2638, '2022-09-17', 6007, 2388, 318, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2639, '2022-09-17', 6304, 2389, 318, 1853, '1.0000', '13.5000', '13.5000', '13.5000', '13.5000', '152.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2640, '2022-09-17', 6011, 2390, 318, 3028, '1.0000', '14.2100', '14.2100', '14.2100', '14.2100', '59.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2641, '2022-09-17', 6136, 2391, 318, 1324, '6.0000', '3.8000', '3.8000', '3.8000', '3.8000', '187.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2642, '2022-09-17', 6220, 2392, 318, 3000, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2643, '2022-09-17', 6220, 2392, 318, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '387.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2644, '2022-09-17', 6346, 2393, 318, 1921, '5.0000', '2.2000', '2.2000', '2.2000', '2.2000', '245.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2645, '2022-09-17', 5586, 2394, 318, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '282.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2646, '2022-09-17', 5676, 2395, 318, 2018, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '110.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2647, '2022-09-17', 6605, 2396, 318, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '124.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2648, '2022-09-17', 6075, 2397, 318, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2020.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2649, '2022-09-17', 6076, 2398, 318, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2277.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2650, '2022-09-17', 6021, 2399, 318, 1844, '4.0000', '3.6000', '3.6000', '3.6000', '3.6000', '8.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2651, '2022-09-17', 6130, 2400, 318, 2979, '2.0000', '6.4000', '6.4000', '6.4000', '6.4000', '36.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2937, '2022-09-17', 6348, 2675, 319, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '53.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2936, '2022-09-17', 6508, 2674, 319, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '19.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2935, '2022-09-17', 5695, 2673, 319, 665, '1.0000', '5.2000', '5.2000', '7.6300', '7.6300', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2934, '2022-09-17', 6306, 2672, 319, 1375, '2.0000', '6.2300', '6.2300', '6.2300', '6.2300', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2933, '2022-09-17', 5792, 2671, 319, 1978, '1.0000', '30.2000', '30.2000', '30.2000', '30.2000', '55.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2932, '2022-09-17', 5853, 2670, 319, 2363, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '114.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2931, '2022-09-17', 6337, 2669, 319, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2930, '2022-09-17', 5535, 2668, 319, 2277, '8.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1503.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2929, '2022-09-17', 5967, 2667, 319, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2748.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2928, '2022-09-17', 5726, 2666, 319, 915, '1.0000', '15.9000', '15.9000', '15.9000', '15.9000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2927, '2022-09-17', 5676, 2665, 319, 2018, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '107.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2926, '2022-09-17', 5573, 2664, 319, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '999.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2925, '2022-09-17', 5847, 2663, 319, 3136, '4.0000', '3.1651', '3.1651', '6.1000', '6.1000', '537.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2924, '2022-09-17', 5640, 2662, 319, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '124.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2923, '2022-09-17', 6205, 2661, 319, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '203.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2922, '2022-09-17', 5418, 2660, 319, 2061, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2921, '2022-09-17', 6078, 2659, 319, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '579.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2920, '2022-09-17', 6436, 2658, 319, 1448, '10.0000', '1.9500', '1.9500', '1.9500', '1.9500', '8.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2919, '2022-09-17', 6323, 2657, 319, 1055, '2.0000', '39.0000', '39.0000', '39.0000', '39.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2918, '2022-09-17', 6074, 2656, 319, 2303, '13.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1599.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2917, '2022-09-17', 5926, 2655, 319, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '477.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2916, '2022-09-17', 6509, 2654, 319, 2077, '1.0000', '13.2500', '13.2500', '13.2500', '13.2500', '116.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2915, '2022-09-17', 6371, 2653, 319, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2998, '2022-09-17', 5765, 2734, 338, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2676, '2022-09-17', 5770, 2424, 320, 3079, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2677, '2022-09-17', 6377, 2425, 320, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '29.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2678, '2022-09-17', 6144, 2426, 320, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '19.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2679, '2022-09-17', 6612, 2427, 320, 1104, '2.0000', '15.9500', '15.9500', '15.9500', '15.9500', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2680, '2022-09-17', 5980, 2428, 320, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2681, '2022-09-17', 5710, 2429, 320, 1300, '10.0000', '4.0200', '4.0200', '4.0200', '4.0200', '131.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2682, '2022-09-17', 6644, 2430, 320, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '33.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2683, '2022-09-17', 6301, 2431, 320, 1339, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '69.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2684, '2022-09-17', 5731, 2432, 320, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '228.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2685, '2022-09-17', 5740, 2433, 320, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '524.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2686, '2022-09-17', 6134, 2434, 320, 1880, '1.0000', '5.8000', '5.8000', '5.8000', '5.8000', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2687, '2022-09-17', 5548, 2435, 320, 2374, '1.0000', '2.9800', '2.9800', '2.9800', '2.9800', '292.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2688, '2022-09-17', 6132, 2436, 320, 1879, '1.0000', '4.3500', '4.3500', '4.3500', '4.3500', '130.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2689, '2022-09-17', 5549, 2437, 320, 2372, '1.0000', '8.2000', '8.2000', '8.2000', '8.2000', '323.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2690, '2022-09-17', 6225, 2438, 320, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '258.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2691, '2022-09-17', 6528, 2439, 320, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '337.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2692, '2022-09-17', 5677, 2440, 320, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '324.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2693, '2022-09-17', 6220, 2441, 320, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '377.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2718, '2022-09-17', 6409, 2465, 321, 1422, '4.0000', '4.6700', '4.6700', '4.6700', '4.6700', '175.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2764, '2022-09-17', 5631, 2511, 322, 1992, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '114.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2763, '2022-09-17', 6375, 2510, 322, 3065, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2762, '2022-09-17', 6533, 2509, 322, 1441, '2.0000', '3.9000', '3.9000', '3.9000', '3.9000', '12.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2761, '2022-09-17', 6232, 2508, 322, 1424, '4.0000', '7.1000', '7.1000', '7.1000', '7.1000', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2760, '2022-09-17', 5949, 2507, 322, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '838.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2759, '2022-09-17', 5641, 2506, 322, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '104.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2758, '2022-09-17', 6332, 2505, 322, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '54.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2757, '2022-09-17', 5948, 2504, 322, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '430.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2756, '2022-09-17', 6095, 2503, 322, 3138, '3.0000', '8.3200', '8.3200', '8.3200', '8.3200', '215.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2755, '2022-09-17', 6298, 2502, 322, NULL, '4.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2754, '2022-09-17', 5740, 2501, 322, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '521.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2753, '2022-09-17', 5427, 2500, 322, 2365, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2752, '2022-09-17', 6692, 2499, 322, 3043, '4.0000', '8.0000', '8.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2765, '2022-09-17', 5853, 2512, 322, 2363, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '124.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2766, '2022-09-17', 6316, 2513, 323, 2359, '5.0000', '62.0000', '62.0000', '62.0000', '62.0000', '26.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2767, '2022-09-17', 5616, 2514, 323, 3503, '24.0000', '7.0000', '7.0000', '7.7000', '7.7000', '99.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2735, '2022-09-17', 5853, 2482, 324, 2363, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '124.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2736, '2022-09-17', 6010, 2483, 324, 2362, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2737, '2022-09-17', 6011, 2484, 324, 3028, '3.0000', '14.2100', '14.2100', '14.2100', '14.2100', '56.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3046, '2022-09-17', 5557, 2780, 335, 565, '1.0000', '175.6100', '175.6100', '175.6100', '175.6100', '8.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2817, '2022-09-17', 6744, 2562, 325, 1145, '5.0000', '9.9600', '9.9600', '9.9600', '9.9600', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2818, '2022-09-17', 6528, 2563, 325, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '332.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2819, '2022-09-17', 6228, 2564, 325, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2820, '2022-09-17', 6078, 2565, 325, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '579.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2821, '2022-09-17', 5948, 2566, 325, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '428.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2822, '2022-09-17', 5853, 2567, 326, 2363, '12.0000', '10.5000', '10.5000', '10.5000', '10.5000', '114.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2823, '2022-09-17', 6490, 2568, 326, 2109, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '32.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2824, '2022-09-17', 6365, 2569, 326, 2038, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '150.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2825, '2022-09-17', 6389, 2570, 326, 961, '10.0000', '7.4000', '7.4000', '7.4000', '7.4000', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2826, '2022-09-17', 5623, 2571, 326, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '83.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2827, '2022-09-17', 6337, 2572, 326, 2582, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '13.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2828, '2022-09-17', 6007, 2573, 326, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '87.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2829, '2022-09-17', 6007, 2574, 326, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2830, '2022-09-17', 6377, 2575, 326, 1465, '2.0000', '55.0000', '55.0000', '55.0000', '55.0000', '27.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2831, '2022-09-17', 6449, 2576, 326, 1942, '3.0000', '25.5000', '25.5000', '25.5000', '25.5000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2832, '2022-09-17', 5595, 2577, 326, 3516, '-1.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2833, '2022-09-17', 5595, 2577, 326, NULL, '3.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2834, '2022-09-17', 6884, 2578, 326, 3122, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '71.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2835, '2022-09-17', 6668, 2579, 326, 1067, '4.0000', '8.9000', '8.9000', '8.9000', '8.9000', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2836, '2022-09-17', 6212, 2580, 326, 3048, '4.0000', '6.6500', '6.6500', '6.6500', '6.6500', '102.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2837, '2022-09-17', 6213, 2581, 326, 3049, '4.0000', '6.6500', '6.6500', '6.6500', '6.6500', '140.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3047, '2022-09-17', 6032, 2782, 339, 2322, '20.0000', '17.2100', '17.2100', '17.2100', '17.2100', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3019, '2022-09-17', 5451, 2753, 327, 2387, '4.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1309.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3018, '2022-09-17', 6224, 2752, 327, 2385, '9.0000', '1.9000', '1.9000', '1.9000', '1.9000', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3017, '2022-09-17', 6224, 2752, 327, 3013, '1.0000', '1.9000', '1.9000', '1.9000', '1.9000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3016, '2022-09-17', 6217, 2751, 327, 2377, '3.0000', '2.8800', '2.8800', '2.8800', '2.8800', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3015, '2022-09-17', 5948, 2750, 327, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '424.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3014, '2022-09-17', 6071, 2749, 327, 1911, '2.0000', '19.6000', '19.6000', '19.6000', '19.6000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3013, '2022-09-17', 5607, 2748, 327, NULL, '2.0000', '11.4000', '11.4000', '11.4000', '11.4000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3012, '2022-09-17', 5607, 2748, 327, 3434, '-1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3011, '2022-09-17', 6572, 2747, 327, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '138.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3010, '2022-09-17', 5976, 2746, 327, 2581, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '35.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3009, '2022-09-17', 6592, 2745, 327, 2373, '4.0000', '3.1800', '3.1800', '3.1800', '3.1800', '113.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3008, '2022-09-17', 6193, 2744, 327, 2115, '4.0000', '6.6000', '6.6000', '6.6000', '6.6000', '25.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3007, '2022-09-17', 5511, 2743, 327, 3406, '1.0000', '9.0000', '9.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3021, '2022-09-17', 6448, 2755, 340, 2265, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '62.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2853, '2022-09-17', 6218, 2594, 328, 1388, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2854, '2022-09-17', 6218, 2594, 328, 947, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '68.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2855, '2022-09-17', 5640, 2595, 329, 3066, '10.0000', '11.1000', '11.1000', '11.1000', '11.1000', '126.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2856, '2022-09-17', 6326, 2596, 329, 1462, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '46.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2857, '2022-09-17', 5898, 2597, 329, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '291.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2858, '2022-09-17', 6189, 2598, 329, 1884, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2859, '2022-09-17', 6189, 2598, 329, NULL, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2860, '2022-09-17', 6831, 2599, 329, 3391, '25.0000', '1.6000', '1.6000', '1.6000', '1.6000', '682.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2861, '2022-09-17', 5677, 2600, 330, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '322.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2862, '2022-09-17', 6220, 2601, 331, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '372.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2863, '2022-09-17', 6082, 2602, 331, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '231.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2999, '2022-09-17', 6595, 2735, 332, 2565, '3.0000', '7.9000', '7.9000', '7.9000', '7.9000', '78.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2865, '2022-09-17', 6197, 2604, 333, 2573, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2866, '2022-09-17', 6095, 2605, 333, 3138, '5.0000', '8.3200', '8.3200', '8.3200', '8.3200', '210.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2867, '2022-09-17', 5451, 2606, 333, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1309.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2868, '2022-09-17', 5749, 2607, 333, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '126.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2869, '2022-09-17', 5731, 2608, 333, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '225.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2870, '2022-09-17', 6010, 2609, 333, 2362, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '148.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2871, '2022-09-17', 6750, 2610, 333, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '55.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2872, '2022-09-17', 5447, 2611, 333, 3034, '2.0000', '19.8000', '19.8000', '19.8000', '19.8000', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2873, '2022-09-17', 5640, 2612, 333, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '124.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2874, '2022-09-17', 5641, 2613, 333, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '103.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2875, '2022-09-17', 6153, 2614, 333, 3400, '1.0000', '77.0000', '77.0000', '77.0000', '77.0000', '9.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2876, '2022-09-17', 6455, 2615, 333, 3047, '1.0000', '19.5800', '19.5800', '19.5800', '19.5800', '59.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2877, '2022-09-17', 5677, 2616, 333, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '320.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2878, '2022-09-17', 5983, 2617, 333, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '191.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2879, '2022-09-17', 6371, 2618, 333, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2880, '2022-09-17', 6834, 2619, 333, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '97.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2881, '2022-09-17', 6421, 2620, 333, NULL, '1.0000', '0.0000', '0.0000', '9.9400', '9.9400', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2882, '2022-09-17', 6316, 2621, 333, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2883, '2022-09-17', 6194, 2622, 334, 2261, '10.0000', '5.3000', '5.3000', '5.3000', '5.3000', '100.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2884, '2022-09-17', 6195, 2623, 334, 2260, '10.0000', '5.3000', '5.3000', '5.3000', '5.3000', '100.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2885, '2022-09-17', 6144, 2624, 334, 1864, '5.0000', '88.9000', '88.9000', '88.9000', '88.9000', '14.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2886, '2022-09-17', 5586, 2625, 334, 3135, '50.0000', '28.9000', '28.9000', '28.9000', '28.9000', '232.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2887, '2022-09-17', 5657, 2626, 334, 3072, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2888, '2022-09-17', 6337, 2627, 334, 2582, '8.0000', '49.5300', '49.5300', '49.5300', '49.5300', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2889, '2022-09-17', 6032, 2628, 334, 2322, '10.0000', '17.2100', '17.2100', '17.2100', '17.2100', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2890, '2022-09-17', 6878, 2629, 334, 3120, '100.0000', '2.1375', '2.1375', '1.2000', '1.2000', '350.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3045, '2022-09-17', 6479, 2779, 335, 319, '1.0000', '39.7000', '39.7000', '39.7000', '39.7000', '17.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3044, '2022-09-17', 5795, 2778, 335, 1421, '1.0000', '35.3000', '35.3000', '35.3000', '35.3000', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3043, '2022-09-17', 6260, 2777, 335, 2314, '4.0000', '5.7000', '5.7000', '5.7000', '5.7000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3042, '2022-09-17', 6204, 2776, 335, 2312, '2.0000', '15.8000', '15.8000', '15.8000', '15.8000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3041, '2022-09-17', 5827, 2775, 335, 2055, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '30.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3040, '2022-09-17', 6627, 2774, 335, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3039, '2022-09-17', 5581, 2773, 335, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '175.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3038, '2022-09-17', 6416, 2772, 335, 962, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '71.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3037, '2022-09-17', 5616, 2771, 335, 3503, '10.0000', '7.0000', '7.0000', '7.7000', '7.7000', '89.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3036, '2022-09-17', 6449, 2770, 335, 1942, '3.0000', '25.5000', '25.5000', '25.5000', '25.5000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3035, '2022-09-17', 5967, 2769, 335, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2743.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3034, '2022-09-17', 5849, 2768, 335, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '126.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3033, '2022-09-17', 5980, 2767, 335, 3036, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3032, '2022-09-17', 5585, 2766, 335, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '56.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3031, '2022-09-17', 6010, 2765, 335, 2362, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3030, '2022-09-17', 5853, 2764, 335, 2363, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '108.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3029, '2022-09-17', 5456, 2763, 335, 2330, '4.0000', '10.6000', '10.6000', '10.6000', '10.6000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3028, '2022-09-17', 5926, 2762, 335, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '465.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3027, '2022-09-17', 5969, 2761, 335, 2252, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '200.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3026, '2022-09-17', 6039, 2760, 335, 2985, '1.0000', '4.5500', '4.5500', '4.5500', '4.5500', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3025, '2022-09-17', 6078, 2759, 335, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '577.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3024, '2022-09-17', 5731, 2758, 335, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '215.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3048, '2022-09-17', 5677, 2783, 342, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '317.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3000, '2022-09-17', 6615, 2736, 332, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '57.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2964, '2022-09-17', 5471, 2702, 336, 2106, '1.0000', '5.0400', '5.0400', '5.0400', '5.0400', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2965, '2022-09-17', 5471, 2702, 336, 902, '1.0000', '5.0400', '5.0400', '5.0400', '5.0400', '99.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2966, '2022-09-17', 6890, 2703, 336, 3548, '3.0000', '3.5000', '3.5000', '4.6000', '4.6000', '615.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2967, '2022-09-17', 5448, 2704, 336, 2266, '1.0000', '14.5000', '14.5000', '14.5000', '14.5000', '99.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2968, '2022-09-17', 5926, 2705, 336, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '465.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2969, '2022-09-17', 6353, 2706, 336, 2339, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '311.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2970, '2022-09-17', 5625, 2707, 336, 3504, '2.0000', '4.1000', '4.1000', '4.1000', '4.1000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2971, '2022-09-17', 6557, 2708, 337, 3410, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2972, '2022-09-17', 6035, 2709, 337, 3431, '-2.0000', '7.9900', '7.9900', '7.9900', '7.9900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2973, '2022-09-17', 6035, 2709, 337, NULL, '7.0000', '7.9900', '7.9900', '7.9900', '7.9900', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3001, '2022-09-17', 5827, 2737, 332, 2055, '3.0000', '5.9000', '5.9000', '5.9000', '5.9000', '30.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3002, '2022-09-17', 6438, 2738, 332, 546, '1.0000', '34.0000', '34.0000', '34.0000', '34.0000', '39.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3003, '2022-09-17', 6038, 2739, 332, 526, '1.0000', '8.6400', '8.6400', '8.6400', '8.6400', '149.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3004, '2022-09-17', 5957, 2740, 332, 3543, '1.0000', '3.7691', '3.7691', '8.8200', '8.8200', '10.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3005, '2022-09-17', 5584, 2741, 332, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3006, '2022-09-17', 5992, 2742, 332, NULL, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3022, '2022-09-17', 6139, 2756, 341, 3055, '1.0000', '15.9500', '15.9500', '15.9500', '15.9500', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3023, '2022-09-17', 6088, 2757, 341, 1291, '1.0000', '23.5000', '23.5000', '23.5000', '23.5000', '17.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3049, '2022-09-17', 5898, 2784, 342, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '289.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3050, '2022-09-17', 5418, 2785, 342, 2061, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3051, '2022-09-17', 6285, 2786, 342, 2324, '2.0000', '9.4700', '9.4700', '9.4700', '9.4700', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3052, '2022-09-17', 5911, 2787, 342, 3042, '1.0000', '28.8750', '28.8750', '23.1000', '23.1000', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3053, '2022-09-17', 5731, 2788, 342, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '213.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3054, '2022-09-17', 5740, 2789, 342, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '519.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3055, '2022-09-17', 5535, 2790, 342, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1493.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3056, '2022-09-17', 5654, 2791, 342, 3030, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3057, '2022-09-17', 5926, 2792, 342, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '463.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3058, '2022-09-17', 5770, 2793, 342, 3079, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3059, '2022-09-17', 5991, 2794, 342, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3060, '2022-09-17', 6218, 2795, 343, 947, '1.0000', '13.5800', '13.5800', '13.5800', '13.5800', '67.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3061, '2022-09-17', 5947, 2796, 343, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '24.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3074, '2022-09-17', 5650, 2809, 344, 1438, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '24.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3073, '2022-09-17', 6354, 2808, 344, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '590.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3072, '2022-09-17', 6198, 2807, 344, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3071, '2022-09-17', 6590, 2806, 344, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '70.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3070, '2022-09-17', 6818, 2805, 344, 3067, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '234.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3075, '2022-09-17', 6877, 2810, 344, 3134, '2.0000', '12.6000', '12.6000', '14.0000', '14.0000', '57.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3068, '2022-09-17', 5598, 2803, 345, 3031, '1.0000', '2.6000', '2.6000', '2.6000', '2.6000', '531.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3069, '2022-09-17', 6813, 2804, 345, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '54.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3076, '2022-09-17', 5714, 2811, 346, 2280, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3077, '2022-09-17', 6353, 2812, 346, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '301.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3078, '2022-09-17', 6371, 2813, 346, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3079, '2022-09-17', 6205, 2814, 346, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '202.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3080, '2022-09-17', 5991, 2815, 346, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '12.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3081, '2022-09-17', 5535, 2816, 346, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1483.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3082, '2022-09-17', 6361, 2817, 346, 2264, '1.0000', '49.5000', '49.5000', '49.5000', '49.5000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3083, '2022-09-17', 6375, 2818, 346, 3065, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '41.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3084, '2022-09-17', 5451, 2819, 346, 2387, '7.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1302.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3085, '2022-09-17', 5740, 2820, 346, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '517.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3086, '2022-09-17', 5418, 2821, 346, 2061, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3087, '2022-09-17', 5418, 2821, 346, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '382.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3088, '2022-09-17', 6007, 2822, 346, 2327, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '74.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3089, '2022-09-17', 6074, 2823, 346, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1589.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3090, '2022-09-17', 5677, 2824, 346, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '313.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3091, '2022-09-17', 5853, 2825, 346, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '106.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3092, '2022-09-17', 6845, 2826, 346, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3093, '2022-09-17', 6843, 2827, 346, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3094, '2022-09-17', 6151, 2828, 347, 2101, '1.0000', '6.7000', '6.7000', '6.7000', '6.7000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3095, '2022-09-17', 6651, 2829, 347, 1127, '1.0000', '7.4400', '7.4400', '7.4400', '7.4400', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3096, '2022-09-17', 6889, 2830, 348, 3133, '1.0000', '24.3000', '24.3000', '27.0000', '27.0000', '43.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3097, '2022-09-17', 5947, 2831, 349, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3098, '2022-09-19', 5892, 2832, 350, 3507, '2.0000', '11.4667', '11.4667', '8.6000', '8.6000', '13.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3099, '2022-09-19', 6337, 2833, 350, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3100, '2022-09-19', 5447, 2834, 350, 3034, '3.0000', '19.8000', '19.8000', '19.8000', '19.8000', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3101, '2022-09-19', 5749, 2835, 350, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '125.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3102, '2022-09-19', 6337, 2836, 351, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3103, '2022-09-19', 5975, 2837, 351, 2253, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3104, '2022-09-19', 5967, 2838, 351, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2740.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3105, '2022-09-19', 6180, 2839, 351, 1861, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '81.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3106, '2022-09-19', 5973, 2840, 351, 1398, '2.0000', '8.3000', '8.3000', '8.3000', '8.3000', '2.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3107, '2022-09-19', 6744, 2841, 351, 1145, '2.0000', '9.9600', '9.9600', '9.9600', '9.9600', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3108, '2022-09-19', 6649, 2842, 351, 996, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '70.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3109, '2022-09-19', 5740, 2843, 351, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '515.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3110, '2022-09-19', 6074, 2844, 352, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1584.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3111, '2022-09-19', 5713, 2845, 352, 3069, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '41.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3112, '2022-09-19', 6455, 2846, 352, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3113, '2022-09-19', 6007, 2847, 352, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3114, '2022-09-19', 5967, 2848, 352, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2737.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3115, '2022-09-19', 5532, 2849, 352, 3396, '1.0000', '56.1000', '56.1000', '60.7800', '60.7800', '71.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3116, '2022-09-19', 6219, 2850, 352, 2117, '10.0000', '2.6900', '2.6900', '2.6900', '2.6900', '170.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3117, '2022-09-19', 5926, 2851, 353, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '453.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3118, '2022-09-19', 6864, 2852, 353, 3082, '10.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4737.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3119, '2022-09-19', 5949, 2853, 353, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '828.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3120, '2022-09-19', 5948, 2854, 353, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '414.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3121, '2022-09-19', 5731, 2855, 353, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '208.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3122, '2022-09-19', 6531, 2856, 353, 1060, '6.0000', '9.5000', '9.5000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3123, '2022-09-19', 6590, 2857, 353, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3124, '2022-09-19', 6205, 2858, 353, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '201.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3125, '2022-09-19', 5592, 2859, 353, 3046, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3126, '2022-09-19', 5740, 2860, 353, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '511.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3138, '2022-09-19', 6696, 2872, 354, 2282, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '374.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3137, '2022-09-19', 6310, 2871, 354, NULL, '2.0000', '0.0000', '0.0000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3136, '2022-09-19', 6838, 2870, 354, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '90.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3135, '2022-09-19', 5640, 2869, 354, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '122.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3134, '2022-09-19', 6221, 2868, 354, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3139, '2022-09-19', 6353, 2873, 354, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '291.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3133, '2022-09-19', 6219, 2867, 355, 2117, '10.0000', '2.6900', '2.6900', '2.6900', '2.6900', '160.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3320, '2022-09-19', 6328, 3049, 361, 2567, '1.0000', '26.9000', '26.9000', '26.9000', '26.9000', '12.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3306, '2022-09-19', 5528, 3035, 357, 509, '1.0000', '11.5800', '11.5800', '11.5800', '11.5800', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3305, '2022-09-19', 5853, 3034, 357, 2363, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '103.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3304, '2022-09-19', 5427, 3033, 357, 2365, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '143.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3303, '2022-09-19', 5898, 3032, 357, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '284.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3302, '2022-09-19', 5476, 3031, 357, 2992, '3.0000', '-49557911.5565', '-49557911.5565', '13.3000', '13.3000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3301, '2022-09-19', 5689, 3030, 357, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '183.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3300, '2022-09-19', 6228, 3029, 357, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '12.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3299, '2022-09-19', 5593, 3028, 357, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3298, '2022-09-19', 6353, 3027, 357, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '281.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3297, '2022-09-19', 5584, 3026, 357, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3296, '2022-09-19', 6378, 3025, 357, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '84.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3295, '2022-09-19', 6619, 3024, 357, 3412, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '60.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3294, '2022-09-19', 6876, 3023, 357, 3015, '20.0000', '0.9800', '0.9800', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3293, '2022-09-19', 5573, 3022, 357, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '998.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3292, '2022-09-19', 5729, 3021, 357, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '98.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3291, '2022-09-19', 5632, 3020, 357, 1991, '2.0000', '8.0000', '8.0000', '8.0000', '8.0000', '115.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3290, '2022-09-19', 5631, 3019, 357, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '112.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3289, '2022-09-19', 5949, 3018, 357, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '823.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3288, '2022-09-19', 5740, 3017, 357, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '504.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3287, '2022-09-19', 6297, 3016, 357, 1855, '3.0000', '10.4000', '10.4000', '10.4000', '10.4000', '65.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3286, '2022-09-19', 6298, 3015, 357, NULL, '17.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3285, '2022-09-19', 6298, 3015, 357, 3557, '-14.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3284, '2022-09-19', 6201, 3014, 357, 2315, '3.0000', '6.9000', '6.9000', '8.7000', '8.7000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3283, '2022-09-19', 5977, 3013, 357, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '99.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3282, '2022-09-19', 5969, 3012, 357, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '195.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3281, '2022-09-19', 6464, 3011, 357, 1160, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3280, '2022-09-19', 6860, 3010, 357, 1977, '3.0000', '16.8000', '16.8000', '18.0000', '18.0000', '163.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3279, '2022-09-19', 6383, 3009, 357, 3064, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '54.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3278, '2022-09-19', 5754, 3008, 357, 3505, '3.0000', '7.2000', '7.2000', '7.2000', '7.2000', '48.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3277, '2022-09-19', 6389, 3007, 357, 961, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '18.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3276, '2022-09-19', 6446, 3006, 357, 1449, '3.0000', '4.9000', '4.9000', '4.9000', '4.9000', '132.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3275, '2022-09-19', 6409, 3005, 357, 1422, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '171.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3274, '2022-09-19', 6408, 3004, 357, 2978, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '73.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3273, '2022-09-19', 5705, 3003, 357, 1169, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3272, '2022-09-19', 6572, 3002, 357, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '135.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3271, '2022-09-19', 5976, 3001, 357, 2581, '4.0000', '7.7000', '7.7000', '7.8000', '7.8000', '26.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3270, '2022-09-19', 6225, 3000, 357, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '248.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3269, '2022-09-19', 5657, 2999, 357, 2382, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3268, '2022-09-19', 5657, 2999, 357, 3072, '7.0000', '4.2000', '4.2000', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3267, '2022-09-19', 6220, 2998, 357, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '357.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3266, '2022-09-19', 6744, 2997, 357, 1145, '2.0000', '9.9600', '9.9600', '9.9600', '9.9600', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3265, '2022-09-19', 6692, 2996, 357, 3043, '1.0000', '8.0000', '8.0000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3264, '2022-09-19', 5799, 2995, 357, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '175.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3263, '2022-09-19', 5978, 2994, 357, 3068, '1.0000', '21.3000', '21.3000', '21.3000', '21.3000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3262, '2022-09-19', 6751, 2993, 357, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '8.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3261, '2022-09-19', 6348, 2992, 357, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '52.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3260, '2022-09-19', 5640, 2991, 357, 3066, '6.0000', '11.1000', '11.1000', '11.1000', '11.1000', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3259, '2022-09-19', 6352, 2990, 357, 1409, '20.0000', '2.5000', '2.5000', '2.5000', '2.5000', '249.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3258, '2022-09-19', 6354, 2989, 357, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '580.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3257, '2022-09-19', 5713, 2988, 357, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3256, '2022-09-19', 5985, 2987, 357, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '69.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3255, '2022-09-19', 6738, 2986, 357, 1905, '6.0000', '3.0000', '3.0000', '3.0000', '3.0000', '170.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3254, '2022-09-19', 6088, 2985, 357, 1291, '3.0000', '23.5000', '23.5000', '23.5000', '23.5000', '14.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3253, '2022-09-19', 5674, 2984, 357, 3549, '20.0000', '1.5000', '1.5000', '1.5000', '1.5000', '466.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3252, '2022-09-19', 6396, 2983, 357, 2980, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3251, '2022-09-19', 6294, 2982, 357, 1412, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '74.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3250, '2022-09-19', 6373, 2981, 357, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '18.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3307, '2022-09-19', 6226, 3036, 365, 3491, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '76.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3199, '2022-09-19', 5947, 2931, 358, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '22.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3200, '2022-09-19', 6371, 2932, 359, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3201, '2022-09-19', 6337, 2933, 359, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '2.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3202, '2022-09-19', 6750, 2934, 359, 2125, '4.0000', '6.7000', '6.7000', '6.7000', '6.7000', '51.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3203, '2022-09-19', 5624, 2935, 359, 908, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3204, '2022-09-19', 5447, 2936, 359, 3034, '1.0000', '19.8000', '19.8000', '27.2500', '27.2500', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3205, '2022-09-19', 6285, 2937, 359, 2324, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3206, '2022-09-19', 6095, 2938, 359, 3138, '3.0000', '8.3200', '8.3200', '8.3200', '8.3200', '207.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3207, '2022-09-19', 5740, 2939, 359, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '504.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3208, '2022-09-19', 5976, 2940, 359, 2581, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '26.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3209, '2022-09-19', 6082, 2941, 359, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '229.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3210, '2022-09-19', 5969, 2942, 359, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '195.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3211, '2022-09-19', 5799, 2943, 359, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '175.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3212, '2022-09-19', 5541, 2944, 359, 905, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3213, '2022-09-19', 5618, 2945, 359, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '113.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3214, '2022-09-19', 5619, 2946, 359, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '115.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3215, '2022-09-19', 5535, 2947, 359, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1473.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3216, '2022-09-19', 6074, 2948, 359, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1581.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3319, '2022-09-19', 6691, 3048, 361, 1994, '4.0000', '6.5000', '6.5000', '6.5000', '6.5000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3318, '2022-09-19', 5847, 3047, 361, 3136, '2.0000', '3.1651', '3.1651', '6.1000', '6.1000', '535.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3317, '2022-09-19', 6078, 3046, 361, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '573.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3316, '2022-09-19', 6604, 3045, 361, 766, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '497.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3315, '2022-09-19', 6228, 3044, 361, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '12.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3314, '2022-09-19', 5977, 3043, 361, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '99.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3313, '2022-09-19', 6572, 3042, 361, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '134.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3312, '2022-09-19', 5689, 3041, 361, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '183.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3311, '2022-09-19', 5993, 3040, 361, 1868, '2.0000', '7.0000', '7.0000', '9.2200', '9.2200', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3310, '2022-09-19', 5418, 3039, 361, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '379.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3309, '2022-09-19', 6684, 3038, 361, 2129, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '24.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3308, '2022-09-19', 6451, 3037, 361, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '18.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3321, '2022-09-19', 5729, 3050, 361, 1993, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '98.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3231, '2022-09-19', 5532, 2964, 362, 3396, '4.0000', '56.1000', '56.1000', '60.7800', '60.7800', '67.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3232, '2022-09-19', 6078, 2965, 362, 2352, '3.0000', '42.0000', '42.0000', '42.0000', '42.0000', '573.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3233, '2022-09-19', 5585, 2966, 362, 2973, '3.0000', '23.4000', '23.4000', '23.4000', '23.4000', '53.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3234, '2022-09-19', 5978, 2967, 362, 3068, '1.0000', '21.3000', '21.3000', '21.3000', '21.3000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3235, '2022-09-19', 6298, 2968, 362, 3557, '-7.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3236, '2022-09-19', 6298, 2968, 362, NULL, '17.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3237, '2022-09-19', 5657, 2969, 362, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3238, '2022-09-19', 6220, 2970, 362, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '357.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3239, '2022-09-19', 6627, 2971, 362, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '28.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3240, '2022-09-19', 5749, 2972, 362, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '120.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3241, '2022-09-19', 6862, 2973, 362, 3584, '5.0000', '3.5455', '3.5455', '4.0200', '4.0200', '91.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3242, '2022-09-19', 6057, 2974, 362, 1045, '2.0000', '33.2100', '33.2100', '33.2100', '33.2100', '82.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3243, '2022-09-19', 5589, 2975, 363, 2370, '1.0000', '9.4000', '9.4000', '9.4000', '9.4000', '176.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3244, '2022-09-19', 5795, 2976, 363, 1421, '1.0000', '35.3000', '35.3000', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3245, '2022-09-19', 6440, 2977, 363, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '9.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3246, '2022-09-19', 5795, 2978, 364, 1421, '3.0000', '35.3000', '35.3000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3247, '2022-09-19', 5795, 2978, 364, 658, '1.0000', '35.3000', '35.3000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3248, '2022-09-19', 5589, 2979, 364, 2370, '4.0000', '9.4000', '9.4000', '9.4000', '9.4000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3249, '2022-09-19', 6440, 2980, 364, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '8.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3367, '2022-09-19', 6396, 3095, 369, 2980, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3366, '2022-09-19', 6337, 3094, 368, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3365, '2022-09-19', 6473, 3093, 366, 548, '1.0000', '54.8000', '54.8000', '54.8000', '54.8000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3363, '2022-09-19', 6765, 3091, 366, 1011, '3.0000', '59.0000', '59.0000', '59.0000', '59.0000', '50.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3362, '2022-09-19', 6778, 3090, 366, 2052, '5.0000', '19.3400', '19.3400', '26.1800', '26.1800', '158.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3361, '2022-09-19', 5616, 3089, 366, 3503, '10.0000', '7.0000', '7.0000', '7.7000', '7.7000', '79.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3360, '2022-09-19', 5993, 3088, 366, 1868, '5.0000', '7.0000', '7.0000', '9.2200', '9.2200', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3359, '2022-09-19', 6328, 3087, 366, 2567, '2.0000', '26.9000', '26.9000', '26.9000', '26.9000', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3358, '2022-09-19', 6753, 3086, 366, 2307, '4.0000', '85.0000', '85.0000', '85.0000', '85.0000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3364, '2022-09-19', 5785, 3092, 366, 640, '1.0000', '63.0000', '63.0000', '63.0000', '63.0000', '8.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3368, '2022-09-19', 6074, 3096, 369, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1579.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3333, '2022-09-19', 6644, 3061, 367, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '28.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3334, '2022-09-19', 6883, 3062, 367, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '93.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3335, '2022-09-19', 6285, 3063, 367, 2324, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3336, '2022-09-19', 5731, 3064, 367, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '203.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3337, '2022-09-19', 6532, 3065, 367, 3579, '5.0000', '8.0796', '8.0796', '9.3700', '9.3700', '115.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3338, '2022-09-19', 6339, 3066, 367, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3339, '2022-09-19', 6264, 3067, 367, 3404, '7.0000', '6.0000', '6.0000', '6.8500', '6.8500', '113.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3340, '2022-09-19', 6205, 3068, 367, 3026, '3.0000', '38.5000', '38.5000', '38.5000', '38.5000', '198.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3341, '2022-09-19', 5847, 3069, 367, 3136, '3.0000', '3.1651', '3.1651', '6.1000', '6.1000', '532.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3342, '2022-09-19', 6353, 3070, 367, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '271.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3343, '2022-09-19', 6293, 3071, 367, 3486, '10.0000', '14.6000', '14.6000', '14.6000', '14.6000', '230.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3344, '2022-09-19', 6078, 3072, 367, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '571.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3345, '2022-09-19', 6243, 3073, 367, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '19.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3346, '2022-09-19', 6832, 3074, 367, 1381, '20.0000', '2.6000', '2.6000', '2.6000', '2.6000', '378.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3347, '2022-09-19', 6294, 3075, 367, 1412, '3.0000', '23.0000', '23.0000', '30.0000', '30.0000', '71.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3348, '2022-09-19', 6396, 3076, 367, 2980, '4.0000', '13.5000', '13.5000', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3349, '2022-09-19', 5956, 3077, 367, 930, '3.0000', '17.8400', '17.8400', '17.8400', '17.8400', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3350, '2022-09-19', 6075, 3078, 367, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1996.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3369, '2022-09-19', 6378, 3097, 369, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3370, '2022-09-19', 5949, 3098, 369, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '821.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3371, '2022-09-19', 5717, 3099, 369, 2381, '10.0000', '2.4000', '2.4000', '2.4000', '2.4000', '290.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3372, '2022-09-19', 6872, 3100, 369, 3012, '5.0000', '2.0000', '2.0000', '2.2000', '2.2000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3373, '2022-09-19', 6007, 3101, 369, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '71.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3374, '2022-09-19', 6862, 3102, 369, 3584, '1.0000', '3.5455', '3.5455', '4.0200', '4.0200', '90.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3375, '2022-09-19', 5435, 3103, 369, 2308, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3376, '2022-09-19', 6219, 3104, 370, 2117, '4.0000', '2.6900', '2.6900', '2.6900', '2.6900', '156.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3377, '2022-09-19', 6191, 3105, 371, 3018, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '96.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3378, '2022-09-19', 6378, 3106, 372, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '82.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6386, '2022-09-19', 6888, 6068, 373, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '23.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6385, '2022-09-19', 6887, 6067, 373, 3126, '2.0000', '16.2000', '16.2000', '18.0000', '18.0000', '28.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6384, '2022-09-19', 6877, 6066, 373, 3134, '4.0000', '12.6000', '12.6000', '14.0000', '14.0000', '50.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6383, '2022-09-19', 6860, 6065, 373, 1977, '6.0000', '16.8000', '16.8000', '18.0000', '18.0000', '82.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6382, '2022-09-19', 6852, 6064, 373, 3502, '8.0000', '8.4000', '8.4000', '11.8000', '11.8000', '40.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6381, '2022-09-19', 6850, 6063, 373, 1292, '10.0000', '2.8900', '2.8900', '2.8900', '2.8900', '18.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6380, '2022-09-19', 6843, 6062, 373, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6379, '2022-09-19', 6818, 6061, 373, 3067, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '222.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6378, '2022-09-19', 6816, 6060, 373, 3390, '2.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '57.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6377, '2022-09-19', 6815, 6059, 373, 3499, '6.0000', '9.2100', '9.2100', '9.2100', '9.2100', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6376, '2022-09-19', 6804, 6058, 373, 644, '2.0000', '54.9000', '54.9000', '54.9000', '54.9000', '1.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6375, '2022-09-19', 6766, 6057, 373, 1399, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6374, '2022-09-19', 6766, 6057, 373, 3669, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6373, '2022-09-19', 6754, 6056, 373, 1906, '20.0000', '4.5000', '4.5000', '4.5000', '4.5000', '362.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6372, '2022-09-19', 6750, 6055, 373, 2125, '6.0000', '6.7000', '6.7000', '6.7000', '6.7000', '41.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6371, '2022-09-19', 6696, 6054, 373, 2282, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '352.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6370, '2022-09-19', 6684, 6053, 373, 2129, '3.0000', '29.7000', '29.7000', '29.7000', '29.7000', '21.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6369, '2022-09-19', 6612, 6052, 373, 1104, '4.0000', '15.9500', '15.9500', '15.9500', '15.9500', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6368, '2022-09-19', 6611, 6051, 373, 1096, '6.0000', '8.8000', '8.8000', '8.8000', '8.8000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6367, '2022-09-19', 6607, 6050, 373, 2583, '6.0000', '16.0000', '16.0000', '16.0000', '16.0000', '75.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6366, '2022-09-19', 6593, 6049, 373, 3618, '5.0000', '1.6500', '1.6500', '1.6000', '1.6000', '595.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6365, '2022-09-19', 6573, 6048, 373, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6364, '2022-09-19', 6547, 6047, 373, 2997, '3.0000', '9.8000', '9.8000', '9.8000', '9.8000', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6363, '2022-09-19', 6538, 6046, 373, 3074, '8.0000', '10.3000', '10.3000', '10.3000', '10.3000', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6362, '2022-09-19', 6517, 6045, 373, 2254, '4.0000', '8.7000', '8.7000', '10.4500', '10.4500', '75.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6361, '2022-09-19', 6510, 6044, 373, 2079, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6360, '2022-09-19', 6429, 6043, 373, 545, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '20.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6359, '2022-09-19', 6428, 6042, 373, 544, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '42.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6358, '2022-09-19', 6353, 6041, 373, 2339, '40.0000', '3.7500', '3.7500', '3.7500', '3.7500', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6357, '2022-09-19', 6337, 6040, 373, 2325, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6356, '2022-09-19', 6337, 6040, 373, 2582, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6355, '2022-09-19', 6326, 6039, 373, 1462, '10.0000', '14.0000', '14.0000', '14.0000', '14.0000', '12.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6354, '2022-09-19', 6304, 6038, 373, 1853, '6.0000', '13.5000', '13.5000', '13.5000', '13.5000', '125.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6353, '2022-09-19', 6293, 6037, 373, 3486, '4.0000', '14.6000', '14.6000', '14.6000', '14.6000', '197.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6352, '2022-09-19', 6286, 6036, 373, 953, '1.0000', '9.6000', '9.6000', '9.6000', '9.6000', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6351, '2022-09-19', 6286, 6036, 373, 3668, '3.0000', '9.6000', '9.6000', '9.6000', '9.6000', '0.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6350, '2022-09-19', 6285, 6035, 373, 2057, '1.0000', '9.4700', '9.4700', '10.9800', '10.9800', '100.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6349, '2022-09-19', 6285, 6035, 373, 2324, '9.0000', '9.4700', '9.4700', '10.9800', '10.9800', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6348, '2022-09-19', 6283, 6034, 373, 2335, '10.0000', '5.1000', '5.1000', '6.0200', '6.0200', '72.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6347, '2022-09-19', 6272, 6033, 373, 1138, '1.0000', '31.5000', '31.5000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6346, '2022-09-19', 6243, 6032, 373, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '18.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6345, '2022-09-19', 6233, 6031, 373, 1276, '10.0000', '6.0000', '6.0000', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6344, '2022-09-19', 6232, 6030, 373, 3587, '10.0000', '6.4556', '6.4556', '7.1000', '7.1000', '129.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6343, '2022-09-19', 6211, 6029, 373, 2305, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6342, '2022-09-19', 6207, 6028, 373, 2375, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6341, '2022-09-19', 6204, 6027, 373, 2312, '4.0000', '15.8000', '15.8000', '17.7000', '17.7000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6340, '2022-09-19', 6188, 6026, 373, 3080, '6.0000', '7.0000', '7.0000', '7.0000', '7.0000', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6339, '2022-09-19', 6125, 6025, 373, 3053, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '170.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6338, '2022-09-19', 6100, 6024, 373, 3001, '6.0000', '18.0000', '18.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6337, '2022-09-19', 6088, 6023, 373, 1291, '3.0000', '23.5000', '23.5000', '23.5000', '23.5000', '3.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6336, '2022-09-19', 6074, 6022, 373, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1341.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6335, '2022-09-19', 6037, 6021, 373, 1315, '8.0000', '9.1000', '9.1000', '9.1000', '9.1000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6334, '2022-09-19', 6034, 6020, 373, 1874, '2.0000', '41.8000', '41.8000', '41.8000', '41.8000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6333, '2022-09-19', 6033, 6019, 373, 3490, '3.0000', '31.4000', '31.4000', '31.4000', '31.4000', '27.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6332, '2022-09-19', 6020, 6018, 373, 3512, '3.0000', '16.1378', '16.1378', '20.9000', '20.9000', '0.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6331, '2022-09-19', 6007, 6017, 373, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6330, '2022-09-19', 5986, 6016, 373, 2579, '4.0000', '13.7000', '13.7000', '14.2500', '14.2500', '2.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6329, '2022-09-19', 5982, 6015, 373, 1963, '8.0000', '7.9400', '7.9400', '10.5500', '10.5500', '145.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6328, '2022-09-19', 5962, 6014, 373, 522, '6.0000', '6.9900', '6.9900', '6.9900', '6.9900', '55.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6327, '2022-09-19', 5949, 6013, 373, 1311, '25.0000', '5.2000', '5.2000', '7.3000', '7.3000', '666.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6326, '2022-09-19', 5926, 6012, 373, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '195.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6325, '2022-09-19', 5849, 6011, 373, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6324, '2022-09-19', 5827, 6010, 373, 3651, '10.0000', '5.9947', '5.9947', '5.9000', '5.9000', '150.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6323, '2022-09-19', 5729, 6009, 373, 1993, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '61.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6322, '2022-09-19', 5676, 6008, 373, 2018, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '93.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6321, '2022-09-19', 5640, 6007, 373, 3066, '10.0000', '11.1000', '11.1000', '11.1000', '11.1000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6320, '2022-09-19', 5593, 6006, 373, 2290, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6319, '2022-09-19', 5592, 6005, 373, 3046, '10.0000', '7.1500', '7.1500', '7.1500', '7.1500', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6318, '2022-09-19', 5576, 6004, 373, 1108, '6.0000', '8.7000', '8.7000', '8.7000', '8.7000', '54.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6317, '2022-09-19', 5487, 6003, 373, 507, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6316, '2022-09-19', 5448, 6002, 373, 2266, '4.0000', '14.5000', '14.5000', '14.5000', '14.5000', '95.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6315, '2022-09-19', 5418, 6001, 373, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '254.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6387, '2022-09-26', 6294, 6069, 645, 1412, '15.0000', '23.0000', '23.0000', '30.0000', '30.0000', '49.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3452, '2022-09-19', 6129, 3177, 374, 3399, '6.0000', '3.4000', '3.4000', '3.4000', '3.4000', '73.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3453, '2022-09-19', 6880, 3178, 375, 3128, '2.0000', '13.5000', '13.5000', '15.0000', '15.0000', '398.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3454, '2022-09-19', 5799, 3179, 375, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '174.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3455, '2022-09-19', 6345, 3180, 375, 1922, '1.0000', '3.6300', '3.6300', '3.6300', '3.6300', '113.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3456, '2022-09-19', 6779, 3181, 376, 1074, '2.0000', '46.0000', '46.0000', '46.0000', '46.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3457, '2022-09-19', 6736, 3182, 376, 574, '2.0000', '38.2000', '38.2000', '38.2000', '38.2000', '2.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3458, '2022-09-19', 6474, 3183, 376, 549, '1.0000', '71.2000', '71.2000', '71.2000', '71.2000', '48.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3459, '2022-09-19', 6647, 3184, 376, 1353, '4.0000', '8.9000', '8.9000', '8.7500', '8.7500', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3511, '2022-09-19', 6745, 3236, 377, 1362, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3510, '2022-09-19', 5586, 3235, 377, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '230.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3509, '2022-09-19', 5535, 3234, 377, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1468.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3508, '2022-09-19', 5623, 3233, 377, 2556, '3.0000', '18.9000', '18.9000', '18.9000', '18.9000', '80.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3507, '2022-09-19', 6120, 3232, 377, 1995, '1.0000', '14.8500', '14.8500', '14.8500', '14.8500', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3506, '2022-09-19', 5731, 3231, 377, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '193.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3505, '2022-09-19', 5740, 3230, 377, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '494.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3504, '2022-09-19', 6445, 3229, 377, 3581, '3.0000', '21.8000', '21.8000', '21.6000', '21.6000', '87.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3503, '2022-09-19', 5926, 3228, 377, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '423.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3502, '2022-09-19', 6322, 3227, 377, 3425, '2.0000', '21.8300', '21.8300', '21.8300', '21.8300', '42.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3501, '2022-09-19', 5576, 3226, 377, 1108, '3.0000', '8.7000', '8.7000', '8.7000', '8.7000', '56.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3500, '2022-09-19', 5729, 3225, 377, 1993, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '88.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3499, '2022-09-19', 5969, 3224, 377, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '191.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3498, '2022-09-19', 5931, 3223, 377, 1090, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '58.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3497, '2022-09-19', 6409, 3222, 377, 1422, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '166.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3496, '2022-09-19', 6408, 3221, 377, 2978, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '68.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3495, '2022-09-19', 5976, 3220, 377, 2581, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '21.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3494, '2022-09-19', 6584, 3219, 377, 3411, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '17.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3493, '2022-09-19', 6000, 3218, 377, 2317, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3492, '2022-09-19', 5956, 3217, 377, 930, '3.0000', '17.8400', '17.8400', '17.8400', '17.8400', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3491, '2022-09-19', 6529, 3216, 377, 2006, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '21.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3512, '2022-09-19', 6647, 3237, 377, 1353, '2.0000', '8.9000', '8.9000', '8.7500', '8.7500', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3482, '2022-09-19', 5640, 3207, 378, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '103.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3483, '2022-09-19', 6872, 3208, 378, 3012, '3.0000', '2.0000', '2.0000', '2.2000', '2.2000', '4.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3484, '2022-09-19', 5847, 3209, 378, 3136, '2.0000', '3.1651', '3.1651', '6.1000', '6.1000', '530.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3485, '2022-09-19', 6007, 3210, 378, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '60.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3486, '2022-09-19', 5996, 3211, 378, 933, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '722.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3487, '2022-09-19', 6876, 3212, 378, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3488, '2022-09-19', 6817, 3213, 379, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '69.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3489, '2022-09-19', 6860, 3214, 380, 1977, '1.0000', '16.8000', '16.8000', '18.0000', '18.0000', '156.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3490, '2022-09-19', 6847, 3215, 381, 2091, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3513, '2022-09-19', 5715, 3238, 382, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3733, '2022-09-19', 5623, 3462, 383, 2556, '3.0000', '18.9000', '18.9000', '18.9000', '18.9000', '77.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3732, '2022-09-19', 5967, 3461, 383, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2697.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3731, '2022-09-19', 6389, 3460, 383, 961, '5.0000', '7.4000', '7.4000', '7.4000', '7.4000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3730, '2022-09-19', 6890, 3459, 383, 3548, '50.0000', '3.5000', '3.5000', '4.6000', '4.6000', '565.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3729, '2022-09-19', 6371, 3458, 383, 2268, '25.0000', '27.5000', '27.5000', '27.5000', '27.5000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3728, '2022-09-19', 6879, 3457, 383, 3121, '8.0000', '3.8700', '3.8700', '4.3000', '4.3000', '380.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3727, '2022-09-19', 6558, 3456, 383, 983, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3726, '2022-09-19', 6099, 3454, 383, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '40.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3725, '2022-09-19', 6573, 3453, 383, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3724, '2022-09-19', 6572, 3452, 383, 2993, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '127.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3723, '2022-09-19', 6819, 3451, 383, 1929, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3722, '2022-09-19', 5793, 3450, 383, 519, '2.0000', '47.0000', '47.0000', '47.0000', '47.0000', '27.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3721, '2022-09-19', 6678, 3449, 383, 1461, '3.0000', '14.3000', '14.3000', '14.3000', '14.3000', '28.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3720, '2022-09-19', 6677, 3448, 383, 1274, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '284.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3719, '2022-09-19', 6595, 3447, 383, 2565, '5.0000', '7.9000', '7.9000', '7.9000', '7.9000', '73.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3718, '2022-09-19', 6843, 3446, 383, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3717, '2022-09-19', 6877, 3445, 383, 3134, '3.0000', '12.6000', '12.6000', '14.0000', '14.0000', '50.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3716, '2022-09-19', 6166, 3444, 383, 3602, '3.0000', '5.8000', '5.8000', '5.8000', '5.8000', '35.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3715, '2022-09-19', 6107, 3443, 383, 1875, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '178.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3714, '2022-09-19', 6601, 3442, 383, 1931, '1.0000', '44.6000', '44.6000', '50.3500', '50.3500', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3713, '2022-09-19', 6140, 3441, 383, 1882, '1.0000', '30.8000', '30.8000', '30.8000', '30.8000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3712, '2022-09-19', 6354, 3440, 383, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '570.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3711, '2022-09-19', 6451, 3439, 383, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '17.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3710, '2022-09-19', 5619, 3438, 383, 3509, '3.0000', '6.6300', '6.6300', '7.8000', '7.8000', '108.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3709, '2022-09-19', 6474, 3437, 383, 549, '1.0000', '71.2000', '71.2000', '71.2000', '71.2000', '47.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3682, '2022-09-19', 6557, 3409, 396, 3410, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3540, '2022-09-19', 6226, 3265, 384, 3491, '6.0000', '1.9000', '1.9000', '1.9000', '1.9000', '70.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3541, '2022-09-19', 5967, 3266, 384, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2717.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3542, '2022-09-19', 6273, 3267, 385, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '125.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3543, '2022-09-19', 6590, 3268, 386, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3544, '2022-09-19', 5640, 3269, 386, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '102.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3545, '2022-09-19', 5996, 3270, 386, 933, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '717.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3546, '2022-09-19', 6744, 3271, 387, 1145, '1.0000', '9.9600', '9.9600', '9.9600', '9.9600', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3547, '2022-09-19', 6074, 3272, 388, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1519.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3939, '2022-09-20', 6640, 3668, 398, 3413, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '63.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3938, '2022-09-19', 6370, 3667, 389, 3420, '3.0000', '24.5000', '24.5000', '24.5000', '24.5000', '17.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3937, '2022-09-19', 6371, 3666, 389, 2268, '2.0000', '27.5000', '27.5000', '27.5000', '27.5000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3936, '2022-09-19', 6082, 3665, 389, 3032, '4.0000', '6.9000', '6.9000', '6.9000', '6.9000', '225.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3935, '2022-09-19', 5696, 3664, 389, 514, '4.0000', '14.0000', '14.0000', '14.0000', '14.0000', '64.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3934, '2022-09-19', 6286, 3663, 389, 953, '5.0000', '9.6000', '9.6000', '9.6000', '9.6000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3933, '2022-09-19', 6628, 3662, 389, 994, '5.0000', '5.4000', '5.4000', '5.8000', '5.8000', '45.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3932, '2022-09-19', 5798, 3661, 389, 920, '2.0000', '19.3400', '19.3400', '19.3400', '19.3400', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3931, '2022-09-19', 6042, 3660, 389, 938, '2.0000', '25.9500', '25.9500', '25.9500', '25.9500', '52.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3930, '2022-09-19', 6363, 3659, 389, 1411, '4.0000', '14.8000', '14.8000', '22.7800', '22.7800', '199.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3929, '2022-09-19', 5585, 3658, 389, 2973, '3.0000', '23.4000', '23.4000', '23.4000', '23.4000', '50.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3928, '2022-09-19', 5586, 3657, 389, 3135, '3.0000', '28.9000', '28.9000', '28.9000', '28.9000', '227.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3927, '2022-09-19', 5676, 3656, 389, 2018, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '101.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3926, '2022-09-19', 6220, 3655, 389, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '347.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3925, '2022-09-19', 5657, 3654, 389, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '331.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3924, '2022-09-19', 6813, 3653, 389, 2037, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '49.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3923, '2022-09-19', 5419, 3652, 389, 2128, '3.0000', '14.9000', '14.9000', '14.9000', '14.9000', '56.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3922, '2022-09-19', 5584, 3651, 389, 2124, '2.0000', '17.5000', '17.5000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3921, '2022-09-19', 6122, 3650, 389, 648, '3.0000', '47.2000', '47.2000', '47.2000', '47.2000', '25.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3920, '2022-09-19', 5540, 3649, 389, 1280, '3.0000', '22.0000', '22.0000', '22.0000', '22.0000', '58.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3919, '2022-09-19', 6437, 3648, 389, 1275, '4.0000', '18.1000', '18.1000', '18.1000', '18.1000', '26.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3918, '2022-09-19', 6337, 3647, 389, 2325, '4.0000', '49.5300', '49.5300', '49.5300', '49.5300', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3917, '2022-09-19', 6101, 3646, 389, 2999, '3.0000', '28.5000', '28.5000', '28.5000', '28.5000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3916, '2022-09-19', 6137, 3645, 389, 2276, '4.0000', '15.0000', '15.0000', '15.0000', '15.0000', '140.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3915, '2022-09-19', 6883, 3644, 389, 3129, '10.0000', '6.3000', '6.3000', '7.0000', '7.0000', '83.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3914, '2022-09-19', 6333, 3643, 389, 2361, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '122.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3913, '2022-09-19', 5898, 3642, 389, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '279.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3912, '2022-09-19', 5451, 3641, 389, 2387, '10.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1292.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3911, '2022-09-19', 5740, 3640, 389, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '484.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3910, '2022-09-19', 6882, 3639, 389, 3130, '1.0000', '22.5000', '22.5000', '25.0000', '25.0000', '28.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3909, '2022-09-19', 6552, 3638, 389, 1459, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '6.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3908, '2022-09-19', 6613, 3637, 389, 2300, '3.0000', '45.6000', '45.6000', '45.6000', '45.6000', '123.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3907, '2022-09-19', 5440, 3636, 389, 2998, '10.0000', '3.4100', '3.4100', '3.4100', '3.4100', '34.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3906, '2022-09-19', 6642, 3635, 389, 3414, '5.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '44.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3905, '2022-09-19', 6126, 3634, 389, 1473, '2.0000', '11.7000', '11.7000', '23.3000', '23.3000', '42.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3904, '2022-09-19', 5949, 3633, 389, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '786.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3903, '2022-09-19', 5926, 3632, 389, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '413.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3902, '2022-09-19', 5982, 3631, 389, 1963, '5.0000', '7.9400', '7.9400', '10.5500', '10.5500', '157.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3901, '2022-09-19', 5976, 3630, 389, 2581, '6.0000', '7.7000', '7.7000', '7.8000', '7.8000', '15.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3900, '2022-09-19', 5580, 3629, 389, 3511, '10.0000', '7.2414', '7.2414', '8.4000', '8.4000', '110.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3899, '2022-09-19', 5723, 3628, 389, 1286, '2.0000', '9.0000', '9.0000', '9.0000', '9.0000', '19.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3898, '2022-09-19', 6188, 3627, 389, 3080, '8.0000', '7.0000', '7.0000', '7.0000', '7.0000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3897, '2022-09-19', 6436, 3626, 389, 3589, '6.0000', '3.5319', '3.5319', '5.3200', '5.3200', '94.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3896, '2022-09-19', 5581, 3625, 389, 2343, '3.0000', '11.3000', '11.3000', '11.3000', '11.3000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3895, '2022-09-19', 6690, 3624, 389, 1857, '6.0000', '8.2500', '8.2500', '8.2500', '8.2500', '30.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3894, '2022-09-19', 6596, 3623, 389, 1349, '1.0000', '18.9000', '18.9000', '18.9000', '18.9000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3893, '2022-09-19', 5729, 3622, 389, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '83.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3892, '2022-09-19', 6242, 3621, 389, 3588, '4.0000', '58.3529', '58.3529', '66.5300', '66.5300', '96.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3891, '2022-09-19', 5677, 3620, 389, 2351, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '307.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3890, '2022-09-19', 5853, 3619, 389, 2363, '7.0000', '10.5000', '10.5000', '10.5000', '10.5000', '96.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3889, '2022-09-19', 5881, 3618, 389, 3427, '5.0000', '13.5000', '13.5000', '14.8500', '14.8500', '95.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3888, '2022-09-19', 6083, 3617, 389, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '202.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3887, '2022-09-19', 6097, 3616, 389, 3045, '10.0000', '7.2000', '7.2000', '7.2000', '7.2000', '105.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3886, '2022-09-19', 5654, 3615, 389, 3030, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3885, '2022-09-19', 5587, 3614, 389, 3076, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '201.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3884, '2022-09-19', 6131, 3613, 389, 3077, '3.0000', '18.0000', '18.0000', '18.0000', '18.0000', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3883, '2022-09-19', 5589, 3612, 389, 2370, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '167.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3882, '2022-09-19', 6446, 3611, 389, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '127.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3881, '2022-09-19', 5629, 3610, 389, 1429, '6.0000', '8.4000', '8.4000', '8.4000', '8.4000', '93.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3880, '2022-09-19', 5730, 3609, 389, 3005, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '109.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3879, '2022-09-19', 6561, 3608, 389, 589, '4.0000', '25.0000', '25.0000', '25.0000', '25.0000', '17.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3878, '2022-09-19', 6033, 3607, 389, 3490, '4.0000', '31.4000', '31.4000', '31.4000', '31.4000', '27.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3877, '2022-09-19', 5418, 3606, 389, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '361.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3876, '2022-09-19', 6509, 3605, 389, 2077, '5.0000', '13.2500', '13.2500', '13.2500', '13.2500', '111.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3875, '2022-09-19', 5570, 3604, 389, 327, '1.0000', '148.0500', '148.0500', '148.0500', '148.0500', '1.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3874, '2022-09-19', 5967, 3603, 389, 3132, '20.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2697.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3873, '2022-09-19', 6288, 3602, 389, 1416, '3.0000', '56.0000', '56.0000', '66.5200', '66.5200', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3872, '2022-09-19', 6353, 3601, 389, 2339, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '211.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3871, '2022-09-19', 6605, 3600, 389, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '104.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3870, '2022-09-19', 5640, 3599, 389, 3066, '6.0000', '11.1000', '11.1000', '11.1000', '11.1000', '94.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3869, '2022-09-19', 6753, 3598, 389, 2307, '3.0000', '85.0000', '85.0000', '85.0000', '85.0000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3868, '2022-09-19', 5641, 3597, 389, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '101.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3867, '2022-09-19', 6383, 3596, 389, 3064, '6.0000', '8.2000', '8.2000', '8.2000', '8.2000', '48.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3866, '2022-09-19', 6201, 3595, 389, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3865, '2022-09-19', 5435, 3594, 389, 2308, '6.0000', '7.4000', '7.4000', '7.4000', '7.4000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3864, '2022-09-19', 6385, 3593, 389, 2251, '6.0000', '7.4000', '7.4000', '7.4000', '7.4000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3863, '2022-09-19', 6393, 3592, 389, 2082, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '54.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3862, '2022-09-19', 5704, 3591, 389, 911, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '46.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3861, '2022-09-19', 6294, 3590, 389, 1412, '3.0000', '23.0000', '23.0000', '30.0000', '30.0000', '68.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3860, '2022-09-19', 6368, 3589, 389, 1091, '6.0000', '12.8400', '12.8400', '12.8400', '12.8400', '29.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3859, '2022-09-19', 5619, 3588, 389, 3509, '4.0000', '6.6300', '6.6300', '7.8000', '7.8000', '108.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3858, '2022-09-19', 6572, 3587, 389, 2993, '4.0000', '17.0000', '17.0000', '17.0000', '17.0000', '127.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3857, '2022-09-19', 5459, 3586, 389, 1377, '4.0000', '5.9000', '5.9000', '5.9000', '5.9000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3856, '2022-09-19', 6195, 3585, 389, 2260, '5.0000', '5.3000', '5.3000', '5.3000', '5.3000', '95.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3855, '2022-09-19', 6194, 3584, 389, 2261, '5.0000', '5.3000', '5.3000', '5.3000', '5.3000', '95.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3854, '2022-09-19', 6285, 3583, 389, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '143.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3853, '2022-09-19', 6053, 3582, 389, 2331, '5.0000', '14.9000', '14.9000', '14.9000', '14.9000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3852, '2022-09-19', 5515, 3581, 389, 3508, '8.0000', '4.6800', '4.6800', '5.5000', '5.5000', '192.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3851, '2022-09-19', 6389, 3580, 389, 961, '8.0000', '7.4000', '7.4000', '7.4000', '7.4000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3850, '2022-09-19', 5592, 3579, 389, 3046, '8.0000', '7.1500', '7.1500', '7.1500', '7.1500', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3849, '2022-09-19', 6215, 3578, 389, 2283, '2.0000', '30.6900', '30.6900', '30.6900', '30.6900', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3848, '2022-09-19', 6529, 3577, 389, 2006, '4.0000', '12.5000', '12.5000', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3847, '2022-09-19', 6741, 3576, 389, 1361, '8.0000', '5.7000', '5.7000', '5.7000', '5.7000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3846, '2022-09-19', 5792, 3575, 389, 1978, '4.0000', '30.2000', '30.2000', '36.9900', '36.9900', '51.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3845, '2022-09-19', 6232, 3574, 389, 3587, '8.0000', '6.4556', '6.4556', '7.1000', '7.1000', '182.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3844, '2022-09-19', 5633, 3573, 389, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '13.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3843, '2022-09-19', 6233, 3572, 389, 1276, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3842, '2022-09-19', 6105, 3571, 389, 3603, '4.0000', '12.0000', '12.0000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3841, '2022-09-19', 6126, 3570, 389, 1473, '4.0000', '11.7000', '11.7000', '11.7000', '11.7000', '40.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3840, '2022-09-19', 5596, 3569, 389, 2256, '4.0000', '16.8000', '16.8000', '16.8000', '16.8000', '93.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3839, '2022-09-19', 6378, 3568, 389, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '81.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3940, '2022-09-20', 6205, 3669, 398, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '197.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3941, '2022-09-20', 6075, 3670, 398, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1980.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3651, '2022-09-19', 5715, 3376, 390, 3023, '4.0000', '13.1400', '13.1400', '13.1400', '13.1400', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3652, '2022-09-19', 6605, 3377, 391, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '104.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3653, '2022-09-19', 6075, 3378, 391, 3025, '11.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1985.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3654, '2022-09-19', 5885, 3379, 392, 1103, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '84.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3681, '2022-09-19', 6304, 3407, 394, 1853, '1.0000', '13.5000', '13.5000', '13.5000', '13.5000', '145.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3734, '2022-09-19', 6580, 3463, 383, 552, '1.0000', '328.9000', '328.9000', '328.9000', '328.9000', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3735, '2022-09-19', 5640, 3464, 397, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '94.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3736, '2022-09-19', 6817, 3465, 397, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '68.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3942, '2022-09-20', 6198, 3671, 399, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3988, '2022-09-20', 5770, 3717, 400, 3079, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3987, '2022-09-20', 6879, 3716, 400, 3121, '2.0000', '3.8700', '3.8700', '4.3000', '4.3000', '378.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3986, '2022-09-20', 6399, 3715, 400, 2019, '3.0000', '6.1000', '6.1000', '6.1000', '6.1000', '205.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3985, '2022-09-20', 6353, 3714, 400, 2339, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '208.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3984, '2022-09-20', 6222, 3713, 400, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3983, '2022-09-20', 5452, 3712, 400, 1030, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3982, '2022-09-20', 5654, 3711, 400, 3030, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3981, '2022-09-20', 6455, 3710, 400, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '57.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3980, '2022-09-20', 6177, 3709, 400, 3565, '1.0000', '176356371868290.0000', '176356371868290.0000', '3.5000', '3.5000', '183.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3979, '2022-09-20', 6176, 3708, 400, 2323, '2.0000', '4.1000', '4.1000', '4.1000', '4.1000', '282.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3978, '2022-09-20', 6391, 3707, 400, 762, '1.0000', '3.3200', '3.3200', '3.3200', '3.3200', '93.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3977, '2022-09-20', 6328, 3706, 400, 2567, '1.0000', '26.9000', '26.9000', '26.9000', '26.9000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3976, '2022-09-20', 6739, 3705, 400, 1407, '2.0000', '5.6000', '5.6000', '5.6000', '5.6000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3975, '2022-09-20', 5848, 3704, 400, 2369, '2.0000', '8.2800', '8.2800', '8.2800', '8.2800', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3974, '2022-09-20', 6386, 3703, 400, 2346, '3.0000', '3.2000', '3.2000', '3.2000', '3.2000', '393.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3989, '2022-09-20', 6074, 3718, 401, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1514.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3990, '2022-09-20', 6862, 3719, 401, 3584, '1.0000', '3.5455', '3.5455', '4.0200', '4.0200', '89.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3991, '2022-09-20', 6129, 3720, 401, 3399, '2.0000', '3.4000', '3.4000', '3.4000', '3.4000', '71.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4055, '2022-09-20', 5765, 3783, 402, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '10.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4054, '2022-09-20', 6285, 3782, 402, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '138.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4053, '2022-09-20', 6607, 3781, 402, 2583, '3.0000', '16.0000', '16.0000', '16.0000', '16.0000', '83.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4052, '2022-09-20', 5527, 3780, 402, 1464, '2.0000', '27.0000', '27.0000', '27.0000', '27.0000', '11.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4051, '2022-09-20', 5948, 3779, 402, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '404.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4050, '2022-09-20', 5624, 3778, 402, 908, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4049, '2022-09-20', 6125, 3777, 402, 3053, '5.0000', '10.5000', '10.5000', '12.5000', '12.5000', '175.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4048, '2022-09-20', 6290, 3776, 402, 2318, '1.0000', '122.4000', '122.4000', '122.4000', '122.4000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4056, '2022-09-20', 6075, 3784, 409, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1956.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4001, '2022-09-20', 6297, 3730, 403, 1855, '6.0000', '10.4000', '10.4000', '10.4000', '10.4000', '59.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4002, '2022-09-20', 6125, 3731, 403, 3053, '4.0000', '10.5000', '10.5000', '12.5000', '12.5000', '175.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4003, '2022-09-20', 6293, 3732, 403, 3486, '5.0000', '14.6000', '14.6000', '14.6000', '14.6000', '221.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4004, '2022-09-20', 6490, 3733, 403, 2109, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '30.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4005, '2022-09-20', 6401, 3734, 403, 1056, '1.0000', '37.3200', '37.3200', '37.3200', '37.3200', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4006, '2022-09-20', 5616, 3735, 403, 3503, '4.0000', '7.0000', '7.0000', '7.7000', '7.7000', '75.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4007, '2022-09-20', 6415, 3736, 403, 2056, '5.0000', '4.6200', '4.6200', '4.6200', '4.6200', '175.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4008, '2022-09-20', 6115, 3737, 403, 1156, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '36.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4009, '2022-09-20', 5963, 3738, 403, 3428, '2.0000', '14.5000', '14.5000', '15.9500', '15.9500', '58.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4010, '2022-09-20', 6879, 3739, 403, 3121, '10.0000', '3.8700', '3.8700', '4.3000', '4.3000', '368.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4011, '2022-09-20', 5799, 3740, 404, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '173.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4012, '2022-09-20', 6755, 3741, 405, 2098, '1.0000', '5.4000', '5.4000', '5.4000', '5.4000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4013, '2022-09-20', 6755, 3741, 405, 1009, '4.0000', '5.4000', '5.4000', '5.4000', '5.4000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4014, '2022-09-20', 6692, 3742, 405, 3043, '5.0000', '8.0000', '8.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4015, '2022-09-20', 5633, 3743, 406, 1033, '1.0000', '226.2100', '226.2100', '248.9000', '248.9000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4552, '2022-09-21', 6390, 4267, 474, 1910, '1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4551, '2022-09-20', 6327, 4266, 407, 649, '2.0000', '28.6000', '28.6000', '28.6000', '28.6000', '23.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4550, '2022-09-20', 6345, 4265, 407, 1922, '5.0000', '3.6300', '3.6300', '4.4000', '4.4000', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4549, '2022-09-20', 5983, 4264, 407, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '187.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4548, '2022-09-20', 6332, 4263, 407, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '49.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4547, '2022-09-20', 5840, 4262, 407, 2348, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4546, '2022-09-20', 5873, 4261, 407, 1307, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4545, '2022-09-20', 6278, 4260, 407, 1334, '2.0000', '27.5000', '27.5000', '27.5000', '27.5000', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4544, '2022-09-20', 6211, 4259, 407, 2305, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4543, '2022-09-20', 6206, 4258, 407, 2029, '2.0000', '7.8400', '7.8400', '7.8400', '7.8400', '24.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4542, '2022-09-20', 5984, 4257, 407, 3483, '2.0000', '19.5300', '19.5300', '22.9100', '22.9100', '85.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4541, '2022-09-20', 5848, 4256, 407, 2369, '1.0000', '8.2800', '8.2800', '8.2800', '8.2800', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4540, '2022-09-20', 5452, 4255, 407, 1030, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4539, '2022-09-20', 6668, 4254, 407, 1067, '1.0000', '8.9000', '8.9000', '8.9000', '8.9000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4538, '2022-09-20', 6170, 4253, 407, 1326, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4537, '2022-09-20', 6188, 4252, 407, 3080, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '64.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4536, '2022-09-20', 6778, 4251, 407, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '156.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4535, '2022-09-20', 5799, 4250, 407, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '170.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4534, '2022-09-20', 6294, 4249, 407, 1412, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4533, '2022-09-20', 6381, 4248, 407, 1490, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4532, '2022-09-20', 5834, 4247, 407, 1989, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4531, '2022-09-20', 6292, 4246, 407, 1489, '3.0000', '7.8000', '7.8000', '7.8000', '7.8000', '27.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4530, '2022-09-20', 6861, 4245, 407, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '10.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4579, '2022-09-21', 6170, 4293, 476, 1326, '5.0000', '10.0000', '10.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4040, '2022-09-20', 5435, 3768, 408, 2308, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4041, '2022-09-20', 6083, 3769, 408, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '200.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4042, '2022-09-20', 5654, 3770, 408, 3030, '2.0000', '2.0000', '2.0000', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4043, '2022-09-20', 5640, 3771, 408, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '93.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4044, '2022-09-20', 6220, 3772, 408, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '345.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4045, '2022-09-20', 6074, 3773, 408, 2303, '1.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1513.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4046, '2022-09-20', 6353, 3774, 408, 2339, '1.0000', '3.7500', '3.7500', '3.7500', '3.7500', '207.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4047, '2022-09-20', 6219, 3775, 408, 2117, '2.0000', '2.6900', '2.6900', '2.6900', '2.6900', '154.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4057, '2022-09-20', 6076, 3785, 409, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2253.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4058, '2022-09-20', 5451, 3786, 409, 2387, '15.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1277.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4059, '2022-09-20', 6417, 3787, 409, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '68.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4060, '2022-09-20', 5986, 3788, 409, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '18.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4061, '2022-09-20', 5731, 3789, 409, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '183.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4062, '2022-09-20', 6653, 3790, 410, 1065, '6.0000', '27.8000', '27.8000', '27.8000', '27.8000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4063, '2022-09-20', 5792, 3791, 411, 1978, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '49.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4064, '2022-09-20', 6007, 3792, 411, 2327, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4065, '2022-09-20', 5865, 3793, 411, 3052, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '385.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4066, '2022-09-20', 6219, 3794, 411, 2117, '13.0000', '2.6900', '2.6900', '2.6900', '2.6900', '141.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4067, '2022-09-20', 6491, 3795, 411, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '198.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4068, '2022-09-20', 6075, 3796, 411, 3025, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1950.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4069, '2022-09-20', 6076, 3797, 411, 3024, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2247.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4070, '2022-09-20', 5651, 3798, 411, 2987, '1.0000', '6.1700', '6.1700', '6.1700', '6.1700', '11.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4071, '2022-09-20', 6640, 3799, 411, 3413, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '58.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4072, '2022-09-20', 6506, 3800, 411, 1846, '3.0000', '3.8800', '3.8800', '3.8800', '3.8800', '31.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4073, '2022-09-20', 5641, 3801, 411, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '99.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4074, '2022-09-20', 6088, 3802, 411, 1291, '1.0000', '23.5000', '23.5000', '23.5000', '23.5000', '10.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4075, '2022-09-20', 6137, 3803, 411, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '139.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4186, '2022-09-20', 5749, 3910, 412, 1302, '3.0000', '8.1400', '8.1400', '8.1400', '8.1400', '117.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4185, '2022-09-20', 5601, 3909, 412, 3035, '4.0000', '4.2917', '4.2917', '4.3000', '4.3000', '120.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4184, '2022-09-20', 5535, 3908, 412, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1458.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4183, '2022-09-20', 6267, 3907, 412, 1425, '4.0000', '7.1000', '7.1000', '8.0400', '8.0400', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4182, '2022-09-20', 5898, 3906, 412, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '277.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4181, '2022-09-20', 6097, 3905, 412, 3045, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '103.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4180, '2022-09-20', 5509, 3904, 412, 1854, '4.0000', '6.8800', '6.8800', '6.8800', '6.8800', '25.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4179, '2022-09-20', 6304, 3903, 412, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '143.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4178, '2022-09-20', 6125, 3902, 412, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '172.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4177, '2022-09-20', 6161, 3901, 412, 1178, '4.0000', '5.3000', '5.3000', '5.3000', '5.3000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4176, '2022-09-20', 6389, 3900, 412, 961, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4175, '2022-09-20', 5640, 3899, 412, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4174, '2022-09-20', 6298, 3898, 412, NULL, '22.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-22.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4173, '2022-09-20', 6298, 3898, 412, 3557, '-17.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4172, '2022-09-20', 6095, 3897, 412, 3138, '4.0000', '8.3200', '8.3200', '8.3200', '8.3200', '198.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4171, '2022-09-20', 5731, 3896, 412, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4170, '2022-09-20', 5740, 3895, 412, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '481.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4169, '2022-09-20', 5451, 3894, 412, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1272.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4187, '2022-09-20', 5969, 3911, 412, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '188.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4188, '2022-09-20', 6134, 3912, 412, 1880, '4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4096, '2022-09-20', 5948, 3823, 413, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '402.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4097, '2022-09-20', 5991, 3824, 413, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4098, '2022-09-20', 6301, 3825, 413, 1339, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4099, '2022-09-20', 5849, 3826, 413, 2357, '2.0000', '3.1000', '3.1000', '3.1000', '3.1000', '118.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4100, '2022-09-20', 5418, 3827, 413, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '358.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4101, '2022-09-20', 5689, 3828, 413, 2050, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '180.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4102, '2022-09-20', 6020, 3829, 413, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4103, '2022-09-20', 6863, 3830, 413, 1024, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4104, '2022-09-20', 6864, 3831, 413, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4734.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4105, '2022-09-20', 5657, 3832, 413, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '329.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4106, '2022-09-20', 6220, 3833, 413, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '342.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4107, '2022-09-20', 5757, 3834, 413, 1115, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '107.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4108, '2022-09-20', 6867, 3835, 413, 1027, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4109, '2022-09-20', 6866, 3836, 413, 3552, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '106.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4110, '2022-09-20', 6217, 3837, 413, 2377, '3.0000', '2.8800', '2.8800', '2.8800', '2.8800', '49.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4111, '2022-09-20', 6032, 3838, 413, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4112, '2022-09-20', 5731, 3839, 414, 1917, '4.0000', '17.2000', '17.2000', '17.2000', '17.2000', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4113, '2022-09-20', 5418, 3840, 414, 1851, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '354.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4114, '2022-09-20', 6424, 3841, 414, 2380, '3.0000', '7.9300', '7.9300', '8.5500', '8.5500', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4115, '2022-09-20', 5677, 3842, 414, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '305.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4116, '2022-09-20', 5532, 3843, 414, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '65.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4117, '2022-09-20', 6118, 3844, 415, 647, '1.0000', '172.8000', '172.8000', '172.8000', '172.8000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4118, '2022-09-20', 6717, 3845, 415, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '11.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4119, '2022-09-20', 6703, 3846, 415, 1069, '1.0000', '12.0000', '12.0000', '12.0000', '12.0000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4120, '2022-09-20', 5711, 3847, 415, 2009, '1.0000', '44.8000', '44.8000', '44.8000', '44.8000', '8.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4121, '2022-09-20', 6552, 3848, 415, 1459, '3.0000', '186.8000', '186.8000', '186.8000', '186.8000', '3.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4122, '2022-09-20', 6020, 3849, 415, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4123, '2022-09-20', 5677, 3850, 415, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '302.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4124, '2022-09-20', 6293, 3851, 415, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '219.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4125, '2022-09-20', 5675, 3852, 415, 314, '1.0000', '65.0000', '65.0000', '65.0000', '65.0000', '5.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4126, '2022-09-20', 5640, 3853, 416, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '89.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4127, '2022-09-20', 6838, 3854, 416, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '89.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4128, '2022-09-20', 6221, 3855, 416, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6408, '2022-09-26', 5986, 6090, 648, 2311, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '105.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4527, '2022-09-20', 6765, 4242, 417, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '47.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4526, '2022-09-20', 6383, 4241, 417, 3064, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4525, '2022-09-20', 5677, 4240, 417, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '290.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4524, '2022-09-20', 6860, 4239, 417, 1977, '5.0000', '16.8000', '16.8000', '18.0000', '18.0000', '150.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4523, '2022-09-20', 6438, 4238, 417, 546, '1.0000', '34.0000', '34.0000', '34.0000', '34.0000', '38.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4522, '2022-09-20', 6078, 4237, 417, 2352, '3.0000', '42.0000', '42.0000', '42.0000', '42.0000', '568.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4521, '2022-09-20', 6747, 4236, 417, 3389, '4.0000', '12.9800', '12.9800', '12.9800', '12.9800', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4520, '2022-09-20', 6342, 4235, 417, 957, '1.0000', '58.1000', '58.1000', '58.1000', '58.1000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4519, '2022-09-20', 5640, 4234, 417, 3066, '10.0000', '11.1000', '11.1000', '11.1000', '11.1000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4518, '2022-09-20', 5765, 4233, 417, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4517, '2022-09-20', 6095, 4232, 417, 3138, '5.0000', '8.3200', '8.3200', '8.3200', '8.3200', '198.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4516, '2022-09-20', 6691, 4231, 417, 1994, '8.0000', '6.5000', '6.5000', '6.5000', '6.5000', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4515, '2022-09-20', 6883, 4230, 417, 3129, '3.0000', '6.3000', '6.3000', '7.0000', '7.0000', '78.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4529, '2022-09-21', 5624, 4244, 473, NULL, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4144, '2022-09-20', 6765, 3870, 418, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '47.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4145, '2022-09-20', 5983, 3871, 419, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '189.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4146, '2022-09-20', 5725, 3872, 420, 1301, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4147, '2022-09-20', 6703, 3873, 420, 1069, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '15.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4148, '2022-09-20', 6702, 3874, 420, 1068, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4149, '2022-09-20', 6232, 3875, 420, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '180.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4189, '2022-09-20', 5926, 3913, 421, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '403.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4190, '2022-09-20', 6074, 3914, 421, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1503.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4191, '2022-09-20', 6843, 3915, 421, 2000, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4192, '2022-09-20', 6205, 3916, 421, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '196.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4193, '2022-09-20', 5991, 3917, 421, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '10.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4194, '2022-09-20', 5740, 3918, 421, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '476.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4195, '2022-09-20', 5629, 3919, 421, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '90.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4196, '2022-09-20', 6559, 3920, 422, 984, '1.0000', '66.2000', '66.2000', '66.2000', '66.2000', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4197, '2022-09-20', 6519, 3921, 422, 975, '1.0000', '120.3600', '120.3600', '120.3600', '120.3600', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4198, '2022-09-20', 5535, 3922, 423, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1448.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4199, '2022-09-20', 6559, 3923, 423, 984, '1.0000', '66.2000', '66.2000', '66.2000', '66.2000', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4200, '2022-09-20', 6232, 3924, 424, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '178.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4201, '2022-09-20', 6233, 3925, 424, 1276, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4202, '2022-09-20', 5519, 3926, 425, NULL, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4203, '2022-09-20', 5713, 3927, 425, 3069, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4204, '2022-09-20', 6455, 3928, 425, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4205, '2022-09-20', 5582, 3929, 425, 2342, '2.0000', '12.5000', '12.5000', '12.5000', '12.5000', '298.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4206, '2022-09-20', 5581, 3930, 425, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '170.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4207, '2022-09-20', 6389, 3931, 425, 961, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4208, '2022-09-20', 6389, 3931, 425, NULL, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4209, '2022-09-20', 5948, 3932, 425, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '397.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4210, '2022-09-20', 6074, 3933, 425, 2303, '8.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1495.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4211, '2022-09-20', 5853, 3934, 425, 2363, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4212, '2022-09-20', 6348, 3935, 425, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '50.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4213, '2022-09-20', 5447, 3936, 425, 3034, '2.0000', '19.8000', '19.8000', '27.2500', '27.2500', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4214, '2022-09-20', 5906, 3937, 425, 2118, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '9.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4215, '2022-09-20', 6378, 3938, 425, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '79.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4216, '2022-09-20', 6633, 3939, 425, 650, '1.0000', '32.0000', '32.0000', '32.0000', '32.0000', '7.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4217, '2022-09-20', 6007, 3940, 425, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4218, '2022-09-20', 6136, 3941, 425, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '177.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4219, '2022-09-20', 5677, 3942, 426, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '295.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4220, '2022-09-20', 6417, 3943, 426, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '67.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4221, '2022-09-20', 6590, 3944, 426, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '66.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4222, '2022-09-20', 5853, 3945, 426, 2363, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4223, '2022-09-20', 5451, 3946, 426, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1269.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4224, '2022-09-20', 5949, 3947, 426, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '784.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4225, '2022-09-20', 6817, 3948, 426, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '67.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4226, '2022-09-20', 6136, 3949, 426, 1324, '1.0000', '3.8000', '3.8000', '3.8000', '3.8000', '176.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4227, '2022-09-20', 5535, 3950, 427, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1438.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4228, '2022-09-20', 6348, 3951, 427, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '49.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4229, '2022-09-20', 6220, 3952, 427, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '340.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4776, '2022-09-21', 5986, 4499, 488, 2579, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '12.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4775, '2022-09-21', 6859, 4498, 488, 1077, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '498.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4774, '2022-09-21', 6437, 4497, 488, 1275, '3.0000', '18.1000', '18.1000', '18.1000', '18.1000', '23.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4729, '2022-09-20', 6411, 4440, 428, 764, '2.0000', '17.6000', '17.6000', '17.6000', '17.6000', '71.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4773, '2022-09-21', 6749, 4496, 488, 3626, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4772, '2022-09-21', 5757, 4495, 488, 3636, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4771, '2022-09-21', 6843, 4494, 488, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4770, '2022-09-21', 6843, 4494, 488, 3625, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4769, '2022-09-21', 6417, 4493, 488, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '62.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4768, '2022-09-21', 6778, 4492, 488, 2052, '5.0000', '19.3400', '19.3400', '26.1800', '26.1800', '151.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4767, '2022-09-21', 5535, 4491, 488, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1398.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4766, '2022-09-21', 5799, 4490, 488, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '165.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4765, '2022-09-21', 6844, 4489, 487, 2084, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4764, '2022-09-21', 5652, 4488, 487, 2991, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '44.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4777, '2022-09-21', 6122, 4500, 488, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '23.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4245, '2022-09-20', 5767, 3968, 429, 1845, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '0.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4246, '2022-09-20', 6451, 3969, 430, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '16.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4247, '2022-09-20', 6248, 3970, 430, 1408, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '49.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4248, '2022-09-20', 6563, 3971, 430, 1063, '1.0000', '67.0000', '67.0000', '67.0000', '67.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4249, '2022-09-20', 5729, 3972, 431, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '78.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4250, '2022-09-20', 6703, 3973, 431, 1069, '4.0000', '12.0000', '12.0000', '12.0000', '12.0000', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4251, '2022-09-20', 6744, 3974, 431, 1145, '6.0000', '9.9600', '9.9600', '9.9600', '9.9600', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4252, '2022-09-20', 6744, 3974, 431, NULL, '2.0000', '9.9600', '9.9600', '9.9600', '9.9600', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4253, '2022-09-20', 6363, 3975, 431, 1411, '10.0000', '14.8000', '14.8000', '22.7800', '22.7800', '189.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4254, '2022-09-20', 6115, 3976, 431, 1156, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '31.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4255, '2022-09-20', 6117, 3977, 431, 2028, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '4.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4256, '2022-09-20', 5593, 3978, 431, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4257, '2022-09-20', 5976, 3979, 431, 2581, '10.0000', '7.7000', '7.7000', '7.8000', '7.8000', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4258, '2022-09-20', 6088, 3980, 431, 1291, '6.0000', '23.5000', '23.5000', '23.5000', '23.5000', '4.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4259, '2022-09-20', 5827, 3981, 431, 2055, '6.0000', '5.9000', '5.9000', '5.9000', '5.9000', '14.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4260, '2022-09-20', 5447, 3982, 431, 3034, '1.0000', '19.8000', '19.8000', '27.2500', '27.2500', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4261, '2022-09-20', 6401, 3983, 431, 1056, '1.0000', '37.3200', '37.3200', '37.3200', '37.3200', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4262, '2022-09-20', 5757, 3984, 431, 1115, '2.0000', '40.0000', '40.0000', '40.0000', '40.0000', '104.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4263, '2022-09-20', 6749, 3985, 431, 1945, '2.0000', '40.0000', '40.0000', '40.0000', '40.0000', '41.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4264, '2022-09-20', 5792, 3986, 431, 1978, '6.0000', '30.2000', '30.2000', '36.9900', '36.9900', '43.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4265, '2022-09-20', 6285, 3987, 431, 2057, '6.0000', '9.4700', '9.4700', '10.9800', '10.9800', '132.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4266, '2022-09-20', 6692, 3988, 431, NULL, '10.0000', '8.0000', '8.0000', '4.0000', '4.0000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4267, '2022-09-20', 6712, 3989, 431, 3387, '1.0000', '7.8000', '7.8000', '7.8000', '7.8000', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4268, '2022-09-20', 5616, 3990, 432, 3503, '48.0000', '7.0000', '7.0000', '8.0000', '8.0000', '27.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4269, '2022-09-20', 5715, 3991, 433, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '65.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4270, '2022-09-20', 5947, 3992, 433, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4271, '2022-09-20', 6074, 3993, 434, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1485.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4272, '2022-09-20', 5805, 3994, 434, 1305, '5.0000', '9.0000', '9.0000', '9.0000', '9.0000', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4273, '2022-09-20', 6038, 3995, 434, 526, '2.0000', '8.6400', '8.6400', '8.6400', '8.6400', '147.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4274, '2022-09-20', 5797, 3996, 434, 1303, '4.0000', '16.9000', '16.9000', '16.9000', '16.9000', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4275, '2022-09-20', 5904, 3997, 434, 1308, '3.0000', '24.7000', '24.7000', '24.7000', '24.7000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4276, '2022-09-20', 6529, 3998, 435, 2006, '4.0000', '12.5000', '12.5000', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4277, '2022-09-20', 6076, 3999, 436, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2235.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4278, '2022-09-20', 6613, 4000, 436, 2300, '2.0000', '45.6000', '45.6000', '45.6000', '45.6000', '121.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4279, '2022-09-20', 6779, 4001, 436, 1074, '2.0000', '46.0000', '46.0000', '46.0000', '46.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4280, '2022-09-20', 6563, 4002, 436, 1063, '1.0000', '67.0000', '67.0000', '67.0000', '67.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4281, '2022-09-20', 6327, 4003, 436, 649, '3.0000', '28.6000', '28.6000', '28.6000', '28.6000', '23.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4282, '2022-09-20', 6365, 4004, 436, 2038, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '145.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4283, '2022-09-20', 5881, 4005, 436, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '94.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4284, '2022-09-20', 6332, 4006, 436, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '51.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4285, '2022-09-20', 6287, 4007, 436, 2110, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '16.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4286, '2022-09-20', 5740, 4008, 436, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '466.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4287, '2022-09-20', 6075, 4009, 436, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1938.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4288, '2022-09-20', 5757, 4010, 436, 1115, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '103.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4289, '2022-09-20', 6749, 4011, 436, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '40.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4290, '2022-09-20', 6475, 4012, 436, 968, '1.0000', '33.0000', '33.0000', '33.0000', '33.0000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4291, '2022-09-20', 6813, 4013, 436, 2037, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '46.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4292, '2022-09-20', 6037, 4014, 436, 1315, '3.0000', '9.1000', '9.1000', '9.1000', '9.1000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4293, '2022-09-20', 6753, 4015, 436, 2307, '2.0000', '85.0000', '85.0000', '85.0000', '85.0000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4294, '2022-09-20', 6458, 4016, 436, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '119.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4295, '2022-09-20', 6664, 4017, 436, 3415, '50.0000', '-175.6812', '-175.6812', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4296, '2022-09-20', 6074, 4018, 436, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1465.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4297, '2022-09-20', 5904, 4019, 436, 1308, '2.0000', '24.7000', '24.7000', '24.7000', '24.7000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4298, '2022-09-20', 5585, 4020, 436, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '48.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4299, '2022-09-20', 6418, 4021, 436, 2580, '3.0000', '6.3300', '6.3300', '6.3800', '6.3800', '636.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4300, '2022-09-20', 6386, 4022, 436, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '383.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4301, '2022-09-20', 6242, 4023, 436, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '94.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4302, '2022-09-20', 6353, 4024, 436, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '202.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4303, '2022-09-20', 5984, 4025, 436, 3483, '3.0000', '19.5300', '19.5300', '22.9100', '22.9100', '85.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4304, '2022-09-20', 6202, 4026, 436, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '407.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4305, '2022-09-20', 5527, 4027, 436, 1464, '5.0000', '27.0000', '27.0000', '29.0000', '29.0000', '6.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4306, '2022-09-20', 6326, 4028, 436, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '31.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4307, '2022-09-20', 6320, 4029, 436, 1053, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '36.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4308, '2022-09-20', 6271, 4030, 436, 537, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '34.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4309, '2022-09-20', 5926, 4031, 436, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '393.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4310, '2022-09-20', 6389, 4032, 436, 3610, '-2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4311, '2022-09-20', 6389, 4032, 436, NULL, '5.0000', '7.4000', '7.4000', '7.4000', '7.4000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4312, '2022-09-20', 6699, 4033, 436, 1287, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '193.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4313, '2022-09-20', 5704, 4034, 436, 911, '3.0000', '15.0000', '15.0000', '16.0500', '16.0500', '43.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4314, '2022-09-20', 5948, 4035, 436, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '392.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4315, '2022-09-20', 6417, 4036, 436, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '66.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4316, '2022-09-20', 6328, 4037, 436, 2567, '2.0000', '26.9000', '26.9000', '26.9000', '26.9000', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4317, '2022-09-20', 6467, 4038, 436, 1455, '2.0000', '40.0000', '40.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4318, '2022-09-20', 6795, 4039, 436, 1452, '2.0000', '55.8000', '55.8000', '55.8000', '55.8000', '3.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4319, '2022-09-20', 6693, 4040, 436, 2002, '1.0000', '57.0000', '57.0000', '57.0000', '57.0000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4320, '2022-09-20', 6633, 4041, 436, 650, '2.0000', '32.0000', '32.0000', '32.0000', '32.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4321, '2022-09-20', 6077, 4042, 436, 3496, '5.0000', '4.2154', '4.2154', '4.0000', '4.0000', '125.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4322, '2022-09-20', 6863, 4043, 436, NULL, '10.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4323, '2022-09-20', 6864, 4044, 436, 3082, '10.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4724.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4324, '2022-09-20', 6865, 4045, 436, 1026, '5.0000', '3.5000', '3.5000', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4325, '2022-09-20', 6863, 4046, 436, NULL, '5.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4326, '2022-09-20', 6370, 4047, 436, 3420, '3.0000', '24.5000', '24.5000', '25.3000', '25.3000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4327, '2022-09-20', 6023, 4048, 436, 1272, '1.0000', '3.0000', '3.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4328, '2022-09-20', 6023, 4048, 436, 752, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4329, '2022-09-20', 6701, 4049, 436, 2003, '1.0000', '43.7000', '43.7000', '43.7000', '43.7000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4330, '2022-09-20', 5777, 4050, 436, 751, '2.0000', '24.0000', '24.0000', '24.0000', '24.0000', '19.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4331, '2022-09-20', 6829, 4051, 436, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '15.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4332, '2022-09-20', 6457, 4052, 437, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '48.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4333, '2022-09-20', 6457, 4053, 438, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '46.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4334, '2022-09-20', 6457, 4054, 439, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '44.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4335, '2022-09-20', 6564, 4055, 440, 2004, '2.0000', '81.4000', '81.4000', '81.4000', '81.4000', '3.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4336, '2022-09-20', 5472, 4056, 441, 3397, '10.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '51.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4337, '2022-09-21', 5983, 4057, 442, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '188.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4338, '2022-09-21', 6590, 4058, 442, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '65.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4339, '2022-09-21', 5809, 4059, 442, 390, '1.0000', '15.1000', '15.1000', '15.1000', '15.1000', '42.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4340, '2022-09-21', 6205, 4060, 443, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '195.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4341, '2022-09-21', 6152, 4061, 443, 2097, '10.0000', '1.2000', '1.2000', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4342, '2022-09-21', 6096, 4062, 443, 2990, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4343, '2022-09-21', 6137, 4063, 443, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '137.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4344, '2022-09-21', 5892, 4064, 443, 3507, '2.0000', '11.4667', '11.4667', '8.6000', '8.6000', '11.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4345, '2022-09-21', 6436, 4065, 443, 3589, '10.0000', '3.5319', '3.5319', '5.3200', '5.3200', '84.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4346, '2022-09-21', 6652, 4066, 443, 1414, '12.0000', '3.8000', '3.8000', '3.7900', '3.7900', '75.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4347, '2022-09-21', 5651, 4067, 443, 2987, '4.0000', '6.1700', '6.1700', '6.1700', '6.1700', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4348, '2022-09-21', 5975, 4068, 443, 2253, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4349, '2022-09-21', 6739, 4069, 443, 1407, '1.0000', '5.6000', '5.6000', '5.6000', '5.6000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4350, '2022-09-21', 6082, 4070, 443, 3032, '4.0000', '6.9000', '6.9000', '6.9000', '6.9000', '221.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4351, '2022-09-21', 5969, 4071, 443, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '186.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4352, '2022-09-21', 5592, 4072, 443, 3046, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4353, '2022-09-21', 6332, 4073, 443, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '49.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4354, '2022-09-21', 6224, 4074, 443, 2385, '3.0000', '1.9000', '1.9000', '1.9000', '1.9000', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4355, '2022-09-21', 5986, 4075, 443, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '17.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4356, '2022-09-21', 6260, 4076, 443, 2314, '4.0000', '5.7000', '5.7000', '5.7000', '5.7000', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4357, '2022-09-21', 6001, 4077, 443, 1313, '4.0000', '5.1000', '5.1000', '6.2000', '6.2000', '36.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4358, '2022-09-21', 5995, 4078, 443, 3071, '4.0000', '6.0000', '6.0000', '7.6000', '7.6000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4359, '2022-09-21', 6214, 4079, 443, 750, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '143.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4360, '2022-09-21', 6510, 4080, 444, 2079, '6.0000', '3.5000', '3.5000', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4361, '2022-09-21', 5731, 4081, 444, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '173.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4362, '2022-09-21', 5740, 4082, 444, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '463.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4363, '2022-09-21', 6415, 4083, 444, 2056, '4.0000', '4.6200', '4.6200', '4.6200', '4.6200', '171.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4364, '2022-09-21', 6040, 4084, 444, 2986, '5.0000', '3.0500', '3.0500', '3.0500', '3.0500', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4365, '2022-09-21', 6391, 4085, 444, 762, '4.0000', '3.3200', '3.3200', '3.3200', '3.3200', '89.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4366, '2022-09-21', 6458, 4086, 444, 765, '1.0000', '22.9000', '22.9000', '22.9000', '22.9000', '118.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4367, '2022-09-21', 5427, 4087, 444, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '141.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4368, '2022-09-21', 6001, 4088, 444, 1313, '3.0000', '5.1000', '5.1000', '6.2000', '6.2000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4369, '2022-09-21', 6635, 4089, 444, 2051, '2.0000', '11.8000', '11.8000', '13.1000', '13.1000', '3.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4370, '2022-09-21', 6020, 4090, 444, 2302, '2.0000', '16.1378', '16.1378', '20.9000', '20.9000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4371, '2022-09-21', 5640, 4091, 444, 3066, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '75.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4372, '2022-09-21', 6218, 4092, 445, 3591, '1.0000', '13.5800', '13.5800', '15.0700', '15.0700', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4373, '2022-09-21', 6218, 4092, 445, 947, '1.0000', '13.5800', '13.5800', '15.0700', '15.0700', '65.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4374, '2022-09-21', 5584, 4093, 446, 2124, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4375, '2022-09-21', 6445, 4094, 446, 3581, '2.0000', '21.8000', '21.8000', '21.6000', '21.6000', '85.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4376, '2022-09-21', 6378, 4095, 446, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '77.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4377, '2022-09-21', 6219, 4096, 446, 2117, '20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '121.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4378, '2022-09-21', 5601, 4097, 446, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '118.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4379, '2022-09-21', 5629, 4098, 446, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4380, '2022-09-21', 5541, 4099, 446, 905, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4381, '2022-09-21', 5710, 4100, 446, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '129.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4382, '2022-09-21', 6267, 4101, 446, 1425, '2.0000', '7.1000', '7.1000', '8.0400', '8.0400', '45.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4383, '2022-09-21', 6117, 4102, 446, 2028, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '2.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4384, '2022-09-21', 6082, 4103, 446, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '216.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4385, '2022-09-21', 5600, 4104, 447, 3051, '10.0000', '2.6233', '2.6233', '3.6000', '3.6000', '882.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4386, '2022-09-21', 6491, 4105, 448, 2295, '1.0000', '9.6200', '9.6200', '9.6200', '9.6200', '197.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4387, '2022-09-21', 6038, 4106, 448, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '145.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4388, '2022-09-21', 5986, 4107, 448, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '16.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4389, '2022-09-21', 6820, 4108, 449, NULL, '2.0000', '5.5000', '5.5000', '5.9000', '5.9000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4390, '2022-09-21', 5986, 4109, 449, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '15.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4391, '2022-09-21', 5535, 4110, 450, 2277, '20.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1418.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4392, '2022-09-21', 6267, 4111, 450, 1425, '3.0000', '7.1000', '7.1000', '8.0400', '8.0400', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4393, '2022-09-21', 6559, 4112, 451, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '21.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4394, '2022-09-21', 6860, 4113, 451, 1977, '1.0000', '16.8000', '16.8000', '18.0000', '18.0000', '150.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4395, '2022-09-21', 6820, 4114, 452, 3613, '-2.0000', '5.5000', '5.5000', '5.9000', '5.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4396, '2022-09-21', 6820, 4114, 452, NULL, '4.0000', '5.5000', '5.5000', '5.9000', '5.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4397, '2022-09-21', 5775, 4115, 452, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4398, '2022-09-21', 6228, 4116, 452, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4399, '2022-09-21', 5983, 4117, 452, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '187.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4400, '2022-09-21', 6696, 4118, 452, 2282, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '362.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4401, '2022-09-21', 6838, 4119, 453, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '88.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4402, '2022-09-21', 6221, 4120, 453, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4403, '2022-09-21', 5775, 4121, 453, 2584, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4404, '2022-09-21', 6228, 4122, 453, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '10.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4405, '2022-09-21', 6219, 4123, 454, 2117, '6.0000', '2.6900', '2.6900', '2.6900', '2.6900', '115.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4406, '2022-09-21', 6825, 4124, 455, 3531, '-124.0000', '46.2800', '46.2800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4407, '2022-09-21', 6825, 4124, 455, NULL, '134.0000', '46.2800', '46.2800', '1.0000', '1.0000', '-134.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4408, '2022-09-21', 5451, 4125, 456, 2387, '1.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1268.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4409, '2022-09-21', 6872, 4126, 456, 3012, '3.0000', '2.0000', '2.0000', '2.2000', '2.2000', '1.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4410, '2022-09-21', 6099, 4127, 456, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '39.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4411, '2022-09-21', 5451, 4128, 457, 2387, '1.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1267.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4433, '2022-09-21', 5799, 4150, 458, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '170.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4432, '2022-09-21', 5592, 4149, 458, 3046, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4431, '2022-09-21', 5898, 4148, 458, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '271.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4430, '2022-09-21', 6391, 4147, 458, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '86.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4429, '2022-09-21', 6024, 4146, 458, 937, '1.0000', '4.9900', '4.9900', '4.9900', '4.9900', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4434, '2022-09-21', 5677, 4151, 458, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '290.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4418, '2022-09-21', 5986, 4135, 459, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '14.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4419, '2022-09-21', 6241, 4136, 459, 951, '1.0000', '13.2000', '13.2000', '14.9800', '14.9800', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4420, '2022-09-21', 6236, 4137, 459, 950, '1.0000', '9.2000', '9.2000', '9.2000', '9.2000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4421, '2022-09-21', 6522, 4138, 459, 976, '1.0000', '49.7000', '49.7000', '49.7000', '49.7000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4422, '2022-09-21', 5640, 4139, 459, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '74.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4423, '2022-09-21', 6605, 4140, 460, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '94.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4424, '2022-09-21', 5715, 4141, 461, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '64.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4425, '2022-09-21', 6316, 4142, 462, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '24.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4426, '2022-09-21', 6328, 4143, 462, 2567, '1.0000', '26.9000', '26.9000', '26.9000', '26.9000', '6.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4427, '2022-09-21', 5715, 4144, 463, 3023, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '62.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4428, '2022-09-21', 6554, 4145, 463, 982, '1.0000', '130.0000', '130.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4655, '2022-09-21', 6316, 4367, 464, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4654, '2022-09-21', 5640, 4366, 464, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4653, '2022-09-21', 5898, 4365, 464, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '268.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4652, '2022-09-21', 6202, 4364, 464, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '405.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4651, '2022-09-21', 6605, 4363, 464, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '84.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4650, '2022-09-21', 5847, 4362, 464, 3136, '5.0000', '3.1651', '3.1651', '7.5000', '7.5000', '525.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4649, '2022-09-21', 5976, 4361, 464, 2581, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4648, '2022-09-21', 6225, 4360, 464, 2250, '7.0000', '2.8000', '2.8000', '2.8000', '2.8000', '241.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4647, '2022-09-21', 6220, 4359, 464, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '331.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4646, '2022-09-21', 5592, 4358, 464, 3046, '3.0000', '7.1500', '7.1500', '7.1500', '7.1500', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4645, '2022-09-21', 5768, 4357, 464, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '191.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4644, '2022-09-21', 5926, 4356, 464, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '380.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4643, '2022-09-21', 6353, 4355, 464, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '152.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4642, '2022-09-21', 5827, 4354, 464, 2055, '3.0000', '5.9000', '5.9000', '5.9000', '5.9000', '11.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4641, '2022-09-21', 5988, 4353, 464, 2558, '5.0000', '3.0000', '3.0000', '3.4200', '3.4200', '44.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4640, '2022-09-21', 5593, 4352, 464, 2290, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4639, '2022-09-21', 6205, 4351, 464, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '187.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4638, '2022-09-21', 6088, 4350, 464, 1291, '1.0000', '23.5000', '23.5000', '23.5000', '23.5000', '3.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4637, '2022-09-21', 5601, 4349, 464, 3035, '5.0000', '4.2917', '4.2917', '5.9500', '5.9500', '108.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4636, '2022-09-21', 5695, 4348, 464, 665, '4.0000', '5.2000', '5.2000', '7.6300', '7.6300', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4635, '2022-09-21', 5689, 4347, 464, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '164.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4634, '2022-09-21', 5967, 4346, 464, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2687.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4633, '2022-09-21', 5792, 4345, 464, 1978, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '41.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4632, '2022-09-21', 5657, 4344, 464, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '324.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4631, '2022-09-21', 6436, 4343, 464, 3589, '14.0000', '3.5319', '3.5319', '5.3200', '5.3200', '70.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4656, '2022-09-21', 6078, 4368, 478, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '567.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4461, '2022-09-21', 5652, 4178, 465, 2991, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '46.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4462, '2022-09-21', 6844, 4179, 465, 2084, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4463, '2022-09-21', 5641, 4180, 465, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '98.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4464, '2022-09-21', 6248, 4181, 465, 1408, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4465, '2022-09-21', 6220, 4182, 465, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '334.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4466, '2022-09-21', 5740, 4183, 465, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '460.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4467, '2022-09-21', 5962, 4184, 465, 522, '2.0000', '6.9900', '6.9900', '10.8000', '10.8000', '55.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4468, '2022-09-21', 6019, 4185, 465, 1947, '3.0000', '2.5300', '2.5300', '2.5300', '2.5300', '242.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4469, '2022-09-21', 6250, 4186, 465, NULL, '3.0000', '0.0000', '0.0000', '4.7100', '4.7100', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4470, '2022-09-21', 6491, 4187, 465, 2295, '1.0000', '9.6200', '9.6200', '9.6200', '9.6200', '196.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4471, '2022-09-21', 5996, 4188, 465, 933, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '714.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4577, '2022-09-21', 6850, 4291, 466, 1292, '2.0000', '2.8900', '2.8900', '2.8900', '2.8900', '21.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4576, '2022-09-21', 6510, 4290, 466, 2079, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4575, '2022-09-21', 6864, 4289, 466, 3082, '1.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4723.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4574, '2022-09-21', 6865, 4288, 466, 1026, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '33.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4573, '2022-09-21', 6863, 4287, 466, NULL, '11.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4572, '2022-09-21', 6863, 4287, 466, 3612, '-10.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4571, '2022-09-21', 5472, 4286, 466, 3397, '3.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '48.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4570, '2022-09-21', 5713, 4285, 466, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '37.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4569, '2022-09-21', 6220, 4284, 466, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '331.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4568, '2022-09-21', 5957, 4283, 466, 3543, '1.0000', '3.7691', '3.7691', '8.8200', '8.8200', '9.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4567, '2022-09-21', 6075, 4282, 466, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1926.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4566, '2022-09-21', 6353, 4281, 466, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '182.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4565, '2022-09-21', 6076, 4280, 466, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2223.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4564, '2022-09-21', 5640, 4279, 466, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4563, '2022-09-21', 6222, 4278, 466, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4562, '2022-09-21', 6843, 4277, 466, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4561, '2022-09-21', 6074, 4276, 466, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1458.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4560, '2022-09-21', 5853, 4275, 466, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '594.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4559, '2022-09-21', 5716, 4274, 466, 2384, '2.0000', '3.6000', '3.6000', '3.6000', '3.6000', '18.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4558, '2022-09-21', 6649, 4273, 466, 996, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '69.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4557, '2022-09-21', 6267, 4272, 466, 1425, '2.0000', '7.1000', '7.1000', '8.0400', '8.0400', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4556, '2022-09-21', 6528, 4271, 466, 1899, '2.0000', '5.9800', '5.9800', '5.9800', '5.9800', '330.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4555, '2022-09-21', 5911, 4270, 466, 3042, '1.0000', '28.8750', '28.8750', '23.1000', '23.1000', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4554, '2022-09-21', 5871, 4269, 466, 3562, '1.0000', '4.3000', '4.3000', '4.3000', '4.3000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4553, '2022-09-21', 6617, 4268, 466, 557, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '29.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4578, '2022-09-21', 6828, 4292, 475, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '20.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4498, '2022-09-21', 5451, 4214, 467, 2387, '4.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1263.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4499, '2022-09-21', 6532, 4215, 468, 3579, '5.0000', '8.0796', '8.0796', '9.3700', '9.3700', '110.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4500, '2022-09-21', 6211, 4216, 468, 2305, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4501, '2022-09-21', 6861, 4217, 469, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '10.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4502, '2022-09-21', 6559, 4218, 469, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4503, '2022-09-21', 6883, 4219, 470, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '78.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4504, '2022-09-21', 6205, 4220, 471, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '192.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4505, '2022-09-21', 6692, 4221, 471, 2446, '-10.0000', '8.0000', '8.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4506, '2022-09-21', 6692, 4221, 471, NULL, '15.0000', '8.0000', '8.0000', '4.0000', '4.0000', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4507, '2022-09-21', 5853, 4222, 471, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '594.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4508, '2022-09-21', 5975, 4223, 471, 2253, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4509, '2022-09-21', 6074, 4224, 471, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1458.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4510, '2022-09-21', 5926, 4225, 471, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '380.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4511, '2022-09-21', 6838, 4226, 471, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '87.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4512, '2022-09-21', 6607, 4227, 471, 2583, '1.0000', '16.0000', '16.0000', '16.0000', '16.0000', '82.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4513, '2022-09-21', 6813, 4228, 471, 2037, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '44.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4514, '2022-09-21', 5640, 4229, 471, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4580, '2022-09-21', 6108, 4294, 476, 1318, '6.0000', '11.6000', '11.6000', '11.6000', '11.6000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4581, '2022-09-21', 5535, 4295, 476, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1408.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4582, '2022-09-21', 6363, 4296, 476, 1411, '5.0000', '14.8000', '14.8000', '22.7800', '22.7800', '184.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4583, '2022-09-21', 6217, 4297, 476, 2377, '6.0000', '2.8800', '2.8800', '2.8800', '2.8800', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4584, '2022-09-21', 6098, 4298, 476, 3081, '10.0000', '5.6000', '5.6000', '5.6000', '5.6000', '890.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4585, '2022-09-21', 6670, 4299, 476, 1463, '10.0000', '9.5000', '9.5000', '9.5000', '9.5000', '54.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4586, '2022-09-21', 6558, 4300, 476, 983, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4587, '2022-09-21', 6870, 4301, 476, 3585, '3.0000', '36.4852', '36.4852', '40.1400', '40.1400', '57.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4588, '2022-09-21', 6882, 4302, 476, 3130, '3.0000', '22.5000', '22.5000', '25.0000', '25.0000', '25.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4589, '2022-09-21', 6247, 4303, 476, 2326, '1.0000', '78.0000', '78.0000', '90.4200', '90.4200', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4590, '2022-09-21', 6406, 4304, 476, 542, '5.0000', '26.1800', '26.1800', '26.1800', '26.1800', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4591, '2022-09-21', 6250, 4305, 476, 3622, '-3.0000', '0.0000', '0.0000', '4.7100', '4.7100', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4592, '2022-09-21', 6250, 4305, 476, NULL, '9.0000', '0.0000', '0.0000', '4.7100', '4.7100', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4593, '2022-09-21', 5729, 4306, 476, 1993, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '72.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4594, '2022-09-21', 5813, 4307, 476, 663, '6.0000', '4.9000', '4.9000', '4.9000', '4.9000', '38.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4595, '2022-09-21', 6690, 4308, 476, 1857, '5.0000', '8.2500', '8.2500', '8.2500', '8.2500', '25.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4596, '2022-09-21', 6285, 4309, 476, 2057, '6.0000', '9.4700', '9.4700', '10.9800', '10.9800', '126.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4597, '2022-09-21', 5440, 4310, 476, 2998, '10.0000', '3.4100', '3.4100', '3.4100', '3.4100', '24.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4598, '2022-09-21', 5704, 4311, 476, 911, '6.0000', '15.0000', '15.0000', '16.0500', '16.0500', '37.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4599, '2022-09-21', 5849, 4312, 476, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '112.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4600, '2022-09-21', 6211, 4313, 476, 2305, '6.0000', '4.0000', '4.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4601, '2022-09-21', 6206, 4314, 476, 2029, '3.0000', '7.8400', '7.8400', '7.8400', '7.8400', '21.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4602, '2022-09-21', 6257, 4315, 476, 1887, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4603, '2022-09-21', 6531, 4316, 476, 1060, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4604, '2022-09-21', 6418, 4317, 476, 2580, '5.0000', '6.3300', '6.3300', '6.3800', '6.3800', '631.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4605, '2022-09-21', 6005, 4318, 476, 1939, '6.0000', '7.2000', '7.2000', '9.3100', '9.3100', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4606, '2022-09-21', 6373, 4319, 476, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '17.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4607, '2022-09-21', 5641, 4320, 476, 2319, '5.0000', '31.1000', '31.1000', '31.1000', '31.1000', '93.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4608, '2022-09-21', 5676, 4321, 476, 2018, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '96.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4609, '2022-09-21', 5570, 4322, 476, 327, '1.0000', '148.0500', '148.0500', '148.0500', '148.0500', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4610, '2022-09-21', 6408, 4323, 476, 2978, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '65.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4611, '2022-09-21', 6409, 4324, 476, 1422, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '163.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4612, '2022-09-21', 6559, 4325, 477, 984, '3.0000', '66.2000', '66.2000', '75.0000', '75.0000', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4613, '2022-09-21', 6524, 4326, 477, 978, '2.0000', '170.0000', '170.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4614, '2022-09-21', 5525, 4327, 477, 660, '1.0000', '41.6800', '41.6800', '41.6800', '41.6800', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4615, '2022-09-21', 5689, 4328, 477, 2050, '6.0000', '3.3000', '3.3000', '3.3000', '3.3000', '164.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4616, '2022-09-21', 5677, 4329, 477, 2351, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '284.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4617, '2022-09-21', 6585, 4330, 477, 1064, '6.0000', '46.9900', '46.9900', '46.9900', '46.9900', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4618, '2022-09-21', 6205, 4331, 477, 3026, '5.0000', '38.5000', '38.5000', '38.5000', '38.5000', '187.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4619, '2022-09-21', 6353, 4332, 477, 2339, '30.0000', '3.7500', '3.7500', '3.7500', '3.7500', '152.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4620, '2022-09-21', 6304, 4333, 477, 1853, '6.0000', '13.5000', '13.5000', '13.5000', '13.5000', '137.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4621, '2022-09-21', 5731, 4334, 477, 1917, '20.0000', '17.2000', '17.2000', '17.2000', '17.2000', '153.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4622, '2022-09-21', 6095, 4335, 477, 3138, '20.0000', '8.3200', '8.3200', '8.3200', '8.3200', '178.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4623, '2022-09-21', 5787, 4336, 477, 1470, '5.0000', '22.0000', '22.0000', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4624, '2022-09-21', 6035, 4337, 477, 3431, '-7.0000', '7.9900', '7.9900', '7.9900', '7.9900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4625, '2022-09-21', 6035, 4337, 477, NULL, '17.0000', '7.9900', '7.9900', '7.9900', '7.9900', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4626, '2022-09-21', 6359, 4338, 477, 3492, '20.0000', '5.6288', '5.6288', '2.5000', '2.5000', '256.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4627, '2022-09-21', 6188, 4339, 477, 3080, '1.0000', '7.0000', '7.0000', '7.0000', '7.0000', '63.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4628, '2022-09-21', 6287, 4340, 477, 2110, '10.0000', '13.2000', '13.2000', '13.2000', '13.2000', '6.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4629, '2022-09-21', 6850, 4341, 477, 1292, '3.0000', '2.8900', '2.8900', '2.8900', '2.8900', '18.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4630, '2022-09-21', 6510, 4342, 477, 2079, '3.0000', '3.5000', '3.5000', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4657, '2022-09-21', 6765, 4369, 479, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '46.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4658, '2022-09-21', 5640, 4370, 480, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '65.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4659, '2022-09-21', 6218, 4371, 480, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '89.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4660, '2022-09-21', 6217, 4372, 480, 2377, '2.0000', '2.8800', '2.8800', '2.8800', '2.8800', '41.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4661, '2022-09-21', 5926, 4373, 480, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '377.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4662, '2022-09-21', 6074, 4374, 480, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1455.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4663, '2022-09-21', 6205, 4375, 480, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '186.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4664, '2022-09-21', 5977, 4376, 480, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '97.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4665, '2022-09-21', 5754, 4377, 480, 3505, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '46.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4666, '2022-09-21', 5970, 4378, 480, 2310, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4667, '2022-09-21', 6225, 4379, 480, 2250, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '237.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4668, '2022-09-21', 6220, 4380, 480, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '326.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4669, '2022-09-21', 6083, 4381, 480, 3029, '6.0000', '2.7000', '2.7000', '2.7000', '2.7000', '194.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4670, '2022-09-21', 5740, 4382, 480, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '457.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4671, '2022-09-21', 6020, 4383, 480, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4672, '2022-09-21', 6359, 4384, 480, 3492, '5.0000', '5.6288', '5.6288', '2.5000', '2.5000', '251.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4673, '2022-09-21', 5988, 4385, 480, 2558, '5.0000', '3.0000', '3.0000', '3.4200', '3.4200', '39.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4674, '2022-09-21', 6136, 4386, 480, 1324, '6.0000', '3.8000', '3.8000', '3.8000', '3.8000', '170.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4675, '2022-09-21', 5515, 4387, 480, 3508, '4.0000', '4.6800', '4.6800', '5.5000', '5.5000', '188.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4676, '2022-09-21', 5592, 4388, 480, 3046, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4677, '2022-09-21', 6326, 4389, 480, 1462, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '29.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4678, '2022-09-21', 5440, 4390, 480, 2998, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '21.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4679, '2022-09-21', 6205, 4391, 481, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '185.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4680, '2022-09-21', 6241, 4392, 481, 951, '1.0000', '13.2000', '13.2000', '14.9800', '14.9800', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4681, '2022-09-21', 6283, 4393, 481, 2335, '3.0000', '5.1000', '5.1000', '6.0200', '6.0200', '79.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4682, '2022-09-21', 6481, 4394, 481, 1058, '1.0000', '23.8000', '23.8000', '23.8000', '23.8000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4683, '2022-09-21', 6457, 4395, 482, 3607, '5.0000', '39.9000', '39.9000', '43.9000', '43.9000', '39.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4684, '2022-09-21', 6017, 4396, 482, NULL, '5.0000', '0.0000', '0.0000', '15.0200', '15.0200', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4685, '2022-09-21', 6455, 4397, 482, 3047, '5.0000', '19.5800', '19.5800', '19.7300', '19.7300', '48.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4686, '2022-09-21', 6019, 4398, 482, 1947, '10.0000', '2.5300', '2.5300', '2.5300', '2.5300', '232.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4687, '2022-09-21', 6838, 4399, 482, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '86.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4688, '2022-09-21', 5969, 4400, 482, 2252, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '181.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4689, '2022-09-21', 5592, 4401, 482, 3046, '4.0000', '7.1500', '7.1500', '7.1500', '7.1500', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4690, '2022-09-21', 6222, 4402, 482, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '51.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4691, '2022-09-21', 6115, 4403, 482, 1156, '5.0000', '7.1000', '7.1000', '7.1000', '7.1000', '26.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4692, '2022-09-21', 6184, 4404, 482, 945, '5.0000', '7.8500', '7.8500', '7.8500', '7.8500', '37.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4693, '2022-09-21', 6533, 4405, 482, 1441, '6.0000', '3.9000', '3.9000', '3.9000', '3.9000', '6.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4694, '2022-09-21', 5624, 4406, 482, 3623, '-1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4695, '2022-09-21', 5624, 4406, 482, NULL, '4.0000', '20.1000', '20.1000', '20.1000', '20.1000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4696, '2022-09-21', 6242, 4407, 482, 3588, '5.0000', '58.3529', '58.3529', '66.5300', '66.5300', '89.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4697, '2022-09-21', 5729, 4408, 482, 1993, '6.0000', '10.5000', '10.5000', '10.5000', '10.5000', '66.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4698, '2022-09-21', 5532, 4409, 482, 3396, '5.0000', '56.1000', '56.1000', '60.7800', '60.7800', '60.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4699, '2022-09-21', 6663, 4410, 482, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '173.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4700, '2022-09-21', 5548, 4411, 482, 2374, '6.0000', '2.9800', '2.9800', '2.9800', '2.9800', '286.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4701, '2022-09-21', 6134, 4412, 482, 1880, '6.0000', '5.8000', '5.8000', '5.8000', '5.8000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4702, '2022-09-21', 5549, 4413, 482, 2372, '6.0000', '8.2000', '8.2000', '8.2000', '8.2000', '317.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4703, '2022-09-21', 6267, 4414, 482, 1425, '10.0000', '7.1000', '7.1000', '8.0400', '8.0400', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4704, '2022-09-21', 6649, 4415, 482, 996, '6.0000', '8.4000', '8.4000', '8.4000', '8.4000', '63.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4705, '2022-09-21', 6316, 4416, 482, 2359, '3.0000', '62.0000', '62.0000', '62.0000', '62.0000', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4706, '2022-09-21', 6417, 4417, 482, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '64.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4707, '2022-09-21', 5980, 4418, 482, 3036, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4708, '2022-09-21', 5988, 4419, 482, 2558, '10.0000', '3.0000', '3.0000', '3.4200', '3.4200', '29.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4709, '2022-09-21', 5977, 4420, 482, 2360, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4710, '2022-09-21', 6852, 4421, 482, 3502, '6.0000', '8.4000', '8.4000', '11.8000', '11.8000', '41.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4711, '2022-09-21', 5633, 4422, 483, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4712, '2022-09-21', 6860, 4423, 483, 1977, '5.0000', '16.8000', '16.8000', '18.0000', '18.0000', '145.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4713, '2022-09-21', 5983, 4424, 483, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '186.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4714, '2022-09-21', 6326, 4425, 483, 1462, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '27.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4715, '2022-09-21', 5527, 4426, 483, 1464, '2.0000', '27.0000', '27.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4716, '2022-09-21', 6807, 4427, 483, 1282, '3.0000', '9.0000', '9.0000', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4717, '2022-09-21', 6222, 4428, 483, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4718, '2022-09-21', 6453, 4429, 483, 547, '1.0000', '50.6000', '50.6000', '50.6000', '50.6000', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4734, '2022-09-21', 5948, 4445, 484, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '382.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4735, '2022-09-21', 6708, 4446, 484, 1358, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4736, '2022-09-21', 6620, 4447, 484, 1099, '6.0000', '7.5000', '7.5000', '7.5000', '7.5000', '29.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4737, '2022-09-21', 5419, 4448, 484, 2128, '5.0000', '14.9000', '14.9000', '14.9000', '14.9000', '51.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4738, '2022-09-21', 5749, 4449, 484, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '112.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4739, '2022-09-21', 6652, 4450, 484, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '70.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4740, '2022-09-21', 6764, 4451, 484, 3580, '5.0000', '5.9900', '5.9900', '6.3500', '6.3500', '45.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4741, '2022-09-21', 6128, 4452, 484, 3398, '6.0000', '4.5000', '4.5000', '4.5000', '4.5000', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4742, '2022-09-21', 6740, 4453, 484, 2001, '1.0000', '36.3000', '36.3000', '36.3000', '36.3000', '9.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4743, '2022-09-21', 6730, 4454, 484, 1454, '1.0000', '27.3000', '27.3000', '27.3000', '27.3000', '7.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4744, '2022-09-21', 6600, 4455, 484, 1351, '4.0000', '12.9000', '12.9000', '12.9000', '12.9000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4745, '2022-09-21', 6077, 4456, 484, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '123.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4746, '2022-09-21', 6863, 4457, 484, 3612, '-11.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4747, '2022-09-21', 6863, 4457, 484, NULL, '13.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4748, '2022-09-21', 6864, 4458, 484, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4721.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4749, '2022-09-21', 6865, 4459, 484, 1026, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4750, '2022-09-21', 6866, 4460, 484, 3552, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '104.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4751, '2022-09-21', 6860, 4461, 484, 1977, '2.0000', '16.8000', '16.8000', '18.0000', '18.0000', '143.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4752, '2022-09-21', 6352, 4462, 484, 1409, '20.0000', '2.5000', '2.5000', '2.5000', '2.5000', '229.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4753, '2022-09-21', 6100, 4463, 484, 3001, '4.0000', '18.0000', '18.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4754, '2022-09-21', 6100, 4463, 484, 1925, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4755, '2022-09-21', 5797, 4464, 484, 1303, '5.0000', '16.9000', '16.9000', '16.9000', '16.9000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4756, '2022-09-21', 5723, 4465, 484, 1286, '3.0000', '9.0000', '9.0000', '9.0000', '9.0000', '16.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4757, '2022-09-21', 5510, 4466, 484, 1284, '3.0000', '11.8000', '11.8000', '11.8000', '11.8000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4758, '2022-09-21', 6293, 4467, 484, 3486, '5.0000', '14.6000', '14.6000', '14.6000', '14.6000', '214.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4759, '2022-09-21', 6283, 4468, 484, 2335, '5.0000', '5.1000', '5.1000', '6.0200', '6.0200', '74.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4760, '2022-09-21', 6178, 4469, 484, 3060, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '685.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4761, '2022-09-21', 6821, 4470, 484, 2313, '5.0000', '65.0000', '65.0000', '65.0000', '65.0000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4762, '2022-09-21', 6860, 4471, 484, 1977, '2.0000', '16.8000', '16.8000', '18.0000', '18.0000', '143.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4763, '2022-09-21', 6590, 4472, 485, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '64.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4778, '2022-09-21', 5730, 4501, 488, 3005, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '104.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4779, '2022-09-21', 6183, 4502, 488, 749, '3.0000', '5.7500', '5.7500', '5.7500', '5.7500', '195.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4780, '2022-09-21', 5813, 4503, 488, 663, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '36.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4781, '2022-09-21', 6316, 4504, 488, 2359, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '18.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4782, '2022-09-21', 6573, 4505, 488, 1964, '2.0000', '21.4000', '21.4000', '21.4000', '21.4000', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4783, '2022-09-21', 5949, 4506, 488, 1311, '12.0000', '5.2000', '5.2000', '7.3000', '7.3000', '772.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4784, '2022-09-21', 5657, 4507, 488, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '314.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4785, '2022-09-21', 5995, 4508, 488, 3071, '5.0000', '6.0000', '6.0000', '7.6000', '7.6000', '61.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4786, '2022-09-21', 6337, 4509, 488, 2325, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4787, '2022-09-21', 5775, 4510, 488, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '79.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4826, '2022-09-21', 6843, 4549, 489, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4825, '2022-09-21', 6838, 4548, 489, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '84.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4824, '2022-09-21', 6828, 4547, 489, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '19.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4823, '2022-09-21', 6818, 4546, 489, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '222.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4822, '2022-09-21', 6682, 4545, 489, 1919, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '68.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4821, '2022-09-21', 6491, 4544, 489, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '194.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4820, '2022-09-21', 6390, 4543, 489, 1910, '1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4819, '2022-09-21', 6275, 4542, 489, 2032, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '314.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4818, '2022-09-21', 6223, 4541, 489, 3551, '25.0000', '0.6000', '0.6000', '0.6000', '0.6000', '675.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4817, '2022-09-21', 6216, 4540, 489, 3617, '20.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2980.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4816, '2022-09-21', 6202, 4539, 489, 3006, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '404.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4815, '2022-09-21', 5871, 4538, 489, NULL, '1.0000', '4.3000', '4.3000', '4.3000', '4.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4814, '2022-09-21', 5827, 4537, 489, 2055, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '9.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4813, '2022-09-21', 5753, 4536, 489, 1117, '1.0000', '8.5000', '8.5000', '8.5000', '8.5000', '51.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4812, '2022-09-21', 5657, 4535, 489, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '312.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4811, '2022-09-21', 5451, 4534, 489, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1260.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4827, '2022-09-21', 5977, 4550, 489, 2360, '1.0000', '7.5000', '7.5000', '7.8000', '7.8000', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4805, '2022-09-21', 6465, 4528, 490, 1083, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4806, '2022-09-21', 6542, 4529, 490, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '58.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4807, '2022-09-21', 6375, 4530, 490, 3065, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4808, '2022-09-21', 5983, 4531, 490, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '185.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4809, '2022-09-21', 6697, 4532, 490, 1357, '1.0000', '10.1000', '10.1000', '10.1000', '10.1000', '43.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4810, '2022-09-21', 6117, 4533, 490, 2028, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4828, '2022-09-21', 5710, 4551, 489, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '128.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4829, '2022-09-21', 5532, 4552, 491, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '58.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4833, '2022-09-21', 5947, 4556, 492, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '19.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4831, '2022-09-21', 6197, 4554, 493, 3630, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4832, '2022-09-21', 6375, 4555, 494, 3065, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '39.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4834, '2022-09-21', 6188, 4557, 495, 3080, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4835, '2022-09-21', 6843, 4558, 496, 2000, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4836, '2022-09-21', 6843, 4558, 496, 1100, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4837, '2022-09-22', 6218, 4559, 497, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '88.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4838, '2022-09-22', 5947, 4560, 498, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '17.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4839, '2022-09-22', 6198, 4561, 498, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4840, '2022-09-22', 6529, 4562, 499, 2006, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4841, '2022-09-22', 6316, 4563, 500, 2359, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '16.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4842, '2022-09-22', 6753, 4564, 501, 2307, '1.0000', '85.0000', '85.0000', '85.0000', '85.0000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4843, '2022-09-22', 6218, 4565, 501, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '87.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4844, '2022-09-22', 6074, 4566, 501, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1450.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4845, '2022-09-22', 6823, 4567, 502, 1488, '1.0000', '10.7800', '10.7800', '10.7800', '10.7800', '72.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4846, '2022-09-22', 5881, 4568, 502, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '92.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4847, '2022-09-22', 6820, 4569, 502, 3615, '2.0000', '5.2982', '5.2982', '5.9000', '5.9000', '444.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4848, '2022-09-22', 5840, 4570, 502, 2348, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '28.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4849, '2022-09-22', 5911, 4571, 502, 3042, '1.0000', '28.8750', '28.8750', '23.1000', '23.1000', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4850, '2022-09-22', 5799, 4572, 502, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '164.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4851, '2022-09-22', 6021, 4573, 503, 1844, '2.0000', '3.6000', '3.6000', '3.6000', '3.6000', '6.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4852, '2022-09-22', 6328, 4574, 503, 2567, '1.0000', '26.9000', '26.9000', '26.9000', '26.9000', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4853, '2022-09-22', 6817, 4575, 503, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '66.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4854, '2022-09-22', 5740, 4576, 504, 2274, '7.0000', '15.5000', '15.5000', '15.5000', '15.5000', '450.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4855, '2022-09-22', 5451, 4577, 504, 2387, '15.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1245.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4856, '2022-09-22', 5996, 4578, 504, 933, '22.0000', '2.0000', '2.0000', '2.0000', '2.0000', '692.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4857, '2022-09-22', 5654, 4579, 504, 3030, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4858, '2022-09-22', 6437, 4580, 505, 1275, '1.0000', '18.1000', '18.1000', '18.1000', '18.1000', '22.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4859, '2022-09-22', 5768, 4581, 505, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '190.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4860, '2022-09-22', 5985, 4582, 505, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '68.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4861, '2022-09-22', 6223, 4583, 505, 3551, '50.0000', '0.6000', '0.6000', '0.6000', '0.6000', '625.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4862, '2022-09-22', 5949, 4584, 505, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '766.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4863, '2022-09-22', 6751, 4585, 505, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '7.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4864, '2022-09-22', 6381, 4586, 505, 1490, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5197, '2022-09-22', 5582, 4903, 506, 2342, '2.0000', '12.5000', '12.5000', '12.5000', '12.5000', '286.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5198, '2022-09-22', 6337, 4904, 523, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4884, '2022-09-22', 6223, 4606, 507, 3551, '100.0000', '0.6000', '0.6000', '0.6000', '0.6000', '525.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4883, '2022-09-22', 6218, 4605, 507, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '85.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4882, '2022-09-22', 5603, 4604, 507, 3011, '10.0000', '4.4000', '4.4000', '4.4000', '4.4000', '92.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4885, '2022-09-22', 6817, 4607, 507, 2024, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '63.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4871, '2022-09-22', 5418, 4593, 508, 3164, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4872, '2022-09-22', 5451, 4594, 508, 2387, '6.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1239.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4873, '2022-09-22', 5640, 4595, 508, 3066, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '61.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4874, '2022-09-22', 5641, 4596, 508, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '92.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4875, '2022-09-22', 5689, 4597, 508, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '159.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4876, '2022-09-22', 5926, 4598, 508, 2072, '8.0000', '10.9000', '10.9000', '10.9000', '10.9000', '369.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4877, '2022-09-22', 5949, 4599, 508, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '756.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4878, '2022-09-22', 5967, 4600, 508, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2677.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4879, '2022-09-22', 6220, 4601, 508, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '323.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4880, '2022-09-22', 6386, 4602, 508, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '373.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4881, '2022-09-22', 6408, 4603, 508, 2978, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '61.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6313, '2022-09-22', 6642, 5999, 509, 3414, '10.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '34.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6312, '2022-09-22', 6532, 5998, 509, 3579, '20.0000', '8.0796', '8.0796', '9.3700', '9.3700', '85.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6311, '2022-09-22', 6529, 5997, 509, 2006, '10.0000', '12.5000', '12.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6310, '2022-09-22', 6457, 5996, 509, 3607, '10.0000', '39.9000', '39.9000', '43.9000', '43.9000', '14.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6309, '2022-09-22', 6445, 5995, 509, 3581, '20.0000', '21.8000', '21.8000', '21.6000', '21.6000', '62.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6308, '2022-09-22', 6417, 5994, 509, 1990, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '57.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6307, '2022-09-22', 6363, 5993, 509, 1411, '20.0000', '14.8000', '14.8000', '22.7800', '22.7800', '161.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6306, '2022-09-22', 6316, 5992, 509, 2359, '15.0000', '62.0000', '62.0000', '62.0000', '62.0000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6305, '2022-09-22', 6271, 5991, 509, 537, '10.0000', '62.0000', '62.0000', '62.0000', '62.0000', '24.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6304, '2022-09-22', 6232, 5990, 509, 3587, '20.0000', '6.4556', '6.4556', '7.1000', '7.1000', '129.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6303, '2022-09-22', 6076, 5989, 509, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6302, '2022-09-22', 6075, 5988, 509, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1806.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6301, '2022-09-22', 6053, 5987, 509, 2331, '10.0000', '14.9000', '14.9000', '16.3700', '16.3700', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6300, '2022-09-22', 6014, 5986, 509, 1472, '10.0000', '10.6800', '10.6800', '10.6800', '10.6800', '4.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6299, '2022-09-22', 5980, 5985, 509, 3036, '5.0000', '11.5000', '11.5000', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6298, '2022-09-22', 5949, 5984, 509, 1311, '30.0000', '5.2000', '5.2000', '7.3000', '7.3000', '666.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6297, '2022-09-22', 5948, 5983, 509, 2075, '30.0000', '6.0000', '6.0000', '9.0000', '9.0000', '329.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6296, '2022-09-22', 5926, 5982, 509, 2072, '50.0000', '10.9000', '10.9000', '10.9000', '10.9000', '195.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6295, '2022-09-22', 5785, 5981, 509, 640, '5.0000', '63.0000', '63.0000', '63.0000', '63.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6294, '2022-09-22', 5779, 5980, 509, 1468, '10.0000', '15.0000', '15.0000', '15.0000', '15.0000', '54.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6293, '2022-09-22', 5740, 5979, 509, 2274, '30.0000', '15.5000', '15.5000', '15.5000', '15.5000', '366.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6292, '2022-09-22', 5704, 5978, 509, 911, '10.0000', '15.0000', '15.0000', '16.0500', '16.0500', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6291, '2022-09-22', 5582, 5977, 509, 2342, '10.0000', '12.5000', '12.5000', '12.5000', '12.5000', '282.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6290, '2022-09-22', 5581, 5976, 509, 2343, '9.0000', '11.3000', '11.3000', '11.3000', '11.3000', '157.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6289, '2022-09-22', 5540, 5975, 509, 1280, '5.0000', '22.0000', '22.0000', '33.0000', '33.0000', '49.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6288, '2022-09-22', 5532, 5974, 509, 3396, '20.0000', '56.1000', '56.1000', '60.7800', '60.7800', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6287, '2022-09-22', 5418, 5973, 509, 1851, '56.0000', '5.5000', '5.5000', '5.5000', '5.5000', '254.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6286, '2022-09-22', 5418, 5973, 509, 3164, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4914, '2022-09-22', 6634, 4635, 510, 1285, '3.0000', '13.4000', '13.4000', '13.4000', '13.4000', '8.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4915, '2022-09-22', 6552, 4636, 510, 1459, '2.0000', '186.8000', '186.8000', '186.8000', '186.8000', '1.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4916, '2022-09-22', 6326, 4637, 510, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '22.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4917, '2022-09-22', 5740, 4638, 510, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '415.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4918, '2022-09-22', 5731, 4639, 510, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '148.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4919, '2022-09-22', 5586, 4640, 510, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '225.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4920, '2022-09-22', 5585, 4641, 510, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '46.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4921, '2022-09-22', 5676, 4642, 510, 2018, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '93.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4922, '2022-09-22', 5926, 4643, 510, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '309.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6314, '2022-09-22', 6870, 6000, 509, 3585, '10.0000', '36.4852', '36.4852', '40.1400', '40.1400', '45.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5376, '2022-09-23', 6098, 5075, 546, 3081, '1.0000', '5.6000', '5.6000', '5.6000', '5.6000', '889.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4983, '2022-09-22', 5586, 4702, 511, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '224.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4984, '2022-09-22', 5667, 4703, 511, 910, '4.0000', '11.8000', '11.8000', '11.8000', '11.8000', '61.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4985, '2022-09-22', 5847, 4704, 511, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '523.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4986, '2022-09-22', 6354, 4705, 511, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '560.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4987, '2022-09-22', 6651, 4706, 511, 1127, '2.0000', '7.4400', '7.4400', '7.4400', '7.4400', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4988, '2022-09-22', 6651, 4706, 511, NULL, '3.0000', '7.4400', '7.4400', '7.4400', '7.4400', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4989, '2022-09-22', 6705, 4707, 511, 1071, '1.0000', '15.8000', '15.8000', '15.8000', '15.8000', '32.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4990, '2022-09-22', 6706, 4708, 511, NULL, '1.0000', '0.0000', '0.0000', '11.8000', '11.8000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4991, '2022-09-22', 6606, 4709, 511, 1352, '2.0000', '15.5300', '15.5300', '15.5300', '15.5300', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4992, '2022-09-22', 6288, 4710, 511, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '86.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4993, '2022-09-22', 5865, 4711, 512, 3052, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '384.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4994, '2022-09-22', 6838, 4712, 512, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '83.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4995, '2022-09-22', 6348, 4713, 513, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '48.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4996, '2022-09-22', 6353, 4714, 514, 2339, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4997, '2022-09-22', 5898, 4715, 515, 3632, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '2.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4998, '2022-09-22', 6365, 4716, 515, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '143.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4999, '2022-09-22', 6528, 4717, 515, 1899, '3.0000', '5.9800', '5.9800', '5.9800', '5.9800', '327.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5000, '2022-09-22', 5967, 4718, 515, 3132, '4.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2673.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5001, '2022-09-22', 6059, 4719, 515, 3394, '1.0000', '-816802073.9800', '-816802073.9800', '25.3500', '25.3500', '18.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5002, '2022-09-22', 5841, 4720, 515, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '117.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5003, '2022-09-22', 6096, 4721, 515, 2990, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5004, '2022-09-22', 6221, 4722, 515, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5005, '2022-09-22', 5624, 4723, 515, 3623, '-4.0000', '20.1000', '20.1000', '20.1000', '20.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5006, '2022-09-22', 5624, 4723, 515, NULL, '6.0000', '20.1000', '20.1000', '20.1000', '20.1000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5007, '2022-09-22', 5975, 4724, 515, 2253, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5008, '2022-09-22', 5970, 4725, 515, 2310, '3.0000', '9.1500', '9.1500', '12.8500', '12.8500', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5009, '2022-09-22', 6813, 4726, 515, 2037, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '41.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5010, '2022-09-22', 6339, 4727, 515, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5011, '2022-09-22', 6799, 4728, 515, NULL, '1.0000', '0.0000', '0.0000', '78.3000', '78.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5012, '2022-09-22', 6753, 4729, 515, 2307, '1.0000', '85.0000', '85.0000', '85.0000', '85.0000', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5013, '2022-09-22', 5592, 4730, 516, 3046, '3.0000', '7.1500', '7.1500', '7.1500', '7.1500', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5014, '2022-09-22', 5592, 4730, 516, 906, '1.0000', '7.1500', '7.1500', '7.1500', '7.1500', '59.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5015, '2022-09-22', 6111, 4731, 516, 1319, '2.0000', '14.5000', '14.5000', '14.5000', '14.5000', '55.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5016, '2022-09-22', 6218, 4732, 516, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '84.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5047, '2022-09-22', 6828, 4762, 517, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '18.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5048, '2022-09-22', 6221, 4763, 517, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5049, '2022-09-22', 6220, 4764, 518, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '320.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5050, '2022-09-22', 6777, 4765, 518, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '4.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5051, '2022-09-22', 6224, 4766, 518, 2385, '4.0000', '1.9000', '1.9000', '1.9000', '1.9000', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5052, '2022-09-22', 6360, 4767, 518, 1908, '4.0000', '2.5000', '2.5000', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5053, '2022-09-22', 6024, 4768, 518, 937, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '29.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5054, '2022-09-22', 6892, 4769, 519, 3608, '2.0000', '11.2100', '11.2100', '12.4000', '12.4000', '1.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5055, '2022-09-22', 6851, 4770, 519, 3022, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5056, '2022-09-22', 6666, 4771, 519, 2259, '4.0000', '50.0000', '50.0000', '50.0000', '50.0000', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5057, '2022-09-22', 6536, 4772, 519, 1443, '1.0000', '6.8000', '6.8000', '6.8000', '6.8000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5378, '2022-09-23', 5640, 5077, 548, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5377, '2022-09-23', 6860, 5076, 547, 1977, '1.0000', '16.8000', '16.8000', '18.0000', '18.0000', '110.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5346, '2022-09-22', 6690, 5046, 520, 1857, '10.0000', '8.2500', '8.2500', '8.2500', '8.2500', '15.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5345, '2022-09-22', 6677, 5045, 520, 1274, '10.0000', '10.0000', '10.0000', '10.0000', '10.0000', '274.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5344, '2022-09-22', 6668, 5044, 520, 1067, '5.0000', '8.9000', '8.9000', '8.9000', '8.9000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5343, '2022-09-22', 6633, 5043, 520, 650, '3.0000', '32.0000', '32.0000', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5342, '2022-09-22', 6631, 5042, 520, 995, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5341, '2022-09-22', 6528, 5041, 520, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '314.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5340, '2022-09-22', 6509, 5040, 520, 2077, '5.0000', '13.2500', '13.2500', '13.2500', '13.2500', '106.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5339, '2022-09-22', 6480, 5039, 520, 550, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5338, '2022-09-22', 6457, 5038, 520, 3607, '5.0000', '39.9000', '39.9000', '43.9000', '43.9000', '24.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5337, '2022-09-22', 6436, 5037, 520, 3589, '30.0000', '3.5319', '3.5319', '5.3200', '5.3200', '40.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5336, '2022-09-22', 6423, 5036, 520, 2083, '5.0000', '6.5000', '6.5000', '6.5000', '6.5000', '35.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5335, '2022-09-22', 6359, 5035, 520, 3492, '30.0000', '5.6288', '5.6288', '2.5000', '2.5000', '221.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5334, '2022-09-22', 6328, 5034, 520, 2567, '5.0000', '26.9000', '26.9000', '26.9000', '26.9000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5333, '2022-09-22', 6293, 5033, 520, 3486, '10.0000', '14.6000', '14.6000', '14.6000', '14.6000', '203.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5332, '2022-09-22', 6202, 5032, 520, 3006, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '399.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5331, '2022-09-22', 6105, 5031, 520, 3603, '6.0000', '12.0000', '12.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5330, '2022-09-22', 6095, 5030, 520, 3138, '40.0000', '8.3200', '8.3200', '8.3200', '8.3200', '133.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5329, '2022-09-22', 5984, 5029, 520, 3483, '5.0000', '19.5300', '19.5300', '22.9100', '22.9100', '80.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5328, '2022-09-22', 5975, 5028, 520, 2379, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5327, '2022-09-22', 5975, 5028, 520, 2253, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5326, '2022-09-22', 5969, 5027, 520, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '169.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5325, '2022-09-22', 5898, 5026, 520, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '265.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5324, '2022-09-22', 5898, 5026, 520, 3632, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5323, '2022-09-22', 5853, 5025, 520, 3620, '12.0000', '8.8287', '8.8287', '10.5000', '10.5000', '575.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5322, '2022-09-22', 5785, 5024, 520, 640, '3.0000', '63.0000', '63.0000', '63.0000', '63.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5321, '2022-09-22', 5740, 5023, 520, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '397.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5320, '2022-09-22', 5619, 5022, 520, 3509, '5.0000', '6.6300', '6.6300', '7.8000', '7.8000', '103.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5319, '2022-09-22', 5618, 5021, 520, 3510, '5.0000', '7.4800', '7.4800', '8.8000', '8.8000', '108.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5318, '2022-09-22', 5580, 5020, 520, 3511, '5.0000', '7.2414', '7.2414', '8.4000', '8.4000', '105.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5317, '2022-09-22', 5573, 5019, 520, 2299, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '996.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5316, '2022-09-22', 5557, 5018, 520, 565, '3.0000', '175.6100', '175.6100', '175.6100', '175.6100', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5315, '2022-09-22', 5519, 5017, 520, 3648, '20.0000', '3.3000', '3.3000', '3.3000', '3.3000', '288.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5314, '2022-09-22', 5452, 5016, 520, 1030, '5.0000', '8.0000', '8.0000', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5379, '2022-09-23', 5603, 5078, 548, 3011, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '90.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5094, '2022-09-22', 6260, 4804, 521, 2314, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5095, '2022-09-22', 6374, 4805, 521, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4450.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5096, '2022-09-22', 6750, 4806, 521, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '43.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5258, '2022-09-22', 6419, 4962, 525, 1137, '3.0000', '4.6700', '4.6700', '4.6700', '4.6700', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5257, '2022-09-22', 6848, 4961, 522, 1151, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5256, '2022-09-22', 6847, 4960, 522, 1150, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5255, '2022-09-22', 6847, 4960, 522, 1926, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5254, '2022-09-22', 6678, 4959, 522, 1461, '1.0000', '14.3000', '14.3000', '14.3000', '14.3000', '27.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5253, '2022-09-22', 6606, 4958, 522, 1352, '1.0000', '15.5300', '15.5300', '15.5300', '15.5300', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5252, '2022-09-22', 6528, 4957, 522, 1899, '3.0000', '5.9800', '5.9800', '5.9800', '5.9800', '314.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5251, '2022-09-22', 6427, 4956, 522, 1475, '1.0000', '17.5000', '17.5000', '17.5000', '17.5000', '27.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5250, '2022-09-22', 6418, 4955, 522, 2580, '2.0000', '6.3300', '6.3300', '6.3800', '6.3800', '627.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5249, '2022-09-22', 6408, 4954, 522, 2978, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '59.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5248, '2022-09-22', 6386, 4953, 522, 2346, '2.0000', '3.2000', '3.2000', '3.2000', '3.2000', '371.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5247, '2022-09-22', 6304, 4952, 522, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '135.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5246, '2022-09-22', 6293, 4951, 522, 3486, '1.0000', '14.6000', '14.6000', '14.6000', '14.6000', '203.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5245, '2022-09-22', 6283, 4950, 522, 2335, '2.0000', '5.1000', '5.1000', '6.0200', '6.0200', '72.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5244, '2022-09-22', 6220, 4949, 522, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '317.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5243, '2022-09-22', 6217, 4948, 522, 2377, '2.0000', '2.8800', '2.8800', '2.8800', '2.8800', '39.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5242, '2022-09-22', 6209, 4947, 522, 2287, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5241, '2022-09-22', 6205, 4946, 522, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '184.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5240, '2022-09-22', 6201, 4945, 522, 2315, '1.0000', '6.9000', '6.9000', '8.7000', '8.7000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5239, '2022-09-22', 6125, 4944, 522, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '170.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5238, '2022-09-22', 6082, 4943, 522, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '214.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5237, '2022-09-22', 6074, 4942, 522, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1440.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5236, '2022-09-22', 6001, 4941, 522, 1313, '2.0000', '5.1000', '5.1000', '6.2000', '6.2000', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5235, '2022-09-22', 5976, 4940, 522, 2358, '3.0000', '7.7000', '7.7000', '7.8000', '7.8000', '247.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5234, '2022-09-22', 5969, 4939, 522, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '169.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5233, '2022-09-22', 5959, 4938, 522, 2575, '1.0000', '23.7000', '23.7000', '23.7000', '23.7000', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5232, '2022-09-22', 5949, 4937, 522, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '722.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5231, '2022-09-22', 5948, 4936, 522, 2075, '3.0000', '6.0000', '6.0000', '9.0000', '9.0000', '349.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5230, '2022-09-22', 5926, 4935, 522, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '306.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5229, '2022-09-22', 5775, 4934, 522, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '78.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5228, '2022-09-22', 5740, 4933, 522, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '402.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5227, '2022-09-22', 5731, 4932, 522, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '145.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5226, '2022-09-22', 5710, 4931, 522, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '126.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5225, '2022-09-22', 5704, 4930, 522, 911, '1.0000', '15.0000', '15.0000', '16.0500', '16.0500', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5224, '2022-09-22', 5624, 4929, 522, NULL, '7.0000', '20.1000', '20.1000', '20.1000', '20.1000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5223, '2022-09-22', 5624, 4929, 522, 3623, '-6.0000', '20.1000', '20.1000', '20.1000', '20.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5222, '2022-09-22', 5592, 4928, 522, 906, '1.0000', '7.1500', '7.1500', '7.1500', '7.1500', '58.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5221, '2022-09-22', 5515, 4927, 522, 3508, '1.0000', '4.6800', '4.6800', '5.5000', '5.5000', '187.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5220, '2022-09-22', 5440, 4926, 522, 2998, '2.0000', '3.4100', '3.4100', '3.4100', '3.4100', '19.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5259, '2022-09-22', 6383, 4963, 525, 3064, '2.0000', '8.2000', '8.2000', '8.2000', '8.2000', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5199, '2022-09-22', 6075, 4905, 523, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1898.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5200, '2022-09-22', 6076, 4906, 523, 3024, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2195.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5201, '2022-09-22', 6705, 4907, 523, 1071, '2.0000', '15.8000', '15.8000', '15.8000', '15.8000', '30.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5202, '2022-09-22', 6302, 4908, 523, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '44.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5203, '2022-09-22', 6459, 4909, 523, 966, '2.0000', '20.9000', '20.9000', '20.9000', '20.9000', '43.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5204, '2022-09-22', 6604, 4910, 523, 766, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '495.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5205, '2022-09-22', 6817, 4911, 523, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '62.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5206, '2022-09-22', 6204, 4912, 523, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5207, '2022-09-22', 6074, 4913, 523, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1440.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5208, '2022-09-22', 5634, 4914, 523, 392, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '36.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5209, '2022-09-22', 5677, 4915, 523, 3163, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '1.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5210, '2022-09-22', 5799, 4916, 523, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '162.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5211, '2022-09-22', 5977, 4917, 523, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '89.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5212, '2022-09-22', 6852, 4918, 523, 3502, '1.0000', '8.4000', '8.4000', '11.8000', '11.8000', '40.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5213, '2022-09-22', 5886, 4919, 523, 3647, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '8.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5214, '2022-09-22', 5629, 4920, 523, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '85.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5215, '2022-09-22', 5689, 4921, 523, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '157.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5216, '2022-09-22', 6749, 4922, 523, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5217, '2022-09-22', 5975, 4923, 523, 2379, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5218, '2022-09-22', 5704, 4924, 523, 911, '1.0000', '15.0000', '15.0000', '16.0500', '16.0500', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5219, '2022-09-22', 6287, 4925, 524, 2110, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5260, '2022-09-22', 6285, 4964, 526, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '121.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5261, '2022-09-22', 6860, 4965, 526, 1977, '6.0000', '16.8000', '16.8000', '18.0000', '18.0000', '111.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5262, '2022-09-22', 6095, 4966, 527, 3138, '4.0000', '8.3200', '8.3200', '8.3200', '8.3200', '134.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5263, '2022-09-22', 6095, 4967, 528, 3138, '1.0000', '8.3200', '8.3200', '8.3200', '8.3200', '133.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5264, '2022-09-22', 5740, 4968, 529, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '397.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5265, '2022-09-22', 5765, 4969, 529, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5266, '2022-09-22', 5515, 4970, 529, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '182.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5267, '2022-09-22', 5991, 4971, 529, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '9.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5268, '2022-09-22', 5977, 4972, 529, 2360, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '84.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5269, '2022-09-22', 5704, 4973, 529, 911, '2.0000', '15.0000', '15.0000', '16.0500', '16.0500', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5270, '2022-09-22', 6075, 4974, 529, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1886.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5271, '2022-09-22', 6076, 4975, 529, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2183.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5272, '2022-09-22', 6863, 4976, 529, 3612, '-13.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5273, '2022-09-22', 6863, 4976, 529, NULL, '18.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5274, '2022-09-22', 5975, 4977, 529, 2379, '4.0000', '9.1500', '9.1500', '12.2100', '12.2100', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5275, '2022-09-22', 6572, 4978, 529, 2993, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '124.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5276, '2022-09-22', 6218, 4979, 530, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '83.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5277, '2022-09-22', 6627, 4980, 531, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '27.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5278, '2022-09-22', 6699, 4981, 532, 1287, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '191.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5279, '2022-09-22', 5926, 4982, 532, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '304.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5280, '2022-09-22', 6458, 4983, 532, 765, '1.0000', '22.9000', '22.9000', '22.9000', '22.9000', '117.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5281, '2022-09-22', 6349, 4984, 533, 1342, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5282, '2022-09-22', 6225, 4985, 533, 2250, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '235.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5283, '2022-09-22', 5983, 4986, 533, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '184.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5284, '2022-09-22', 6860, 4987, 534, 1977, '24.0000', '16.8000', '16.8000', '18.0000', '18.0000', '87.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5285, '2022-09-22', 6218, 4988, 535, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '82.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5286, '2022-09-22', 6365, 4989, 536, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '142.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5287, '2022-09-22', 6360, 4990, 537, 1908, '1.0000', '2.5000', '2.5000', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5288, '2022-09-22', 5640, 4991, 538, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '59.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5289, '2022-09-22', 6893, 4992, 539, 3650, '10.0000', '53.0000', '53.0000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 64, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5290, '2022-09-23', 6448, 4993, 540, 2265, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5291, '2022-09-23', 6382, 4994, 540, 2285, '1.0000', '4.1000', '4.1000', '4.1000', '4.1000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5292, '2022-09-23', 6218, 4995, 541, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '80.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5293, '2022-09-23', 5715, 4996, 541, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '61.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5294, '2022-09-23', 6158, 4997, 542, 3653, '30.0000', '9.8000', '9.8000', '10.8000', '10.8000', '90.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5414, '2022-09-23', 6666, 5113, 543, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5413, '2022-09-23', 6592, 5112, 543, 2373, '5.0000', '3.1800', '3.1800', '3.1800', '3.1800', '108.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5412, '2022-09-23', 6572, 5111, 543, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '122.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5411, '2022-09-23', 6510, 5110, 543, 2079, '3.0000', '3.5000', '3.5000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5410, '2022-09-23', 6232, 5109, 543, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '156.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5409, '2022-09-23', 6225, 5108, 543, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '225.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5408, '2022-09-23', 6010, 5107, 543, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '359.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5407, '2022-09-23', 5949, 5106, 543, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '717.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5406, '2022-09-23', 5926, 5105, 543, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '299.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5405, '2022-09-23', 5853, 5104, 543, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '570.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5404, '2022-09-23', 5657, 5103, 543, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '307.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5403, '2022-09-23', 5592, 5102, 543, 906, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '56.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5402, '2022-09-23', 5535, 5101, 543, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1388.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5401, '2022-09-23', 5440, 5100, 543, 2998, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '14.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5415, '2022-09-23', 6838, 5114, 543, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '81.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5310, '2022-09-23', 6744, 5013, 544, 3611, '-2.0000', '9.9600', '9.9600', '9.9600', '9.9600', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5311, '2022-09-23', 6744, 5013, 544, NULL, '3.0000', '9.9600', '9.9600', '9.9600', '9.9600', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5312, '2022-09-23', 5947, 5014, 545, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5313, '2022-09-23', 6218, 5015, 545, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '79.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5380, '2022-09-23', 5947, 5079, 549, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5381, '2022-09-23', 6218, 5080, 549, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '78.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5382, '2022-09-23', 6590, 5081, 549, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '63.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5383, '2022-09-23', 6074, 5082, 550, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1435.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5384, '2022-09-23', 5853, 5083, 551, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '570.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5385, '2022-09-23', 6246, 5084, 551, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '10.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5386, '2022-09-23', 6320, 5085, 551, 1053, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '35.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5387, '2022-09-23', 5898, 5086, 551, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '262.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5388, '2022-09-23', 5427, 5087, 551, 2365, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '138.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5389, '2022-09-23', 5616, 5088, 551, 3503, '10.0000', '7.0000', '7.0000', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5390, '2022-09-23', 5983, 5089, 551, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '182.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5391, '2022-09-23', 5629, 5090, 551, 1429, '6.0000', '8.4000', '8.4000', '8.4000', '8.4000', '79.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5392, '2022-09-23', 6020, 5091, 551, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5393, '2022-09-23', 6301, 5092, 551, 1339, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5394, '2022-09-23', 5969, 5093, 551, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '165.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5395, '2022-09-23', 6034, 5094, 551, 1874, '2.0000', '41.8000', '41.8000', '41.8000', '41.8000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5396, '2022-09-23', 5640, 5095, 551, 3066, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '54.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5397, '2022-09-23', 6327, 5096, 551, 649, '2.0000', '28.6000', '28.6000', '28.6000', '28.6000', '21.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5398, '2022-09-23', 6158, 5097, 551, 3653, '4.0000', '9.8000', '9.8000', '10.8000', '10.8000', '86.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5399, '2022-09-23', 5980, 5098, 551, 3036, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5400, '2022-09-23', 5513, 5099, 551, 593, '1.0000', '94.0200', '94.0200', '94.0200', '94.0200', '1.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5416, '2022-09-23', 5640, 5115, 552, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '52.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5417, '2022-09-23', 5453, 5116, 553, 3652, '1.0000', '8.3000', '8.3000', '9.2000', '9.2000', '119.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11370, '2022-09-23', 6778, 10853, 554, 2052, '3.0000', '19.3400', '19.3400', '26.1800', '26.1800', '136.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11369, '2022-09-23', 6643, 10852, 554, 1140, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11368, '2022-09-23', 6532, 10851, 554, 3579, '5.0000', '8.0796', '8.0796', '9.3700', '9.3700', '80.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11367, '2022-09-23', 6486, 10850, 554, 1268, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '54.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11366, '2022-09-23', 6455, 10849, 554, 3628, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11365, '2022-09-23', 6445, 10848, 554, 3581, '3.0000', '21.8000', '21.8000', '21.6000', '21.6000', '52.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11364, '2022-09-23', 6418, 10847, 554, 2580, '5.0000', '6.3300', '6.3300', '6.3800', '6.3800', '593.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11363, '2022-09-23', 6402, 10846, 554, 541, '1.0000', '18.9800', '18.9800', '18.9800', '18.9800', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11362, '2022-09-23', 6402, 10846, 554, 393, '1.0000', '18.9800', '18.9800', '18.9800', '18.9800', '0.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11361, '2022-09-23', 6401, 10845, 554, 1056, '2.0000', '37.3200', '37.3200', '37.3200', '37.3200', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11360, '2022-09-23', 6363, 10844, 554, 1411, '3.0000', '14.8000', '14.8000', '22.7800', '22.7800', '148.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11359, '2022-09-23', 6353, 10843, 554, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11358, '2022-09-23', 6332, 10842, 554, 2560, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '22.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11357, '2022-09-23', 6285, 10841, 554, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '43.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11356, '2022-09-23', 6264, 10840, 554, 3404, '5.0000', '6.0000', '6.0000', '6.8500', '6.8500', '87.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11355, '2022-09-23', 6242, 10839, 554, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '68.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11354, '2022-09-23', 6235, 10838, 554, 949, '2.0000', '4.9800', '4.9800', '5.9800', '5.9800', '21.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11353, '2022-09-23', 6233, 10837, 554, 1276, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11352, '2022-09-23', 6232, 10836, 554, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '48.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11351, '2022-09-23', 6180, 10835, 554, 1861, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '80.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11350, '2022-09-23', 6158, 10834, 554, 3653, '4.0000', '9.8000', '9.8000', '10.8000', '10.8000', '40.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11349, '2022-09-23', 6084, 10833, 554, 661, '1.0000', '72.8000', '72.8000', '72.8000', '72.8000', '9.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11348, '2022-09-23', 6014, 10832, 554, 1472, '2.0000', '10.6800', '10.6800', '10.6800', '10.6800', '2.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11347, '2022-09-23', 6007, 10831, 554, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11346, '2022-09-23', 5990, 10830, 554, 1933, '5.0000', '6.8000', '6.8000', '8.6500', '8.6500', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11345, '2022-09-23', 5988, 10829, 554, 2558, '5.0000', '3.0000', '3.0000', '3.4200', '3.4200', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11344, '2022-09-23', 5977, 10828, 554, 2360, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '44.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11343, '2022-09-23', 5949, 10827, 554, 1311, '20.0000', '5.2000', '5.2000', '7.3000', '7.3000', '428.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11342, '2022-09-23', 5948, 10826, 554, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '274.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11341, '2022-09-23', 5926, 10825, 554, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11340, '2022-09-23', 5799, 10824, 554, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '96.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11339, '2022-09-23', 5795, 10823, 554, 586, '1.0000', '35.3000', '35.3000', '35.0000', '35.0000', '42.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11338, '2022-09-23', 5792, 10822, 554, 1978, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11337, '2022-09-23', 5629, 10821, 554, 1429, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11336, '2022-09-23', 5616, 10820, 554, 3503, '3.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11335, '2022-09-23', 5532, 10819, 554, 3396, '3.0000', '56.1000', '56.1000', '60.7800', '60.7800', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11334, '2022-09-23', 5422, 10818, 554, NULL, '6.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11333, '2022-09-23', 5422, 10818, 554, 3554, '-5.0000', '0.0000', '0.0000', '18.7000', '18.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11332, '2022-09-23', 5418, 10817, 554, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '164.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11371, '2022-09-23', 6567, 10854, 554, 2131, '1.0000', '59.7700', '59.7700', '59.7700', '59.7700', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5458, '2022-09-23', 6218, 5155, 555, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '76.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5459, '2022-09-23', 6590, 5156, 556, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '62.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5460, '2022-09-23', 6131, 5157, 557, 3077, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5461, '2022-09-23', 5581, 5158, 557, 2343, '1.0000', '11.3000', '11.3000', '11.3000', '11.3000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5462, '2022-09-23', 5714, 5159, 557, 2280, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5463, '2022-09-23', 5715, 5160, 558, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '60.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5464, '2022-09-23', 6316, 5161, 559, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5591, '2022-09-23', 5957, 5284, 568, 3543, '2.0000', '3.7691', '3.7691', '8.8200', '8.8200', '7.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7028, '2022-09-23', 6744, 6690, 560, 3721, '2.0000', '9.9600', '9.9600', '9.9600', '9.9600', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7027, '2022-09-23', 6386, 6689, 560, 2346, '20.0000', '3.2000', '3.2000', '3.2000', '3.2000', '341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7026, '2022-09-23', 6273, 6688, 560, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '90.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7025, '2022-09-23', 6027, 6687, 560, 1948, '1.0000', '17.2600', '17.2600', '17.2600', '17.2600', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7024, '2022-09-23', 5624, 6686, 560, 3709, '5.0000', '20.1000', '20.1000', '20.1000', '20.1000', '11.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7029, '2022-09-28', 6171, 6691, 717, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5592, '2022-09-23', 6689, 5285, 568, 1355, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '124.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5473, '2022-09-23', 5559, 5168, 561, 1940, '5.0000', '8.3000', '8.3000', '9.9300', '9.9300', '81.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5474, '2022-09-23', 5640, 5169, 561, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5475, '2022-09-23', 5677, 5170, 561, 3163, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5476, '2022-09-23', 5677, 5170, 561, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '280.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5477, '2022-09-23', 5749, 5171, 561, 1302, '4.0000', '8.1400', '8.1400', '8.1400', '8.1400', '108.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5478, '2022-09-23', 5976, 5172, 561, 2358, '10.0000', '7.7000', '7.7000', '7.8000', '7.8000', '237.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5479, '2022-09-23', 5982, 5173, 561, 1963, '10.0000', '7.9400', '7.9400', '10.5500', '10.5500', '147.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5480, '2022-09-23', 5993, 5174, 561, NULL, '5.0000', '7.0000', '7.0000', '9.2200', '9.2200', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5481, '2022-09-23', 6007, 5175, 561, 2327, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5482, '2022-09-23', 6074, 5176, 561, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1415.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5483, '2022-09-23', 6075, 5177, 561, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1874.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5484, '2022-09-23', 6076, 5178, 561, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2171.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5485, '2022-09-23', 6095, 5179, 561, 3138, '10.0000', '8.3200', '8.3200', '8.3200', '8.3200', '123.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5486, '2022-09-23', 6216, 5180, 561, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2930.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5487, '2022-09-23', 6225, 5181, 561, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '215.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5488, '2022-09-23', 6232, 5182, 561, 3587, '10.0000', '6.4556', '6.4556', '7.1000', '7.1000', '141.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5489, '2022-09-23', 6285, 5183, 561, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '113.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5490, '2022-09-23', 6298, 5184, 561, 3557, '-22.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5491, '2022-09-23', 6298, 5184, 561, NULL, '32.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-32.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5492, '2022-09-23', 6339, 5185, 561, 954, '2.0000', '60.3000', '60.3000', '60.3000', '60.3000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5493, '2022-09-23', 6384, 5186, 561, 1477, '8.0000', '9.6600', '9.6600', '9.6600', '9.6600', '122.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5494, '2022-09-23', 6408, 5187, 561, 2978, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '49.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5495, '2022-09-23', 6436, 5188, 561, 3589, '10.0000', '3.5319', '3.5319', '5.3200', '5.3200', '30.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5496, '2022-09-23', 6448, 5189, 561, 2265, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5497, '2022-09-23', 6457, 5190, 561, 3607, '3.0000', '39.9000', '39.9000', '43.9000', '43.9000', '21.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5498, '2022-09-23', 6569, 5191, 561, 3004, '5.0000', '15.0000', '15.0000', '15.0000', '15.0000', '27.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5499, '2022-09-23', 6627, 5192, 561, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '26.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5500, '2022-09-23', 6862, 5193, 561, 3584, '10.0000', '3.5455', '3.5455', '4.0200', '4.0200', '79.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5501, '2022-09-23', 6864, 5194, 561, 3082, '10.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4711.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5502, '2022-09-23', 6883, 5195, 561, 3129, '3.0000', '6.3000', '6.3000', '7.0000', '7.0000', '75.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5503, '2022-09-23', 5677, 5196, 562, 2351, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '275.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5504, '2022-09-23', 6816, 5197, 562, 3390, '1.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '58.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5505, '2022-09-23', 5713, 5198, 562, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5506, '2022-09-23', 6275, 5199, 562, 2032, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '311.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5507, '2022-09-23', 5641, 5200, 562, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '91.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5508, '2022-09-23', 5770, 5201, 562, 3635, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5509, '2022-09-23', 5629, 5202, 562, 1429, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '70.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5510, '2022-09-23', 6143, 5203, 562, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '72.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5511, '2022-09-23', 6353, 5204, 562, 2339, '4.0000', '3.7500', '3.7500', '3.7500', '3.7500', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5512, '2022-09-23', 6225, 5205, 562, 2250, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '211.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5513, '2022-09-23', 5640, 5206, 562, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5514, '2022-09-23', 5967, 5207, 562, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2670.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5515, '2022-09-23', 6167, 5208, 562, 3661, '2.0000', '9.4000', '9.4000', '10.4000', '10.4000', '70.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5516, '2022-09-23', 5451, 5209, 562, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1236.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5517, '2022-09-23', 6003, 5210, 562, 2321, '1.0000', '6.7000', '6.7000', '9.1000', '9.1000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5518, '2022-09-23', 5969, 5211, 562, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '163.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5519, '2022-09-23', 5988, 5212, 562, 2558, '3.0000', '3.0000', '3.0000', '3.4200', '3.4200', '21.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5520, '2022-09-23', 6037, 5213, 562, 1315, '1.0000', '9.1000', '9.1000', '9.1000', '9.1000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5521, '2022-09-23', 6301, 5214, 562, 1339, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '61.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5522, '2022-09-23', 6332, 5215, 563, 2560, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '42.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5523, '2022-09-23', 5963, 5216, 563, 3428, '3.0000', '14.5000', '14.5000', '15.9500', '15.9500', '55.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5524, '2022-09-23', 6830, 5217, 563, 2562, '2.0000', '29.7000', '29.7000', '29.7000', '29.7000', '42.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5525, '2022-09-23', 6370, 5218, 563, 3420, '1.0000', '24.5000', '24.5000', '25.3000', '25.3000', '13.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5526, '2022-09-23', 5712, 5219, 563, 2298, '6.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1194.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5527, '2022-09-23', 5601, 5220, 563, 3035, '4.0000', '4.2917', '4.2917', '5.9500', '5.9500', '104.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5589, '2022-09-23', 6879, 5282, 564, 3121, '5.0000', '3.8700', '3.8700', '4.3000', '4.3000', '363.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5588, '2022-09-23', 6817, 5281, 564, 2024, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '60.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5587, '2022-09-23', 6705, 5280, 564, 1071, '4.0000', '15.8000', '15.8000', '15.8000', '15.8000', '26.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5586, '2022-09-23', 6509, 5279, 564, 2077, '2.0000', '13.2500', '13.2500', '13.2500', '13.2500', '104.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5585, '2022-09-23', 6457, 5278, 564, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '19.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5584, '2022-09-23', 6444, 5277, 564, 581, '1.0000', '25.8000', '25.8000', '25.8000', '25.8000', '6.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5583, '2022-09-23', 6383, 5276, 564, 3064, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5582, '2022-09-23', 6269, 5275, 564, 1051, '2.0000', '23.9000', '23.9000', '23.9000', '23.9000', '28.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5581, '2022-09-23', 6078, 5274, 564, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '566.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5580, '2022-09-23', 5986, 5273, 564, 2579, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5579, '2022-09-23', 5976, 5272, 564, 2358, '6.0000', '7.7000', '7.7000', '7.8000', '7.8000', '231.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5578, '2022-09-23', 5949, 5271, 564, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '692.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5577, '2022-09-23', 5926, 5270, 564, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '284.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5576, '2022-09-23', 5898, 5269, 564, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '259.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5575, '2022-09-23', 5853, 5268, 564, 3620, '6.0000', '8.8287', '8.8287', '10.5000', '10.5000', '564.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5574, '2022-09-23', 5849, 5267, 564, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '107.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5573, '2022-09-23', 5765, 5266, 564, 1035, '2.0000', '63.2200', '63.2200', '63.2200', '63.2200', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5572, '2022-09-23', 5730, 5265, 564, 3005, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '100.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5571, '2022-09-23', 5677, 5264, 564, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '272.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5570, '2022-09-23', 5634, 5263, 564, 392, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '34.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5569, '2022-09-23', 5632, 5262, 564, 1991, '3.0000', '8.0000', '8.0000', '8.0000', '8.0000', '112.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5568, '2022-09-23', 5581, 5261, 564, 2343, '3.0000', '11.3000', '11.3000', '11.3000', '11.3000', '157.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5590, '2022-09-23', 6015, 5283, 564, 568, '2.0000', '43.7000', '43.7000', '43.7000', '43.7000', '38.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5551, '2022-09-23', 5991, 5244, 565, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '8.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5552, '2022-09-23', 6007, 5245, 565, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5553, '2022-09-23', 6702, 5246, 566, 1068, '1.0000', '8.8000', '8.8000', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5554, '2022-09-23', 6703, 5247, 566, 1069, '3.0000', '12.0000', '12.0000', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5555, '2022-09-23', 6816, 5248, 567, 3390, '1.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '57.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5556, '2022-09-23', 6215, 5249, 567, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5557, '2022-09-23', 5640, 5250, 567, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '42.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5558, '2022-09-23', 6333, 5251, 567, 2361, '1.0000', '7.7000', '7.7000', '7.7000', '7.7000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5559, '2022-09-23', 5775, 5252, 567, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '77.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5560, '2022-09-23', 6214, 5253, 567, 750, '3.0000', '2.8000', '2.8000', '2.8000', '2.8000', '140.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5561, '2022-09-23', 6140, 5254, 567, 1882, '1.0000', '30.8000', '30.8000', '30.8000', '30.8000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5593, '2022-09-23', 6812, 5286, 568, 2036, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '21.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5594, '2022-09-23', 5545, 5287, 568, 3500, '1.0000', '8.5000', '8.5000', '8.5000', '8.5000', '29.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5595, '2022-09-23', 5906, 5288, 569, 2118, '1.0000', '15.8200', '15.8200', '15.8200', '15.8200', '8.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5596, '2022-09-23', 6202, 5289, 570, 3006, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '398.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5597, '2022-09-23', 6645, 5290, 571, 1393, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '157.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5598, '2022-09-23', 6590, 5291, 572, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5599, '2022-09-23', 5926, 5292, 573, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '274.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5600, '2022-09-23', 5949, 5293, 573, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '682.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5601, '2022-09-23', 5847, 5294, 573, 3136, '5.0000', '3.1651', '3.1651', '7.5000', '7.5000', '518.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5602, '2022-09-23', 5472, 5295, 573, 3397, '5.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '43.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5603, '2022-09-23', 6074, 5296, 573, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1405.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5604, '2022-09-23', 5792, 5297, 573, 1978, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '36.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5605, '2022-09-23', 6288, 5298, 573, 1416, '3.0000', '56.0000', '56.0000', '66.5200', '66.5200', '83.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5606, '2022-09-23', 6560, 5299, 573, 551, '2.0000', '41.6300', '41.6300', '41.6300', '41.6300', '13.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5607, '2022-09-23', 5740, 5300, 573, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '387.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5608, '2022-09-23', 5731, 5301, 573, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '135.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5609, '2022-09-23', 5958, 5302, 573, 521, '4.0000', '16.1000', '16.1000', '16.1000', '16.1000', '40.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5610, '2022-09-23', 5601, 5303, 573, 3035, '5.0000', '4.2917', '4.2917', '5.9500', '5.9500', '99.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5611, '2022-09-23', 5548, 5304, 573, 2374, '5.0000', '2.9800', '2.9800', '2.9800', '2.9800', '281.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5612, '2022-09-23', 5549, 5305, 573, 2372, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '312.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5613, '2022-09-23', 6132, 5306, 573, 1879, '5.0000', '4.3500', '4.3500', '4.3500', '4.3500', '125.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5614, '2022-09-23', 6134, 5307, 573, 1880, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5615, '2022-09-23', 6344, 5308, 573, 958, '1.0000', '220.0000', '220.0000', '220.0000', '220.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5616, '2022-09-23', 6860, 5309, 573, 1977, '6.0000', '16.8000', '16.8000', '18.0000', '18.0000', '104.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5617, '2022-09-23', 5540, 5310, 573, 1280, '1.0000', '22.0000', '22.0000', '33.0000', '33.0000', '37.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5618, '2022-09-23', 5427, 5311, 573, 2365, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '134.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5619, '2022-09-23', 5853, 5312, 573, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '559.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5620, '2022-09-23', 6332, 5313, 573, 2560, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '38.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5621, '2022-09-23', 5654, 5314, 573, 3030, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5622, '2022-09-23', 6083, 5315, 573, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '184.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5623, '2022-09-23', 5980, 5316, 573, 3036, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5624, '2022-09-23', 5652, 5317, 573, 2991, '5.0000', '12.0000', '12.0000', '12.0000', '12.0000', '39.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5625, '2022-09-23', 6844, 5318, 573, 2084, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5626, '2022-09-23', 6507, 5319, 573, NULL, '2.0000', '0.0000', '0.0000', '44.0000', '44.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5627, '2022-09-23', 6634, 5320, 573, 1285, '5.0000', '13.4000', '13.4000', '13.4000', '13.4000', '3.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5628, '2022-09-23', 6288, 5321, 574, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '82.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5629, '2022-09-23', 6304, 5322, 575, 1853, '10.0000', '13.5000', '13.5000', '13.5000', '13.5000', '125.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5630, '2022-09-23', 5949, 5323, 575, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '672.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5631, '2022-09-23', 5453, 5324, 575, 3652, '8.0000', '8.3000', '8.3000', '9.2000', '9.2000', '111.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5632, '2022-09-23', 6158, 5325, 575, 3653, '8.0000', '9.8000', '9.8000', '10.8000', '10.8000', '74.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5633, '2022-09-23', 6006, 5326, 575, 1871, '1.0000', '10.8300', '10.8300', '15.2000', '15.2000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5634, '2022-09-23', 6205, 5327, 575, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '182.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5635, '2022-09-23', 6222, 5328, 575, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5636, '2022-09-23', 5535, 5329, 575, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1378.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5637, '2022-09-23', 6881, 5330, 575, 3131, '2.0000', '49.5000', '49.5000', '55.0000', '55.0000', '28.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5638, '2022-09-23', 6010, 5331, 575, 3621, '6.0000', '15.4888', '15.4888', '16.5000', '16.5000', '353.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5639, '2022-09-23', 6458, 5332, 575, 765, '4.0000', '22.9000', '22.9000', '22.9000', '22.9000', '113.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5640, '2022-09-23', 6455, 5333, 575, 3047, '4.0000', '19.5800', '19.5800', '19.7300', '19.7300', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5641, '2022-09-23', 6057, 5334, 575, 1045, '1.0000', '33.2100', '33.2100', '33.2100', '33.2100', '81.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5642, '2022-09-23', 6573, 5335, 575, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5643, '2022-09-23', 6327, 5336, 575, 649, '4.0000', '28.6000', '28.6000', '28.6000', '28.6000', '17.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5644, '2022-09-23', 6074, 5337, 576, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1401.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5645, '2022-09-23', 6817, 5338, 576, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '59.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5646, '2022-09-23', 6164, 5339, 576, 3657, '1.0000', '14.6000', '14.6000', '16.0600', '16.0600', '71.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5647, '2022-09-23', 5828, 5340, 577, 3660, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '120.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5648, '2022-09-23', 6167, 5341, 577, 3661, '5.0000', '9.4000', '9.4000', '10.4000', '10.4000', '65.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5649, '2022-09-23', 6164, 5342, 577, 3657, '5.0000', '14.6000', '14.6000', '16.0600', '16.0600', '66.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5650, '2022-09-23', 6860, 5343, 577, 1977, '10.0000', '16.8000', '16.8000', '18.0000', '18.0000', '94.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5651, '2022-09-23', 6640, 5344, 577, 3413, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '53.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5652, '2022-09-23', 5947, 5345, 578, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '13.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5653, '2022-09-23', 5472, 5346, 578, 3397, '1.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '42.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5654, '2022-09-23', 6228, 5347, 579, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5655, '2022-09-23', 6823, 5348, 579, 1488, '1.0000', '10.7800', '10.7800', '10.7800', '10.7800', '71.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5656, '2022-09-23', 5980, 5349, 579, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5657, '2022-09-23', 5749, 5350, 579, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '106.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5658, '2022-09-23', 5640, 5351, 580, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5659, '2022-09-23', 5641, 5352, 580, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '89.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5660, '2022-09-23', 5418, 5353, 581, 1851, '1.0000', '5.5000', '5.5000', '5.5000', '5.5000', '279.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5661, '2022-09-24', 5926, 5354, 582, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '264.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5662, '2022-09-24', 6450, 5355, 583, 1943, '1.0000', '45.0000', '45.0000', '45.0000', '45.0000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5663, '2022-09-24', 6197, 5356, 584, 2573, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5664, '2022-09-24', 5947, 5357, 585, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '12.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5665, '2022-09-24', 6218, 5358, 585, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '75.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5666, '2022-09-24', 6511, 5359, 586, 3409, '6.0000', '1.6000', '1.6000', '1.6000', '1.6000', '104.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5667, '2022-09-24', 6129, 5360, 586, 3399, '3.0000', '3.4000', '3.4000', '3.4000', '3.4000', '68.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5668, '2022-09-24', 5977, 5361, 586, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '77.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5669, '2022-09-24', 5435, 5362, 586, 2308, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5670, '2022-09-24', 5813, 5363, 586, 663, '1.0000', '4.9000', '4.9000', '4.9000', '4.9000', '35.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5671, '2022-09-24', 6511, 5364, 587, 3409, '2.0000', '1.6000', '1.6000', '1.6000', '1.6000', '102.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5731, '2022-09-24', 6890, 5424, 588, 3548, '25.0000', '3.5000', '3.5000', '4.6000', '4.6000', '540.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5730, '2022-09-24', 6777, 5423, 588, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5729, '2022-09-24', 6605, 5422, 588, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '74.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5728, '2022-09-24', 6558, 5421, 588, 983, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5727, '2022-09-24', 6528, 5420, 588, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '309.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5726, '2022-09-24', 6386, 5419, 588, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '341.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5725, '2022-09-24', 6348, 5418, 588, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '47.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5724, '2022-09-24', 6337, 5417, 588, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5723, '2022-09-24', 6225, 5416, 588, 2250, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '207.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5722, '2022-09-24', 6220, 5415, 588, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '310.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5721, '2022-09-24', 6177, 5414, 588, 3565, '2.0000', '176356371868290.0000', '176356371868290.0000', '3.5000', '3.5000', '181.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5720, '2022-09-24', 6110, 5413, 588, 1116, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '13.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5719, '2022-09-24', 6074, 5412, 588, 2303, '6.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1390.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5718, '2022-09-24', 5926, 5411, 588, 2072, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '248.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5717, '2022-09-24', 5730, 5410, 588, 3005, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '96.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5716, '2022-09-24', 5657, 5409, 588, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '302.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5715, '2022-09-24', 5641, 5408, 588, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5714, '2022-09-24', 5427, 5407, 588, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5732, '2022-09-24', 6353, 5425, 591, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '126.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5691, '2022-09-24', 6032, 5384, 589, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5692, '2022-09-24', 6220, 5385, 589, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '310.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5693, '2022-09-24', 6075, 5386, 589, 3025, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1872.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5694, '2022-09-24', 6221, 5387, 589, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5695, '2022-09-24', 5418, 5388, 589, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '277.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5696, '2022-09-24', 5689, 5389, 589, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '155.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5697, '2022-09-24', 6866, 5390, 589, 3552, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '102.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5698, '2022-09-24', 6326, 5391, 589, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '17.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5699, '2022-09-24', 5532, 5392, 589, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '33.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5700, '2022-09-24', 6860, 5393, 589, 1977, '2.0000', '16.8000', '16.8000', '18.0000', '18.0000', '92.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5701, '2022-09-24', 6074, 5394, 589, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1390.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5702, '2022-09-24', 6718, 5395, 589, 1972, '1.0000', '12.9000', '12.9000', '12.9000', '12.9000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5811, '2022-09-24', 6812, 5502, 590, 2036, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '19.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5810, '2022-09-24', 6731, 5501, 590, 1007, '1.0000', '43.1000', '43.1000', '43.1000', '43.1000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5809, '2022-09-24', 6393, 5500, 590, 2082, '6.0000', '15.0000', '15.0000', '15.0000', '15.0000', '48.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5808, '2022-09-24', 6275, 5499, 590, 2032, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '308.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5807, '2022-09-24', 6273, 5498, 590, 3033, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '117.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5806, '2022-09-24', 6242, 5497, 590, 3588, '5.0000', '58.3529', '58.3529', '66.5300', '66.5300', '83.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5805, '2022-09-24', 6078, 5496, 590, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '563.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5804, '2022-09-24', 5926, 5495, 590, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '238.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5803, '2022-09-24', 5677, 5494, 590, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '265.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5802, '2022-09-24', 5418, 5493, 590, 1851, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '269.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5812, '2022-09-24', 6860, 5503, 590, 1977, '8.0000', '16.8000', '16.8000', '18.0000', '18.0000', '84.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5733, '2022-09-24', 5911, 5426, 591, 3042, '2.0000', '28.8750', '28.8750', '26.0000', '26.0000', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5734, '2022-09-24', 6595, 5427, 591, 2565, '3.0000', '7.9000', '7.9000', '7.9000', '7.9000', '70.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5735, '2022-09-24', 6053, 5428, 591, 2331, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5736, '2022-09-24', 6232, 5429, 591, 3587, '3.0000', '6.4556', '6.4556', '7.1000', '7.1000', '138.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5737, '2022-09-24', 6233, 5430, 591, 1276, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5738, '2022-09-24', 6381, 5431, 591, 1490, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5739, '2022-09-24', 5976, 5432, 591, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '226.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5740, '2022-09-24', 5977, 5433, 591, 2360, '4.0000', '7.5000', '7.5000', '7.8000', '7.8000', '73.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5741, '2022-09-24', 6890, 5434, 591, 3548, '10.0000', '3.5000', '3.5000', '4.6000', '4.6000', '530.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5742, '2022-09-24', 5799, 5435, 591, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '156.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5743, '2022-09-24', 5967, 5436, 591, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2665.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5744, '2022-09-24', 5969, 5437, 591, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '153.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5745, '2022-09-24', 5592, 5438, 591, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '51.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5746, '2022-09-24', 5729, 5439, 591, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '61.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5747, '2022-09-24', 6205, 5440, 591, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '181.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5748, '2022-09-24', 5593, 5441, 591, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5749, '2022-09-24', 5640, 5442, 591, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '39.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5750, '2022-09-24', 6368, 5443, 591, 1091, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '27.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5751, '2022-09-24', 6248, 5444, 591, 1408, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5752, '2022-09-24', 6075, 5445, 591, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1867.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5753, '2022-09-24', 6076, 5446, 591, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2166.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5754, '2022-09-24', 5540, 5447, 591, 1280, '1.0000', '22.0000', '22.0000', '33.0000', '33.0000', '36.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5755, '2022-09-24', 6777, 5448, 591, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5756, '2022-09-24', 6117, 5449, 591, 2028, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5757, '2022-09-24', 6117, 5449, 591, 1320, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '314.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5758, '2022-09-24', 5740, 5450, 591, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '382.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5759, '2022-09-24', 5731, 5451, 591, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '130.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5760, '2022-09-24', 6074, 5452, 591, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1385.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5761, '2022-09-24', 6573, 5453, 591, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5762, '2022-09-24', 5983, 5454, 591, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '181.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5763, '2022-09-24', 6365, 5455, 591, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '141.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5764, '2022-09-24', 6384, 5456, 591, 1477, '2.0000', '9.6600', '9.6600', '9.6600', '9.6600', '120.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5765, '2022-09-24', 6127, 5457, 591, 1841, '2.0000', '7.3000', '7.3000', '7.3000', '7.3000', '97.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5766, '2022-09-24', 5527, 5458, 591, 1464, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5767, '2022-09-24', 6605, 5459, 591, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '64.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5768, '2022-09-24', 6332, 5460, 591, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '36.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5769, '2022-09-24', 5792, 5461, 591, 1978, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5770, '2022-09-24', 6373, 5462, 591, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '16.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5771, '2022-09-24', 5623, 5463, 592, 2556, '10.0000', '18.9000', '18.9000', '18.9000', '18.9000', '67.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5772, '2022-09-24', 5535, 5464, 592, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1368.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5773, '2022-09-24', 5562, 5465, 592, 3488, '1.0000', '47.7700', '47.7700', '47.8000', '47.8000', '18.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5774, '2022-09-24', 6408, 5466, 592, 2978, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '45.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5775, '2022-09-24', 5633, 5467, 592, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '10.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5776, '2022-09-24', 6205, 5468, 592, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '180.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5777, '2022-09-24', 5540, 5469, 592, 1280, '2.0000', '22.0000', '22.0000', '33.0000', '33.0000', '34.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5778, '2022-09-24', 5677, 5470, 592, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '265.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5779, '2022-09-24', 6285, 5471, 592, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '109.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5780, '2022-09-24', 6232, 5472, 592, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '133.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5781, '2022-09-24', 6316, 5473, 592, 1889, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5782, '2022-09-24', 5926, 5474, 592, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '238.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5783, '2022-09-24', 5828, 5475, 592, 3660, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '116.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5784, '2022-09-24', 5799, 5476, 592, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '154.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5785, '2022-09-24', 6650, 5477, 592, 3716, '1.0000', '5.7000', '5.7000', '5.7000', '5.7000', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5786, '2022-09-24', 6650, 5477, 592, 1146, '1.0000', '5.7000', '5.7000', '5.7000', '5.7000', '39.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5787, '2022-09-24', 6076, 5478, 592, 3024, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2165.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5788, '2022-09-24', 5641, 5479, 592, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '87.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5789, '2022-09-24', 6370, 5480, 592, 3420, '1.0000', '24.5000', '24.5000', '25.3000', '25.3000', '12.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5790, '2022-09-24', 5532, 5481, 592, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '31.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5791, '2022-09-24', 6220, 5482, 592, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '307.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5792, '2022-09-24', 5975, 5483, 592, 2379, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5793, '2022-09-24', 5956, 5484, 592, 930, '1.0000', '17.8400', '17.8400', '17.8400', '17.8400', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5794, '2022-09-24', 6508, 5485, 592, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5795, '2022-09-24', 5730, 5486, 592, 3005, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '94.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5796, '2022-09-24', 5853, 5487, 593, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '557.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5797, '2022-09-24', 6078, 5488, 593, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '563.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5798, '2022-09-24', 5418, 5489, 593, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '269.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5799, '2022-09-24', 5689, 5490, 593, 2050, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '152.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5800, '2022-09-24', 5586, 5491, 593, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '223.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5801, '2022-09-24', 6332, 5492, 593, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '35.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5813, '2022-09-24', 6037, 5504, 590, 1315, '4.0000', '9.1000', '9.1000', '9.1000', '9.1000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5814, '2022-09-24', 6371, 5505, 594, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5815, '2022-09-24', 6890, 5506, 594, 3548, '10.0000', '3.5000', '3.5000', '4.6000', '4.6000', '520.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5816, '2022-09-24', 6750, 5507, 594, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '41.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5817, '2022-09-24', 6102, 5508, 594, 2291, '2.0000', '27.8000', '27.8000', '27.8000', '27.8000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5818, '2022-09-24', 5640, 5509, 594, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '37.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5819, '2022-09-24', 5641, 5510, 594, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '86.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5820, '2022-09-24', 5926, 5511, 594, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '233.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5821, '2022-09-24', 6078, 5512, 594, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '562.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5822, '2022-09-24', 6430, 5513, 594, 1894, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '350.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5823, '2022-09-24', 6214, 5514, 594, 750, '3.0000', '2.8000', '2.8000', '2.8000', '2.8000', '137.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5824, '2022-09-24', 6843, 5515, 594, 1100, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5825, '2022-09-24', 6136, 5516, 594, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '160.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5826, '2022-09-24', 5593, 5517, 594, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5827, '2022-09-24', 6222, 5518, 594, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5828, '2022-09-24', 6216, 5519, 594, 3617, '20.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2910.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5829, '2022-09-24', 5911, 5520, 594, 3042, '1.0000', '28.8750', '28.8750', '23.1000', '23.1000', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5830, '2022-09-24', 5906, 5521, 594, 2118, '3.0000', '15.8200', '15.8200', '15.8200', '15.8200', '5.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5831, '2022-09-24', 6152, 5522, 594, 2097, '10.0000', '1.2000', '1.2000', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5832, '2022-09-24', 6846, 5523, 594, 2293, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5833, '2022-09-24', 5576, 5524, 594, 1108, '2.0000', '8.7000', '8.7000', '8.7000', '8.7000', '54.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5834, '2022-09-24', 6074, 5525, 594, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1375.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5835, '2022-09-24', 6098, 5526, 594, 3081, '4.0000', '5.6000', '5.6000', '5.6000', '5.6000', '885.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5836, '2022-09-24', 5640, 5527, 595, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5837, '2022-09-24', 5641, 5528, 595, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '85.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5838, '2022-09-24', 5716, 5529, 595, 2384, '7.0000', '3.6000', '3.6000', '3.6000', '3.6000', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5839, '2022-09-24', 5906, 5530, 595, 2118, '2.0000', '15.8200', '15.8200', '15.8200', '15.8200', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5840, '2022-09-24', 5956, 5531, 595, 930, '2.0000', '17.8400', '17.8400', '17.8400', '17.8400', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5841, '2022-09-24', 5973, 5532, 595, 1398, '2.0000', '8.3000', '8.3000', '8.3000', '8.3000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5842, '2022-09-24', 5991, 5533, 595, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '7.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5843, '2022-09-24', 6007, 5534, 595, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5844, '2022-09-24', 6053, 5535, 595, 2331, '1.0000', '14.9000', '14.9000', '16.3700', '16.3700', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5845, '2022-09-24', 6096, 5536, 595, 2990, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5846, '2022-09-24', 6147, 5537, 595, 3038, '1.0000', '35.2000', '35.2000', '35.2000', '35.2000', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5847, '2022-09-24', 6148, 5538, 595, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '14.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5848, '2022-09-24', 6193, 5539, 595, 2115, '6.0000', '6.6000', '6.6000', '6.6000', '6.6000', '19.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5849, '2022-09-24', 6205, 5540, 595, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '179.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5850, '2022-09-24', 6212, 5541, 595, 3048, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '100.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5851, '2022-09-24', 6213, 5542, 595, 3049, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '138.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5852, '2022-09-24', 6216, 5543, 595, 3617, '30.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2880.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5853, '2022-09-24', 6223, 5544, 595, 3551, '20.0000', '0.6000', '0.6000', '0.6000', '0.6000', '505.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5854, '2022-09-24', 6285, 5545, 595, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '107.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5855, '2022-09-24', 6293, 5546, 595, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '201.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5856, '2022-09-24', 6361, 5547, 595, 2264, '1.0000', '49.5000', '49.5000', '49.5000', '49.5000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5857, '2022-09-24', 6365, 5548, 595, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '140.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5858, '2022-09-24', 6376, 5549, 595, 2364, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2370.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5859, '2022-09-24', 6378, 5550, 595, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '75.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5860, '2022-09-24', 6381, 5551, 595, 1490, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '46.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5861, '2022-09-24', 6491, 5552, 595, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '192.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5862, '2022-09-24', 6573, 5553, 595, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '27.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5863, '2022-09-24', 6592, 5554, 595, 2373, '4.0000', '3.1800', '3.1800', '3.1800', '3.1800', '104.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5864, '2022-09-24', 6607, 5555, 595, 2583, '2.0000', '16.0000', '16.0000', '16.0000', '16.0000', '80.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5865, '2022-09-24', 6838, 5556, 595, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '79.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5866, '2022-09-24', 6692, 5557, 595, 3719, '4.0000', '3.2399', '3.2399', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5867, '2022-09-24', 6446, 5558, 595, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '125.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5868, '2022-09-24', 6860, 5559, 595, 1977, '1.0000', '16.8000', '16.8000', '18.0000', '18.0000', '83.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5869, '2022-09-24', 6217, 5560, 595, 2377, '3.0000', '2.8800', '2.8800', '2.8800', '2.8800', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6407, '2022-09-26', 6579, 6088, 646, 666, '5.0000', '35.5400', '35.5400', '35.5400', '35.5400', '13.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6409, '2022-09-26', 6337, 6091, 648, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6391, '2022-09-26', 5731, 6072, 645, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '106.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6406, '2022-09-26', 5586, 6087, 643, 3135, '5.0000', '28.9000', '28.9000', '28.9000', '28.9000', '218.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6405, '2022-09-26', 5601, 6086, 643, 3035, '5.0000', '4.2917', '4.2917', '5.9500', '5.9500', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6404, '2022-09-26', 5600, 6085, 643, 3051, '5.0000', '2.6233', '2.6233', '3.6000', '3.6000', '874.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6389, '2022-09-26', 5986, 6071, 645, 2579, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6390, '2022-09-26', 5986, 6071, 645, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '107.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6388, '2022-09-26', 5704, 6070, 645, 911, '10.0000', '15.0000', '15.0000', '16.0500', '16.0500', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5966, '2022-09-24', 6828, 5655, 597, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '17.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5965, '2022-09-24', 6691, 5654, 597, 1994, '3.0000', '6.5000', '6.5000', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5964, '2022-09-24', 6218, 5653, 597, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '73.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5963, '2022-09-24', 6095, 5652, 597, 3138, '3.0000', '8.3200', '8.3200', '8.3200', '8.3200', '120.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5962, '2022-09-24', 6075, 5651, 597, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1843.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5961, '2022-09-24', 5740, 5650, 597, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '376.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5960, '2022-09-24', 5731, 5649, 597, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '125.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5967, '2022-09-24', 6267, 5656, 597, 1425, '5.0000', '7.1000', '7.1000', '8.0400', '8.0400', '25.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5887, '2022-09-24', 5715, 5578, 598, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '59.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5888, '2022-09-24', 6408, 5579, 599, 2978, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '43.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5889, '2022-09-24', 6285, 5580, 599, 2057, '1.0000', '9.4700', '9.4700', '10.9800', '10.9800', '106.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5890, '2022-09-24', 5982, 5581, 599, 1963, '1.0000', '7.9400', '7.9400', '10.5500', '10.5500', '146.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5891, '2022-09-24', 5472, 5582, 600, 3397, '20.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5892, '2022-09-24', 6053, 5583, 601, 2331, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5893, '2022-09-24', 6285, 5584, 601, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '104.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5894, '2022-09-24', 6225, 5585, 601, 2250, '6.0000', '2.8000', '2.8000', '2.8000', '2.8000', '201.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5895, '2022-09-24', 5799, 5586, 601, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '153.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5896, '2022-09-24', 6778, 5587, 601, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '147.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5897, '2022-09-24', 6572, 5588, 601, 2993, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '121.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5898, '2022-09-24', 5677, 5589, 601, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '263.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5899, '2022-09-24', 5975, 5590, 601, 2379, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5900, '2022-09-24', 5828, 5591, 601, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '114.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5901, '2022-09-24', 6092, 5592, 601, 3667, '1.0000', '14.9000', '14.9000', '14.9000', '14.9000', '0.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5902, '2022-09-24', 6092, 5592, 601, 528, '2.0000', '14.9000', '14.9000', '14.9000', '14.9000', '38.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5903, '2022-09-24', 5535, 5593, 601, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1358.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5904, '2022-09-24', 6374, 5594, 601, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4400.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5905, '2022-09-24', 6378, 5595, 601, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '74.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5906, '2022-09-24', 6219, 5596, 601, 2117, '50.0000', '2.6900', '2.6900', '2.6900', '2.6900', '65.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5907, '2022-09-24', 5731, 5597, 601, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '125.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5908, '2022-09-24', 6595, 5598, 601, 2565, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '68.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5909, '2022-09-24', 5532, 5599, 601, 3396, '1.0000', '56.1000', '56.1000', '60.7800', '60.7800', '30.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5910, '2022-09-24', 5629, 5600, 601, 1429, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5911, '2022-09-24', 5856, 5601, 601, 2578, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '19.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5912, '2022-09-24', 6218, 5602, 602, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '73.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5913, '2022-09-24', 5947, 5603, 602, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5914, '2022-09-24', 5607, 5604, 603, 3708, '1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '7.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5915, '2022-09-24', 6361, 5605, 603, 3725, '5.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4454.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5916, '2022-09-24', 6032, 5606, 603, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5917, '2022-09-24', 6232, 5607, 603, 3587, '1.0000', '6.4556', '6.4556', '7.1000', '7.1000', '132.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5918, '2022-09-24', 5740, 5608, 603, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '379.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5919, '2022-09-24', 5641, 5609, 603, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '84.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5920, '2022-09-24', 6813, 5610, 603, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '40.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5921, '2022-09-24', 6228, 5611, 604, 2366, '2.0000', '20.9500', '20.9500', '20.9500', '20.9500', '7.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5922, '2022-09-24', 5775, 5612, 604, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '75.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5923, '2022-09-24', 6348, 5613, 605, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '46.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5924, '2022-09-24', 6099, 5614, 606, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '38.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5925, '2022-09-24', 5472, 5615, 606, 3397, '2.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5926, '2022-09-24', 6007, 5616, 606, 2327, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5927, '2022-09-24', 6350, 5617, 606, 1941, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5928, '2022-09-24', 6350, 5617, 606, 1343, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5929, '2022-09-24', 6351, 5618, 606, 1344, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5930, '2022-09-24', 6572, 5619, 606, 2993, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '118.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5931, '2022-09-24', 6021, 5620, 606, 1844, '3.0000', '3.6000', '3.6000', '3.6000', '3.6000', '3.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5932, '2022-09-24', 5853, 5621, 606, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '552.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5933, '2022-09-24', 5949, 5622, 606, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '667.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5934, '2022-09-24', 6332, 5623, 606, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '34.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5935, '2022-09-24', 6333, 5624, 606, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '108.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5936, '2022-09-24', 6132, 5625, 606, 1879, '5.0000', '4.3500', '4.3500', '4.3500', '4.3500', '120.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5937, '2022-09-24', 5799, 5626, 607, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '151.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5938, '2022-09-24', 5535, 5627, 607, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1348.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5939, '2022-09-24', 5926, 5628, 607, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '229.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5940, '2022-09-24', 5740, 5629, 607, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '376.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5941, '2022-09-24', 5967, 5630, 607, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2650.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5942, '2022-09-24', 5932, 5631, 607, 1092, '2.0000', '11.4000', '11.4000', '11.4000', '11.4000', '30.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5943, '2022-09-24', 6374, 5632, 607, 3614, '25.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4375.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5944, '2022-09-24', 6216, 5633, 607, 3617, '25.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2855.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5945, '2022-09-24', 5629, 5634, 607, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5946, '2022-09-24', 6083, 5635, 607, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '179.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5947, '2022-09-24', 6204, 5636, 607, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5948, '2022-09-24', 6508, 5637, 607, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5949, '2022-09-24', 5969, 5638, 608, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '149.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5950, '2022-09-24', 5982, 5639, 609, 1963, '1.0000', '7.9400', '7.9400', '10.5500', '10.5500', '145.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5951, '2022-09-24', 5969, 5640, 609, 2252, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '148.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5952, '2022-09-24', 6083, 5641, 609, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '177.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5953, '2022-09-24', 6220, 5642, 609, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '305.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5954, '2022-09-24', 6517, 5643, 609, 2254, '1.0000', '8.7000', '8.7000', '10.4500', '10.4500', '75.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5955, '2022-09-24', 5640, 5644, 609, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5956, '2022-09-24', 5988, 5645, 609, 2558, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '20.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5957, '2022-09-24', 6348, 5646, 609, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '45.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5958, '2022-09-24', 5976, 5647, 610, 2358, '1.0000', '7.7000', '7.7000', '7.8000', '7.8000', '225.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5959, '2022-09-24', 6681, 5648, 610, 2983, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6037, '2022-09-24', 6880, 5725, 611, 3128, '6.0000', '13.5000', '13.5000', '15.0000', '15.0000', '392.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6036, '2022-09-24', 6870, 5724, 611, 3585, '2.0000', '36.4852', '36.4852', '40.1400', '40.1400', '45.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6035, '2022-09-24', 6747, 5723, 611, 3389, '5.0000', '12.9800', '12.9800', '12.9800', '12.9800', '15.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6034, '2022-09-24', 6690, 5722, 611, 1857, '6.0000', '8.2500', '8.2500', '8.2500', '8.2500', '9.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6033, '2022-09-24', 6605, 5721, 611, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '54.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6032, '2022-09-24', 6604, 5720, 611, 766, '8.0000', '5.5000', '5.5000', '5.5000', '5.5000', '487.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6031, '2022-09-24', 6596, 5719, 611, 1349, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6030, '2022-09-24', 6519, 5718, 611, 975, '1.0000', '120.3600', '120.3600', '120.3600', '120.3600', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6029, '2022-09-24', 6509, 5717, 611, 2077, '6.0000', '13.2500', '13.2500', '13.2500', '13.2500', '98.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6028, '2022-09-24', 6460, 5716, 611, 1078, '6.0000', '6.0000', '6.0000', '6.0000', '6.0000', '57.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6027, '2022-09-24', 6457, 5715, 611, 3607, '5.0000', '39.9000', '39.9000', '43.9000', '43.9000', '14.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6026, '2022-09-24', 6448, 5714, 611, 2265, '6.0000', '15.0000', '15.0000', '15.0000', '15.0000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6025, '2022-09-24', 6368, 5713, 611, 1091, '6.0000', '12.8400', '12.8400', '12.8400', '12.8400', '21.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6024, '2022-09-24', 6216, 5712, 611, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2805.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6023, '2022-09-24', 5991, 5711, 611, 2070, '3.0000', '37.7000', '37.7000', '37.7000', '37.7000', '4.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6022, '2022-09-24', 5970, 5710, 611, 2310, '6.0000', '9.1500', '9.1500', '12.8500', '12.8500', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6021, '2022-09-24', 5932, 5709, 611, 1092, '6.0000', '11.4000', '11.4000', '11.4000', '11.4000', '24.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6020, '2022-09-24', 5926, 5708, 611, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '219.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6019, '2022-09-24', 5792, 5707, 611, 1978, '5.0000', '30.2000', '30.2000', '36.9900', '36.9900', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6018, '2022-09-24', 5774, 5706, 611, 918, '6.0000', '15.0000', '15.0000', '15.0000', '15.0000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6017, '2022-09-24', 5623, 5705, 611, 2556, '10.0000', '18.9000', '18.9000', '18.9000', '18.9000', '57.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6016, '2022-09-24', 5601, 5704, 611, 3035, '10.0000', '4.2917', '4.2917', '5.9500', '5.9500', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6015, '2022-09-24', 5588, 5703, 611, 3075, '6.0000', '14.9600', '14.9600', '14.9600', '14.9600', '110.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6014, '2022-09-24', 5587, 5702, 611, 3076, '8.0000', '8.8000', '8.8000', '8.8000', '8.8000', '193.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6013, '2022-09-24', 5580, 5701, 611, 3511, '5.0000', '7.2414', '7.2414', '8.4000', '8.4000', '100.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6012, '2022-09-24', 5507, 5700, 611, 1379, '6.0000', '4.9900', '4.9900', '4.9900', '4.9900', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6038, '2022-09-24', 5770, 5726, 611, 3635, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5995, '2022-09-24', 6074, 5684, 612, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1355.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5996, '2022-09-24', 5740, 5685, 613, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '375.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5997, '2022-09-24', 6298, 5686, 613, 3557, '-32.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5998, '2022-09-24', 6298, 5686, 613, NULL, '33.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-33.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5999, '2022-09-24', 5751, 5687, 613, 1112, '1.0000', '10.8000', '10.8000', '10.8000', '10.8000', '138.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6000, '2022-09-24', 5641, 5688, 613, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6001, '2022-09-24', 5640, 5689, 613, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6002, '2022-09-24', 5949, 5690, 613, 1311, '1.0000', '5.2000', '5.2000', '7.3000', '7.3000', '666.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6003, '2022-09-24', 5710, 5691, 613, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '105.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6004, '2022-09-24', 6327, 5692, 614, 649, '17.0000', '28.6000', '28.6000', '28.6000', '28.6000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6005, '2022-09-24', 5532, 5693, 614, 3396, '10.0000', '56.1000', '56.1000', '60.7800', '60.7800', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6006, '2022-09-24', 5849, 5694, 614, 2357, '10.0000', '3.1000', '3.1000', '3.1000', '3.1000', '97.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6007, '2022-09-24', 6501, 5695, 614, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '73.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6008, '2022-09-24', 6139, 5696, 614, 3055, '2.0000', '15.9500', '15.9500', '15.9500', '15.9500', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6009, '2022-09-24', 5765, 5697, 615, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6010, '2022-09-24', 6508, 5698, 616, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6011, '2022-09-24', 6508, 5699, 617, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6039, '2022-09-24', 5770, 5726, 611, 3079, '7.0000', '4.0000', '4.0000', '4.0000', '4.0000', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6040, '2022-09-24', 6075, 5727, 618, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1838.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6041, '2022-09-24', 6076, 5728, 618, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2160.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6042, '2022-09-24', 6205, 5729, 618, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '178.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6043, '2022-09-24', 5740, 5730, 618, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '373.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6044, '2022-09-24', 5731, 5731, 618, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '123.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6045, '2022-09-24', 6074, 5732, 618, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1351.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6046, '2022-09-24', 5601, 5733, 618, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '77.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6047, '2022-09-24', 5926, 5734, 618, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '215.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6048, '2022-09-24', 6843, 5735, 618, 1100, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6049, '2022-09-24', 6375, 5736, 618, 3065, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6050, '2022-09-24', 6674, 5737, 619, 1923, '12.0000', '4.4500', '4.4500', '4.4500', '4.4500', '305.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6051, '2022-09-24', 5947, 5738, 620, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '10.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6052, '2022-09-24', 6232, 5739, 620, 3587, '1.0000', '6.4556', '6.4556', '7.1000', '7.1000', '131.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6053, '2022-09-24', 6600, 5740, 621, 1351, '3.0000', '12.9000', '12.9000', '18.0000', '18.0000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6054, '2022-09-24', 6293, 5741, 621, 3486, '4.0000', '14.6000', '14.6000', '14.6000', '14.6000', '197.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6055, '2022-09-24', 5715, 5742, 622, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6056, '2022-09-24', 5472, 5743, 622, 3397, '2.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6144, '2022-09-24', 6872, 5824, 623, NULL, '19.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6143, '2022-09-24', 6872, 5824, 623, 3012, '1.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6142, '2022-09-24', 6846, 5823, 623, 2293, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6141, '2022-09-24', 6834, 5822, 623, 2034, '3.0000', '5.3000', '5.3000', '5.3000', '5.3000', '94.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6140, '2022-09-24', 6777, 5821, 623, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '1.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6139, '2022-09-24', 6696, 5820, 623, 2282, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '352.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6138, '2022-09-24', 6681, 5819, 623, 2983, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6137, '2022-09-24', 6674, 5818, 623, 1923, '1.0000', '4.4500', '4.4500', '4.4500', '4.4500', '304.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6136, '2022-09-24', 6664, 5817, 623, NULL, '2.0000', '-175.6812', '-175.6812', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6135, '2022-09-24', 6664, 5817, 623, 3415, '13.0000', '-175.6812', '-175.6812', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6134, '2022-09-24', 6611, 5816, 623, 1096, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6133, '2022-09-24', 6533, 5815, 623, 1441, '1.0000', '3.9000', '3.9000', '3.9000', '3.9000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6132, '2022-09-24', 6516, 5814, 623, 1938, '3.0000', '7.6000', '7.6000', '8.5500', '8.5500', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6131, '2022-09-24', 6430, 5813, 623, 1894, '5.0000', '1.6000', '1.6000', '1.6000', '1.6000', '345.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6130, '2022-09-24', 6425, 5812, 623, 1937, '3.0000', '6.7000', '6.7000', '8.5500', '8.5500', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6129, '2022-09-24', 6323, 5811, 623, 1055, '2.0000', '39.0000', '39.0000', '39.0000', '39.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6128, '2022-09-24', 6232, 5810, 623, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '129.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6127, '2022-09-24', 6226, 5809, 623, 3491, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '65.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6126, '2022-09-24', 6217, 5808, 623, 2377, '10.0000', '2.8800', '2.8800', '2.8800', '2.8800', '26.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6125, '2022-09-24', 6213, 5807, 623, 3049, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '136.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6124, '2022-09-24', 6212, 5806, 623, 3048, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '98.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6123, '2022-09-24', 6078, 5805, 623, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '561.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6122, '2022-09-24', 6021, 5804, 623, 1930, '1.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6121, '2022-09-24', 6021, 5804, 623, 1844, '3.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6120, '2022-09-24', 6019, 5803, 623, 1947, '10.0000', '2.5300', '2.5300', '3.0000', '3.0000', '222.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6119, '2022-09-24', 5994, 5802, 623, 2394, '1.0000', '33.6000', '33.6000', '33.6000', '33.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6118, '2022-09-24', 5969, 5801, 623, 2252, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '143.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6117, '2022-09-24', 5853, 5800, 623, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '550.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6116, '2022-09-24', 5849, 5799, 623, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6115, '2022-09-24', 5731, 5798, 623, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '118.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6114, '2022-09-24', 5603, 5797, 623, 3011, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '89.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6113, '2022-09-24', 5598, 5796, 623, 3031, '5.0000', '2.6000', '2.6000', '4.3000', '4.3000', '526.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6112, '2022-09-24', 5509, 5795, 623, 1854, '3.0000', '6.8800', '6.8800', '6.8800', '6.8800', '22.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6145, '2022-09-24', 6375, 5825, 623, 3065, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6091, '2022-09-24', 5587, 5774, 624, 3076, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '188.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6092, '2022-09-24', 5607, 5775, 624, 3708, '2.0000', '11.4000', '11.4000', '11.4000', '11.4000', '5.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6093, '2022-09-24', 5720, 5776, 624, 914, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6094, '2022-09-24', 5762, 5777, 624, 773, '1.0000', '20.7400', '20.7400', '28.5400', '28.5400', '3.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6095, '2022-09-24', 5956, 5778, 624, 930, '4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6096, '2022-09-24', 5984, 5779, 624, 3483, '3.0000', '19.5300', '19.5300', '22.9100', '22.9100', '77.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6097, '2022-09-24', 6057, 5780, 624, 1045, '1.0000', '33.2100', '33.2100', '41.5000', '41.5000', '80.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6098, '2022-09-24', 6246, 5781, 624, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6099, '2022-09-24', 6326, 5782, 624, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '12.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6100, '2022-09-24', 6418, 5783, 624, 2580, '5.0000', '6.3300', '6.3300', '6.3800', '6.3800', '617.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6101, '2022-09-24', 6528, 5784, 624, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '304.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6102, '2022-09-24', 6573, 5785, 624, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6103, '2022-09-24', 6807, 5786, 624, 1282, '5.0000', '9.0000', '9.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6104, '2022-09-24', 6882, 5787, 624, 3130, '2.0000', '22.5000', '22.5000', '25.0000', '25.0000', '23.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6105, '2022-09-24', 5418, 5788, 624, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '257.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6106, '2022-09-24', 6552, 5789, 624, 1459, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6107, '2022-09-24', 5947, 5790, 625, 2353, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '8.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6108, '2022-09-24', 6893, 5791, 626, 3650, '1.0000', '53.0000', '53.0000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 64, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6109, '2022-09-24', 6860, 5792, 626, 1977, '1.0000', '16.8000', '16.8000', '18.0000', '18.0000', '82.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6110, '2022-09-24', 6508, 5793, 626, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6111, '2022-09-24', 6508, 5794, 627, 973, '1.0000', '13.3000', '13.3000', '13.3000', '13.3000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6146, '2022-09-24', 6218, 5826, 628, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '72.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6147, '2022-09-24', 5675, 5827, 629, 314, '1.0000', '65.0000', '65.0000', '65.0000', '65.0000', '4.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6148, '2022-09-26', 5677, 5828, 630, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '261.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6149, '2022-09-26', 5906, 5829, 630, 2118, '1.0000', '15.8200', '15.8200', '15.8200', '15.8200', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6150, '2022-09-26', 6216, 5830, 630, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2795.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6151, '2022-09-26', 5418, 5831, 630, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '254.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6152, '2022-09-26', 6075, 5832, 630, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1835.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6153, '2022-09-26', 6076, 5833, 630, 3024, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2158.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6154, '2022-09-26', 5710, 5834, 630, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '103.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6155, '2022-09-26', 6408, 5835, 630, 2978, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '40.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6156, '2022-09-26', 6198, 5836, 631, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6169, '2022-09-26', 6718, 5849, 632, 1972, '4.0000', '12.9000', '12.9000', '12.9000', '12.9000', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6168, '2022-09-26', 5969, 5848, 632, 2252, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '138.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6167, '2022-09-26', 5765, 5847, 632, 1035, '2.0000', '63.2200', '63.2200', '63.2200', '63.2200', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6166, '2022-09-26', 5742, 5846, 632, 516, '1.0000', '311.6000', '311.6000', '311.6000', '311.6000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6165, '2022-09-26', 5596, 5845, 632, 2256, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '91.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6164, '2022-09-26', 5582, 5844, 632, 2342, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '283.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6170, '2022-09-26', 6074, 5850, 633, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1341.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6171, '2022-09-26', 6511, 5851, 633, 3409, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '92.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6172, '2022-09-26', 6379, 5852, 633, 3421, '6.0000', '8.7056', '8.7056', '2.1000', '2.1000', '157.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6173, '2022-09-26', 5808, 5853, 633, 3513, '1.0000', '13.5200', '13.5200', '16.6000', '16.6000', '4.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6174, '2022-09-26', 6020, 5854, 633, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6175, '2022-09-26', 6738, 5855, 633, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '168.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6176, '2022-09-26', 6185, 5856, 633, 3401, '3.0000', '7.8500', '7.8500', '7.8500', '7.8500', '31.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6177, '2022-09-26', 5828, 5857, 633, 3660, '6.0000', '11.1000', '11.1000', '12.3000', '12.3000', '108.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6178, '2022-09-26', 5650, 5858, 633, 1438, '1.0000', '7.9000', '7.9000', '7.9000', '7.9000', '23.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6179, '2022-09-26', 6257, 5859, 633, 1887, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6180, '2022-09-26', 5582, 5860, 633, 2342, '1.0000', '12.5000', '12.5000', '12.5000', '12.5000', '282.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6181, '2022-09-26', 6820, 5861, 633, 3615, '4.0000', '5.2982', '5.2982', '5.9000', '5.9000', '440.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6182, '2022-09-26', 5740, 5862, 633, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '368.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6183, '2022-09-26', 5731, 5863, 633, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '116.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6184, '2022-09-26', 6876, 5864, 633, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6185, '2022-09-26', 5535, 5865, 633, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1338.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6186, '2022-09-26', 5451, 5866, 633, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1231.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6187, '2022-09-26', 5967, 5867, 634, 3132, '6.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2644.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6188, '2022-09-26', 5989, 5868, 634, 3057, '1.0000', '28.1000', '28.1000', '28.1000', '28.1000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6189, '2022-09-26', 6223, 5869, 634, 3551, '50.0000', '0.6000', '0.6000', '0.6000', '0.6000', '455.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6190, '2022-09-26', 6197, 5870, 634, 2573, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6191, '2022-09-26', 5592, 5871, 634, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '46.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6192, '2022-09-26', 5717, 5872, 634, 2381, '4.0000', '2.4000', '2.4000', '2.4000', '2.4000', '286.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6193, '2022-09-26', 5569, 5873, 634, 1436, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '8.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6194, '2022-09-26', 6075, 5874, 634, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1830.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6195, '2022-09-26', 6076, 5875, 634, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2153.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6196, '2022-09-26', 6863, 5876, 634, 3612, '-18.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6197, '2022-09-26', 6863, 5876, 634, NULL, '19.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6198, '2022-09-26', 6864, 5877, 634, 3082, '1.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4710.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6199, '2022-09-26', 6865, 5878, 634, 1026, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6200, '2022-09-26', 6866, 5879, 634, 3552, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '100.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6201, '2022-09-26', 6224, 5880, 634, 2385, '4.0000', '1.9000', '1.9000', '1.9000', '1.9000', '39.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6202, '2022-09-26', 6607, 5881, 634, 2583, '3.0000', '16.0000', '16.0000', '16.0000', '16.0000', '77.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6203, '2022-09-26', 5740, 5882, 634, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '366.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6204, '2022-09-26', 6690, 5883, 634, 1857, '3.0000', '8.2500', '8.2500', '8.2500', '8.2500', '6.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6205, '2022-09-26', 6383, 5884, 634, 3064, '2.0000', '8.2000', '8.2000', '8.2000', '8.2000', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6206, '2022-09-26', 6672, 5885, 634, 1001, '2.0000', '4.9500', '4.9500', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6207, '2022-09-26', 6671, 5886, 634, 1996, '2.0000', '7.1500', '7.1500', '7.8000', '7.8000', '53.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6208, '2022-09-26', 6145, 5887, 634, 664, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '64.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6209, '2022-09-26', 5813, 5888, 634, 663, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '33.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6210, '2022-09-26', 5541, 5889, 634, 905, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6211, '2022-09-26', 5629, 5890, 634, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6212, '2022-09-26', 5601, 5891, 634, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '75.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6213, '2022-09-26', 6813, 5892, 634, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '39.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6272, '2022-09-26', 6348, 5950, 635, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '44.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6271, '2022-09-26', 5451, 5949, 635, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1228.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6273, '2022-09-26', 6099, 5951, 635, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '37.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6217, '2022-09-26', 5991, 5896, 636, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '3.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6218, '2022-09-26', 6053, 5897, 636, 2331, '4.0000', '14.9000', '14.9000', '16.3700', '16.3700', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6219, '2022-09-26', 6316, 5898, 637, 1889, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6220, '2022-09-26', 5947, 5899, 638, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '7.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6221, '2022-09-26', 6218, 5900, 638, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '71.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6222, '2022-09-26', 6607, 5901, 639, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '75.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6223, '2022-09-26', 5828, 5902, 639, 3660, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '104.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6224, '2022-09-26', 5865, 5903, 639, 3052, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '379.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6225, '2022-09-26', 6501, 5904, 639, 3662, '4.0000', '9.0000', '9.0000', '10.6000', '10.6000', '69.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6226, '2022-09-26', 6511, 5905, 639, 3409, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '72.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6227, '2022-09-26', 5967, 5906, 639, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2641.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6228, '2022-09-26', 6879, 5907, 639, 3121, '2.0000', '3.8700', '3.8700', '4.3000', '4.3000', '361.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6229, '2022-09-26', 6813, 5908, 639, 2037, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '36.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6230, '2022-09-26', 6152, 5909, 639, 2097, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6231, '2022-09-26', 6152, 5909, 639, 1883, '20.0000', '1.2000', '1.2000', '1.2000', '1.2000', '964.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6232, '2022-09-26', 6036, 5910, 639, 2568, '3.0000', '4.4300', '4.4300', '4.4300', '4.4300', '14.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6233, '2022-09-26', 6145, 5911, 639, 664, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '62.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6234, '2022-09-26', 5600, 5912, 639, 3051, '3.0000', '2.6233', '2.6233', '3.6000', '3.6000', '879.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6235, '2022-09-26', 5629, 5913, 639, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '60.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6236, '2022-09-26', 5640, 5914, 639, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6237, '2022-09-26', 6692, 5915, 639, 3719, '4.0000', '3.2399', '3.2399', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6238, '2022-09-26', 6171, 5916, 639, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6239, '2022-09-26', 6378, 5917, 639, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6240, '2022-09-26', 5898, 5918, 639, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '257.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6241, '2022-09-26', 6007, 5919, 639, 2327, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6242, '2022-09-26', 6679, 5920, 639, 3546, '1.0000', '9.9900', '9.9900', '9.9900', '9.9900', '4.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6243, '2022-09-26', 6373, 5921, 639, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '15.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6244, '2022-09-26', 5714, 5922, 639, 2280, '8.0000', '3.3000', '3.3000', '3.3000', '3.3000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6245, '2022-09-26', 6220, 5923, 639, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '300.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6246, '2022-09-26', 5986, 5924, 639, 2579, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '8.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6247, '2022-09-26', 6379, 5925, 639, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '154.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6248, '2022-09-26', 6020, 5926, 639, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6249, '2022-09-26', 6164, 5927, 639, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '64.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6250, '2022-09-26', 5853, 5928, 640, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '546.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6251, '2022-09-26', 6205, 5929, 640, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '176.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6252, '2022-09-26', 5926, 5930, 640, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '195.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6253, '2022-09-26', 6451, 5931, 640, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '15.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6254, '2022-09-26', 6167, 5932, 640, 3661, '4.0000', '9.4000', '9.4000', '10.4000', '10.4000', '61.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6255, '2022-09-26', 5976, 5933, 640, 2358, '7.0000', '7.7000', '7.7000', '7.8000', '7.8000', '218.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6256, '2022-09-26', 6020, 5934, 640, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6257, '2022-09-26', 6294, 5935, 640, 1412, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6258, '2022-09-26', 6353, 5936, 640, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6259, '2022-09-26', 5986, 5937, 640, 2579, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6260, '2022-09-26', 5948, 5938, 640, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '329.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6261, '2022-09-26', 6122, 5939, 640, 648, '1.0000', '47.2000', '47.2000', '47.2000', '47.2000', '22.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6262, '2022-09-26', 6285, 5940, 640, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '100.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6263, '2022-09-26', 5677, 5941, 640, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '258.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6264, '2022-09-26', 6260, 5942, 640, 2314, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6265, '2022-09-26', 6513, 5943, 640, 662, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '12.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6266, '2022-09-26', 6302, 5944, 640, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '42.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6267, '2022-09-26', 6888, 5945, 640, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '23.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6268, '2022-09-26', 6129, 5946, 641, 3399, '8.0000', '3.4000', '3.4000', '3.4000', '3.4000', '60.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6269, '2022-09-26', 5865, 5947, 641, 3052, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '378.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6270, '2022-09-26', 5440, 5948, 642, 2998, '4.0000', '3.4100', '3.4100', '3.4100', '3.4100', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6402, '2022-09-26', 6749, 6083, 643, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6401, '2022-09-26', 6717, 6082, 643, 2010, '2.0000', '38.4000', '38.4000', '38.4000', '38.4000', '9.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6400, '2022-09-26', 6573, 6081, 643, 1964, '5.0000', '21.4000', '21.4000', '21.4000', '21.4000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6399, '2022-09-26', 6205, 6080, 643, 3026, '5.0000', '38.5000', '38.5000', '38.5000', '38.5000', '171.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6398, '2022-09-26', 6076, 6079, 643, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6397, '2022-09-26', 6075, 6078, 643, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1806.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6396, '2022-09-26', 5986, 6077, 643, 2579, '5.0000', '13.7000', '13.7000', '14.2500', '14.2500', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6395, '2022-09-26', 5967, 6076, 643, 3731, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6394, '2022-09-26', 5780, 6075, 643, 646, '1.0000', '198.0000', '198.0000', '198.0000', '198.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6393, '2022-09-26', 5640, 6074, 643, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6392, '2022-09-26', 5535, 6073, 643, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1328.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6403, '2022-09-26', 6533, 6084, 643, 3727, '2.0000', '3.9000', '3.9000', '3.9000', '3.9000', '3.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6410, '2022-09-26', 5586, 6092, 649, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '217.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6411, '2022-09-26', 5593, 6093, 649, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6412, '2022-09-26', 5689, 6094, 649, 2050, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '149.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6413, '2022-09-26', 5886, 6095, 649, 3665, '1.0000', '8.6000', '8.6000', '8.6000', '8.6000', '7.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6414, '2022-09-26', 5967, 6096, 649, 3132, '2.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2639.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6415, '2022-09-26', 5976, 6097, 649, 2358, '2.0000', '7.7000', '7.7000', '7.8000', '7.8000', '216.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6416, '2022-09-26', 6007, 6098, 649, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6417, '2022-09-26', 6075, 6099, 649, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1796.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6418, '2022-09-26', 6219, 6100, 649, 2117, '20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '45.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6419, '2022-09-26', 6337, 6101, 649, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6420, '2022-09-26', 6375, 6102, 649, 3065, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6421, '2022-09-26', 6590, 6103, 649, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '60.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6422, '2022-09-26', 6838, 6104, 649, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '78.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6423, '2022-09-26', 6555, 6105, 649, 3736, '2.0000', '2.9700', '2.9700', '3.6000', '3.6000', '119.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6424, '2022-09-26', 6205, 6106, 650, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '170.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6425, '2022-09-26', 5535, 6107, 650, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1323.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6426, '2022-09-26', 5731, 6108, 650, 1917, '4.0000', '17.2000', '17.2000', '17.2000', '17.2000', '102.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6427, '2022-09-26', 6337, 6109, 650, 2325, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6428, '2022-09-26', 5958, 6110, 650, 521, '2.0000', '16.1000', '16.1000', '16.1000', '16.1000', '38.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6429, '2022-09-26', 6273, 6111, 650, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '115.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6430, '2022-09-26', 5926, 6112, 650, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '190.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6431, '2022-09-26', 6074, 6113, 650, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1336.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6432, '2022-09-26', 5853, 6114, 650, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '543.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6433, '2022-09-26', 5640, 6115, 650, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6434, '2022-09-26', 6294, 6116, 650, 1412, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6435, '2022-09-26', 6371, 6117, 650, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6436, '2022-09-26', 5967, 6118, 650, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2634.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6437, '2022-09-26', 5799, 6119, 650, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '149.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6438, '2022-09-26', 6528, 6120, 650, 1899, '2.0000', '5.9800', '5.9800', '5.9800', '5.9800', '302.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6439, '2022-09-26', 6218, 6121, 651, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '70.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6440, '2022-09-26', 5947, 6122, 651, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '6.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6441, '2022-09-26', 6677, 6123, 652, 1274, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '273.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6442, '2022-09-26', 6225, 6124, 652, 2250, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '199.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6443, '2022-09-26', 5787, 6125, 652, 1470, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '6.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6444, '2022-09-26', 6233, 6126, 652, 1276, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6445, '2022-09-26', 5657, 6127, 652, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '300.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6446, '2022-09-26', 5799, 6128, 652, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '148.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6447, '2022-09-26', 6378, 6129, 652, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6448, '2022-09-26', 5996, 6130, 652, 933, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '689.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6449, '2022-09-26', 6304, 6131, 652, 1853, '1.0000', '13.5000', '13.5000', '13.5000', '13.5000', '124.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6450, '2022-09-26', 5710, 6132, 652, 3732, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '18.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6451, '2022-09-26', 5640, 6133, 652, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6452, '2022-09-26', 6860, 6134, 653, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '286.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6453, '2022-09-26', 5788, 6135, 653, 919, '1.0000', '60.0000', '60.0000', '60.0000', '60.0000', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6454, '2022-09-26', 5616, 6136, 654, 3503, '10.0000', '7.0000', '7.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6455, '2022-09-26', 6437, 6137, 654, 1275, '4.0000', '18.1000', '18.1000', '18.1000', '18.1000', '18.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6456, '2022-09-26', 6703, 6138, 654, 1069, '6.0000', '12.0000', '12.0000', '16.3400', '16.3400', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6457, '2022-09-26', 6509, 6139, 655, 2077, '2.0000', '13.2500', '13.2500', '13.2500', '13.2500', '96.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6458, '2022-09-26', 5631, 6140, 655, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '110.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6459, '2022-09-26', 5603, 6141, 655, 3011, '3.0000', '4.4000', '4.4000', '4.4000', '4.4000', '86.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6460, '2022-09-26', 6674, 6142, 655, 1923, '3.0000', '4.4500', '4.4500', '4.4500', '4.4500', '301.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6461, '2022-09-26', 6227, 6143, 655, 3070, '2.0000', '2.8400', '2.8400', '2.8400', '2.8400', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6462, '2022-09-26', 5911, 6144, 655, 3042, '2.0000', '28.8750', '28.8750', '23.1000', '23.1000', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6463, '2022-09-26', 6276, 6145, 655, 1157, '1.0000', '17.6000', '17.6000', '17.6000', '17.6000', '15.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6464, '2022-09-26', 6277, 6146, 655, 3649, '1.0000', '24.2816', '24.2816', '27.5000', '27.5000', '24.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6465, '2022-09-26', 6332, 6147, 655, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '32.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6466, '2022-09-26', 6368, 6148, 656, 1091, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '19.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6467, '2022-09-26', 6517, 6149, 656, 2254, '2.0000', '8.7000', '8.7000', '10.4500', '10.4500', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6468, '2022-09-26', 6375, 6150, 656, 3065, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6469, '2022-09-26', 5970, 6151, 656, 2310, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6470, '2022-09-26', 6074, 6152, 656, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1331.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6471, '2022-09-26', 5640, 6153, 656, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6472, '2022-09-26', 6378, 6154, 656, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '71.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6473, '2022-09-26', 6377, 6155, 656, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '26.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6474, '2022-09-26', 6232, 6156, 656, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '127.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6475, '2022-09-26', 6860, 6157, 656, 3738, '1.0000', '15.4923', '15.4923', '18.0000', '18.0000', '285.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6476, '2022-09-26', 6273, 6158, 656, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '114.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6477, '2022-09-26', 5849, 6159, 656, 2357, '2.0000', '3.1000', '3.1000', '3.1000', '3.1000', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6478, '2022-09-26', 6376, 6160, 656, 2364, '25.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2345.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6479, '2022-09-26', 5689, 6161, 656, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '144.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6480, '2022-09-26', 5418, 6162, 656, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '251.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6481, '2022-09-26', 6143, 6163, 657, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '71.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6482, '2022-09-26', 6674, 6164, 657, 1923, '1.0000', '4.4500', '4.4500', '4.4500', '4.4500', '300.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6483, '2022-09-26', 6768, 6165, 657, 1365, '1.0000', '5.8000', '5.8000', '5.8000', '5.8000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6484, '2022-09-26', 5975, 6166, 658, 2379, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6485, '2022-09-26', 5847, 6167, 658, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '516.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6486, '2022-09-26', 6439, 6168, 659, 965, '2.0000', '10.2000', '10.2000', '10.2000', '10.2000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6487, '2022-09-26', 5677, 6169, 659, 2351, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '257.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6488, '2022-09-26', 5427, 6170, 659, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '130.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6489, '2022-09-26', 6102, 6171, 659, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6490, '2022-09-26', 6846, 6172, 659, 2293, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6491, '2022-09-26', 6010, 6173, 659, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '351.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6492, '2022-09-26', 6552, 6174, 659, 577, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '24.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6493, '2022-09-26', 6607, 6175, 659, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '73.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6494, '2022-09-26', 5464, 6176, 659, NULL, '1.0000', '7.0000', '7.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6495, '2022-09-26', 6871, 6177, 659, 3572, '1.0000', '38.3600', '38.3600', '41.1200', '41.1200', '9.0000', 1, 0, NULL, 55, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6496, '2022-09-26', 5532, 6178, 660, 3396, '5.0000', '56.1000', '56.1000', '60.7800', '60.7800', '15.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6497, '2022-09-26', 5535, 6179, 660, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1313.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6498, '2022-09-26', 5623, 6180, 660, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '52.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6499, '2022-09-26', 5731, 6181, 660, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '92.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6500, '2022-09-26', 5967, 6182, 660, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2624.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6501, '2022-09-26', 5988, 6183, 660, 2558, '10.0000', '3.0000', '3.0000', '3.4200', '3.4200', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6502, '2022-09-26', 6071, 6184, 660, 1165, '2.0000', '19.6000', '19.6000', '19.6000', '19.6000', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6503, '2022-09-26', 6077, 6185, 660, 3496, '5.0000', '4.2154', '4.2154', '4.0000', '4.0000', '118.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6504, '2022-09-26', 6122, 6186, 660, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '20.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6505, '2022-09-26', 6316, 6187, 660, 1889, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6506, '2022-09-26', 6357, 6188, 660, 2278, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6507, '2022-09-26', 6433, 6189, 660, 587, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6508, '2022-09-26', 6451, 6190, 660, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '14.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6509, '2022-09-26', 6457, 6191, 660, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '12.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6510, '2022-09-26', 6501, 6192, 660, 3662, '4.0000', '9.0000', '9.0000', '10.6000', '10.6000', '65.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6511, '2022-09-26', 6663, 6193, 660, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '163.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6512, '2022-09-26', 6813, 6194, 660, 2037, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '31.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6513, '2022-09-26', 6851, 6195, 660, 3022, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6514, '2022-09-26', 6864, 6196, 660, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4705.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6515, '2022-09-26', 6865, 6197, 660, 1026, '5.0000', '3.5000', '3.5000', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6516, '2022-09-26', 6273, 6198, 661, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '112.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6517, '2022-09-26', 6014, 6199, 661, 1472, '2.0000', '10.6800', '10.6800', '10.6800', '10.6800', '2.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6518, '2022-09-26', 6205, 6200, 661, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '169.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6519, '2022-09-26', 6588, 6201, 661, 320, '1.0000', '41.4000', '41.4000', '41.4000', '41.4000', '11.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6520, '2022-09-26', 6804, 6202, 661, 644, '1.0000', '54.9000', '54.9000', '54.9000', '54.9000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6521, '2022-09-26', 5808, 6203, 661, 3513, '1.0000', '13.5200', '13.5200', '16.6000', '16.6000', '3.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6522, '2022-09-26', 6382, 6204, 661, 2285, '2.0000', '4.1000', '4.1000', '4.1000', '4.1000', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6523, '2022-09-26', 6122, 6205, 661, 648, '1.0000', '47.2000', '47.2000', '47.2000', '47.2000', '19.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6524, '2022-09-26', 6337, 6206, 662, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6525, '2022-09-26', 5592, 6207, 663, 906, '4.0000', '7.1500', '7.1500', '7.1500', '7.1500', '42.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6526, '2022-09-26', 5827, 6208, 663, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '145.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6527, '2022-09-26', 5955, 6209, 663, 3424, '3.0000', '17.9000', '17.9000', '17.9000', '17.9000', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6528, '2022-09-26', 6184, 6210, 663, 945, '5.0000', '7.8500', '7.8500', '7.8500', '7.8500', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6529, '2022-09-26', 6185, 6211, 663, 3401, '5.0000', '7.8500', '7.8500', '7.8500', '7.8500', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6530, '2022-09-26', 6245, 6212, 663, 2111, '5.0000', '2.9900', '2.9900', '2.9900', '2.9900', '105.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6531, '2022-09-26', 6490, 6213, 663, 2109, '4.0000', '30.0000', '30.0000', '30.0000', '30.0000', '26.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6532, '2022-09-26', 6537, 6214, 663, 2076, '1.0000', '93.6000', '93.6000', '93.6000', '93.6000', '29.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6533, '2022-09-26', 6564, 6215, 663, 2004, '1.0000', '81.4000', '81.4000', '81.4000', '81.4000', '2.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6534, '2022-09-26', 6606, 6216, 663, 1352, '3.0000', '15.5300', '15.5300', '15.5300', '15.5300', '36.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6535, '2022-09-26', 6224, 6217, 663, 2385, '3.0000', '1.9000', '1.9000', '1.9000', '1.9000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6536, '2022-09-26', 6283, 6218, 663, 2335, '3.0000', '5.1000', '5.1000', '6.0200', '6.0200', '69.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6537, '2022-09-26', 6127, 6219, 663, 1841, '5.0000', '7.3000', '7.3000', '7.3000', '7.3000', '92.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6538, '2022-09-26', 5715, 6220, 664, 3023, '12.0000', '13.1400', '13.1400', '13.1400', '13.1400', '46.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6551, '2022-09-26', 6228, 6233, 665, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '6.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6550, '2022-09-26', 6222, 6232, 665, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6549, '2022-09-26', 6218, 6231, 665, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '69.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6548, '2022-09-26', 5775, 6230, 665, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '74.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6547, '2022-09-26', 5632, 6229, 665, 1991, '3.0000', '8.0000', '8.0000', '8.0000', '8.0000', '109.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6546, '2022-09-26', 5631, 6228, 665, 1992, '3.0000', '6.5000', '6.5000', '6.5000', '6.5000', '107.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6552, '2022-09-26', 6639, 6234, 665, 1859, '1.0000', '24.0000', '24.0000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6553, '2022-09-26', 6824, 6235, 665, 561, '1.0000', '18.4800', '18.4800', '18.4800', '18.4800', '12.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6554, '2022-09-26', 6232, 6236, 665, 3587, '3.0000', '6.4556', '6.4556', '7.1000', '7.1000', '124.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6555, '2022-09-26', 6233, 6237, 665, 1276, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6556, '2022-09-26', 5535, 6238, 666, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1312.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6557, '2022-09-27', 5593, 6239, 667, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6558, '2022-09-27', 5677, 6240, 668, 2351, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '252.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6559, '2022-09-27', 6273, 6241, 668, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '110.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6560, '2022-09-27', 5840, 6242, 668, 2348, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '27.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6561, '2022-09-27', 5841, 6243, 668, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '116.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6562, '2022-09-27', 5422, 6244, 668, 3554, '-2.0000', '0.0000', '0.0000', '18.7000', '18.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6563, '2022-09-27', 5422, 6244, 668, NULL, '3.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6564, '2022-09-27', 5427, 6245, 668, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '128.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6565, '2022-09-27', 6075, 6246, 668, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1793.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6566, '2022-09-27', 6076, 6247, 668, 3024, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2127.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6567, '2022-09-27', 6077, 6248, 668, 3496, '1.0000', '4.2154', '4.2154', '4.0000', '4.0000', '117.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6568, '2022-09-27', 6863, 6249, 668, 3612, '-19.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6569, '2022-09-27', 6863, 6249, 668, NULL, '20.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6570, '2022-09-27', 6864, 6250, 668, 3082, '1.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4704.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6571, '2022-09-27', 6865, 6251, 668, 1026, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6572, '2022-09-27', 6866, 6252, 668, 3552, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '99.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6573, '2022-09-27', 6337, 6253, 668, 2325, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6574, '2022-09-27', 5740, 6254, 668, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '363.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6575, '2022-09-27', 5731, 6255, 668, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '89.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6576, '2022-09-27', 6874, 6256, 668, 3723, '3.0000', '9.0000', '9.0000', '10.8000', '10.8000', '39.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6577, '2022-09-27', 6125, 6257, 668, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '167.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6578, '2022-09-27', 6103, 6258, 668, 2275, '2.0000', '15.2000', '15.2000', '15.2000', '15.2000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6579, '2022-09-27', 6248, 6259, 668, 1408, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '41.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6580, '2022-09-27', 6082, 6260, 668, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '211.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6581, '2022-09-27', 6640, 6261, 668, 3413, '4.0000', '4.7000', '4.7000', '4.7000', '4.7000', '49.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6582, '2022-09-27', 5535, 6262, 668, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1307.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6583, '2022-09-27', 5657, 6263, 668, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '295.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6584, '2022-09-27', 6053, 6264, 668, 2331, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6585, '2022-09-27', 5704, 6265, 668, 911, '2.0000', '15.0000', '15.0000', '16.0500', '16.0500', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6586, '2022-09-27', 5451, 6266, 669, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1223.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6587, '2022-09-27', 6751, 6267, 669, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '6.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6588, '2022-09-27', 5926, 6268, 670, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '186.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6589, '2022-09-27', 5949, 6269, 670, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '662.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6590, '2022-09-27', 5898, 6270, 670, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '252.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6591, '2022-09-27', 5677, 6271, 670, 2351, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '246.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6592, '2022-09-27', 5853, 6272, 670, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '538.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6593, '2022-09-27', 6294, 6273, 670, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '46.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6594, '2022-09-27', 6003, 6274, 670, 2321, '3.0000', '6.7000', '6.7000', '9.1000', '9.1000', '56.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6595, '2022-09-27', 6053, 6275, 670, 2331, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6596, '2022-09-27', 6075, 6276, 670, 3025, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1787.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6597, '2022-09-27', 6076, 6277, 670, 3024, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2121.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6598, '2022-09-27', 6219, 6278, 670, 2117, '15.0000', '2.6900', '2.6900', '2.6900', '2.6900', '30.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6599, '2022-09-27', 6137, 6279, 670, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '136.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6600, '2022-09-27', 5624, 6280, 670, 3709, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '15.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6601, '2022-09-27', 6738, 6281, 670, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '164.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6602, '2022-09-27', 5448, 6282, 670, 2266, '1.0000', '14.5000', '14.5000', '14.5000', '14.5000', '94.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6603, '2022-09-27', 6139, 6283, 670, 3055, '1.0000', '15.9500', '15.9500', '15.9500', '15.9500', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6604, '2022-09-27', 6309, 6284, 670, 3422, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '22.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6605, '2022-09-27', 5640, 6285, 670, 3066, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6711, '2022-09-27', 6427, 6383, 671, 1475, '6.0000', '17.5000', '17.5000', '17.5000', '17.5000', '21.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6710, '2022-09-27', 6337, 6382, 671, 2325, '4.0000', '49.5300', '49.5300', '49.5300', '49.5300', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6709, '2022-09-27', 6205, 6381, 671, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '165.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6708, '2022-09-27', 6013, 6380, 671, NULL, '2.0000', '0.0000', '0.0000', '18.3300', '18.3300', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6707, '2022-09-27', 5975, 6379, 671, 2379, '5.0000', '9.1500', '9.1500', '12.2100', '12.2100', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6706, '2022-09-27', 5956, 6378, 671, NULL, '4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6705, '2022-09-27', 5956, 6378, 671, 3744, '-1.0000', '17.8400', '17.8400', '17.8400', '17.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6704, '2022-09-27', 5956, 6378, 671, 930, '2.0000', '17.8400', '17.8400', '17.8400', '17.8400', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6703, '2022-09-27', 5949, 6377, 671, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '637.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6702, '2022-09-27', 5926, 6376, 671, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '166.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6701, '2022-09-27', 5765, 6375, 671, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6700, '2022-09-27', 5740, 6374, 671, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '348.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6699, '2022-09-27', 5731, 6373, 671, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '75.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6698, '2022-09-27', 5654, 6372, 671, 3030, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6697, '2022-09-27', 5651, 6371, 671, 2987, '5.0000', '6.1700', '6.1700', '6.1700', '6.1700', '2.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6696, '2022-09-27', 5624, 6370, 671, 3709, '4.0000', '20.1000', '20.1000', '20.1000', '20.1000', '11.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6695, '2022-09-27', 5532, 6369, 671, 3396, '4.0000', '56.1000', '56.1000', '60.7800', '60.7800', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6694, '2022-09-27', 5527, 6368, 671, 1464, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6712, '2022-09-27', 6439, 6384, 671, 965, '5.0000', '10.2000', '10.2000', '10.2000', '10.2000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6660, '2022-09-27', 6552, 6335, 672, 577, '2.0000', '186.8000', '186.8000', '186.8000', '186.8000', '22.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6659, '2022-09-27', 6418, 6334, 672, 2580, '5.0000', '6.3300', '6.3300', '6.3800', '6.3800', '607.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6658, '2022-09-27', 6217, 6333, 672, 2377, '10.0000', '2.8800', '2.8800', '2.8800', '2.8800', '16.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6657, '2022-09-27', 6170, 6332, 672, 1326, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6656, '2022-09-27', 6017, 6331, 672, NULL, '10.0000', '0.0000', '0.0000', '15.0200', '15.0200', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6655, '2022-09-27', 6017, 6331, 672, 3624, '-5.0000', '0.0000', '0.0000', '15.0200', '15.0200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6654, '2022-09-27', 5652, 6330, 672, 2991, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '34.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6653, '2022-09-27', 5652, 6330, 672, 3733, '3.0000', '12.0000', '12.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6661, '2022-09-27', 6844, 6336, 672, 2084, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6634, '2022-09-27', 5677, 6311, 673, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '244.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6635, '2022-09-27', 5841, 6312, 673, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '115.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6636, '2022-09-27', 5946, 6313, 673, 929, '1.0000', '58.4000', '58.4000', '58.4000', '58.4000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6637, '2022-09-27', 5996, 6314, 673, 933, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '684.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6638, '2022-09-27', 6167, 6315, 673, 3661, '4.0000', '9.4000', '9.4000', '10.4000', '10.4000', '57.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6639, '2022-09-27', 6391, 6316, 673, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '84.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6640, '2022-09-27', 6686, 6317, 673, 559, '3.0000', '2.5000', '2.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6641, '2022-09-27', 6890, 6318, 673, 3548, '4.0000', '3.5000', '3.5000', '4.6000', '4.6000', '516.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6642, '2022-09-27', 6842, 6319, 673, 1373, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6643, '2022-09-27', 6348, 6320, 673, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '43.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6644, '2022-09-27', 5958, 6321, 674, 521, '4.0000', '16.1000', '16.1000', '16.1000', '16.1000', '34.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6645, '2022-09-27', 5689, 6322, 674, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '134.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6646, '2022-09-27', 5975, 6323, 674, 2379, '4.0000', '9.1500', '9.1500', '12.2100', '12.2100', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6647, '2022-09-27', 5657, 6324, 674, 2382, '6.0000', '4.2000', '4.2000', '4.2000', '4.2000', '289.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6648, '2022-09-27', 5527, 6325, 674, NULL, '2.0000', '27.0000', '27.0000', '29.0000', '29.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6649, '2022-09-27', 5641, 6326, 674, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '81.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6650, '2022-09-27', 5982, 6327, 674, 1963, '6.0000', '7.9400', '7.9400', '10.5500', '10.5500', '139.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6651, '2022-09-27', 6331, 6328, 675, 1952, '10.0000', '1.4900', '1.4900', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6652, '2022-09-27', 6353, 6329, 675, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '111.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6662, '2022-09-27', 5956, 6337, 676, 3744, '-3.0000', '17.8400', '17.8400', '17.8400', '17.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6663, '2022-09-27', 5956, 6337, 676, NULL, '4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6664, '2022-09-27', 5969, 6338, 676, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '135.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6665, '2022-09-27', 5976, 6339, 676, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '211.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6666, '2022-09-27', 6751, 6340, 676, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6667, '2022-09-27', 5949, 6341, 676, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '647.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6668, '2022-09-27', 5640, 6342, 676, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6669, '2022-09-27', 6204, 6343, 676, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6670, '2022-09-27', 6590, 6344, 676, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6671, '2022-09-27', 6074, 6345, 676, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1326.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6672, '2022-09-27', 6136, 6346, 676, 1324, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '155.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6673, '2022-09-27', 5853, 6347, 676, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '535.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6674, '2022-09-27', 5898, 6348, 676, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '250.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6675, '2022-09-27', 5967, 6349, 676, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2619.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6676, '2022-09-27', 6519, 6350, 677, 975, '1.0000', '120.3600', '120.3600', '120.3600', '120.3600', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6677, '2022-09-27', 6559, 6351, 677, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6678, '2022-09-27', 6508, 6352, 677, 973, '3.0000', '13.3000', '13.3000', '13.3000', '13.3000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6679, '2022-09-27', 6363, 6353, 677, 1411, '3.0000', '14.8000', '14.8000', '22.7800', '22.7800', '158.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6680, '2022-09-27', 6074, 6354, 677, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1306.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6681, '2022-09-27', 5853, 6355, 677, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '531.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6682, '2022-09-27', 6010, 6356, 677, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '347.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6683, '2022-09-27', 5926, 6357, 677, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '166.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6684, '2022-09-27', 5532, 6358, 677, 3396, '3.0000', '56.1000', '56.1000', '60.7800', '60.7800', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6685, '2022-09-27', 5740, 6359, 677, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '348.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6686, '2022-09-27', 6205, 6360, 677, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '165.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6687, '2022-09-27', 6860, 6361, 677, 3738, '4.0000', '15.4923', '15.4923', '18.0000', '18.0000', '281.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6688, '2022-09-27', 5977, 6362, 677, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '70.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6689, '2022-09-27', 6201, 6363, 677, 2315, '3.0000', '6.9000', '6.9000', '8.7000', '8.7000', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6690, '2022-09-27', 5886, 6364, 677, 3665, '3.0000', '8.6000', '8.6000', '8.6000', '8.6000', '4.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6691, '2022-09-27', 5885, 6365, 677, 1103, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '81.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6692, '2022-09-27', 5949, 6366, 677, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '637.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6693, '2022-09-27', 5731, 6367, 678, 1917, '4.0000', '17.2000', '17.2000', '17.2000', '17.2000', '75.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6713, '2022-09-27', 6692, 6385, 671, 3719, '10.0000', '3.2399', '3.2399', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6714, '2022-09-27', 6842, 6386, 679, 1373, '3.0000', '4.4000', '4.4000', '4.4000', '4.4000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6863, '2022-09-27', 6888, 6530, 680, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '22.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6862, '2022-09-27', 6860, 6529, 680, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '275.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6861, '2022-09-27', 6573, 6528, 680, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6860, '2022-09-27', 6459, 6527, 680, 966, '1.0000', '20.9000', '20.9000', '20.9000', '20.9000', '42.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6859, '2022-09-27', 6458, 6526, 680, 765, '1.0000', '22.9000', '22.9000', '22.9000', '22.9000', '112.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6858, '2022-09-27', 6391, 6525, 680, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '78.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6857, '2022-09-27', 6166, 6524, 680, 3658, '2.0000', '6.5087', '6.5087', '7.5000', '7.5000', '88.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6856, '2022-09-27', 6165, 6523, 680, 3659, '2.0000', '5.8901', '5.8901', '6.5000', '6.5000', '88.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6855, '2022-09-27', 6137, 6522, 680, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '135.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6854, '2022-09-27', 6074, 6521, 680, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1287.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6853, '2022-09-27', 5898, 6520, 680, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '248.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6852, '2022-09-27', 5650, 6519, 680, 1438, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '21.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6727, '2022-09-27', 6232, 6399, 681, 3587, '3.0000', '6.4556', '6.4556', '7.1000', '7.1000', '121.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6864, '2022-09-27', 6378, 6531, 680, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '70.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6741, '2022-09-27', 6063, 6413, 682, 1046, '3.0000', '38.5000', '38.5000', '41.3000', '41.3000', '16.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6742, '2022-09-27', 5655, 6414, 683, 1114, '1.0000', '28.5000', '28.5000', '28.5000', '28.5000', '10.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6743, '2022-09-27', 6012, 6415, 683, 2012, '1.0000', '16.6600', '16.6600', '16.6600', '16.6600', '14.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6744, '2022-09-27', 6649, 6416, 683, 996, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '61.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6745, '2022-09-27', 5640, 6417, 684, 3066, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6746, '2022-09-27', 6106, 6418, 684, 941, '3.0000', '1.5000', '1.5000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6747, '2022-09-27', 6696, 6419, 684, 2282, '1.0000', '4.2000', '4.2000', '4.2000', '4.2000', '351.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6748, '2022-09-27', 6872, 6420, 684, 2598, '-19.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6749, '2022-09-27', 6872, 6420, 684, NULL, '22.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-22.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6750, '2022-09-27', 5710, 6421, 684, 3732, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '17.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6751, '2022-09-27', 6604, 6422, 685, 766, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '482.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6752, '2022-09-27', 6644, 6423, 685, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '23.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6753, '2022-09-27', 6122, 6424, 685, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '17.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6754, '2022-09-27', 6371, 6425, 685, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6755, '2022-09-27', 6267, 6426, 685, 1425, '5.0000', '7.1000', '7.1000', '8.0400', '8.0400', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6756, '2022-09-27', 6142, 6427, 685, 2354, '2.0000', '9.3000', '9.3000', '9.3000', '9.3000', '21.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6757, '2022-09-27', 5986, 6428, 685, 2311, '3.0000', '13.7000', '13.7000', '14.2500', '14.2500', '102.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6758, '2022-09-27', 5740, 6429, 685, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '338.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6759, '2022-09-27', 6125, 6430, 685, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '165.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6760, '2022-09-27', 6298, 6431, 685, 3557, '-33.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6761, '2022-09-27', 6298, 6431, 685, NULL, '39.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-39.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6762, '2022-09-27', 6297, 6432, 685, 1855, '4.0000', '10.4000', '10.4000', '10.4000', '10.4000', '55.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6763, '2022-09-27', 6078, 6433, 685, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '560.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6764, '2022-09-27', 6000, 6434, 685, 2317, '4.0000', '11.1000', '11.1000', '11.1000', '11.1000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6765, '2022-09-27', 6457, 6435, 685, 3607, '1.0000', '39.9000', '39.9000', '43.9000', '43.9000', '11.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6766, '2022-09-27', 6332, 6436, 685, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '31.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6767, '2022-09-27', 6074, 6437, 685, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1292.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6768, '2022-09-27', 6010, 6438, 685, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '346.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6769, '2022-09-27', 5978, 6439, 685, 3068, '1.0000', '21.3000', '21.3000', '21.3000', '21.3000', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6770, '2022-09-27', 6038, 6440, 685, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '143.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6771, '2022-09-27', 6691, 6441, 685, 1994, '10.0000', '6.5000', '6.5000', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6772, '2022-09-27', 5731, 6442, 685, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '65.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6773, '2022-09-27', 6304, 6443, 685, 1853, '4.0000', '13.5000', '13.5000', '13.5000', '13.5000', '120.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6774, '2022-09-27', 6283, 6444, 685, 2335, '4.0000', '5.1000', '5.1000', '6.0200', '6.0200', '65.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6775, '2022-09-27', 5980, 6445, 685, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6776, '2022-09-27', 5641, 6446, 685, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '79.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6777, '2022-09-27', 6225, 6447, 685, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '189.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6778, '2022-09-27', 5931, 6448, 685, 1090, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '55.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6779, '2022-09-27', 5440, 6449, 685, 2998, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6780, '2022-09-27', 6326, 6450, 685, 1462, '3.0000', '14.0000', '14.0000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6781, '2022-09-27', 6024, 6451, 685, 937, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6782, '2022-09-27', 6391, 6452, 685, 762, '4.0000', '3.3200', '3.3200', '3.3200', '3.3200', '78.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6783, '2022-09-27', 6375, 6453, 685, 3065, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6784, '2022-09-27', 5813, 6454, 685, 663, '4.0000', '4.9000', '4.9000', '4.9000', '4.9000', '29.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6785, '2022-09-27', 5427, 6455, 685, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '126.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6786, '2022-09-27', 5541, 6456, 685, 905, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6787, '2022-09-27', 5640, 6457, 685, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '5.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6788, '2022-09-27', 6219, 6458, 685, 2117, '30.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6789, '2022-09-27', 6219, 6458, 685, NULL, '20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6790, '2022-09-27', 6610, 6459, 685, 2271, '1.0000', '70.0000', '70.0000', '70.0000', '70.0000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6791, '2022-09-27', 6860, 6460, 685, 3738, '4.0000', '15.4923', '15.4923', '18.0000', '18.0000', '275.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6792, '2022-09-27', 6083, 6461, 685, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '167.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6793, '2022-09-27', 5654, 6462, 685, 3030, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6794, '2022-09-27', 5814, 6463, 686, 1277, '12.0000', '24.0900', '24.0900', '24.0900', '24.0900', '98.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6795, '2022-09-27', 6542, 6464, 687, 2047, '5.0000', '7.8000', '7.8000', '9.0400', '9.0400', '53.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6796, '2022-09-27', 6619, 6465, 687, 3412, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '55.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6797, '2022-09-27', 5677, 6466, 688, 2351, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '239.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6798, '2022-09-27', 5689, 6467, 688, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '124.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6799, '2022-09-27', 5926, 6468, 688, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '162.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6800, '2022-09-27', 5623, 6469, 688, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '47.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6801, '2022-09-27', 5970, 6470, 688, 2310, '7.0000', '9.1500', '9.1500', '12.8500', '12.8500', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6802, '2022-09-27', 5704, 6471, 688, 911, '4.0000', '15.0000', '15.0000', '16.0500', '16.0500', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6803, '2022-09-27', 5947, 6472, 689, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6804, '2022-09-27', 6202, 6473, 690, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '396.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6805, '2022-09-27', 6555, 6474, 690, 3736, '3.0000', '2.9700', '2.9700', '3.6000', '3.6000', '116.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6806, '2022-09-27', 6884, 6475, 690, 3122, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '70.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6807, '2022-09-27', 6232, 6476, 690, 3587, '1.0000', '6.4556', '6.4556', '7.1000', '7.1000', '120.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6841, '2022-09-27', 6838, 6508, 691, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '76.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6840, '2022-09-27', 6820, 6507, 691, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '439.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6839, '2022-09-27', 6287, 6506, 691, 2110, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '1.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6838, '2022-09-27', 6078, 6505, 691, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '559.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6837, '2022-09-27', 5654, 6504, 691, 3041, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6842, '2022-09-27', 6353, 6509, 691, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '106.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6827, '2022-09-27', 5959, 6495, 692, 2575, '2.0000', '23.7000', '23.7000', '23.7000', '23.7000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6828, '2022-09-27', 6501, 6496, 693, 3662, '4.0000', '9.0000', '9.0000', '10.6000', '10.6000', '61.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6829, '2022-09-27', 5532, 6497, 693, 3396, '1.0000', '56.1000', '56.1000', '60.7800', '60.7800', '7.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6830, '2022-09-27', 5740, 6498, 693, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '334.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6831, '2022-09-27', 5946, 6499, 693, 929, '1.0000', '58.4000', '58.4000', '58.4000', '58.4000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6832, '2022-09-27', 6302, 6500, 693, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '40.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6833, '2022-09-27', 5640, 6501, 693, 3066, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6834, '2022-09-27', 5765, 6502, 693, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6835, '2022-09-27', 5616, 6503, 693, 3503, '4.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6836, '2022-09-27', 5616, 6503, 693, NULL, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6843, '2022-09-27', 6074, 6510, 691, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1287.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6844, '2022-09-27', 5641, 6511, 691, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6845, '2022-09-27', 5640, 6512, 691, 3066, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6850, '2022-09-27', 6285, 6517, 694, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '97.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6849, '2022-09-27', 5969, 6516, 694, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '132.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6851, '2022-09-27', 6293, 6518, 694, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '195.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6865, '2022-09-27', 5804, 6532, 695, NULL, '1.0000', '0.0000', '0.0000', '9.8000', '9.8000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6866, '2022-09-27', 6120, 6533, 695, 1995, '1.0000', '14.8500', '14.8500', '14.8500', '14.8500', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6867, '2022-09-27', 6118, 6534, 696, 647, '2.0000', '172.8000', '172.8000', '172.8000', '172.8000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6868, '2022-09-27', 6273, 6535, 697, 3033, '10.0000', '26.0000', '26.0000', '26.0000', '26.0000', '100.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6869, '2022-09-27', 5418, 6536, 698, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '239.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6870, '2022-09-27', 6003, 6537, 698, 2321, '1.0000', '6.7000', '6.7000', '9.1000', '9.1000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6871, '2022-09-27', 6135, 6538, 699, 1323, '2.0000', '35.6000', '35.6000', '35.6000', '35.6000', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6872, '2022-09-27', 6075, 6539, 699, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1775.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6873, '2022-09-27', 6076, 6540, 699, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2109.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6874, '2022-09-27', 5592, 6541, 699, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '37.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6875, '2022-09-27', 6408, 6542, 699, 2978, '6.0000', '4.6700', '4.6700', '6.0300', '6.0300', '34.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6876, '2022-09-27', 5616, 6543, 699, 2512, '-1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6877, '2022-09-27', 5616, 6543, 699, NULL, '10.0000', '7.0000', '7.0000', '8.0000', '8.0000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6878, '2022-09-27', 5898, 6544, 699, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '244.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6879, '2022-09-27', 5881, 6545, 699, 3427, '5.0000', '13.5000', '13.5000', '14.8500', '14.8500', '87.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6880, '2022-09-27', 6345, 6546, 699, 1922, '5.0000', '3.6300', '3.6300', '4.4000', '4.4000', '103.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6881, '2022-09-27', 6079, 6547, 699, 939, '2.0000', '19.0000', '19.0000', '19.0000', '19.0000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6882, '2022-09-27', 5985, 6548, 699, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6883, '2022-09-27', 5641, 6549, 699, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '77.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6886, '2022-09-27', 5689, 6552, 700, 2050, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '120.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6887, '2022-09-27', 6075, 6553, 700, 3025, '8.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1767.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6923, '2022-09-27', 6832, 6589, 701, 1381, '2.0000', '2.6000', '2.6000', '2.6000', '2.6000', '376.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6922, '2022-09-27', 6677, 6588, 701, 1274, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '272.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6921, '2022-09-27', 6555, 6587, 701, 3736, '2.0000', '2.9700', '2.9700', '3.6000', '3.6000', '114.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6920, '2022-09-27', 6337, 6586, 701, 2325, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6919, '2022-09-27', 6083, 6585, 701, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '163.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6918, '2022-09-27', 6076, 6584, 701, 3024, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2106.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6917, '2022-09-27', 6075, 6583, 701, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1764.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6916, '2022-09-27', 6007, 6582, 701, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6915, '2022-09-27', 5749, 6581, 701, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '105.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6914, '2022-09-27', 5705, 6580, 701, 1169, '1.0000', '7.0000', '7.0000', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6913, '2022-09-27', 5587, 6579, 701, 3076, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '187.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6912, '2022-09-27', 5418, 6578, 701, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '237.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6924, '2022-09-27', 6249, 6590, 703, 3403, '1.0000', '10.6000', '10.6000', '10.6000', '10.6000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6942, '2022-09-27', 6879, 6607, 702, 3121, '10.0000', '3.8700', '3.8700', '4.3000', '4.3000', '351.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6941, '2022-09-27', 6543, 6606, 702, 2062, '5.0000', '11.2000', '11.2000', '13.9200', '13.9200', '19.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6940, '2022-09-27', 6178, 6605, 702, 3060, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '675.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6939, '2022-09-27', 5967, 6604, 702, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2609.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6938, '2022-09-27', 5898, 6603, 702, 2350, '10.0000', '13.2000', '13.2000', '13.2000', '13.2000', '234.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6937, '2022-09-27', 5799, 6602, 702, 2066, '6.0000', '20.1300', '20.1300', '27.2600', '27.2600', '142.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6936, '2022-09-27', 5677, 6601, 702, 2351, '10.0000', '13.2000', '13.2000', '13.2000', '13.2000', '227.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6935, '2022-09-27', 5640, 6600, 702, 2030, '10.0000', '11.1000', '11.1000', '11.1000', '11.1000', '52.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6934, '2022-09-27', 5635, 6599, 702, NULL, '5.0000', '14.7600', '14.7600', '14.7600', '14.7600', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6933, '2022-09-27', 5532, 6598, 702, 3396, '3.0000', '56.1000', '56.1000', '60.7800', '60.7800', '4.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6943, '2022-09-27', 6053, 6608, 702, 1126, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '17.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6925, '2022-09-27', 6348, 6591, 703, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '42.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6926, '2022-09-27', 6007, 6592, 703, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6927, '2022-09-27', 5640, 6593, 703, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '54.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6928, '2022-09-27', 5640, 6594, 704, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '52.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6929, '2022-09-27', 5677, 6595, 704, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '227.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6930, '2022-09-27', 5569, 6596, 704, 1436, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '7.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6931, '2022-09-27', 6053, 6597, 705, 2331, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6932, '2022-09-27', 6053, 6597, 705, 1126, '7.0000', '14.9000', '14.9000', '16.3700', '16.3700', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6944, '2022-09-27', 6273, 6609, 706, 3033, '10.0000', '26.0000', '26.0000', '26.0000', '26.0000', '90.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6945, '2022-09-27', 6316, 6610, 707, 1889, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6946, '2022-09-27', 5949, 6611, 707, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '631.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6947, '2022-09-27', 5948, 6612, 707, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '325.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6948, '2022-09-27', 5784, 6613, 707, 3583, '1.0000', '82.6875', '82.6875', '95.7600', '95.7600', '9.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6949, '2022-09-27', 5713, 6614, 707, 3069, '4.0000', '6.6500', '6.6500', '6.6500', '6.6500', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6950, '2022-09-27', 6607, 6615, 707, 2583, '1.0000', '16.0000', '16.0000', '17.7100', '17.7100', '72.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6951, '2022-09-27', 5926, 6616, 707, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '159.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6952, '2022-09-27', 5841, 6617, 707, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '114.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6953, '2022-09-27', 5715, 6618, 708, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6954, '2022-09-27', 6081, 6619, 708, 2585, '3.0000', '10.4000', '10.4000', '10.4000', '10.4000', '75.0000', 1, 0, NULL, 36, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6955, '2022-09-27', 6610, 6620, 708, 2271, '1.0000', '70.0000', '70.0000', '70.0000', '70.0000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6956, '2022-09-28', 6654, 6621, 709, 1066, '3.0000', '22.0000', '22.0000', '22.0000', '22.0000', '77.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6957, '2022-09-28', 5947, 6622, 710, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6958, '2022-09-28', 6218, 6623, 710, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '68.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6959, '2022-09-28', 6197, 6624, 711, 2573, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6986, '2022-09-28', 5881, 6650, 713, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '86.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6985, '2022-09-28', 6875, 6649, 712, 2982, '4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6984, '2022-09-28', 6449, 6648, 712, 1942, '2.0000', '25.5000', '25.5000', '25.5000', '25.5000', '33.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6983, '2022-09-28', 6440, 6647, 712, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '7.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6982, '2022-09-28', 6232, 6646, 712, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '115.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6981, '2022-09-28', 6220, 6645, 712, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '296.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6980, '2022-09-28', 6127, 6644, 712, 1841, '3.0000', '7.3000', '7.3000', '7.3000', '7.3000', '89.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6979, '2022-09-28', 5873, 6643, 712, 1307, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6978, '2022-09-28', 5799, 6642, 712, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '139.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6977, '2022-09-28', 5592, 6641, 712, 906, '3.0000', '7.1500', '7.1500', '7.1500', '7.1500', '34.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6976, '2022-09-28', 5532, 6640, 712, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '2.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6975, '2022-09-28', 5478, 6639, 712, 1511, '1.0000', '6.7000', '6.7000', '6.7000', '6.7000', '9.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6974, '2022-09-28', 5460, 6638, 712, 505, '1.0000', '235.7300', '235.7300', '235.7300', '235.7300', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6987, '2022-09-28', 6605, 6651, 713, 2119, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '49.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6988, '2022-09-28', 6152, 6652, 713, 1883, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '959.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6989, '2022-09-28', 5827, 6653, 713, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '142.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6990, '2022-09-28', 6220, 6654, 713, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '293.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6991, '2022-09-28', 6125, 6655, 713, 3053, '1.0000', '10.5000', '10.5000', '12.5000', '12.5000', '164.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6992, '2022-09-28', 5509, 6656, 713, 1854, '2.0000', '6.8800', '6.8800', '6.8800', '6.8800', '20.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6993, '2022-09-28', 6095, 6657, 713, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '118.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6994, '2022-09-28', 6690, 6658, 713, 1857, '2.0000', '8.2500', '8.2500', '8.2500', '8.2500', '4.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6995, '2022-09-28', 6224, 6659, 713, 2385, '2.0000', '1.9000', '1.9000', '1.9000', '1.9000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6996, '2022-09-28', 5713, 6660, 713, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6997, '2022-09-28', 6650, 6661, 713, 1146, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '37.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6998, '2022-09-28', 6813, 6662, 713, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '30.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6999, '2022-09-28', 5545, 6663, 713, 3500, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '27.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7000, '2022-09-28', 6285, 6664, 713, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '93.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7001, '2022-09-28', 6360, 6665, 713, 1908, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7002, '2022-09-28', 5969, 6666, 713, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '130.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7003, '2022-09-28', 6337, 6667, 713, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '21.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7004, '2022-09-28', 5592, 6668, 713, 906, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7005, '2022-09-28', 6829, 6669, 713, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '14.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7006, '2022-09-28', 6010, 6670, 713, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '345.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7007, '2022-09-28', 6130, 6671, 713, 2979, '2.0000', '6.4000', '6.4000', '7.4000', '7.4000', '34.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7008, '2022-09-28', 6849, 6672, 713, 2092, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7009, '2022-09-28', 6849, 6672, 713, 1149, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7010, '2022-09-28', 6283, 6673, 713, 2335, '2.0000', '5.1000', '5.1000', '6.0200', '6.0200', '63.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7011, '2022-09-28', 6751, 6674, 713, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7012, '2022-09-28', 6046, 6675, 713, 3568, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7013, '2022-09-28', 6046, 6675, 713, 3569, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '69.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7014, '2022-09-28', 6098, 6676, 713, 3081, '3.0000', '5.6000', '5.6000', '5.6000', '5.6000', '882.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7015, '2022-09-28', 5841, 6677, 713, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '113.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7016, '2022-09-28', 5519, 6678, 713, 3663, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '286.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7017, '2022-09-28', 6446, 6679, 714, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '123.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7018, '2022-09-28', 6145, 6680, 714, 664, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '60.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7019, '2022-09-28', 6232, 6681, 715, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '113.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7020, '2022-09-28', 5478, 6682, 715, 1511, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '7.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7021, '2022-09-28', 5948, 6683, 715, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '323.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7022, '2022-09-28', 5947, 6684, 716, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '3.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7023, '2022-09-28', 5715, 6685, 716, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7031, '2022-09-28', 5926, 6693, 718, 2072, '1.0000', '10.9000', '10.9000', '10.9000', '10.9000', '158.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7032, '2022-09-28', 6341, 6694, 718, 956, '1.0000', '62.3000', '62.3000', '62.3000', '62.3000', '30.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7033, '2022-09-28', 5689, 6695, 719, 2050, '8.0000', '3.3000', '3.3000', '3.3000', '3.3000', '112.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7034, '2022-09-28', 6864, 6696, 719, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4699.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7035, '2022-09-28', 6267, 6697, 719, 1425, '6.0000', '7.1000', '7.1000', '8.0400', '8.0400', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7036, '2022-09-28', 5451, 6698, 719, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1218.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7037, '2022-09-28', 6691, 6699, 719, 1994, '5.0000', '6.5000', '6.5000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7038, '2022-09-28', 6751, 6700, 719, 3553, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7039, '2022-09-28', 5607, 6701, 719, 3708, '1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '4.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7040, '2022-09-28', 5751, 6702, 719, 1112, '3.0000', '10.8000', '10.8000', '10.8000', '10.8000', '135.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7041, '2022-09-28', 6584, 6703, 719, 3411, '2.0000', '8.2000', '8.2000', '8.2000', '8.2000', '15.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7042, '2022-09-28', 6409, 6704, 719, 1422, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '160.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7043, '2022-09-28', 5976, 6705, 719, 2358, '3.0000', '7.7000', '7.7000', '7.8000', '7.8000', '208.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7044, '2022-09-28', 6275, 6706, 719, 2032, '4.0000', '4.7000', '4.7000', '4.7000', '4.7000', '304.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7045, '2022-09-28', 6353, 6707, 719, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '96.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7046, '2022-09-28', 6286, 6708, 719, 953, '2.0000', '9.6000', '9.6000', '9.6000', '9.6000', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7047, '2022-09-28', 5623, 6709, 719, 2556, '3.0000', '18.9000', '18.9000', '18.9000', '18.9000', '44.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7048, '2022-09-28', 6250, 6710, 719, 3622, '-9.0000', '0.0000', '0.0000', '4.7100', '4.7100', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7049, '2022-09-28', 6250, 6710, 719, NULL, '13.0000', '0.0000', '0.0000', '4.7100', '4.7100', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7050, '2022-09-28', 6607, 6711, 719, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '70.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7051, '2022-09-28', 6384, 6712, 719, 1477, '2.0000', '9.6600', '9.6600', '9.6600', '9.6600', '118.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7052, '2022-09-28', 6190, 6713, 720, 3564, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7053, '2022-09-28', 6212, 6714, 720, 3048, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '97.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7054, '2022-09-28', 6078, 6715, 721, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '558.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7055, '2022-09-28', 5535, 6716, 721, 2277, '2.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1305.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7056, '2022-09-28', 6817, 6717, 721, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '58.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7057, '2022-09-28', 5710, 6718, 721, 3732, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '14.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7058, '2022-09-28', 5976, 6719, 721, 2358, '3.0000', '7.7000', '7.7000', '7.8000', '7.8000', '205.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7059, '2022-09-28', 6167, 6720, 721, 3661, '1.0000', '9.4000', '9.4000', '10.4000', '10.4000', '56.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7060, '2022-09-28', 5827, 6721, 721, 3651, '1.0000', '5.9947', '5.9947', '6.6000', '6.6000', '141.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7061, '2022-09-28', 6007, 6722, 721, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7062, '2022-09-28', 6374, 6723, 721, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4365.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7063, '2022-09-28', 6491, 6724, 721, 2295, '1.0000', '9.6200', '9.6200', '9.6200', '9.6200', '191.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7064, '2022-09-28', 5949, 6725, 721, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '629.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7065, '2022-09-28', 5740, 6726, 721, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '333.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7066, '2022-09-28', 5640, 6727, 721, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '51.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7067, '2022-09-28', 5730, 6728, 721, 3005, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '92.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7068, '2022-09-28', 5996, 6729, 721, 933, '6.0000', '2.0000', '2.0000', '2.0000', '2.0000', '678.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7069, '2022-09-28', 6228, 6730, 722, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7070, '2022-09-28', 5775, 6731, 722, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '73.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7071, '2022-09-28', 6221, 6732, 722, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7072, '2022-09-28', 6838, 6733, 722, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '75.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7073, '2022-09-28', 6696, 6734, 722, 2282, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '349.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7074, '2022-09-28', 5603, 6735, 722, 3011, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '85.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7075, '2022-09-28', 6007, 6736, 722, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7076, '2022-09-28', 5677, 6737, 723, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '225.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7077, '2022-09-28', 5881, 6738, 723, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '85.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7078, '2022-09-28', 6010, 6739, 723, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '344.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7079, '2022-09-28', 5988, 6740, 723, 2558, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7080, '2022-09-28', 5710, 6741, 723, 3732, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '12.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7081, '2022-09-28', 6220, 6742, 723, 2388, '6.0000', '5.0000', '5.0000', '5.0000', '5.0000', '287.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7082, '2022-09-28', 5592, 6743, 723, 906, '1.0000', '7.1500', '7.1500', '7.1500', '7.1500', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7083, '2022-09-28', 5714, 6744, 723, 2280, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7084, '2022-09-28', 6007, 6745, 723, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7085, '2022-09-28', 6219, 6746, 723, 3150, '-20.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7086, '2022-09-28', 6219, 6746, 723, NULL, '24.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-24.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7087, '2022-09-28', 5991, 6747, 723, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '2.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7088, '2022-09-28', 6692, 6748, 723, 3719, '2.0000', '3.2399', '3.2399', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7089, '2022-09-28', 5986, 6749, 723, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '101.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7090, '2022-09-28', 5535, 6750, 723, 2277, '2.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1303.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7091, '2022-09-28', 6083, 6751, 723, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '161.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7092, '2022-09-28', 6353, 6752, 723, 2339, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7093, '2022-09-28', 5640, 6753, 723, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '49.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7094, '2022-09-28', 6838, 6754, 724, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '74.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7095, '2022-09-28', 6332, 6755, 725, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '29.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7096, '2022-09-28', 6455, 6756, 725, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '42.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7097, '2022-09-28', 5926, 6757, 725, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '153.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7098, '2022-09-28', 6083, 6758, 725, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '156.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7099, '2022-09-28', 5629, 6759, 725, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '57.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7100, '2022-09-28', 6572, 6760, 725, 2993, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '115.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7101, '2022-09-28', 5677, 6761, 725, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '222.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7102, '2022-09-28', 5911, 6762, 725, 3042, '2.0000', '28.8750', '28.8750', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7103, '2022-09-28', 5931, 6763, 725, 1090, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '53.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7104, '2022-09-28', 6034, 6764, 725, 1874, '1.0000', '41.8000', '41.8000', '48.0000', '48.0000', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7105, '2022-09-28', 5884, 6765, 725, 1279, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '10.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7106, '2022-09-28', 6605, 6766, 725, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '39.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7107, '2022-09-28', 6242, 6767, 725, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '82.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7108, '2022-09-28', 5710, 6768, 725, 3732, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '9.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7109, '2022-09-28', 6075, 6769, 725, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1752.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7110, '2022-09-28', 6076, 6770, 725, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2094.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7111, '2022-09-28', 6864, 6771, 725, 3082, '24.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4675.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7112, '2022-09-28', 5623, 6772, 725, 2556, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '42.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7126, '2022-09-28', 6076, 6786, 726, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2084.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7125, '2022-09-28', 6075, 6785, 726, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1742.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7124, '2022-09-28', 5898, 6784, 726, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '232.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7123, '2022-09-28', 5677, 6783, 726, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '220.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7122, '2022-09-28', 5640, 6782, 726, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '48.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7121, '2022-09-28', 5472, 6781, 726, 3397, '10.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7127, '2022-09-28', 6071, 6787, 726, 1165, '1.0000', '19.6000', '19.6000', '19.6000', '19.6000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7120, '2022-09-28', 5986, 6780, 727, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '100.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7128, '2022-09-28', 6753, 6788, 728, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '239.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7129, '2022-09-28', 6345, 6789, 729, 1922, '3.0000', '3.6300', '3.6300', '4.4000', '4.4000', '100.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7130, '2022-09-28', 5999, 6790, 729, 1870, '1.0000', '25.7000', '25.7000', '25.7000', '25.7000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7131, '2022-09-28', 6753, 6791, 730, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '238.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7132, '2022-09-28', 6519, 6792, 730, 975, '1.0000', '120.3600', '120.3600', '120.3600', '120.3600', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7133, '2022-09-28', 5881, 6793, 730, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '83.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7134, '2022-09-28', 5623, 6794, 731, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '37.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7135, '2022-09-28', 6326, 6795, 731, 1462, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7136, '2022-09-28', 6221, 6796, 732, 2301, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7137, '2022-09-28', 6333, 6797, 732, 3728, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '8.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7138, '2022-09-28', 6696, 6798, 732, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '346.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7139, '2022-09-28', 6386, 6799, 732, 2346, '5.0000', '3.2000', '3.2000', '3.2000', '3.2000', '336.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7140, '2022-09-28', 5713, 6800, 732, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7141, '2022-09-28', 5710, 6801, 732, 3732, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '7.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7142, '2022-09-28', 6228, 6802, 733, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7143, '2022-09-28', 5740, 6803, 734, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '332.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7144, '2022-09-28', 5975, 6804, 734, 2379, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7145, '2022-09-28', 5689, 6805, 734, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '110.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7146, '2022-09-28', 6838, 6806, 734, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '73.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7147, '2022-09-28', 5499, 6807, 734, 2378, '1.0000', '3.8000', '3.8000', '3.8000', '3.8000', '76.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7148, '2022-09-28', 6708, 6808, 735, 1358, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '72.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7149, '2022-09-28', 6063, 6809, 736, 1046, '1.0000', '38.5000', '38.5000', '41.3000', '41.3000', '15.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7150, '2022-09-28', 5897, 6810, 737, 1290, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '14.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7151, '2022-09-28', 6692, 6811, 738, 3719, '1.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7152, '2022-09-28', 6692, 6811, 738, NULL, '3.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7153, '2022-09-28', 6301, 6812, 738, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7154, '2022-09-28', 5740, 6813, 738, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '331.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7155, '2022-09-28', 6095, 6814, 738, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '116.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7156, '2022-09-28', 6082, 6815, 738, 3032, '1.0000', '6.9000', '6.9000', '6.9000', '6.9000', '210.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7157, '2022-09-28', 6218, 6816, 738, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '67.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7158, '2022-09-28', 6679, 6817, 738, 3546, '1.0000', '9.9900', '9.9900', '9.9900', '9.9900', '3.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7159, '2022-09-28', 6136, 6818, 738, 1324, '2.0000', '3.8000', '3.8000', '3.8000', '3.8000', '153.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7160, '2022-09-28', 6204, 6819, 738, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7161, '2022-09-28', 6286, 6820, 738, 953, '1.0000', '9.6000', '9.6000', '9.6000', '9.6000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7162, '2022-09-28', 6817, 6821, 738, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '57.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7163, '2022-09-28', 6078, 6822, 739, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '556.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7164, '2022-09-28', 6609, 6823, 739, NULL, '5.0000', '0.0000', '0.0000', '12.7000', '12.7000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7165, '2022-09-28', 6608, 6824, 739, NULL, '5.0000', '0.0000', '0.0000', '14.3000', '14.3000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7166, '2022-09-28', 6608, 6825, 740, 3774, '10.0000', '12.9538', '12.9538', '14.3000', '14.3000', '185.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7167, '2022-09-28', 6609, 6826, 740, 3773, '10.0000', '11.6821', '11.6821', '12.7000', '12.7000', '185.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7168, '2022-09-28', 6608, 6827, 741, 3774, '20.0000', '12.9538', '12.9538', '14.3000', '14.3000', '165.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7169, '2022-09-28', 6609, 6828, 741, 3773, '20.0000', '11.6821', '11.6821', '12.7000', '12.7000', '165.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7170, '2022-09-28', 6220, 6829, 742, 2388, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '286.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7171, '2022-09-29', 6839, 6830, 743, 3769, '2.0000', '4.9100', '4.9100', '5.5000', '5.5000', '78.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7172, '2022-09-29', 6205, 6831, 743, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '164.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7173, '2022-09-29', 6513, 6832, 743, 662, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '11.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7174, '2022-09-29', 6462, 6833, 743, 1087, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7175, '2022-09-29', 5731, 6834, 743, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '63.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7176, '2022-09-29', 6615, 6835, 743, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '55.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7177, '2022-09-29', 6099, 6836, 743, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '36.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7178, '2022-09-29', 6542, 6837, 743, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '51.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7179, '2022-09-29', 6375, 6838, 743, 3065, '2.0000', '3.5200', '3.5200', '3.5200', '3.5200', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7180, '2022-09-29', 6466, 6839, 743, 1088, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '25.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7181, '2022-09-29', 6812, 6840, 744, 2036, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '18.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7182, '2022-09-29', 6364, 6841, 744, 659, '1.0000', '35.9000', '35.9000', '35.9000', '35.9000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7183, '2022-09-29', 6640, 6842, 744, 3413, '1.0000', '4.7000', '4.7000', '4.7000', '4.7000', '48.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7184, '2022-09-29', 5926, 6843, 745, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '143.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7185, '2022-09-29', 6083, 6844, 745, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '146.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7186, '2022-09-29', 6222, 6845, 745, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7187, '2022-09-29', 5641, 6846, 745, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '76.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7188, '2022-09-29', 5640, 6847, 745, 2030, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '43.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7189, '2022-09-29', 6340, 6848, 745, 955, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7190, '2022-09-29', 6810, 6849, 745, 1017, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7243, '2022-09-29', 6838, 6901, 746, 2996, '3.0000', '17.7100', '17.7100', '17.7100', '17.7100', '70.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7242, '2022-09-29', 6408, 6900, 746, 2978, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '24.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7241, '2022-09-29', 6353, 6899, 746, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '74.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7240, '2022-09-29', 6193, 6898, 746, 2115, '10.0000', '6.6000', '6.6000', '6.6000', '6.6000', '9.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7239, '2022-09-29', 6082, 6897, 746, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '205.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7238, '2022-09-29', 6010, 6896, 746, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '342.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7237, '2022-09-29', 5976, 6895, 746, 2358, '2.0000', '7.7000', '7.7000', '7.8000', '7.8000', '203.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7236, '2022-09-29', 5792, 6894, 746, 1978, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7235, '2022-09-29', 5749, 6893, 746, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '103.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7234, '2022-09-29', 5731, 6892, 746, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '61.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7233, '2022-09-29', 5730, 6891, 746, 3005, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '89.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7232, '2022-09-29', 5729, 6890, 746, 1993, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '58.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7231, '2022-09-29', 5654, 6889, 746, 3041, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7230, '2022-09-29', 5651, 6888, 746, 2987, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7229, '2022-09-29', 5581, 6887, 746, 2343, '1.0000', '11.3000', '11.3000', '11.3000', '11.3000', '156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7228, '2022-09-29', 5451, 6886, 746, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1213.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7227, '2022-09-29', 5427, 6885, 746, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '124.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7244, '2022-09-29', 6592, 6902, 750, 2373, '7.0000', '3.1800', '3.1800', '3.1800', '3.1800', '97.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7209, '2022-09-29', 6353, 6867, 747, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '74.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7210, '2022-09-29', 5640, 6868, 747, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '42.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7211, '2022-09-29', 6178, 6869, 747, 3060, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '655.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7212, '2022-09-29', 5765, 6870, 748, 1035, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7213, '2022-09-29', 5797, 6871, 748, 3739, '1.0000', '17.0048', '17.0048', '18.9000', '18.9000', '99.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7214, '2022-09-29', 6220, 6872, 748, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '283.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7285, '2022-09-29', 6813, 6942, 749, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '29.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7284, '2022-09-29', 6418, 6941, 749, 2580, '2.0000', '6.3300', '6.3300', '6.3800', '6.3800', '603.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7283, '2022-09-29', 6337, 6940, 749, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '20.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7282, '2022-09-29', 6257, 6939, 749, 1887, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7281, '2022-09-29', 6167, 6938, 749, 3661, '3.0000', '9.4000', '9.4000', '10.4000', '10.4000', '53.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7280, '2022-09-29', 5898, 6937, 749, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '230.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7279, '2022-09-29', 5853, 6936, 749, 3620, '1.0000', '8.8287', '8.8287', '10.5000', '10.5000', '530.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7278, '2022-09-29', 5717, 6935, 749, 2381, '3.0000', '2.4000', '2.4000', '2.4000', '2.4000', '283.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7277, '2022-09-29', 5677, 6934, 749, 2351, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '219.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7276, '2022-09-29', 5624, 6933, 749, 3709, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '10.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7275, '2022-09-29', 5601, 6932, 749, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7286, '2022-09-29', 5847, 6943, 749, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '515.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7245, '2022-09-29', 6316, 6903, 750, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '119.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7246, '2022-09-29', 6678, 6904, 750, 1461, '3.0000', '14.3000', '14.3000', '14.3000', '14.3000', '24.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7247, '2022-09-29', 6689, 6905, 750, 1355, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '114.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7248, '2022-09-29', 5689, 6906, 750, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '100.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7249, '2022-09-29', 5981, 6907, 750, NULL, '1.0000', '12.6500', '12.6500', '12.6500', '12.6500', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7250, '2022-09-29', 5931, 6908, 750, 1090, '4.0000', '12.8400', '12.8400', '12.8400', '12.8400', '49.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7251, '2022-09-29', 6610, 6909, 750, 2271, '1.0000', '70.0000', '70.0000', '70.0000', '70.0000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7252, '2022-09-29', 6384, 6910, 750, 1477, '5.0000', '9.6600', '9.6600', '9.6600', '9.6600', '113.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7253, '2022-09-29', 5581, 6911, 750, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '154.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7254, '2022-09-29', 6185, 6912, 750, 3401, '4.0000', '7.8500', '7.8500', '7.8500', '7.8500', '22.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7255, '2022-09-29', 6158, 6913, 750, 3729, '3.0000', '9.8000', '9.8000', '10.8000', '10.8000', '2.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7256, '2022-09-29', 6169, 6914, 750, 2988, '3.0000', '4.3000', '4.3000', '4.3000', '4.3000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7257, '2022-09-29', 6686, 6915, 750, 559, '6.0000', '2.5000', '2.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7258, '2022-09-29', 6245, 6916, 750, 2111, '5.0000', '2.9900', '2.9900', '2.9900', '2.9900', '100.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7265, '2022-09-29', 6102, 6923, 751, 2291, '2.0000', '27.8000', '27.8000', '27.8000', '27.8000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7264, '2022-09-29', 5865, 6922, 751, 3052, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '376.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7263, '2022-09-29', 5676, 6921, 751, 2018, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '92.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7266, '2022-09-29', 6221, 6924, 751, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '36.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7267, '2022-09-29', 5715, 6925, 752, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7268, '2022-09-29', 6219, 6926, 753, 3150, '-24.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7269, '2022-09-29', 6219, 6926, 753, NULL, '34.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-34.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7270, '2022-09-29', 5714, 6927, 753, 2280, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7271, '2022-09-29', 5640, 6928, 753, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '40.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7272, '2022-09-29', 6359, 6929, 753, 3492, '10.0000', '5.6288', '5.6288', '2.5000', '2.5000', '211.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7273, '2022-09-29', 5740, 6930, 753, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '328.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7274, '2022-09-29', 5947, 6931, 754, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7287, '2022-09-29', 5689, 6944, 755, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '90.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7332, '2022-09-29', 6865, 6989, 756, 1026, '12.0000', '3.5000', '3.5000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7331, '2022-09-29', 6864, 6988, 756, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4672.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7330, '2022-09-29', 6843, 6987, 756, 1100, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7329, '2022-09-29', 6813, 6986, 756, 2037, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '26.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7328, '2022-09-29', 6528, 6985, 756, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '297.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7327, '2022-09-29', 6457, 6984, 756, 3607, '1.0000', '39.9000', '39.9000', '43.9000', '43.9000', '10.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7326, '2022-09-29', 6391, 6983, 756, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '76.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7325, '2022-09-29', 6337, 6982, 756, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '19.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7324, '2022-09-29', 6285, 6981, 756, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '90.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7323, '2022-09-29', 6205, 6980, 756, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '163.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7322, '2022-09-29', 6193, 6979, 756, 2115, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '7.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7321, '2022-09-29', 6144, 6978, 756, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '13.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7320, '2022-09-29', 6078, 6977, 756, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '555.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7319, '2022-09-29', 6074, 6976, 756, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1277.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7318, '2022-09-29', 6024, 6975, 756, 937, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7317, '2022-09-29', 5967, 6974, 756, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2604.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7316, '2022-09-29', 5847, 6973, 756, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '505.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7315, '2022-09-29', 5787, 6972, 756, 1470, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7314, '2022-09-29', 5749, 6971, 756, 1302, '3.0000', '8.1400', '8.1400', '8.1400', '8.1400', '100.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7313, '2022-09-29', 5641, 6970, 756, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '74.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7312, '2022-09-29', 5592, 6969, 756, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '26.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7311, '2022-09-29', 5535, 6968, 756, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1293.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7333, '2022-09-29', 5439, 6990, 757, NULL, '3.0000', '0.0000', '0.0000', '58.4000', '58.4000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7334, '2022-09-29', 5465, 6991, 757, NULL, '2.0000', '0.0000', '0.0000', '98.6000', '98.6000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7335, '2022-09-29', 5500, 6992, 757, 3753, '3.0000', '41.3100', '41.3100', '46.3000', '46.3000', '3.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7336, '2022-09-29', 5501, 6993, 757, 3752, '3.0000', '44.0800', '44.0800', '49.0000', '49.0000', '27.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7337, '2022-09-29', 5515, 6994, 757, 3508, '6.0000', '4.6800', '4.6800', '5.5000', '5.5000', '176.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7338, '2022-09-29', 5656, 6995, 757, NULL, '4.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7339, '2022-09-29', 5841, 6996, 757, 3429, '4.0000', '18.0000', '18.0000', '19.8000', '19.8000', '109.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7340, '2022-09-29', 5963, 6997, 757, 3428, '4.0000', '14.5000', '14.5000', '15.9500', '15.9500', '51.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7341, '2022-09-29', 5971, 6998, 757, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '70.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7342, '2022-09-29', 6074, 6999, 757, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1257.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7343, '2022-09-29', 6158, 7000, 757, 3729, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7344, '2022-09-29', 6158, 7000, 757, 3653, '4.0000', '9.8000', '9.8000', '10.8000', '10.8000', '65.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7345, '2022-09-29', 6225, 7001, 757, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '184.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7346, '2022-09-29', 6234, 7002, 757, NULL, '4.0000', '33.3000', '33.3000', '40.3000', '40.3000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7347, '2022-09-29', 6293, 7003, 757, 3486, '5.0000', '14.6000', '14.6000', '14.6000', '14.6000', '190.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7348, '2022-09-29', 6356, 7004, 757, NULL, '5.0000', '7.2000', '7.2000', '7.2000', '7.2000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7349, '2022-09-29', 6444, 7005, 757, 581, '1.0000', '25.8000', '25.8000', '25.8000', '25.8000', '5.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7350, '2022-09-29', 6496, 7006, 757, 3761, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '14.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7351, '2022-09-29', 6589, 7007, 757, 553, '1.0000', '121.9000', '121.9000', '121.9000', '121.9000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7352, '2022-09-29', 6594, 7008, 757, 1119, '3.0000', '9.1000', '9.1000', '9.1000', '9.1000', '48.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7353, '2022-09-29', 6603, 7009, 757, 3768, '4.0000', '6.1900', '6.1900', '6.9000', '6.9000', '86.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7354, '2022-09-29', 6730, 7010, 757, 1454, '2.0000', '27.3000', '27.3000', '27.3000', '27.3000', '5.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7355, '2022-09-29', 6738, 7011, 757, 1905, '10.0000', '3.0000', '3.0000', '3.0000', '3.0000', '154.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7356, '2022-09-29', 6862, 7012, 757, 3584, '5.0000', '3.5455', '3.5455', '4.0200', '4.0200', '74.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7357, '2022-09-29', 5676, 7013, 758, 2018, '15.0000', '30.0000', '30.0000', '30.0000', '30.0000', '77.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7492, '2022-09-29', 6860, 7142, 759, 3738, '5.0000', '15.4923', '15.4923', '18.0000', '18.0000', '270.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7491, '2022-09-29', 6814, 7141, 759, 1076, '2.0000', '61.8000', '61.8000', '61.8000', '61.8000', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7490, '2022-09-29', 6812, 7140, 759, 2036, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '16.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7489, '2022-09-29', 6765, 7139, 759, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '45.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7488, '2022-09-29', 6753, 7138, 759, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '237.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7487, '2022-09-29', 6699, 7137, 759, 1287, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '189.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7486, '2022-09-29', 6622, 7136, 759, 992, '1.0000', '43.5000', '43.5000', '47.8500', '47.8500', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7485, '2022-09-29', 6603, 7135, 759, 3768, '3.0000', '6.1900', '6.1900', '6.9000', '6.9000', '83.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7484, '2022-09-29', 6496, 7134, 759, 3761, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '4.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7483, '2022-09-29', 6451, 7133, 759, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '13.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7482, '2022-09-29', 6370, 7132, 759, 3420, '2.0000', '24.5000', '24.5000', '25.3000', '25.3000', '10.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7481, '2022-09-29', 6246, 7131, 759, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7480, '2022-09-29', 6234, 7130, 759, NULL, '7.0000', '33.3000', '33.3000', '40.3000', '40.3000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7479, '2022-09-29', 6234, 7130, 759, 3777, '-4.0000', '33.3000', '33.3000', '40.3000', '40.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7478, '2022-09-29', 6167, 7129, 759, 3661, '3.0000', '9.4000', '9.4000', '10.4000', '10.4000', '50.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7477, '2022-09-29', 6164, 7128, 759, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '62.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7476, '2022-09-29', 6125, 7127, 759, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '158.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7475, '2022-09-29', 6074, 7126, 759, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1247.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7474, '2022-09-29', 5983, 7125, 759, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '179.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7473, '2022-09-29', 5963, 7124, 759, 3428, '2.0000', '14.5000', '14.5000', '15.9500', '15.9500', '49.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7472, '2022-09-29', 5904, 7123, 759, 1308, '1.0000', '24.7000', '24.7000', '24.7000', '24.7000', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7471, '2022-09-29', 5881, 7122, 759, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '79.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7470, '2022-09-29', 5856, 7121, 759, 2578, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '18.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7469, '2022-09-29', 5712, 7120, 759, 2298, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1191.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7468, '2022-09-29', 5673, 7119, 759, 3762, '2.0000', '15.8900', '15.8900', '17.7000', '17.7000', '48.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7467, '2022-09-29', 5640, 7118, 759, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '36.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7466, '2022-09-29', 5618, 7117, 759, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '106.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7465, '2022-09-29', 5581, 7116, 759, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7464, '2022-09-29', 5540, 7115, 759, 1280, '2.0000', '22.0000', '22.0000', '33.0000', '33.0000', '47.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7463, '2022-09-29', 5453, 7114, 759, 3652, '3.0000', '8.3000', '8.3000', '9.2000', '9.2000', '108.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7462, '2022-09-29', 5439, 7113, 759, NULL, '5.0000', '0.0000', '0.0000', '58.4000', '58.4000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7461, '2022-09-29', 5439, 7113, 759, 1838, '-3.0000', '0.0000', '0.0000', '58.4000', '58.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7390, '2022-09-29', 6813, 7044, 760, 2037, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '21.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7534, '2022-09-29', 6245, 7182, 761, 2111, '5.0000', '2.9900', '2.9900', '2.9900', '2.9900', '95.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7533, '2022-09-29', 6696, 7181, 761, 2282, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '341.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7532, '2022-09-29', 6639, 7180, 761, 1859, '1.0000', '24.0000', '24.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7531, '2022-09-29', 6408, 7179, 761, 2978, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '22.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7530, '2022-09-29', 6353, 7178, 761, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7529, '2022-09-29', 6352, 7177, 761, 1409, '5.0000', '2.5000', '2.5000', '2.5000', '2.5000', '224.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7528, '2022-09-29', 6304, 7176, 761, 1853, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '117.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7527, '2022-09-29', 6297, 7175, 761, 1855, '3.0000', '10.4000', '10.4000', '10.4000', '10.4000', '52.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7526, '2022-09-29', 6286, 7174, 761, 953, '2.0000', '9.6000', '9.6000', '9.6000', '9.6000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7525, '2022-09-29', 6125, 7173, 761, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '158.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7524, '2022-09-29', 5999, 7172, 761, 1870, '1.0000', '25.7000', '25.7000', '25.7000', '25.7000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7523, '2022-09-29', 5853, 7171, 761, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '528.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7522, '2022-09-29', 5828, 7170, 761, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '101.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7521, '2022-09-29', 5827, 7169, 761, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '139.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7520, '2022-09-29', 5640, 7168, 761, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '36.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7519, '2022-09-29', 5581, 7167, 761, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7518, '2022-09-29', 5440, 7166, 761, 2998, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7535, '2022-09-29', 5725, 7183, 766, 1301, '1.0000', '9.4000', '9.4000', '10.0000', '10.0000', '41.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7409, '2022-09-29', 5792, 7063, 762, 1978, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7410, '2022-09-29', 6273, 7064, 762, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '87.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7411, '2022-09-29', 5969, 7065, 762, 2252, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '122.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7412, '2022-09-29', 6642, 7066, 762, 3414, '5.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '29.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7413, '2022-09-29', 5582, 7067, 762, 2342, '2.0000', '12.5000', '12.5000', '12.5000', '12.5000', '280.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7414, '2022-09-29', 6496, 7068, 762, 3761, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '4.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7415, '2022-09-29', 6501, 7069, 762, 3662, '3.0000', '9.0000', '9.0000', '10.6000', '10.6000', '58.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7416, '2022-09-29', 5949, 7070, 762, 1311, '15.0000', '5.2000', '5.2000', '7.3000', '7.3000', '614.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7417, '2022-09-29', 6260, 7071, 762, 2314, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7418, '2022-09-29', 6020, 7072, 762, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7419, '2022-09-29', 6627, 7073, 762, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7420, '2022-09-29', 6037, 7074, 762, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7421, '2022-09-29', 6232, 7075, 762, 3587, '10.0000', '6.4556', '6.4556', '7.1000', '7.1000', '103.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7422, '2022-09-29', 6726, 7076, 763, 1006, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7423, '2022-09-29', 6808, 7077, 763, 1016, '2.0000', '20.0000', '20.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7424, '2022-09-29', 6547, 7078, 763, 2997, '2.0000', '9.8000', '9.8000', '10.7800', '10.7800', '3.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7425, '2022-09-29', 6205, 7079, 763, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '162.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7426, '2022-09-29', 5881, 7080, 763, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '79.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7427, '2022-09-29', 6198, 7081, 763, 3058, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7493, '2022-09-29', 6887, 7143, 759, 3126, '2.0000', '16.2000', '16.2000', '18.0000', '18.0000', '26.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7494, '2022-09-29', 6369, 7144, 759, 1278, '4.0000', '11.9800', '11.9800', '11.9800', '11.9800', '28.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7495, '2022-09-29', 5535, 7145, 759, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1283.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7496, '2022-09-29', 5616, 7146, 764, 2512, '-10.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7497, '2022-09-29', 5616, 7146, 764, NULL, '12.0000', '7.0000', '7.0000', '8.0000', '8.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7498, '2022-09-29', 5926, 7147, 765, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '133.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7499, '2022-09-29', 6078, 7148, 765, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '554.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7500, '2022-09-29', 6220, 7149, 765, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '273.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7501, '2022-09-29', 5418, 7150, 765, 1851, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '232.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7502, '2022-09-29', 6285, 7151, 765, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '85.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7503, '2022-09-29', 6243, 7152, 765, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '17.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7504, '2022-09-29', 5948, 7153, 765, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '318.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7505, '2022-09-29', 6699, 7154, 765, 1287, '10.0000', '7.0000', '7.0000', '7.0000', '7.0000', '179.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7506, '2022-09-29', 6074, 7155, 765, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1237.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7507, '2022-09-29', 5593, 7156, 765, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7508, '2022-09-29', 6496, 7157, 765, 3761, '4.0000', '5.0500', '5.0500', '5.7000', '5.7000', '0.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7509, '2022-09-29', 6496, 7157, 765, 3758, '6.0000', '5.0500', '5.0500', '5.7000', '5.7000', '210.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7510, '2022-09-29', 5740, 7158, 765, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '318.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7511, '2022-09-29', 6225, 7159, 765, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '174.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7512, '2022-09-29', 5629, 7160, 765, 1429, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '52.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7513, '2022-09-29', 6326, 7161, 765, 1462, '4.0000', '14.0000', '14.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7514, '2022-09-29', 6363, 7162, 765, 1411, '5.0000', '14.8000', '14.8000', '22.7800', '22.7800', '153.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7515, '2022-09-29', 6850, 7163, 765, 1292, '5.0000', '2.8900', '2.8900', '2.8900', '2.8900', '13.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7516, '2022-09-29', 5453, 7164, 765, 3652, '5.0000', '8.3000', '8.3000', '9.2000', '9.2000', '103.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7517, '2022-09-29', 6837, 7165, 765, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '12.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7536, '2022-09-29', 6666, 7184, 767, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7541, '2022-09-29', 5949, 7189, 768, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '604.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7540, '2022-09-29', 5585, 7188, 768, 2973, '5.0000', '23.4000', '23.4000', '23.4000', '23.4000', '41.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7542, '2022-09-29', 6153, 7190, 768, 3400, '1.0000', '77.0000', '77.0000', '77.0000', '77.0000', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7543, '2022-09-29', 6883, 7191, 768, 3129, '5.0000', '6.3000', '6.3000', '7.0000', '7.0000', '70.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7623, '2022-09-30', 6501, 7268, 769, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '56.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7622, '2022-09-30', 6456, 7267, 769, 1896, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7621, '2022-09-30', 6395, 7266, 769, 540, '2.0000', '9.5500', '9.5500', '9.5500', '9.5500', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7620, '2022-09-30', 6391, 7265, 769, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '73.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7619, '2022-09-30', 6248, 7264, 769, 1408, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7618, '2022-09-30', 6226, 7263, 769, 3491, '2.0000', '1.9000', '1.9000', '1.9000', '1.9000', '63.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7617, '2022-09-30', 6217, 7262, 769, 2377, '2.0000', '2.8800', '2.8800', '2.8800', '2.8800', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7616, '2022-09-30', 6188, 7261, 769, 3080, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7615, '2022-09-30', 6171, 7260, 769, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7614, '2022-09-30', 6152, 7259, 769, 1883, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '954.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7613, '2022-09-30', 6024, 7258, 769, 937, '3.0000', '4.9900', '4.9900', '4.9900', '4.9900', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7612, '2022-09-30', 6007, 7257, 769, 2327, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7611, '2022-09-30', 5980, 7256, 769, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7610, '2022-09-30', 5911, 7255, 769, 2516, '1.0000', '28.8750', '28.8750', '26.0000', '26.0000', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7609, '2022-09-30', 5911, 7255, 769, 3042, '1.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7608, '2022-09-30', 5674, 7254, 769, 3549, '5.0000', '1.5000', '1.5000', '1.5000', '1.5000', '461.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7607, '2022-09-30', 5625, 7253, 769, NULL, '1.0000', '4.1000', '4.1000', '4.1000', '4.1000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7606, '2022-09-30', 5440, 7252, 769, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '292.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7624, '2022-09-30', 6593, 7269, 769, 3618, '2.0000', '1.6500', '1.6500', '2.0000', '2.0000', '593.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7581, '2022-09-30', 6272, 7227, 770, 538, '1.0000', '31.5000', '31.5000', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7582, '2022-09-30', 6666, 7228, 770, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7583, '2022-09-30', 6860, 7229, 770, 3738, '3.0000', '15.4923', '15.4923', '18.0000', '18.0000', '267.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7584, '2022-09-30', 5624, 7230, 770, 3709, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '8.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7585, '2022-09-30', 5827, 7231, 770, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '137.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7586, '2022-09-30', 6738, 7232, 770, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '150.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7587, '2022-09-30', 6603, 7233, 770, 3768, '4.0000', '6.1900', '6.1900', '6.9000', '6.9000', '79.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7588, '2022-09-30', 5792, 7234, 770, 1978, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7589, '2022-09-30', 5926, 7235, 770, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '128.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7590, '2022-09-30', 6876, 7236, 770, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7591, '2022-09-30', 6232, 7237, 770, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '101.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7592, '2022-09-30', 6464, 7238, 770, 1160, '6.0000', '4.0000', '4.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7593, '2022-09-30', 5569, 7239, 770, 1436, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '6.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7594, '2022-09-30', 6491, 7240, 770, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '189.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7595, '2022-09-30', 6007, 7241, 770, 2327, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7596, '2022-09-30', 6378, 7242, 770, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7597, '2022-09-30', 5651, 7243, 770, 2386, '3.0000', '6.1700', '6.1700', '6.1700', '6.1700', '69.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7598, '2022-09-30', 6078, 7244, 770, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '553.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7599, '2022-09-30', 5418, 7245, 770, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '229.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7600, '2022-09-30', 6348, 7246, 770, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '41.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7601, '2022-09-30', 6510, 7247, 770, 2079, '3.0000', '3.5000', '3.5000', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7602, '2022-09-30', 6590, 7248, 771, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7603, '2022-09-30', 5926, 7249, 772, 2072, '1.0000', '10.9000', '10.9000', '10.9000', '10.9000', '127.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7604, '2022-09-30', 5949, 7250, 772, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '601.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7605, '2022-09-30', 6205, 7251, 772, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '161.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7625, '2022-09-30', 6065, 7270, 769, 527, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7671, '2022-09-30', 6765, 7312, 773, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '43.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7670, '2022-09-30', 6496, 7311, 773, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '205.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7669, '2022-09-30', 6457, 7310, 773, 3607, '1.0000', '39.9000', '39.9000', '43.9000', '43.9000', '9.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7668, '2022-09-30', 6365, 7309, 773, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '139.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7667, '2022-09-30', 6234, 7308, 773, NULL, '10.0000', '33.3000', '33.3000', '40.3000', '40.3000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7666, '2022-09-30', 6234, 7308, 773, 3777, '-7.0000', '33.3000', '33.3000', '40.3000', '40.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7665, '2022-09-30', 6205, 7307, 773, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '159.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7664, '2022-09-30', 6075, 7306, 773, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1694.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7663, '2022-09-30', 6024, 7305, 773, 937, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7662, '2022-09-30', 5999, 7304, 773, 1870, '2.0000', '25.7000', '25.7000', '25.7000', '25.7000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7661, '2022-09-30', 5422, 7303, 773, NULL, '4.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7660, '2022-09-30', 5422, 7303, 773, 3554, '-3.0000', '0.0000', '0.0000', '18.7000', '18.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7672, '2022-09-30', 6767, 7313, 773, 2994, '4.0000', '9.5000', '9.5000', '9.5000', '9.5000', '26.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7688, '2022-09-30', 6832, 7329, 774, 1381, '20.0000', '2.6000', '2.6000', '2.6000', '2.6000', '356.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7687, '2022-09-30', 6644, 7328, 774, 1860, '4.0000', '4.6000', '4.6000', '4.6000', '4.6000', '19.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7686, '2022-09-30', 6424, 7327, 774, 2380, '4.0000', '7.9300', '7.9300', '8.5500', '8.5500', '21.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7685, '2022-09-30', 6304, 7326, 774, 1853, '4.0000', '13.5000', '13.5000', '13.5000', '13.5000', '113.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7684, '2022-09-30', 6297, 7325, 774, 1855, '4.0000', '10.4000', '10.4000', '10.4000', '10.4000', '48.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7683, '2022-09-30', 6267, 7324, 774, 1425, '10.0000', '7.1000', '7.1000', '8.0400', '8.0400', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7682, '2022-09-30', 6205, 7323, 774, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '159.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7681, '2022-09-30', 6125, 7322, 774, 3053, '4.0000', '10.5000', '10.5000', '12.5000', '12.5000', '154.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7680, '2022-09-30', 6075, 7321, 774, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1694.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7679, '2022-09-30', 6074, 7320, 774, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1227.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7678, '2022-09-30', 5967, 7319, 774, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2594.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7677, '2022-09-30', 5911, 7318, 774, 2516, '1.0000', '28.8750', '28.8750', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7676, '2022-09-30', 5884, 7317, 774, 1279, '10.0000', '3.3200', '3.3200', '3.3200', '3.3200', '0.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7675, '2022-09-30', 5657, 7316, 774, 2382, '7.0000', '4.2000', '4.2000', '4.2000', '4.2000', '282.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7674, '2022-09-30', 5453, 7315, 774, 3652, '5.0000', '8.3000', '8.3000', '9.2000', '9.2000', '98.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7689, '2022-09-30', 6746, 7330, 774, 560, '5.0000', '10.5600', '10.5600', '10.5600', '10.5600', '17.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7655, '2022-09-30', 5947, 7298, 775, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '1.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7656, '2022-09-30', 5715, 7299, 775, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '42.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7690, '2022-09-30', 6002, 7331, 774, 934, '1.0000', '6.8000', '6.8000', '8.5500', '8.5500', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7673, '2022-09-30', 5949, 7314, 776, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '591.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7691, '2022-09-30', 6593, 7332, 774, 3618, '1.0000', '1.6500', '1.6500', '2.0000', '2.0000', '592.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7822, '2022-09-30', 6746, 7457, 777, 560, '1.0000', '10.5600', '10.5600', '10.5600', '10.5600', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7821, '2022-09-30', 6386, 7456, 777, 2346, '20.0000', '3.2000', '3.2000', '3.2000', '3.2000', '316.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7820, '2022-09-30', 6365, 7455, 777, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '137.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7819, '2022-09-30', 6205, 7454, 777, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '154.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7818, '2022-09-30', 5991, 7453, 777, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7817, '2022-09-30', 5967, 7452, 777, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2584.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7816, '2022-09-30', 5740, 7451, 777, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '298.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7815, '2022-09-30', 5640, 7450, 777, 2030, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '7.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7814, '2022-09-30', 5616, 7449, 777, NULL, '24.0000', '7.0000', '7.0000', '8.0000', '8.0000', '-24.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7813, '2022-09-30', 5616, 7449, 777, 2512, '-19.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7812, '2022-09-30', 5593, 7448, 777, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7811, '2022-09-30', 5589, 7447, 777, 2370, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '162.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7901, '2022-09-30', 6590, 7528, 778, 2281, '4.0000', '25.3000', '25.3000', '25.3000', '25.3000', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7900, '2022-09-30', 6353, 7527, 778, 2339, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7899, '2022-09-30', 6221, 7526, 778, 1331, '3.0000', '12.9800', '12.9800', '12.9800', '12.9800', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7898, '2022-09-30', 6205, 7525, 778, 3026, '3.0000', '38.5000', '38.5000', '38.5000', '38.5000', '154.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7897, '2022-09-30', 6007, 7524, 778, 2391, '11.0000', '11.3800', '11.3800', '11.3800', '11.3800', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7896, '2022-09-30', 6007, 7524, 778, 2327, '9.0000', '11.3800', '11.3800', '11.3800', '11.3800', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7895, '2022-09-30', 5740, 7523, 778, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '298.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7894, '2022-09-30', 5640, 7522, 778, 2030, '24.0000', '11.1000', '11.1000', '11.1000', '11.1000', '4.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7893, '2022-09-30', 5593, 7521, 778, 2290, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7892, '2022-09-30', 5478, 7520, 778, 1511, '3.0000', '6.7000', '6.7000', '6.7000', '6.7000', '4.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7902, '2022-09-30', 6809, 7529, 778, 1299, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '69.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7810, '2022-09-30', 5535, 7446, 777, 2277, '20.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1253.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7823, '2022-09-30', 6810, 7458, 777, 1017, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7729, '2022-09-30', 6552, 7368, 779, 577, '2.0000', '186.8000', '186.8000', '186.8000', '186.8000', '20.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7730, '2022-09-30', 5595, 7369, 779, 3516, '-3.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7731, '2022-09-30', 5595, 7369, 779, NULL, '4.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7732, '2022-09-30', 6220, 7370, 779, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '269.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11372, '2022-10-07', 6339, 10855, 1016, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11331, '2022-09-30', 6853, 10816, 780, 562, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11330, '2022-09-30', 6778, 10815, 780, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '136.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11329, '2022-09-30', 6751, 10814, 780, 3553, '2.0000', '20.0000', '20.0000', '40.8300', '40.8300', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11328, '2022-09-30', 6689, 10813, 780, 1355, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '109.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11327, '2022-09-30', 6645, 10812, 780, 1393, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '137.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11326, '2022-09-30', 6590, 10811, 780, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11325, '2022-09-30', 6542, 10810, 780, 2047, '5.0000', '7.8000', '7.8000', '9.0400', '9.0400', '36.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11324, '2022-09-30', 6513, 10809, 780, 662, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11323, '2022-09-30', 6455, 10808, 780, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11322, '2022-09-30', 6440, 10807, 780, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '5.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11321, '2022-09-30', 6406, 10806, 780, 542, '2.0000', '26.1800', '26.1800', '26.1800', '26.1800', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11320, '2022-09-30', 6384, 10805, 780, 1477, '3.0000', '9.6600', '9.6600', '9.6600', '9.6600', '104.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11319, '2022-09-30', 6368, 10804, 780, 1091, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11318, '2022-09-30', 6339, 10803, 780, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11317, '2022-09-30', 6301, 10802, 780, 1339, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '34.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11316, '2022-09-30', 6293, 10801, 780, 3486, '5.0000', '14.6000', '14.6000', '14.6000', '14.6000', '170.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11315, '2022-09-30', 6285, 10800, 780, 2057, '1.0000', '9.4700', '9.4700', '10.9800', '10.9800', '43.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11314, '2022-09-30', 6234, 10799, 780, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '83.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11313, '2022-09-30', 6221, 10798, 780, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11312, '2022-09-30', 6220, 10797, 780, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '197.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11311, '2022-09-30', 6178, 10796, 780, 3060, '20.0000', '1.6000', '1.6000', '2.2000', '2.2000', '591.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11310, '2022-09-30', 6088, 10795, 780, 3759, '3.0000', '24.0714', '24.0714', '26.8000', '26.8000', '48.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11309, '2022-09-30', 6078, 10794, 780, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '546.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11308, '2022-09-30', 6053, 10793, 780, 1126, '4.0000', '14.9000', '14.9000', '16.3700', '16.3700', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11307, '2022-09-30', 5971, 10792, 780, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '59.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11306, '2022-09-30', 5932, 10791, 780, 1092, '3.0000', '11.4000', '11.4000', '11.4000', '11.4000', '21.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11305, '2022-09-30', 5931, 10790, 780, 1090, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '44.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11304, '2022-09-30', 5847, 10789, 780, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '377.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11303, '2022-09-30', 5827, 10788, 780, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '94.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11302, '2022-09-30', 5799, 10787, 780, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '96.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11301, '2022-09-30', 5792, 10786, 780, 1978, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11300, '2022-09-30', 5777, 10785, 780, 751, '5.0000', '24.0000', '24.0000', '24.0000', '24.0000', '14.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11299, '2022-09-30', 5607, 10784, 780, 3708, '1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '3.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11298, '2022-09-30', 5605, 10783, 780, 907, '2.0000', '21.5000', '21.5000', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7784, '2022-09-30', 6698, 7421, 781, 1384, '2.0000', '13.4400', '13.4400', '13.4400', '13.4400', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7783, '2022-09-30', 6615, 7420, 781, 2368, '1.0000', '11.0000', '11.0000', '11.0000', '11.0000', '54.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7782, '2022-09-30', 6528, 7419, 781, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '292.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7781, '2022-09-30', 6347, 7418, 781, 2269, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7780, '2022-09-30', 6087, 7417, 781, NULL, '1.0000', '0.0000', '0.0000', '75.8000', '75.8000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7779, '2022-09-30', 6074, 7416, 781, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1222.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7778, '2022-09-30', 5731, 7415, 781, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '58.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7777, '2022-09-30', 5528, 7414, 781, NULL, '2.0000', '11.5800', '11.5800', '11.5800', '11.5800', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7785, '2022-09-30', 6814, 7422, 781, 1076, '1.0000', '61.8000', '61.8000', '61.8000', '61.8000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7786, '2022-09-30', 6816, 7423, 781, 3390, '1.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '56.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7977, '2022-09-30', 6813, 7601, 782, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '20.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7976, '2022-09-30', 6543, 7600, 782, 2062, '2.0000', '11.2000', '11.2000', '13.9200', '13.9200', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7975, '2022-09-30', 6417, 7599, 782, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '56.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7974, '2022-09-30', 6348, 7598, 782, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '40.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7973, '2022-09-30', 6337, 7597, 782, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '18.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7972, '2022-09-30', 6225, 7596, 782, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '169.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7971, '2022-09-30', 6220, 7595, 782, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '260.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7970, '2022-09-30', 6202, 7594, 782, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '394.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7969, '2022-09-30', 6095, 7593, 782, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '114.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7968, '2022-09-30', 6076, 7592, 782, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2067.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7967, '2022-09-30', 6074, 7591, 782, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1199.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7966, '2022-09-30', 6010, 7590, 782, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '340.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7965, '2022-09-30', 5986, 7589, 782, 2311, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '96.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7964, '2022-09-30', 5799, 7588, 782, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '129.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7963, '2022-09-30', 5535, 7587, 782, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1253.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7920, '2022-09-30', 6501, 7546, 783, 3662, '10.0000', '9.0000', '9.0000', '10.6000', '10.6000', '46.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7919, '2022-09-30', 6316, 7545, 783, 3757, '10.0000', '54.8358', '54.8358', '62.0000', '62.0000', '106.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7918, '2022-09-30', 5985, 7544, 783, 3056, '4.0000', '12.2000', '12.2000', '12.2000', '12.2000', '63.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7917, '2022-09-30', 5975, 7543, 783, 2379, '10.0000', '9.1500', '9.1500', '12.2100', '12.2100', '27.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7916, '2022-09-30', 5847, 7542, 783, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '482.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7915, '2022-09-30', 5616, 7541, 783, NULL, '24.0000', '7.0000', '7.0000', '8.0000', '8.0000', '-24.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7914, '2022-09-30', 5616, 7541, 783, 2512, '-17.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7921, '2022-09-30', 6860, 7547, 783, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '255.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7824, '2022-09-30', 6552, 7459, 784, 577, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '19.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8009, '2022-09-30', 6895, 7629, 785, NULL, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8008, '2022-09-30', 6839, 7628, 785, 3769, '10.0000', '4.9100', '4.9100', '5.5000', '5.5000', '68.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8007, '2022-09-30', 6823, 7627, 785, 1488, '6.0000', '10.7800', '10.7800', '10.7800', '10.7800', '65.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8006, '2022-09-30', 6605, 7626, 785, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '29.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8005, '2022-09-30', 6572, 7625, 785, 2993, '5.0000', '17.0000', '17.0000', '17.0000', '17.0000', '110.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8004, '2022-09-30', 6408, 7624, 785, 2978, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8003, '2022-09-30', 6353, 7623, 785, 2339, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8002, '2022-09-30', 6316, 7622, 785, 3757, '3.0000', '54.8358', '54.8358', '62.0000', '62.0000', '106.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8001, '2022-09-30', 6294, 7621, 785, 1412, '4.0000', '23.0000', '23.0000', '30.0000', '30.0000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8000, '2022-09-30', 6292, 7620, 785, 1489, '6.0000', '7.8000', '7.8000', '7.8000', '7.8000', '21.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7999, '2022-09-30', 6248, 7619, 785, 1408, '1.0000', '9.4000', '9.4000', '9.4000', '9.4000', '38.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7998, '2022-09-30', 6234, 7618, 785, NULL, '19.0000', '33.3000', '33.3000', '40.3000', '40.3000', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7997, '2022-09-30', 6234, 7618, 785, 3777, '-15.0000', '33.3000', '33.3000', '40.3000', '40.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7996, '2022-09-30', 6076, 7617, 785, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2067.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7995, '2022-09-30', 6075, 7616, 785, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1682.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7994, '2022-09-30', 5988, 7615, 785, 2033, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '94.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7993, '2022-09-30', 5988, 7615, 785, 2558, '9.0000', '3.0000', '3.0000', '3.4200', '3.4200', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7992, '2022-09-30', 5986, 7614, 785, 2311, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '96.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7991, '2022-09-30', 5980, 7613, 785, 3036, '2.0000', '11.5000', '11.5000', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7990, '2022-09-30', 5968, 7612, 785, 1478, '5.0000', '10.7800', '10.7800', '10.7800', '10.7800', '13.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7989, '2022-09-30', 5965, 7611, 785, NULL, '5.0000', '0.0000', '0.0000', '13.5000', '13.5000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7988, '2022-09-30', 5799, 7610, 785, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '129.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7987, '2022-09-30', 5792, 7609, 785, 1978, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7986, '2022-09-30', 5676, 7608, 785, 2018, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '75.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7985, '2022-09-30', 5640, 7607, 785, 2030, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7984, '2022-09-30', 5439, 7606, 785, NULL, '9.0000', '0.0000', '0.0000', '58.4000', '58.4000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7983, '2022-09-30', 5439, 7606, 785, 1838, '-5.0000', '0.0000', '0.0000', '58.4000', '58.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8010, '2022-09-30', 6753, 7630, 793, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '230.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7913, '2022-09-30', 6380, 7540, 786, 3073, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7912, '2022-09-30', 6353, 7539, 786, 2339, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7911, '2022-09-30', 6228, 7538, 786, 2366, '2.0000', '20.9500', '20.9500', '20.9500', '20.9500', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7910, '2022-09-30', 6222, 7537, 786, 2279, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7909, '2022-09-30', 5775, 7536, 786, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '71.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7922, '2022-09-30', 6156, 7548, 783, 3493, '4.0000', '5.0000', '5.0000', '0.5500', '0.5500', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7923, '2022-09-30', 6156, 7548, 783, NULL, '96.0000', '5.0000', '5.0000', '0.5500', '0.5500', '-96.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7924, '2022-09-30', 6753, 7549, 787, 3737, '6.0000', '72.8788', '72.8788', '85.0000', '85.0000', '231.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7978, '2022-09-30', 6215, 7602, 791, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10016, '2022-10-05', 6590, 9547, 928, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8088, '2022-09-30', 5689, 7705, 796, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '80.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8087, '2022-09-30', 5715, 7704, 795, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8086, '2022-09-30', 6007, 7703, 788, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '107.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8085, '2022-09-30', 6573, 7702, 788, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8084, '2022-09-30', 6462, 7701, 788, 1087, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8083, '2022-09-30', 6205, 7700, 788, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '152.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8082, '2022-09-30', 6082, 7699, 788, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '202.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8081, '2022-09-30', 6074, 7698, 788, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1193.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8080, '2022-09-30', 5983, 7697, 788, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8079, '2022-09-30', 5849, 7696, 788, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '86.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8078, '2022-09-30', 5815, 7695, 788, 394, '2.0000', '0.0000', '0.0000', '0.0000', '0.0000', '39.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8077, '2022-09-30', 5754, 7694, 788, 3505, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '43.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8076, '2022-09-30', 5654, 7693, 788, 3041, '6.0000', '2.0000', '2.0000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8075, '2022-09-30', 5586, 7692, 788, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '215.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8074, '2022-09-30', 5509, 7691, 788, 1854, '4.0000', '6.8800', '6.8800', '6.8800', '6.8800', '16.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10015, '2022-09-30', 6232, 9546, 797, 3587, '6.0000', '6.4556', '6.4556', '7.1000', '7.1000', '70.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7961, '2022-09-30', 5640, 7585, 789, 2030, '2.0000', '11.1000', '11.1000', '11.1000', '11.1000', '2.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7959, '2022-09-30', 5715, 7583, 790, 3023, '7.0000', '13.1400', '13.1400', '13.1400', '13.1400', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7960, '2022-09-30', 6103, 7584, 790, 2275, '1.0000', '15.2000', '15.2000', '15.2000', '15.2000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7962, '2022-09-30', 6612, 7586, 789, 3772, '1.0000', '16.5600', '16.5600', '18.4000', '18.4000', '119.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7979, '2022-09-30', 5710, 7603, 791, 3732, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7980, '2022-09-30', 5640, 7604, 791, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7981, '2022-09-30', 6872, 7605, 792, 2598, '-22.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7982, '2022-09-30', 6872, 7605, 792, NULL, '25.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11297, '2022-09-30', 5582, 10782, 780, 2342, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '274.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11296, '2022-09-30', 5497, 10781, 780, 2288, '1.0000', '5.6000', '5.6000', '5.6000', '5.6000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11373, '2022-10-07', 5995, 10856, 1017, 3071, '4.0000', '6.0000', '6.0000', '7.6000', '7.6000', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8263, '2022-09-30', 6817, 7872, 794, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '56.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8262, '2022-09-30', 6649, 7871, 794, 996, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '60.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8261, '2022-09-30', 6391, 7870, 794, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '71.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8260, '2022-09-30', 6375, 7869, 794, 3065, '2.0000', '3.5200', '3.5200', '3.5200', '3.5200', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8259, '2022-09-30', 6353, 7868, 794, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8258, '2022-09-30', 6225, 7867, 794, 2250, '3.0000', '2.8000', '2.8000', '2.8000', '2.8000', '161.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8257, '2022-09-30', 6219, 7866, 794, NULL, '35.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-35.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8256, '2022-09-30', 6219, 7866, 794, 3150, '-34.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8255, '2022-09-30', 6218, 7865, 794, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '66.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8254, '2022-09-30', 6216, 7864, 794, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2735.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8253, '2022-09-30', 6167, 7863, 794, 3661, '2.0000', '9.4000', '9.4000', '10.4000', '10.4000', '48.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8252, '2022-09-30', 6074, 7862, 794, 2303, '6.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1193.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8251, '2022-09-30', 6007, 7861, 794, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '107.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8250, '2022-09-30', 5983, 7860, 794, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8249, '2022-09-30', 5976, 7859, 794, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '198.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8248, '2022-09-30', 5771, 7858, 794, 3634, '4.0000', '3.5000', '3.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8247, '2022-09-30', 5770, 7857, 794, 3079, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8246, '2022-09-30', 5754, 7856, 794, 3505, '1.0000', '7.2000', '7.2000', '7.2000', '7.2000', '43.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8245, '2022-09-30', 5740, 7855, 794, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '296.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8244, '2022-09-30', 5689, 7854, 794, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '80.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8243, '2022-09-30', 5641, 7853, 794, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8242, '2022-09-30', 5640, 7852, 794, NULL, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8241, '2022-09-30', 5640, 7852, 794, 2030, '1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8240, '2022-09-30', 5440, 7851, 794, 2306, '2.0000', '3.4100', '3.4100', '3.4100', '3.4100', '290.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8264, '2022-09-30', 6202, 7873, 800, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '392.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10014, '2022-09-30', 6864, 9545, 797, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4660.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10013, '2022-09-30', 6860, 9544, 797, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '214.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10012, '2022-09-30', 6813, 9543, 797, 2037, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10011, '2022-09-30', 6778, 9542, 797, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '136.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10010, '2022-09-30', 6749, 9541, 797, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10009, '2022-09-30', 6696, 9540, 797, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '331.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10008, '2022-09-30', 6691, 9539, 797, 1994, '5.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10007, '2022-09-30', 6650, 9538, 797, 1146, '1.0000', '5.7000', '5.7000', '5.7000', '5.7000', '28.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10006, '2022-09-30', 6621, 9537, 797, 1852, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '35.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10005, '2022-09-30', 6598, 9536, 797, 3741, '1.0000', '17.0100', '17.0100', '18.9000', '18.9000', '91.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10004, '2022-09-30', 6590, 9535, 797, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10003, '2022-09-30', 6496, 9534, 797, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '185.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10002, '2022-09-30', 6451, 9533, 797, 3021, '2.0000', '53.2000', '53.2000', '53.2000', '53.2000', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10001, '2022-09-30', 6399, 9532, 797, 2019, '3.0000', '6.1000', '6.1000', '6.1000', '6.1000', '202.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10000, '2022-09-30', 6385, 9531, 797, 2251, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9999, '2022-09-30', 6383, 9530, 797, 3064, '2.0000', '8.2000', '8.2000', '8.2000', '8.2000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9998, '2022-09-30', 6350, 9529, 797, 1343, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9997, '2022-09-30', 6316, 9528, 797, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '99.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9996, '2022-09-30', 6302, 9527, 797, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '35.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9995, '2022-09-30', 6297, 9526, 797, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '35.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9994, '2022-09-30', 6234, 9525, 797, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '110.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9993, '2022-09-30', 6225, 9524, 797, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9992, '2022-09-30', 6217, 9523, 797, 2377, '5.0000', '2.8800', '2.8800', '2.8800', '2.8800', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9991, '2022-09-30', 6216, 9522, 797, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2490.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9990, '2022-09-30', 6210, 9521, 797, 3050, '1.0000', '7.1000', '7.1000', '7.1000', '7.1000', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9989, '2022-09-30', 6178, 9520, 797, 3060, '20.0000', '1.6000', '1.6000', '2.2000', '2.2000', '591.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9988, '2022-09-30', 6171, 9519, 797, 1327, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9987, '2022-09-30', 6145, 9518, 797, 664, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '55.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9986, '2022-09-30', 6102, 9517, 797, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9985, '2022-09-30', 6034, 9516, 797, 1874, '1.0000', '41.8000', '41.8000', '48.0000', '48.0000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9984, '2022-09-30', 5991, 9515, 797, 2070, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9983, '2022-09-30', 5969, 9514, 797, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '96.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9982, '2022-09-30', 5958, 9513, 797, 521, '1.0000', '16.1000', '16.1000', '16.1000', '16.1000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9981, '2022-09-30', 5956, 9512, 797, NULL, '5.0000', '17.8400', '17.8400', '17.8400', '17.8400', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9980, '2022-09-30', 5956, 9512, 797, 3744, '-4.0000', '17.8400', '17.8400', '17.8400', '17.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9979, '2022-09-30', 5847, 9511, 797, 3136, '5.0000', '3.1651', '3.1651', '7.5000', '7.5000', '433.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9978, '2022-09-30', 5828, 9510, 797, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '93.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9977, '2022-09-30', 5799, 9509, 797, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '104.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9976, '2022-09-30', 5716, 9508, 797, 2384, '5.0000', '3.6000', '3.6000', '3.6000', '3.6000', '6.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9975, '2022-09-30', 5667, 9507, 797, 910, '2.0000', '11.8000', '11.8000', '11.8000', '11.8000', '59.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9974, '2022-09-30', 5624, 9506, 797, 3709, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '1.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9973, '2022-09-30', 5592, 9505, 797, 906, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '19.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9972, '2022-09-30', 5585, 9504, 797, 2973, '1.0000', '23.4000', '23.4000', '23.4000', '23.4000', '33.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9971, '2022-09-30', 5536, 9503, 797, 510, '1.0000', '52.2000', '52.2000', '52.2000', '52.2000', '14.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9970, '2022-09-30', 5478, 9502, 797, 1511, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9969, '2022-09-30', 5472, 9501, 797, 3397, '5.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9968, '2022-09-30', 5452, 9500, 797, 1030, '5.0000', '8.0000', '8.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10017, '2022-10-05', 6838, 9548, 928, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '62.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8187, '2022-09-30', 5657, 7800, 798, 2382, '1.0000', '4.2000', '4.2000', '4.2000', '4.2000', '281.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8238, '2022-09-30', 6349, 7849, 799, 1342, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8239, '2022-09-30', 6691, 7850, 799, 1994, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8265, '2022-09-30', 5439, 7874, 800, 1838, '-9.0000', '0.0000', '0.0000', '58.4000', '58.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8266, '2022-09-30', 5439, 7874, 800, NULL, '11.0000', '0.0000', '0.0000', '58.4000', '58.4000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8267, '2022-09-30', 6234, 7875, 800, 3777, '-20.0000', '33.3000', '33.3000', '40.3000', '40.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8268, '2022-09-30', 6234, 7875, 800, NULL, '23.0000', '33.3000', '33.3000', '40.3000', '40.3000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8269, '2022-09-30', 6807, 7876, 800, 1282, '1.0000', '9.0000', '9.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8270, '2022-09-30', 6807, 7876, 800, NULL, '1.0000', '9.0000', '9.0000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8271, '2022-09-30', 5677, 7877, 800, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '216.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8272, '2022-09-30', 6654, 7878, 800, 1066, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '75.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8273, '2022-09-30', 5967, 7879, 800, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2574.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8274, '2022-09-30', 6496, 7880, 800, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '190.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8275, '2022-09-30', 5577, 7881, 800, 653, '1.0000', '81.2000', '81.2000', '81.2000', '81.2000', '2.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8276, '2022-09-30', 6210, 7882, 800, 3050, '4.0000', '7.1000', '7.1000', '7.1000', '7.1000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8277, '2022-09-30', 6288, 7883, 800, 1416, '3.0000', '56.0000', '56.0000', '66.5200', '66.5200', '79.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8278, '2022-09-30', 6670, 7884, 800, 3627, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8279, '2022-09-30', 6670, 7884, 800, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '53.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8280, '2022-09-30', 6863, 7885, 800, 3612, '-20.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8281, '2022-09-30', 6863, 7885, 800, NULL, '25.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8282, '2022-09-30', 6864, 7886, 800, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4662.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8283, '2022-09-30', 5991, 7887, 800, 1079, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8284, '2022-09-30', 5949, 7888, 800, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '581.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8285, '2022-09-30', 5535, 7889, 800, 2277, '20.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1233.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8286, '2022-09-30', 6001, 7890, 800, 1313, '3.0000', '5.1000', '5.1000', '6.2000', '6.2000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8373, '2022-09-30', 6880, 7975, 801, 3128, '2.0000', '13.5000', '13.5000', '15.0000', '15.0000', '390.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8372, '2022-09-30', 6604, 7974, 801, 766, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '479.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8371, '2022-09-30', 6455, 7973, 801, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8370, '2022-09-30', 6376, 7972, 801, 2364, '50.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2295.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8369, '2022-09-30', 6365, 7971, 801, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '134.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8368, '2022-09-30', 6232, 7970, 801, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '94.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8367, '2022-09-30', 6167, 7969, 801, 3661, '3.0000', '9.4000', '9.4000', '10.4000', '10.4000', '45.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8366, '2022-09-30', 6053, 7968, 801, 1126, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8365, '2022-09-30', 5991, 7967, 801, 1079, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8364, '2022-09-30', 5975, 7966, 801, 2379, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8363, '2022-09-30', 5948, 7965, 801, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '308.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8362, '2022-09-30', 5799, 7964, 801, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '123.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8361, '2022-09-30', 5792, 7963, 801, 1978, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8360, '2022-09-30', 5740, 7962, 801, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '285.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8359, '2022-09-30', 5676, 7961, 801, 2018, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '73.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8358, '2022-09-30', 5598, 7960, 801, 3031, '5.0000', '2.6000', '2.6000', '4.3000', '4.3000', '521.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8357, '2022-09-30', 5586, 7959, 801, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '213.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8356, '2022-09-30', 5532, 7958, 801, 3396, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8374, '2022-09-30', 6024, 7976, 801, 937, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8306, '2022-10-01', 5975, 7910, 802, 2379, '8.0000', '9.1500', '9.1500', '12.2100', '12.2100', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8307, '2022-10-01', 5999, 7911, 802, 1870, '2.0000', '25.7000', '25.7000', '25.7000', '25.7000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8308, '2022-10-01', 5465, 7912, 803, 3776, '-2.0000', '0.0000', '0.0000', '98.6000', '98.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8309, '2022-10-01', 5465, 7912, 803, NULL, '3.0000', '0.0000', '0.0000', '98.6000', '98.6000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8310, '2022-10-01', 6860, 7913, 803, 3738, '1.0000', '15.4923', '15.4923', '18.0000', '18.0000', '252.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8311, '2022-10-01', 5419, 7914, 804, 2128, '2.0000', '14.9000', '14.9000', '14.9000', '14.9000', '49.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8312, '2022-10-01', 6316, 7915, 804, 3757, '2.0000', '54.8358', '54.8358', '62.0000', '62.0000', '103.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8313, '2022-10-01', 6162, 7916, 804, 3656, '3.0000', '6.6000', '6.6000', '7.3000', '7.3000', '117.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8314, '2022-10-01', 5886, 7917, 804, 3665, '3.0000', '8.6000', '8.6000', '8.6000', '8.6000', '1.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8315, '2022-10-01', 6552, 7918, 804, 577, '1.0000', '186.8000', '186.8000', '186.8000', '186.8000', '18.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8316, '2022-10-01', 6496, 7919, 804, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '185.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8317, '2022-10-01', 5995, 7920, 804, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8318, '2022-10-01', 6337, 7921, 804, 539, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8319, '2022-10-01', 6137, 7922, 804, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '133.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8320, '2022-10-01', 5471, 7923, 804, 902, '3.0000', '5.0400', '5.0400', '5.9800', '5.9800', '96.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8321, '2022-10-01', 6003, 7924, 804, 2321, '4.0000', '6.7000', '6.7000', '9.1000', '9.1000', '51.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8322, '2022-10-01', 5624, 7925, 804, 3709, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '4.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8323, '2022-10-01', 5731, 7926, 804, 1917, '4.0000', '17.2000', '17.2000', '17.2000', '17.2000', '54.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8324, '2022-10-01', 5740, 7927, 804, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '287.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8325, '2022-10-01', 5947, 7928, 805, 2353, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8326, '2022-10-01', 5715, 7929, 805, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8327, '2022-10-01', 6225, 7930, 806, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '151.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8328, '2022-10-01', 5853, 7931, 806, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '525.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8329, '2022-10-01', 5451, 7932, 806, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1208.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8330, '2022-10-01', 6074, 7933, 806, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1190.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8331, '2022-10-01', 6095, 7934, 806, 3138, '4.0000', '8.3200', '8.3200', '8.3200', '8.3200', '110.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8332, '2022-10-01', 5740, 7935, 806, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '285.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8333, '2022-10-01', 5641, 7936, 806, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8334, '2022-10-01', 6528, 7937, 806, 1899, '3.0000', '5.9800', '5.9800', '5.9800', '5.9800', '289.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8335, '2022-10-01', 5970, 7938, 806, 2310, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8336, '2022-10-01', 5926, 7939, 806, 2072, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '124.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8337, '2022-10-01', 6220, 7940, 806, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '256.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8338, '2022-10-01', 6353, 7941, 806, 2339, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8339, '2022-10-01', 5967, 7942, 806, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2569.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8340, '2022-10-01', 5640, 7943, 806, 3783, '-1.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8341, '2022-10-01', 5640, 7943, 806, NULL, '3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8342, '2022-10-01', 5749, 7944, 806, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '98.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8343, '2022-10-01', 6777, 7945, 806, 2121, '1.0000', '21.7400', '21.7400', '21.7400', '21.7400', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8344, '2022-10-01', 5898, 7946, 806, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '228.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8345, '2022-10-01', 6572, 7947, 806, 2993, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '109.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8346, '2022-10-01', 6650, 7948, 806, 1146, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '34.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8347, '2022-10-01', 5881, 7949, 806, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '78.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8348, '2022-10-01', 6216, 7950, 806, 3617, '20.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2715.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8349, '2022-10-01', 6365, 7951, 806, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '134.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8350, '2022-10-01', 6409, 7952, 806, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '158.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8351, '2022-10-01', 6408, 7953, 806, 2978, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8352, '2022-10-01', 6209, 7954, 806, 2287, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8353, '2022-10-01', 6617, 7955, 806, 557, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '27.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8354, '2022-10-01', 6354, 7956, 806, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '550.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8355, '2022-10-01', 5532, 7957, 807, 2005, '10.0000', '56.1000', '56.1000', '60.7800', '60.7800', '30.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8375, '2022-09-30', 6375, 7977, 801, 3065, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8376, '2022-10-01', 6753, 7978, 808, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '229.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8377, '2022-10-01', 5947, 7979, 809, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8378, '2022-10-01', 6220, 7980, 810, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '254.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8379, '2022-10-01', 5779, 7981, 810, 1468, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '53.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8380, '2022-10-01', 5926, 7982, 810, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '122.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8381, '2022-10-01', 5986, 7983, 810, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '95.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8382, '2022-10-01', 6670, 7984, 810, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '52.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8383, '2022-10-01', 5948, 7985, 810, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '306.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8384, '2022-10-01', 6538, 7986, 810, 3074, '1.0000', '10.3000', '10.3000', '10.3000', '10.3000', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8385, '2022-10-01', 5601, 7987, 810, 3035, '1.0000', '4.2917', '4.2917', '5.9500', '5.9500', '65.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8386, '2022-10-01', 5971, 7988, 811, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '67.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8387, '2022-10-01', 6020, 7989, 811, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8388, '2022-10-01', 5640, 7990, 811, 3783, '-3.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8389, '2022-10-01', 5640, 7990, 811, NULL, '8.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8390, '2022-10-01', 6491, 7991, 811, 2295, '10.0000', '9.6200', '9.6200', '9.6200', '9.6200', '179.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8391, '2022-10-01', 5440, 7992, 811, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '285.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8392, '2022-10-01', 6375, 7993, 811, 3065, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8393, '2022-10-01', 6381, 7994, 811, 1490, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8394, '2022-10-01', 6205, 7995, 811, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '151.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8395, '2022-10-01', 5969, 7996, 811, 2252, '6.0000', '8.8000', '8.8000', '10.7000', '10.7000', '116.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8396, '2022-10-01', 5657, 7997, 811, 2382, '6.0000', '4.2000', '4.2000', '4.2000', '4.2000', '275.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8397, '2022-10-01', 5509, 7998, 811, 1854, '6.0000', '6.8800', '6.8800', '6.8800', '6.8800', '10.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8398, '2022-10-01', 6075, 7999, 811, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1677.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8399, '2022-10-01', 6076, 8000, 811, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2062.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8400, '2022-10-01', 5632, 8001, 811, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8401, '2022-10-01', 6376, 8002, 811, 2364, '100.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2195.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8402, '2022-10-01', 5926, 8003, 811, 2072, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '116.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8403, '2022-10-01', 5949, 8004, 811, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '575.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8404, '2022-10-01', 5714, 8005, 811, 2280, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8405, '2022-10-01', 6225, 8006, 811, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '146.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8406, '2022-10-01', 6075, 8007, 812, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1667.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8407, '2022-10-01', 6379, 8008, 812, 3421, '2.0000', '8.7056', '8.7056', '2.1000', '2.1000', '152.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8408, '2022-10-01', 5435, 8009, 812, 2308, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8409, '2022-10-01', 5977, 8010, 812, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '67.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8410, '2022-10-01', 6074, 8011, 812, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1188.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8411, '2022-10-01', 6361, 8012, 813, 3725, '50.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4404.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8412, '2022-10-01', 6205, 8013, 813, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '150.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8413, '2022-10-01', 6217, 8014, 813, 2377, '9.0000', '2.8800', '2.8800', '2.8800', '2.8800', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8414, '2022-10-01', 6217, 8014, 813, 946, '1.0000', '2.8800', '2.8800', '2.8800', '2.8800', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8415, '2022-10-01', 5926, 8015, 813, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '111.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8416, '2022-10-01', 5949, 8016, 813, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '570.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8417, '2022-10-01', 6219, 8017, 813, 3150, '-35.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8418, '2022-10-01', 6219, 8017, 813, NULL, '65.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-65.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8419, '2022-10-01', 6619, 8018, 813, 3412, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8420, '2022-10-01', 5573, 8019, 813, 2299, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '994.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8421, '2022-10-01', 5674, 8020, 813, 3549, '20.0000', '1.5000', '1.5000', '2.1000', '2.1000', '441.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8422, '2022-10-01', 6082, 8021, 813, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '197.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8423, '2022-10-01', 5535, 8022, 813, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1223.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8424, '2022-10-01', 5969, 8023, 813, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '113.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8425, '2022-10-01', 5640, 8024, 813, 3783, '-8.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8426, '2022-10-01', 5640, 8024, 813, NULL, '13.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8427, '2022-10-01', 6074, 8025, 813, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1178.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8428, '2022-10-01', 5980, 8026, 813, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8429, '2022-10-01', 6352, 8027, 813, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '214.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8430, '2022-10-01', 6147, 8028, 813, 3038, '1.0000', '35.2000', '35.2000', '35.2000', '35.2000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8431, '2022-10-01', 5451, 8029, 813, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1203.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8432, '2022-10-01', 6162, 8030, 813, 3656, '5.0000', '6.6000', '6.6000', '7.3000', '7.3000', '112.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8433, '2022-10-01', 5792, 8031, 813, 1978, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8434, '2022-10-01', 5657, 8032, 813, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '273.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8435, '2022-10-01', 6142, 8033, 813, 2354, '2.0000', '9.3000', '9.3000', '9.3000', '9.3000', '19.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8436, '2022-10-01', 5440, 8034, 814, 2306, '4.0000', '3.4100', '3.4100', '3.4100', '3.4100', '281.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8437, '2022-10-01', 5751, 8035, 814, 1112, '2.0000', '10.8000', '10.8000', '10.8000', '10.8000', '133.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8438, '2022-10-01', 5969, 8036, 814, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '111.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8439, '2022-10-01', 6074, 8037, 814, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1175.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8440, '2022-10-01', 6691, 8038, 814, 1994, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8441, '2022-10-01', 5926, 8039, 814, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '109.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8442, '2022-10-01', 6353, 8040, 814, 2339, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8443, '2022-10-01', 6374, 8041, 814, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4355.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8444, '2022-10-01', 5936, 8042, 815, 928, '1.0000', '45.2400', '45.2400', '45.2400', '45.2400', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8445, '2022-10-01', 6167, 8043, 815, 3661, '1.0000', '9.4000', '9.4000', '10.4000', '10.4000', '44.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8446, '2022-10-01', 6273, 8044, 816, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '84.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8447, '2022-10-01', 5926, 8045, 816, 2072, '1.0000', '10.9000', '10.9000', '10.9000', '10.9000', '108.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8448, '2022-10-01', 6872, 8046, 816, 2598, '-25.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8449, '2022-10-01', 6872, 8046, 816, NULL, '32.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-32.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8450, '2022-10-01', 6619, 8047, 816, 3412, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8451, '2022-10-01', 6136, 8048, 817, 1324, '2.0000', '3.8000', '3.8000', '3.8000', '3.8000', '151.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8452, '2022-10-01', 5528, 8049, 818, 3800, '1.0000', '13.2556', '13.2556', '16.6000', '16.6000', '61.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8453, '2022-10-01', 6837, 8050, 819, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '11.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8454, '2022-10-01', 6838, 8051, 819, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '69.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8455, '2022-10-01', 5555, 8052, 820, 1032, '1.0000', '107.0000', '107.0000', '107.0000', '107.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8456, '2022-10-03', 5853, 8053, 821, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '521.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8457, '2022-10-03', 5677, 8054, 821, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '213.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8458, '2022-10-03', 6273, 8055, 821, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '82.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8459, '2022-10-03', 5799, 8056, 821, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '122.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8460, '2022-10-03', 6158, 8057, 821, 3653, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '63.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8461, '2022-10-03', 5452, 8058, 821, 1030, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8462, '2022-10-03', 6074, 8059, 821, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1172.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8463, '2022-10-03', 5705, 8060, 821, 1169, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8464, '2022-10-03', 6129, 8061, 821, 3399, '1.0000', '3.4000', '3.4000', '3.4000', '3.4000', '59.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8465, '2022-10-03', 6672, 8062, 821, 1001, '1.0000', '4.9500', '4.9500', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8466, '2022-10-03', 6210, 8063, 821, 3050, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8467, '2022-10-03', 6818, 8064, 822, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '220.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8468, '2022-10-03', 6379, 8065, 822, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '147.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8469, '2022-10-03', 6825, 8066, 822, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '1022.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8470, '2022-10-03', 6216, 8067, 822, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2705.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8471, '2022-10-03', 6697, 8068, 822, 1357, '1.0000', '10.1000', '10.1000', '10.1000', '10.1000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8472, '2022-10-03', 6696, 8069, 822, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '335.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8473, '2022-10-03', 5603, 8070, 822, 3011, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '84.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8474, '2022-10-03', 6738, 8071, 822, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '148.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8475, '2022-10-03', 6820, 8072, 822, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '438.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8476, '2022-10-03', 6007, 8073, 822, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '106.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8477, '2022-10-03', 5439, 8074, 823, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '137.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8478, '2022-10-03', 6234, 8075, 824, 3801, '10.0000', '34.8921', '34.8921', '40.3000', '40.3000', '117.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8479, '2022-10-03', 5439, 8076, 824, 3799, '10.0000', '27.2586', '27.2586', '58.4000', '58.4000', '127.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8480, '2022-10-03', 6896, 8077, 824, 3807, '5.0000', '28.8100', '28.8100', '32.1000', '32.1000', '75.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10123, '2022-10-03', 6865, 9649, 825, 1026, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10122, '2022-10-03', 6864, 9648, 825, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4658.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10121, '2022-10-03', 6749, 9647, 825, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10120, '2022-10-03', 6573, 9646, 825, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10119, '2022-10-03', 6385, 9645, 825, 2251, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10118, '2022-10-03', 6332, 9644, 825, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '22.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10117, '2022-10-03', 6304, 9643, 825, 1853, '1.0000', '13.5000', '13.5000', '13.5000', '13.5000', '112.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10116, '2022-10-03', 6235, 9642, 825, 949, '2.0000', '4.9800', '4.9800', '5.9800', '5.9800', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10115, '2022-10-03', 6077, 9641, 825, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '103.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10114, '2022-10-03', 6076, 9640, 825, 3024, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1938.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10113, '2022-10-03', 6075, 9639, 825, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1566.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10112, '2022-10-03', 5977, 9638, 825, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10111, '2022-10-03', 5926, 9637, 825, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10110, '2022-10-03', 5770, 9636, 825, 3079, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10109, '2022-10-03', 5651, 9635, 825, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '63.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10108, '2022-10-03', 5640, 9634, 825, NULL, '26.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-26.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10107, '2022-10-03', 5640, 9634, 825, 3783, '-23.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10106, '2022-10-03', 5573, 9633, 825, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '991.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10131, '2022-10-04', 6749, 9656, 847, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8500, '2022-10-03', 6344, 8096, 826, 958, '2.0000', '220.0000', '220.0000', '220.0000', '220.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8501, '2022-10-03', 5472, 8097, 826, 3397, '3.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8502, '2022-10-03', 5472, 8097, 826, NULL, '7.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8503, '2022-10-03', 6190, 8098, 827, 2126, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '54.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8504, '2022-10-04', 6596, 8099, 828, 1349, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8505, '2022-10-04', 6513, 8100, 828, 662, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8506, '2022-10-04', 6391, 8101, 828, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '69.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8507, '2022-10-04', 6075, 8102, 828, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1640.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8508, '2022-10-04', 6600, 8103, 828, 1351, '1.0000', '12.9000', '12.9000', '12.9000', '12.9000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8509, '2022-10-04', 6074, 8104, 829, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1162.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8510, '2022-10-04', 5619, 8105, 829, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '101.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8511, '2022-10-04', 6246, 8106, 829, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8512, '2022-10-04', 6634, 8107, 829, 1285, '3.0000', '13.4000', '13.4000', '13.4000', '13.4000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8513, '2022-10-04', 6057, 8108, 829, 1045, '1.0000', '33.2100', '33.2100', '41.5000', '41.5000', '79.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8514, '2022-10-04', 6406, 8109, 829, 542, '1.0000', '26.1800', '26.1800', '26.1800', '26.1800', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8515, '2022-10-04', 6294, 8110, 829, 1412, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8516, '2022-10-04', 6088, 8111, 829, 3759, '2.0000', '24.0714', '24.0714', '26.8000', '26.8000', '55.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8517, '2022-10-04', 6316, 8112, 829, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '102.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8518, '2022-10-04', 6337, 8113, 829, 539, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '13.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8519, '2022-10-04', 5965, 8114, 829, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '137.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8520, '2022-10-04', 6895, 8115, 829, 3786, '1.0000', '9.7900', '9.7900', '10.8000', '10.8000', '138.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8521, '2022-10-04', 6572, 8116, 829, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '107.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8522, '2022-10-04', 5731, 8117, 829, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '44.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8523, '2022-10-04', 6393, 8118, 829, 2082, '2.0000', '15.0000', '15.0000', '16.0000', '16.0000', '46.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8524, '2022-10-04', 5774, 8119, 829, 918, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '18.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8525, '2022-10-04', 5792, 8120, 829, 1978, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8526, '2022-10-04', 6741, 8121, 829, 1361, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8527, '2022-10-04', 6120, 8122, 829, 1995, '5.0000', '14.8500', '14.8500', '14.8500', '14.8500', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8528, '2022-10-04', 6285, 8123, 829, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '79.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8529, '2022-10-04', 6559, 8124, 829, 984, '2.0000', '66.2000', '66.2000', '75.0000', '75.0000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8530, '2022-10-04', 5926, 8125, 829, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '98.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8531, '2022-10-04', 5623, 8126, 829, 2556, '3.0000', '18.9000', '18.9000', '18.9000', '18.9000', '34.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8532, '2022-10-04', 6887, 8127, 829, 3126, '1.0000', '16.2000', '16.2000', '18.0000', '18.0000', '25.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8533, '2022-10-04', 5977, 8128, 829, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '62.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8534, '2022-10-04', 5976, 8129, 829, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '193.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8535, '2022-10-04', 5677, 8130, 829, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '210.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8536, '2022-10-04', 6234, 8131, 829, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '115.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8537, '2022-10-04', 6607, 8132, 829, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '68.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8538, '2022-10-04', 5657, 8133, 829, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '268.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8539, '2022-10-04', 5971, 8134, 829, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '66.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8540, '2022-10-04', 5898, 8135, 829, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '226.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8541, '2022-10-04', 6277, 8136, 829, 3649, '2.0000', '24.2816', '24.2816', '27.5000', '27.5000', '22.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8542, '2022-10-04', 6278, 8137, 829, 1334, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8543, '2022-10-04', 6880, 8138, 829, 3128, '2.0000', '13.5000', '13.5000', '15.0000', '15.0000', '388.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8544, '2022-10-04', 6703, 8139, 829, 1069, '1.0000', '12.0000', '12.0000', '16.3400', '16.3400', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8545, '2022-10-04', 5640, 8140, 829, 3783, '-16.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8546, '2022-10-04', 5640, 8140, 829, NULL, '20.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-20.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8547, '2022-10-04', 5673, 8141, 829, 3762, '1.0000', '15.8900', '15.8900', '17.7000', '17.7000', '47.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8548, '2022-10-04', 6288, 8142, 829, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '78.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8549, '2022-10-04', 6883, 8143, 829, 3129, '3.0000', '6.3000', '6.3000', '7.0000', '7.0000', '67.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8550, '2022-10-04', 6205, 8144, 830, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '149.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8551, '2022-10-04', 6149, 8145, 830, 1949, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8552, '2022-10-04', 6228, 8146, 830, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '1.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8553, '2022-10-04', 6365, 8147, 830, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '132.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8554, '2022-10-04', 6427, 8148, 830, 1475, '2.0000', '17.5000', '17.5000', '17.5000', '17.5000', '19.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8555, '2022-10-04', 6201, 8149, 830, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8556, '2022-10-04', 6353, 8150, 830, 2339, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8557, '2022-10-04', 6353, 8150, 830, 1920, '8.0000', '3.7500', '3.7500', '3.7500', '3.7500', '337.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8558, '2022-10-04', 6862, 8151, 830, 3584, '5.0000', '3.5455', '3.5455', '4.0200', '4.0200', '69.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8559, '2022-10-04', 5990, 8152, 830, 1933, '3.0000', '6.8000', '6.8000', '8.6500', '8.6500', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10105, '2022-10-04', 6813, 9632, 855, 1368, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10104, '2022-10-04', 6739, 9631, 855, 3771, '3.0000', '5.9000', '5.9000', '6.7000', '6.7000', '97.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8927, '2022-10-04', 6872, 8495, 831, NULL, '52.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-52.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8926, '2022-10-04', 6872, 8495, 831, 2598, '-32.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8925, '2022-10-04', 6751, 8494, 831, 3553, '1.0000', '20.0000', '20.0000', '40.8300', '40.8300', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8924, '2022-10-04', 6644, 8493, 831, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '14.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8923, '2022-10-04', 6619, 8492, 831, 3412, '21.0000', '3.5000', '3.5000', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8922, '2022-10-04', 6615, 8491, 831, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8921, '2022-10-04', 6455, 8490, 831, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8920, '2022-10-04', 6449, 8489, 831, 1942, '3.0000', '25.5000', '25.5000', '25.5000', '25.5000', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8919, '2022-10-04', 6418, 8488, 831, 2580, '2.0000', '6.3300', '6.3300', '6.3800', '6.3800', '599.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8918, '2022-10-04', 6409, 8487, 831, 1422, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '150.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8917, '2022-10-04', 6408, 8486, 831, 2978, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8916, '2022-10-04', 6386, 8485, 831, 2346, '20.0000', '3.2000', '3.2000', '3.2000', '3.2000', '296.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8915, '2022-10-04', 6380, 8484, 831, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8914, '2022-10-04', 6333, 8483, 831, 3728, '4.0000', '7.7000', '7.7000', '7.7000', '7.7000', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8913, '2022-10-04', 6332, 8482, 831, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '25.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8912, '2022-10-04', 6301, 8481, 831, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '50.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8911, '2022-10-04', 6275, 8480, 831, 2032, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '299.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8910, '2022-10-04', 6225, 8479, 831, 2250, '8.0000', '2.8000', '2.8000', '2.8000', '2.8000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8909, '2022-10-04', 6205, 8478, 831, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '144.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8908, '2022-10-04', 6143, 8477, 831, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '60.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8907, '2022-10-04', 6142, 8476, 831, 2354, '1.0000', '9.3000', '9.3000', '9.3000', '9.3000', '8.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8906, '2022-10-04', 6007, 8475, 831, 2391, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '96.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8905, '2022-10-04', 5976, 8474, 831, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '187.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8904, '2022-10-04', 5712, 8473, 831, 2298, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1186.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8903, '2022-10-04', 5677, 8472, 831, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '206.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8902, '2022-10-04', 5632, 8471, 831, 1991, '3.0000', '8.0000', '8.0000', '8.0000', '8.0000', '105.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8901, '2022-10-04', 5623, 8470, 831, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '29.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8900, '2022-10-04', 5601, 8469, 831, 3035, '5.0000', '4.2917', '4.2917', '5.9500', '5.9500', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8899, '2022-10-04', 5598, 8468, 831, 3031, '4.0000', '2.6000', '2.6000', '4.3000', '4.3000', '517.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8898, '2022-10-04', 5589, 8467, 831, 2370, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8897, '2022-10-04', 5585, 8466, 831, 2973, '1.0000', '23.4000', '23.4000', '23.4000', '23.4000', '39.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8896, '2022-10-04', 5418, 8465, 831, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '218.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10103, '2022-10-04', 6612, 9630, 855, 3772, '2.0000', '16.5600', '16.5600', '18.4000', '18.4000', '99.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8595, '2022-10-04', 5795, 8186, 832, 586, '5.0000', '35.3000', '35.3000', '35.0000', '35.0000', '42.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8596, '2022-10-04', 5589, 8187, 832, 2370, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '154.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8597, '2022-10-04', 6219, 8188, 833, 3150, '-65.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8598, '2022-10-04', 6219, 8188, 833, NULL, '115.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-115.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8599, '2022-10-04', 6837, 8189, 833, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '10.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8600, '2022-10-04', 5642, 8190, 833, 2320, '1.0000', '24.4300', '24.4300', '24.4300', '24.4300', '57.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8601, '2022-10-04', 6076, 8191, 833, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '2035.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15690, '2022-10-19', 6283, 14978, 1367, 2335, '2.0000', '5.1000', '5.1000', '6.0200', '6.0200', '35.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15689, '2022-10-19', 6818, 14977, 1367, 3067, '4.0000', '3.5000', '3.5000', '3.5000', '3.5000', '200.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15643, '2022-10-04', 6896, 14933, 834, 3807, '2.0000', '28.8100', '28.8100', '32.1000', '32.1000', '59.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15642, '2022-10-04', 6895, 14932, 834, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '76.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15641, '2022-10-04', 6749, 14931, 834, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15640, '2022-10-04', 6670, 14930, 834, 1463, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '38.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15639, '2022-10-04', 6647, 14929, 834, 1353, '5.0000', '8.9000', '8.9000', '8.7500', '8.7500', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15638, '2022-10-04', 6572, 14928, 834, 3996, '5.0000', '17.0000', '17.0000', '17.0000', '17.0000', '69.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15637, '2022-10-04', 6569, 14927, 834, 3995, '4.0000', '15.0000', '15.0000', '16.0000', '16.0000', '22.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15636, '2022-10-04', 6560, 14926, 834, 551, '1.0000', '41.6300', '41.6300', '41.6300', '41.6300', '10.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15635, '2022-10-04', 6538, 14925, 834, 3074, '3.0000', '10.3000', '10.3000', '10.3000', '10.3000', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15634, '2022-10-04', 6458, 14924, 834, 765, '3.0000', '22.9000', '22.9000', '22.9000', '22.9000', '97.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15633, '2022-10-04', 6457, 14923, 834, 4213, '2.0000', '41.4000', '41.4000', '43.9000', '43.9000', '70.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15632, '2022-10-04', 6409, 14922, 834, 1422, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '132.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15631, '2022-10-04', 6385, 14921, 834, 2309, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '81.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15630, '2022-10-04', 6383, 14920, 834, 4117, '3.0000', '8.7203', '8.7203', '8.2000', '8.2000', '95.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15629, '2022-10-04', 6366, 14919, 834, 1418, '2.0000', '55.1000', '55.1000', '85.7800', '85.7800', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15628, '2022-10-04', 6365, 14918, 834, 2038, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '112.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15627, '2022-10-04', 6302, 14917, 834, 2116, '3.0000', '23.0000', '23.0000', '23.0000', '23.0000', '27.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15626, '2022-10-04', 6301, 14916, 834, 1339, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15625, '2022-10-04', 6293, 14915, 834, 4068, '3.0000', '14.6000', '14.6000', '14.6000', '14.6000', '161.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15624, '2022-10-04', 6279, 14914, 834, 1335, '2.0000', '26.4000', '26.4000', '26.4000', '26.4000', '35.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15623, '2022-10-04', 6277, 14913, 834, 3649, '2.0000', '24.2816', '24.2816', '27.5000', '27.5000', '5.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15622, '2022-10-04', 6250, 14912, 834, 4220, '1.0000', '6.0000', '6.0000', '4.7100', '4.7100', '80.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15621, '2022-10-04', 6188, 14911, 834, 3080, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15620, '2022-10-04', 6162, 14910, 834, 3656, '3.0000', '6.6000', '6.6000', '7.3000', '7.3000', '89.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15619, '2022-10-04', 6131, 14909, 834, 3077, '5.0000', '18.0000', '18.0000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15618, '2022-10-04', 6103, 14908, 834, 2275, '1.0000', '15.2000', '15.2000', '15.2000', '15.2000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15617, '2022-10-04', 6074, 14907, 834, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '519.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15616, '2022-10-04', 6071, 14906, 834, 1165, '1.0000', '19.6000', '19.6000', '19.6000', '19.6000', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15615, '2022-10-04', 6046, 14905, 834, 3569, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '63.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15614, '2022-10-04', 6011, 14904, 834, 3028, '1.0000', '14.2100', '14.2100', '14.2100', '14.2100', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15613, '2022-10-04', 6011, 14904, 834, 3605, '1.0000', '14.2100', '14.2100', '14.2100', '14.2100', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15612, '2022-10-04', 6001, 14903, 834, 1313, '5.0000', '5.1000', '5.1000', '6.2000', '6.2000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15611, '2022-10-04', 5998, 14902, 834, 3971, '5.0000', '5.0000', '5.0000', '6.4000', '6.4000', '53.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15610, '2022-10-04', 5991, 14901, 834, 4084, '1.0000', '42.0960', '42.0960', '37.7000', '37.7000', '73.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15609, '2022-10-04', 5984, 14900, 834, 3483, '3.0000', '19.5300', '19.5300', '22.9100', '22.9100', '65.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15608, '2022-10-04', 5983, 14899, 834, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15607, '2022-10-04', 5968, 14898, 834, 4198, '3.0000', '10.7800', '10.7800', '10.7800', '10.7800', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15606, '2022-10-04', 5965, 14897, 834, 3787, '5.0000', '12.5145', '12.5145', '13.5000', '13.5000', '104.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15605, '2022-10-04', 5959, 14896, 834, 4197, '1.0000', '25.7381', '25.7381', '23.7000', '23.7000', '44.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15604, '2022-10-04', 5926, 14895, 834, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15603, '2022-10-04', 5853, 14894, 834, 3620, '6.0000', '8.8287', '8.8287', '10.5000', '10.5000', '386.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15602, '2022-10-04', 5757, 14893, 834, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '93.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15601, '2022-10-04', 5740, 14892, 834, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '106.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15600, '2022-10-04', 5729, 14891, 834, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15599, '2022-10-04', 5710, 14890, 834, 3732, '4.0000', '4.0200', '4.0200', '4.0200', '4.0200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15598, '2022-10-04', 5641, 14889, 834, 3890, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '48.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15597, '2022-10-04', 5619, 14888, 834, 3509, '4.0000', '6.6300', '6.6300', '7.8000', '7.8000', '74.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15596, '2022-10-04', 5618, 14887, 834, 3510, '3.0000', '7.4800', '7.4800', '8.8000', '8.8000', '88.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15595, '2022-10-04', 5596, 14886, 834, 2256, '3.0000', '16.8000', '16.8000', '16.8000', '16.8000', '82.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15594, '2022-10-04', 5589, 14885, 834, 2370, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15593, '2022-10-04', 5586, 14884, 834, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '184.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15592, '2022-10-04', 5576, 14883, 834, 1108, '3.0000', '8.7000', '8.7000', '8.7000', '8.7000', '42.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15591, '2022-10-04', 5515, 14882, 834, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '102.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15590, '2022-10-04', 5500, 14881, 834, 3753, '2.0000', '41.3100', '41.3100', '46.3000', '46.3000', '0.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15589, '2022-10-04', 5478, 14880, 834, 1511, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15588, '2022-10-04', 5465, 14879, 834, NULL, '9.0000', '0.0000', '0.0000', '98.6000', '98.6000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15587, '2022-10-04', 5465, 14879, 834, 3776, '-6.0000', '0.0000', '0.0000', '98.6000', '98.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15586, '2022-10-04', 5439, 14878, 834, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '106.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15585, '2022-10-04', 5435, 14877, 834, 2308, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15688, '2022-10-19', 6664, 14976, 1367, 4122, '10.0000', '0.6197', '0.6197', '1.6000', '1.6000', '826.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8664, '2022-10-04', 6076, 8250, 835, 3024, '48.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1987.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8665, '2022-10-04', 6612, 8251, 835, 3772, '10.0000', '16.5600', '16.5600', '18.4000', '18.4000', '109.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8666, '2022-10-04', 5828, 8252, 836, 3660, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '94.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8667, '2022-10-04', 6212, 8253, 836, 3048, '2.0000', '6.6500', '6.6500', '6.6500', '6.6500', '95.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8668, '2022-10-04', 5975, 8254, 836, 2379, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8669, '2022-10-04', 5958, 8255, 836, 521, '2.0000', '16.1000', '16.1000', '16.1000', '16.1000', '31.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8670, '2022-10-04', 5624, 8256, 836, 3709, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8671, '2022-10-04', 5624, 8256, 836, 3623, '1.0000', '20.1000', '20.1000', '20.1000', '20.1000', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8672, '2022-10-04', 6738, 8257, 836, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '144.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8673, '2022-10-04', 6820, 8258, 836, 3615, '2.0000', '5.2982', '5.2982', '5.9000', '5.9000', '436.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8674, '2022-10-04', 6446, 8259, 836, 1449, '4.0000', '4.9000', '4.9000', '4.9000', '4.9000', '119.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8675, '2022-10-04', 6075, 8260, 836, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1635.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8676, '2022-10-04', 6076, 8261, 836, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1982.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8677, '2022-10-04', 5754, 8262, 836, 3505, '4.0000', '7.2000', '7.2000', '7.2000', '7.2000', '39.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8678, '2022-10-04', 6232, 8263, 836, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '92.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8679, '2022-10-04', 6376, 8264, 836, 2364, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2185.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8680, '2022-10-04', 6063, 8265, 836, 1046, '1.0000', '38.5000', '38.5000', '41.3000', '41.3000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8681, '2022-10-04', 5898, 8266, 836, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '224.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8682, '2022-10-04', 5427, 8267, 836, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '122.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8683, '2022-10-04', 6213, 8268, 836, 3049, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '135.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8684, '2022-10-04', 5967, 8269, 836, 3132, '2.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2567.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9286, '2022-10-04', 5967, 8837, 837, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2554.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9285, '2022-10-04', 5949, 8836, 837, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '547.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9284, '2022-10-04', 5725, 8835, 837, 1301, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9283, '2022-10-04', 5462, 8834, 837, 1289, '2.0000', '7.8000', '7.8000', '7.8000', '7.8000', '27.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9282, '2022-10-04', 5418, 8833, 837, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '215.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8813, '2022-10-04', 6843, 8387, 838, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '35.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8812, '2022-10-04', 6506, 8386, 838, 1846, '3.0000', '3.8800', '3.8800', '3.8800', '3.8800', '28.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8811, '2022-10-04', 6337, 8385, 838, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '12.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8810, '2022-10-04', 6331, 8384, 838, 1952, '10.0000', '1.4900', '1.4900', '1.4900', '1.4900', '85.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8809, '2022-10-04', 6178, 8383, 838, 3060, '4.0000', '1.6000', '1.6000', '2.2000', '2.2000', '611.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8808, '2022-10-04', 6082, 8382, 838, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '195.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8807, '2022-10-04', 5996, 8381, 838, 933, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '673.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8806, '2022-10-04', 5949, 8380, 838, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '564.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8805, '2022-10-04', 5729, 8379, 838, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '51.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8804, '2022-10-04', 5640, 8378, 838, NULL, '25.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8700, '2022-10-04', 6753, 8284, 839, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '224.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9287, '2022-10-05', 6089, 8838, 884, 1047, '2.0000', '73.5000', '73.5000', '73.5000', '73.5000', '30.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8707, '2022-10-04', 6753, 8291, 840, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '219.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8708, '2022-10-04', 6221, 8292, 841, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8709, '2022-10-04', 6074, 8293, 841, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1118.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8710, '2022-10-04', 6353, 8294, 841, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '327.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8711, '2022-10-04', 6285, 8295, 841, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '76.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8712, '2022-10-04', 6136, 8296, 841, 1324, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '146.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8713, '2022-10-04', 5519, 8297, 841, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '281.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8714, '2022-10-04', 6216, 8298, 841, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2655.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8715, '2022-10-04', 6219, 8299, 841, 3150, '-115.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8716, '2022-10-04', 6219, 8299, 841, NULL, '130.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-130.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8717, '2022-10-04', 5600, 8300, 841, 3051, '3.0000', '2.6233', '2.6233', '3.6000', '3.6000', '871.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8718, '2022-10-04', 6374, 8301, 841, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4305.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8719, '2022-10-04', 6075, 8302, 841, 3025, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1633.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8720, '2022-10-04', 6076, 8303, 841, 3024, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1980.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8721, '2022-10-04', 6205, 8304, 841, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '146.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8722, '2022-10-04', 5592, 8305, 841, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '19.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8723, '2022-10-04', 5593, 8306, 841, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8724, '2022-10-04', 6260, 8307, 841, 2314, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8725, '2022-10-04', 5967, 8308, 841, 3132, '3.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2550.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8726, '2022-10-04', 6590, 8309, 842, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '51.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8727, '2022-10-04', 6820, 8310, 842, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '435.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8728, '2022-10-04', 6696, 8311, 842, 2282, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '331.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8729, '2022-10-04', 6219, 8312, 842, 3150, '-130.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8730, '2022-10-04', 6219, 8312, 842, NULL, '133.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-133.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8731, '2022-10-04', 6825, 8313, 842, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '1012.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8732, '2022-10-04', 6152, 8314, 842, 1883, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '949.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8733, '2022-10-04', 5710, 8315, 843, 1300, '4.0000', '4.0200', '4.0200', '4.0200', '4.0200', '99.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8734, '2022-10-04', 5970, 8316, 843, 2310, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8735, '2022-10-04', 6234, 8317, 843, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '114.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8736, '2022-10-04', 6590, 8318, 843, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8737, '2022-10-04', 6608, 8319, 843, 3774, '1.0000', '12.9538', '12.9538', '14.3000', '14.3000', '164.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8738, '2022-10-04', 6609, 8320, 843, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '163.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8739, '2022-10-04', 6895, 8321, 843, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '131.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8740, '2022-10-04', 5640, 8322, 844, 3783, '-22.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8741, '2022-10-04', 5640, 8322, 844, NULL, '23.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9302, '2022-10-04', 6642, 8852, 845, 3414, '4.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '25.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9301, '2022-10-04', 6490, 8851, 845, 2109, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '25.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9300, '2022-10-04', 6365, 8850, 845, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '128.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9299, '2022-10-04', 6273, 8849, 845, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '68.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9298, '2022-10-04', 6264, 8848, 845, 3404, '4.0000', '6.0000', '6.0000', '6.8500', '6.8500', '104.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9303, '2022-10-04', 6205, 8853, 845, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '141.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10138, '2022-10-04', 5947, 9663, 846, 1967, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10137, '2022-10-04', 6897, 9662, 846, 3808, '1.0000', '3.8910', '3.8910', '4.8000', '4.8000', '198.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10136, '2022-10-04', 6845, 9661, 846, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10135, '2022-10-04', 6285, 9660, 846, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '72.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10134, '2022-10-04', 5926, 9659, 846, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10133, '2022-10-04', 5885, 9658, 846, 1103, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '78.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10132, '2022-10-04', 5418, 9657, 846, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '195.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10141, '2022-10-04', 6253, 9666, 931, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '9.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10129, '2022-10-04', 6273, 9654, 847, 3033, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10128, '2022-10-04', 5641, 9653, 847, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10127, '2022-10-04', 5640, 9652, 847, NULL, '26.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-26.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10126, '2022-10-04', 5640, 9652, 847, 3783, '-24.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10125, '2022-10-04', 5535, 9651, 847, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1181.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10124, '2022-10-04', 5515, 9650, 847, 3508, '4.0000', '4.6800', '4.6800', '5.5000', '5.5000', '142.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10130, '2022-10-04', 6353, 9655, 847, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '232.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8763, '2022-10-04', 6749, 8343, 848, 1945, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8764, '2022-10-04', 6141, 8344, 848, 2048, '2.0000', '15.9500', '15.9500', '15.9500', '15.9500', '18.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8765, '2022-10-04', 6753, 8345, 848, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '218.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8766, '2022-10-04', 6860, 8346, 849, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '240.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8767, '2022-10-04', 6753, 8347, 849, 3737, '3.0000', '72.8788', '72.8788', '85.0000', '85.0000', '215.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8768, '2022-10-04', 6220, 8348, 849, 2388, '15.0000', '5.0000', '5.0000', '5.0000', '5.0000', '239.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8769, '2022-10-04', 6228, 8349, 849, 2366, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8770, '2022-10-04', 6228, 8349, 849, 1954, '2.0000', '20.9500', '20.9500', '20.9500', '20.9500', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8800, '2022-10-04', 6225, 8375, 850, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '133.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8799, '2022-10-04', 6817, 8374, 850, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '55.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8798, '2022-10-04', 6359, 8373, 850, 3492, '10.0000', '5.6288', '5.6288', '2.5000', '2.5000', '201.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8797, '2022-10-04', 6219, 8372, 850, NULL, '138.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-138.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8796, '2022-10-04', 6219, 8372, 850, 3150, '-133.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8795, '2022-10-04', 6216, 8371, 850, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2645.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8794, '2022-10-04', 5853, 8370, 850, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '513.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8793, '2022-10-04', 5535, 8369, 850, 2277, '2.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1201.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8801, '2022-10-04', 5976, 8376, 850, 2358, '1.0000', '7.7000', '7.7000', '7.8000', '7.8000', '187.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8803, '2022-10-04', 5640, 8378, 838, 3783, '-23.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8802, '2022-10-04', 5576, 8377, 838, 1108, '1.0000', '8.7000', '8.7000', '8.7000', '8.7000', '50.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9121, '2022-10-05', 5731, 8678, 873, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9120, '2022-10-05', 6197, 8677, 872, 2573, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9261, '2022-10-04', 6825, 8812, 851, 3670, '100.0000', '46.2800', '46.2800', '1.0000', '1.0000', '907.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9260, '2022-10-04', 6813, 8811, 851, 1368, '11.0000', '13.0000', '13.0000', '13.0000', '13.0000', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9259, '2022-10-04', 6813, 8811, 851, 2037, '19.0000', '13.0000', '13.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9258, '2022-10-04', 6812, 8810, 851, 2036, '6.0000', '26.5000', '26.5000', '26.5000', '26.5000', '10.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9257, '2022-10-04', 6753, 8809, 851, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '210.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9256, '2022-10-04', 6747, 8808, 851, 3389, '10.0000', '12.9800', '12.9800', '12.9800', '12.9800', '5.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9255, '2022-10-04', 6691, 8807, 851, NULL, '40.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-40.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9254, '2022-10-04', 6674, 8806, 851, 1923, '24.0000', '4.4500', '4.4500', '4.4500', '4.4500', '273.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9253, '2022-10-04', 6645, 8805, 851, 1393, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '137.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9252, '2022-10-04', 6600, 8804, 851, 1351, '10.0000', '12.9000', '12.9000', '12.9000', '12.9000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9251, '2022-10-04', 6598, 8803, 851, 3741, '6.0000', '17.0100', '17.0100', '18.9000', '18.9000', '93.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9250, '2022-10-04', 6573, 8802, 851, 1964, '10.0000', '21.4000', '21.4000', '21.4000', '21.4000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9249, '2022-10-04', 6570, 8801, 851, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '59.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9248, '2022-10-04', 6570, 8801, 851, 3828, '59.0000', '7.2600', '7.2600', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9247, '2022-10-04', 6501, 8800, 851, 3662, '6.0000', '9.0000', '9.0000', '10.6000', '10.6000', '40.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9246, '2022-10-04', 6433, 8799, 851, 587, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9245, '2022-10-04', 6429, 8798, 851, 545, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '10.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9244, '2022-10-04', 6428, 8797, 851, 544, '10.0000', '16.5000', '16.5000', '16.5000', '16.5000', '32.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9243, '2022-10-04', 6401, 8796, 851, 1056, '2.0000', '37.3200', '37.3200', '37.3200', '37.3200', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9242, '2022-10-04', 6383, 8795, 851, 3064, '30.0000', '8.2000', '8.2000', '8.2000', '8.2000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9241, '2022-10-04', 6382, 8794, 851, 2285, '20.0000', '4.1000', '4.1000', '4.1000', '4.1000', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9240, '2022-10-04', 6377, 8793, 851, 1465, '4.0000', '55.0000', '55.0000', '55.0000', '55.0000', '22.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9239, '2022-10-04', 6370, 8792, 851, 3420, '5.0000', '24.5000', '24.5000', '25.3000', '25.3000', '5.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9238, '2022-10-04', 6353, 8791, 851, 1920, '50.0000', '3.7500', '3.7500', '3.7500', '3.7500', '252.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9237, '2022-10-04', 6352, 8790, 851, 1409, '50.0000', '2.5000', '2.5000', '2.5000', '2.5000', '164.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9236, '2022-10-04', 6346, 8789, 851, 1921, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '240.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9235, '2022-10-04', 6340, 8788, 851, 955, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9234, '2022-10-04', 6225, 8787, 851, 2250, '60.0000', '2.8000', '2.8000', '2.8000', '2.8000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9233, '2022-10-04', 6219, 8786, 851, NULL, '288.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-288.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9232, '2022-10-04', 6219, 8786, 851, 3150, '-138.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9231, '2022-10-04', 6216, 8785, 851, 3617, '150.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2490.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9230, '2022-10-04', 6215, 8784, 851, 2283, '4.0000', '30.6900', '30.6900', '30.6900', '30.6900', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9229, '2022-10-04', 6206, 8783, 851, 2029, '10.0000', '7.8400', '7.8400', '7.8400', '7.8400', '11.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9228, '2022-10-04', 6197, 8782, 851, 2573, '2.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9227, '2022-10-04', 6167, 8781, 851, 3661, '20.0000', '9.4000', '9.4000', '10.4000', '10.4000', '21.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9226, '2022-10-04', 6143, 8780, 851, 1121, '10.0000', '11.2000', '11.2000', '11.2000', '11.2000', '60.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9225, '2022-10-04', 6142, 8779, 851, 2354, '10.0000', '9.3000', '9.3000', '9.3000', '9.3000', '8.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9224, '2022-10-04', 6141, 8778, 851, 2048, '10.0000', '15.9500', '15.9500', '15.9500', '15.9500', '4.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9223, '2022-10-04', 6136, 8777, 851, 1324, '30.0000', '3.8000', '3.8000', '3.8000', '3.8000', '116.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9222, '2022-10-04', 6134, 8776, 851, 1120, '9.0000', '5.8000', '5.8000', '5.8000', '5.8000', '133.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9221, '2022-10-04', 6134, 8776, 851, 1880, '3.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9220, '2022-10-04', 6132, 8775, 851, 1879, '12.0000', '4.3500', '4.3500', '4.3500', '4.3500', '105.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9219, '2022-10-04', 6102, 8774, 851, 2291, '10.0000', '27.8000', '27.8000', '27.8000', '27.8000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9218, '2022-10-04', 6100, 8773, 851, 940, '10.0000', '18.0000', '18.0000', '18.0000', '18.0000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9217, '2022-10-04', 6088, 8772, 851, 3759, '5.0000', '24.0714', '24.0714', '26.8000', '26.8000', '50.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9216, '2022-10-04', 6084, 8771, 851, 661, '3.0000', '72.8000', '72.8000', '91.8900', '91.8900', '9.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9215, '2022-10-04', 6004, 8770, 851, 1935, '5.0000', '12.0000', '12.0000', '12.5400', '12.5400', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9214, '2022-10-04', 5980, 8769, 851, 3036, '3.0000', '11.5000', '11.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9213, '2022-10-04', 5979, 8768, 851, 2316, '20.0000', '6.0000', '6.0000', '6.0000', '6.0000', '461.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9212, '2022-10-04', 5968, 8767, 851, 1478, '10.0000', '10.7800', '10.7800', '10.7800', '10.7800', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9211, '2022-10-04', 5958, 8766, 851, 521, '20.0000', '16.1000', '16.1000', '16.1000', '16.1000', '11.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9210, '2022-10-04', 5946, 8765, 851, 929, '2.0000', '58.4000', '58.4000', '58.4000', '58.4000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9209, '2022-10-04', 5847, 8764, 851, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '455.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9208, '2022-10-04', 5827, 8763, 851, 3651, '10.0000', '5.9947', '5.9947', '6.6000', '6.6000', '124.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9207, '2022-10-04', 5792, 8762, 851, 1978, '5.0000', '30.2000', '30.2000', '36.9900', '36.9900', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9206, '2022-10-04', 5654, 8761, 851, 3062, '30.0000', '2.0000', '2.0000', '2.0000', '2.0000', '162.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9205, '2022-10-04', 5629, 8760, 851, 1429, '20.0000', '8.4000', '8.4000', '8.4000', '8.4000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9204, '2022-10-04', 5589, 8759, 851, 2370, '10.0000', '9.4000', '9.4000', '9.4000', '9.4000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9203, '2022-10-04', 5588, 8758, 851, 3075, '10.0000', '14.9600', '14.9600', '14.9600', '14.9600', '98.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9202, '2022-10-04', 5577, 8757, 851, 653, '2.0000', '81.2000', '81.2000', '81.2000', '81.2000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9201, '2022-10-04', 5549, 8756, 851, 2372, '12.0000', '8.2000', '8.2000', '8.2000', '8.2000', '297.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9200, '2022-10-04', 5548, 8755, 851, 2374, '12.0000', '2.9800', '2.9800', '2.9800', '2.9800', '266.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9199, '2022-10-04', 5519, 8754, 851, 3663, '20.0000', '3.3000', '3.3000', '3.3000', '3.3000', '261.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9262, '2022-10-04', 6860, 8813, 851, 3738, '24.0000', '15.4923', '15.4923', '18.0000', '18.0000', '214.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9122, '2022-10-05', 5740, 8679, 873, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '255.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8881, '2022-10-04', 5657, 8450, 852, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '263.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8882, '2022-10-04', 5986, 8451, 852, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '94.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8883, '2022-10-04', 6221, 8452, 852, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8884, '2022-10-04', 5970, 8453, 852, 2310, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8885, '2022-10-04', 6379, 8454, 852, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '142.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8886, '2022-10-04', 6074, 8455, 852, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1115.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8887, '2022-10-04', 5757, 8456, 852, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '101.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8888, '2022-10-04', 5532, 8457, 852, 2005, '1.0000', '56.1000', '56.1000', '60.7800', '60.7800', '29.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8889, '2022-10-04', 6883, 8458, 852, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '65.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8890, '2022-10-04', 6316, 8459, 852, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '101.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8891, '2022-10-04', 6843, 8460, 852, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '34.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8892, '2022-10-04', 5898, 8461, 852, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '222.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8893, '2022-10-04', 6205, 8462, 853, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '144.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8894, '2022-10-04', 6211, 8463, 854, 2305, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8895, '2022-10-04', 6860, 8464, 854, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '214.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10102, '2022-10-04', 6383, 9629, 855, 1093, '4.0000', '8.2000', '8.2000', '8.2000', '8.2000', '40.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10101, '2022-10-04', 6383, 9629, 855, 3064, '1.0000', '8.2000', '8.2000', '8.2000', '8.2000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10100, '2022-10-04', 6360, 9628, 855, 1908, '25.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10099, '2022-10-04', 6353, 9627, 855, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '232.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10098, '2022-10-04', 6334, 9626, 855, 3545, '2.0000', '14.5422', '14.5422', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10097, '2022-10-04', 6301, 9625, 855, 1339, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10096, '2022-10-04', 6167, 9624, 855, 3661, '3.0000', '9.4000', '9.4000', '10.4000', '10.4000', '17.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10095, '2022-10-04', 6141, 9623, 855, 2048, '4.0000', '15.9500', '15.9500', '15.9500', '15.9500', '4.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10094, '2022-10-04', 6134, 9622, 855, 1120, '3.0000', '5.8000', '5.8000', '5.8000', '5.8000', '129.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10093, '2022-10-04', 6132, 9621, 855, 1879, '3.0000', '4.3500', '4.3500', '4.3500', '4.3500', '100.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10092, '2022-10-04', 6083, 9620, 855, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '98.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10091, '2022-10-04', 6076, 9619, 855, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1938.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10090, '2022-10-04', 6075, 9618, 855, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1566.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10089, '2022-10-04', 5989, 9617, 855, 3057, '1.0000', '28.1000', '28.1000', '28.1000', '28.1000', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10088, '2022-10-04', 5986, 9616, 855, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '90.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10087, '2022-10-04', 5985, 9615, 855, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '61.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10086, '2022-10-04', 5971, 9614, 855, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '62.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10085, '2022-10-04', 5926, 9613, 855, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10084, '2022-10-04', 5898, 9612, 855, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '214.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10083, '2022-10-04', 5873, 9611, 855, 1307, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10082, '2022-10-04', 5853, 9610, 855, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '483.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10081, '2022-10-04', 5770, 9609, 855, 3079, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10080, '2022-10-04', 5740, 9608, 855, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '222.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10079, '2022-10-04', 5654, 9607, 855, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '149.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10078, '2022-10-04', 5584, 9606, 855, 2124, '2.0000', '17.5000', '17.5000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10077, '2022-10-04', 5549, 9605, 855, 2372, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '297.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10076, '2022-10-04', 5548, 9604, 855, 2374, '3.0000', '2.9800', '2.9800', '2.9800', '2.9800', '266.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10075, '2022-10-04', 5532, 9603, 855, 2005, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '25.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10074, '2022-10-04', 5422, 9602, 855, NULL, '6.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10073, '2022-10-04', 5422, 9602, 855, 3554, '-4.0000', '0.0000', '0.0000', '18.7000', '18.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10142, '2022-10-04', 6883, 9667, 931, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '57.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8962, '2022-10-04', 5809, 8528, 856, 390, '1.0000', '15.1000', '15.1000', '15.1000', '15.1000', '41.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8963, '2022-10-04', 5947, 8529, 857, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8964, '2022-10-04', 5472, 8530, 857, 2400, '-7.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8965, '2022-10-04', 5472, 8530, 857, NULL, '8.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8966, '2022-10-04', 5715, 8531, 858, 3023, '3.0000', '13.1400', '13.1400', '13.1400', '13.1400', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8967, '2022-10-04', 6100, 8532, 858, 940, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8968, '2022-10-04', 6825, 8533, 859, 3670, '5.0000', '46.2800', '46.2800', '1.0000', '1.0000', '907.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8969, '2022-10-04', 6374, 8534, 859, 3614, '5.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4300.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8970, '2022-10-04', 6216, 8535, 859, 3617, '5.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2490.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8971, '2022-10-04', 6007, 8536, 859, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '95.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8972, '2022-10-04', 6883, 8537, 860, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '63.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8973, '2022-10-04', 6333, 8538, 860, 3728, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '1.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8974, '2022-10-04', 6597, 8539, 860, 3740, '3.0000', '17.0100', '17.0100', '18.9000', '18.9000', '57.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8975, '2022-10-04', 6844, 8540, 860, 2084, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8976, '2022-10-04', 5949, 8541, 860, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '559.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8977, '2022-10-04', 6528, 8542, 860, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '284.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8978, '2022-10-04', 6763, 8543, 861, 1363, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '45.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8979, '2022-10-04', 6242, 8544, 862, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '80.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8980, '2022-10-04', 5623, 8545, 862, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '24.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8981, '2022-10-04', 5853, 8546, 862, 3620, '6.0000', '8.8287', '8.8287', '10.5000', '10.5000', '505.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8982, '2022-10-04', 5515, 8547, 862, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '162.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8983, '2022-10-04', 5797, 8548, 862, 3739, '1.0000', '17.0048', '17.0048', '18.9000', '18.9000', '98.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8984, '2022-10-04', 6273, 8549, 862, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '73.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8985, '2022-10-04', 5965, 8550, 862, 3787, '4.0000', '12.5145', '12.5145', '13.5000', '13.5000', '128.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8986, '2022-10-04', 5799, 8551, 862, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '118.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8987, '2022-10-04', 5970, 8552, 862, 2310, '4.0000', '9.1500', '9.1500', '12.8500', '12.8500', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (8988, '2022-10-04', 5715, 8553, 863, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9923, '2022-10-03', 6872, 9456, 864, 2598, '-67.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9922, '2022-10-03', 6840, 9455, 864, 1371, '1.0000', '5.2000', '5.2000', '5.2000', '5.2000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9921, '2022-10-03', 6360, 9454, 864, 1908, '3.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9920, '2022-10-03', 6257, 9453, 864, 1887, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9919, '2022-10-03', 6190, 9452, 864, 2126, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '52.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9918, '2022-10-03', 6106, 9451, 864, NULL, '3.0000', '1.5000', '1.5000', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9917, '2022-10-03', 6106, 9451, 864, 941, '2.0000', '1.5000', '1.5000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9916, '2022-10-03', 5980, 9450, 864, 3036, '1.0000', '11.5000', '11.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9915, '2022-10-03', 5640, 9449, 864, NULL, '26.0000', '11.1000', '11.1000', '11.1000', '11.1000', '-26.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9914, '2022-10-03', 5640, 9449, 864, 3783, '-25.0000', '11.1000', '11.1000', '11.1000', '11.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9924, '2022-10-03', 6872, 9456, 864, NULL, '70.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-70.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9000, '2022-10-04', 5982, 8562, 865, 1963, '1.0000', '7.9400', '7.9400', '10.5500', '10.5500', '138.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9001, '2022-10-04', 6890, 8563, 866, 3548, '10.0000', '3.5000', '3.5000', '4.6000', '4.6000', '506.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9002, '2022-10-04', 6053, 8564, 866, 1126, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9003, '2022-10-04', 6560, 8565, 866, 551, '1.0000', '41.6300', '41.6300', '48.0000', '48.0000', '11.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9004, '2022-10-04', 6345, 8566, 866, 1922, '5.0000', '3.6300', '3.6300', '4.4000', '4.4000', '95.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9005, '2022-10-04', 6538, 8567, 866, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9006, '2022-10-04', 5587, 8568, 866, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '185.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9007, '2022-10-04', 5949, 8569, 866, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '554.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9008, '2022-10-04', 6451, 8570, 866, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9009, '2022-10-04', 5509, 8571, 866, 1854, '4.0000', '6.8800', '6.8800', '6.8800', '6.8800', '6.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9010, '2022-10-04', 5992, 8572, 867, 3560, '-2.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9011, '2022-10-04', 5992, 8572, 867, NULL, '4.0000', '7.0000', '7.0000', '9.5000', '9.5000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9012, '2022-10-04', 6751, 8573, 867, NULL, '1.0000', '20.0000', '20.0000', '40.8300', '40.8300', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9013, '2022-10-04', 6590, 8574, 867, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9014, '2022-10-04', 5991, 8575, 867, 1079, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9015, '2022-10-04', 6386, 8576, 867, 2346, '3.0000', '3.2000', '3.2000', '3.2000', '3.2000', '293.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9016, '2022-10-04', 6095, 8577, 867, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '108.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9017, '2022-10-04', 5629, 8578, 867, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9018, '2022-10-04', 5601, 8579, 867, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9019, '2022-10-04', 5926, 8580, 867, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '79.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9020, '2022-10-04', 6353, 8581, 867, 1920, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '252.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9021, '2022-10-04', 5677, 8582, 867, 2351, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '205.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9022, '2022-10-04', 5881, 8583, 867, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '76.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9023, '2022-10-04', 6692, 8584, 867, 2446, '-3.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9024, '2022-10-04', 6692, 8584, 867, NULL, '5.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9025, '2022-10-04', 6838, 8585, 867, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '68.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9026, '2022-10-04', 5710, 8586, 867, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '98.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9027, '2022-10-04', 6605, 8587, 867, 2119, '2.0000', '5.8000', '5.8000', '5.8000', '5.8000', '27.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9028, '2022-10-05', 5733, 8588, 868, 3019, '3.0000', '20.0000', '20.0000', '20.0000', '20.0000', '44.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9029, '2022-10-05', 6075, 8589, 868, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1616.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9030, '2022-10-05', 6076, 8590, 868, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1963.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9031, '2022-10-05', 6232, 8591, 868, 3587, '3.0000', '6.4556', '6.4556', '7.1000', '7.1000', '89.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9032, '2022-10-05', 6122, 8592, 868, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '15.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9033, '2022-10-05', 6325, 8593, 868, 657, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9034, '2022-10-05', 6528, 8594, 868, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '279.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9035, '2022-10-05', 5770, 8595, 868, 3079, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9036, '2022-10-05', 6457, 8596, 868, 3607, '3.0000', '39.9000', '39.9000', '43.9000', '43.9000', '4.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9037, '2022-10-05', 5587, 8597, 868, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '183.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9038, '2022-10-05', 6110, 8598, 868, 1116, '2.0000', '34.1000', '34.1000', '39.5000', '39.5000', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9039, '2022-10-05', 6449, 8599, 868, 1942, '2.0000', '25.5000', '25.5000', '25.5000', '25.5000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9040, '2022-10-05', 6448, 8600, 868, 2265, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9041, '2022-10-05', 6895, 8601, 868, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '129.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9042, '2022-10-05', 5629, 8602, 868, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9043, '2022-10-05', 6572, 8603, 868, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '100.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9044, '2022-10-05', 6458, 8604, 868, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '107.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9045, '2022-10-05', 5657, 8605, 868, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '259.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9046, '2022-10-05', 5588, 8606, 868, 3075, '2.0000', '14.9600', '14.9600', '14.9600', '14.9600', '98.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9047, '2022-10-05', 6647, 8607, 868, 1353, '5.0000', '8.9000', '8.9000', '8.7500', '8.7500', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9048, '2022-10-05', 5853, 8608, 869, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '503.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9049, '2022-10-05', 5418, 8609, 869, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '215.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9281, '2022-10-04', 6074, 8832, 870, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1075.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9051, '2022-10-05', 5847, 8611, 871, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '455.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9052, '2022-10-05', 5440, 8612, 871, 2306, '2.0000', '3.4100', '3.4100', '3.4100', '3.4100', '279.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9053, '2022-10-05', 5976, 8613, 871, 2358, '2.0000', '7.7000', '7.7000', '7.8000', '7.8000', '185.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9054, '2022-10-05', 6381, 8614, 871, 1490, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9055, '2022-10-05', 6333, 8615, 871, 3728, '1.0000', '7.7000', '7.7000', '7.7000', '7.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9123, '2022-10-05', 5969, 8680, 873, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '101.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9124, '2022-10-05', 6154, 8681, 873, 3027, '1.0000', '39.1000', '39.1000', '39.1000', '39.1000', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9125, '2022-10-05', 5799, 8682, 873, 2066, '10.0000', '20.1300', '20.1300', '27.2600', '27.2600', '108.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9126, '2022-10-05', 6223, 8683, 873, 3551, '50.0000', '0.6000', '0.6000', '0.6000', '0.6000', '405.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9127, '2022-10-05', 5655, 8684, 874, 1114, '4.0000', '28.5000', '28.5000', '28.5000', '28.5000', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9128, '2022-10-05', 5715, 8685, 875, 3023, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9129, '2022-10-05', 5754, 8686, 875, 3505, '1.0000', '7.2000', '7.2000', '7.2000', '7.2000', '38.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9130, '2022-10-05', 6074, 8687, 876, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1075.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9131, '2022-10-05', 6717, 8688, 876, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '8.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9132, '2022-10-05', 6225, 8689, 876, 2250, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9133, '2022-10-05', 6174, 8690, 876, 3494, '2.0000', '3.1500', '3.1500', '3.1500', '3.1500', '18.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9134, '2022-10-05', 6603, 8691, 876, 3768, '4.0000', '6.1900', '6.1900', '6.9000', '6.9000', '75.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9135, '2022-10-05', 6738, 8692, 876, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '140.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9136, '2022-10-05', 6301, 8693, 876, 1339, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9137, '2022-10-05', 6075, 8694, 876, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1613.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9138, '2022-10-05', 6076, 8695, 876, 3024, '2.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1961.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9139, '2022-10-05', 6555, 8696, 876, 3736, '5.0000', '2.9700', '2.9700', '3.6000', '3.6000', '109.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9140, '2022-10-05', 6850, 8697, 876, 1292, '10.0000', '2.8900', '2.8900', '2.8900', '2.8900', '3.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9141, '2022-10-05', 5749, 8698, 876, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '96.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9142, '2022-10-05', 6205, 8699, 876, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '143.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9143, '2022-10-05', 5926, 8700, 876, 2072, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '74.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9144, '2022-10-05', 6890, 8701, 876, 3548, '3.0000', '3.5000', '3.5000', '4.6000', '4.6000', '503.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9145, '2022-10-05', 6083, 8702, 876, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '131.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9146, '2022-10-05', 6674, 8703, 876, 1923, '2.0000', '4.4500', '4.4500', '4.4500', '4.4500', '273.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9147, '2022-10-05', 6433, 8704, 876, 587, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9148, '2022-10-05', 6401, 8705, 876, 1056, '1.0000', '37.3200', '37.3200', '37.3200', '37.3200', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9149, '2022-10-05', 5580, 8706, 876, 3511, '5.0000', '7.2414', '7.2414', '8.4000', '8.4000', '95.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9150, '2022-10-05', 5792, 8707, 877, 1978, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9151, '2022-10-05', 6233, 8708, 877, 1276, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9152, '2022-10-05', 6649, 8709, 877, 996, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '58.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9153, '2022-10-05', 5885, 8710, 877, 1103, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '78.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9154, '2022-10-05', 5886, 8711, 877, 3665, '1.0000', '8.6000', '8.6000', '8.6000', '8.6000', '0.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9155, '2022-10-05', 5886, 8711, 877, 927, '1.0000', '8.6000', '8.6000', '8.6000', '8.6000', '128.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9156, '2022-10-05', 6267, 8712, 877, 1425, '2.0000', '7.1000', '7.1000', '8.0400', '8.0400', '2.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9157, '2022-10-05', 5618, 8713, 877, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '101.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9158, '2022-10-05', 5729, 8714, 877, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '49.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9159, '2022-10-05', 6275, 8715, 877, 2032, '2.0000', '4.7000', '4.7000', '4.7000', '4.7000', '297.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9160, '2022-10-05', 6274, 8716, 877, 1888, '1.0000', '19.8000', '19.8000', '19.8000', '19.8000', '37.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9161, '2022-10-05', 5677, 8717, 877, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '203.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9162, '2022-10-05', 5949, 8718, 877, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '550.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9163, '2022-10-05', 5799, 8719, 877, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '106.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9164, '2022-10-05', 6652, 8720, 877, 1414, '2.0000', '3.8000', '3.8000', '3.7900', '3.7900', '68.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9165, '2022-10-05', 5787, 8721, 877, 1470, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9166, '2022-10-05', 6690, 8722, 877, 1857, '2.0000', '8.2500', '8.2500', '8.2500', '8.2500', '2.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9167, '2022-10-05', 5749, 8723, 877, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '95.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9168, '2022-10-05', 6560, 8724, 877, 551, '1.0000', '41.6300', '41.6300', '41.6300', '41.6300', '10.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9169, '2022-10-05', 6883, 8725, 877, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '61.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9170, '2022-10-05', 6408, 8726, 877, 2978, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9171, '2022-10-05', 6293, 8727, 877, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '180.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9172, '2022-10-05', 5968, 8728, 877, NULL, '1.0000', '10.7800', '10.7800', '10.7800', '10.7800', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9173, '2022-10-05', 6205, 8729, 877, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '142.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9174, '2022-10-05', 6368, 8730, 877, 1091, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '14.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9175, '2022-10-05', 5984, 8731, 877, 3483, '2.0000', '19.5300', '19.5300', '22.9100', '22.9100', '72.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9176, '2022-10-05', 5904, 8732, 877, 1308, '2.0000', '24.7000', '24.7000', '24.7000', '24.7000', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9177, '2022-10-05', 6292, 8733, 877, 1489, '2.0000', '7.8000', '7.8000', '7.8000', '7.8000', '19.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9178, '2022-10-05', 6850, 8734, 877, 1292, '3.0000', '2.8900', '2.8900', '2.8900', '2.8900', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9179, '2022-10-05', 6850, 8734, 877, NULL, '1.0000', '2.8900', '2.8900', '2.8900', '2.8900', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9180, '2022-10-05', 5696, 8735, 877, 514, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '62.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9181, '2022-10-05', 5651, 8736, 877, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '65.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9182, '2022-10-05', 6370, 8737, 877, NULL, '1.0000', '24.5000', '24.5000', '25.3000', '25.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9183, '2022-10-05', 6075, 8738, 877, 3025, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1607.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9184, '2022-10-05', 6076, 8739, 877, 3024, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1955.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9185, '2022-10-05', 5532, 8740, 877, 2005, '2.0000', '56.1000', '56.1000', '60.7800', '60.7800', '25.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9186, '2022-10-05', 6242, 8741, 877, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '78.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9187, '2022-10-05', 6253, 8742, 877, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '10.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9188, '2022-10-05', 6301, 8743, 877, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9189, '2022-10-05', 6366, 8744, 877, 1418, '1.0000', '55.1000', '55.1000', '85.7800', '85.7800', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9190, '2022-10-05', 6415, 8745, 877, 2056, '2.0000', '4.6200', '4.6200', '4.6200', '4.6200', '169.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9191, '2022-10-05', 6457, 8746, 877, 3607, '2.0000', '39.9000', '39.9000', '43.9000', '43.9000', '2.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9192, '2022-10-05', 6528, 8747, 877, 1899, '8.0000', '5.9800', '5.9800', '5.9800', '5.9800', '271.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9193, '2022-10-05', 6609, 8748, 877, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '161.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9194, '2022-10-05', 6896, 8749, 877, 3807, '2.0000', '28.8100', '28.8100', '32.1000', '32.1000', '71.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9195, '2022-10-05', 6273, 8750, 878, 3033, '3.0000', '26.0000', '26.0000', '26.0000', '26.0000', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9196, '2022-10-05', 6690, 8751, 879, 1857, '2.0000', '8.2500', '8.2500', '8.2500', '8.2500', '0.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9197, '2022-10-05', 5715, 8752, 880, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9304, '2022-10-04', 6570, 8854, 881, 3828, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9263, '2022-10-04', 6877, 8814, 851, 3134, '12.0000', '12.6000', '12.6000', '14.0000', '14.0000', '38.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9264, '2022-10-05', 5949, 8815, 882, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '547.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9265, '2022-10-05', 5948, 8816, 882, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '304.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9266, '2022-10-05', 6650, 8817, 882, 1146, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '32.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9267, '2022-10-05', 6225, 8818, 882, 2250, '3.0000', '2.8000', '2.8000', '2.8000', '2.8000', '65.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9268, '2022-10-05', 5991, 8819, 882, 1079, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9269, '2022-10-05', 5971, 8820, 882, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '63.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9270, '2022-10-05', 5751, 8821, 882, 1112, '4.0000', '10.8000', '10.8000', '10.8000', '10.8000', '129.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9271, '2022-10-05', 5731, 8822, 882, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9272, '2022-10-05', 6273, 8823, 883, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '68.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9273, '2022-10-05', 6895, 8824, 883, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '127.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9274, '2022-10-05', 6353, 8825, 883, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '242.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9275, '2022-10-05', 6491, 8826, 883, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '177.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9276, '2022-10-05', 5982, 8827, 883, 1963, '2.0000', '7.9400', '7.9400', '10.5500', '10.5500', '136.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9277, '2022-10-05', 6420, 8828, 883, 2557, '1.0000', '15.6000', '15.6000', '15.6000', '15.6000', '48.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9278, '2022-10-05', 6019, 8829, 883, 1947, '5.0000', '2.5300', '2.5300', '2.5300', '2.5300', '217.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9279, '2022-10-05', 6218, 8830, 883, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '65.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9280, '2022-10-05', 5983, 8831, 883, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '174.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9288, '2022-10-05', 6391, 8839, 884, 762, '5.0000', '3.3200', '3.3200', '3.3200', '3.3200', '64.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9289, '2022-10-05', 6437, 8840, 884, 1275, '4.0000', '18.1000', '18.1000', '18.1000', '18.1000', '14.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9290, '2022-10-05', 5992, 8841, 884, 3560, '-4.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9291, '2022-10-05', 5992, 8841, 884, NULL, '7.0000', '7.0000', '7.0000', '9.5000', '9.5000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9292, '2022-10-05', 6765, 8842, 884, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '41.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9293, '2022-10-05', 6486, 8843, 884, 1268, '5.0000', '18.0000', '18.0000', '18.0000', '18.0000', '54.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9294, '2022-10-05', 5805, 8844, 884, 1305, '5.0000', '9.0000', '9.0000', '9.0000', '9.0000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9295, '2022-10-05', 6342, 8845, 884, 957, '2.0000', '58.1000', '58.1000', '58.1000', '58.1000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9296, '2022-10-05', 5605, 8846, 884, 907, '3.0000', '21.5000', '21.5000', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9297, '2022-10-05', 5814, 8847, 884, 1277, '5.0000', '24.0900', '24.0900', '24.0900', '24.0900', '93.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13417, '2022-10-04', 6596, 12787, 885, 1349, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13416, '2022-10-04', 6513, 12786, 885, 662, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13415, '2022-10-04', 6391, 12785, 885, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '50.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13414, '2022-10-04', 6075, 12784, 885, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1306.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13418, '2022-10-04', 6600, 12788, 885, 1351, '1.0000', '12.9000', '12.9000', '12.9000', '12.9000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9310, '2022-10-05', 6273, 8860, 886, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9311, '2022-10-05', 6220, 8861, 886, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '234.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9312, '2022-10-05', 6838, 8862, 887, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '67.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9313, '2022-10-05', 6378, 8863, 888, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9486, '2022-10-05', 6838, 9029, 889, 2996, '3.0000', '17.7100', '17.7100', '17.7100', '17.7100', '64.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9485, '2022-10-05', 6750, 9028, 889, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '39.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9484, '2022-10-05', 6692, 9027, 889, NULL, '11.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9483, '2022-10-05', 6692, 9027, 889, 2446, '-5.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9482, '2022-10-05', 6674, 9026, 889, 1923, '4.0000', '4.4500', '4.4500', '4.4500', '4.4500', '269.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9481, '2022-10-05', 6592, 9025, 889, 2373, '5.0000', '3.1800', '3.1800', '3.1800', '3.1800', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9480, '2022-10-05', 6506, 9024, 889, 1846, '3.0000', '3.8800', '3.8800', '3.8800', '3.8800', '25.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9479, '2022-10-05', 6381, 9023, 889, 1490, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9478, '2022-10-05', 6375, 9022, 889, 3065, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9477, '2022-10-05', 6361, 9021, 889, 3725, '50.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4354.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9476, '2022-10-05', 6294, 9020, 889, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '39.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9475, '2022-10-05', 6285, 9019, 889, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '72.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9474, '2022-10-05', 6234, 9018, 889, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '113.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9473, '2022-10-05', 6193, 9017, 889, 2115, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '5.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9472, '2022-10-05', 6134, 9016, 889, 1120, '4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '129.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9471, '2022-10-05', 6121, 9015, 889, 3631, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9470, '2022-10-05', 6088, 9014, 889, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '49.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9469, '2022-10-05', 6083, 9013, 889, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '111.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9468, '2022-10-05', 5986, 9012, 889, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '92.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9467, '2022-10-05', 5775, 9011, 889, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '70.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9466, '2022-10-05', 5651, 9010, 889, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '63.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9465, '2022-10-05', 5641, 9009, 889, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '64.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9464, '2022-10-05', 5440, 9008, 889, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '274.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9487, '2022-10-05', 6897, 9030, 889, 3808, '1.0000', '3.8910', '3.8910', '4.8000', '4.8000', '198.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9373, '2022-10-04', 6076, 8921, 890, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1943.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9372, '2022-10-04', 6075, 8920, 890, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1571.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9371, '2022-10-04', 5991, 8919, 890, 1079, '4.0000', '37.7000', '37.7000', '37.7000', '37.7000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9370, '2022-10-04', 5983, 8918, 890, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9369, '2022-10-04', 5977, 8917, 890, 2360, '6.0000', '7.5000', '7.5000', '7.8000', '7.8000', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9368, '2022-10-04', 5949, 8916, 890, 1311, '25.0000', '5.2000', '5.2000', '7.3000', '7.3000', '522.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9367, '2022-10-04', 5947, 8915, 890, 1967, '4.0000', '13.8000', '13.8000', '13.8000', '13.8000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9366, '2022-10-04', 5847, 8914, 890, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '435.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9365, '2022-10-04', 5580, 8913, 890, 3511, '6.0000', '7.2414', '7.2414', '8.4000', '8.4000', '89.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9364, '2022-10-04', 5528, 8912, 890, 3800, '6.0000', '13.2556', '13.2556', '16.6000', '16.6000', '55.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9374, '2022-10-04', 6096, 8922, 890, 2990, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9349, '2022-10-05', 6328, 8898, 891, 3817, '4.0000', '24.4100', '24.4100', '26.9000', '26.9000', '60.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9350, '2022-10-05', 6205, 8899, 891, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '139.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9351, '2022-10-05', 5585, 8900, 891, 2973, '4.0000', '23.4000', '23.4000', '23.4000', '23.4000', '35.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9352, '2022-10-05', 6528, 8901, 891, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '261.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9353, '2022-10-05', 5562, 8902, 891, 3488, '3.0000', '47.7700', '47.7700', '58.9000', '58.9000', '15.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9354, '2022-10-05', 5749, 8903, 891, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '90.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9355, '2022-10-05', 6082, 8904, 891, 3032, '8.0000', '6.9000', '6.9000', '6.9000', '6.9000', '187.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9356, '2022-10-05', 6277, 8905, 891, 3649, '4.0000', '24.2816', '24.2816', '27.5000', '27.5000', '16.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9357, '2022-10-05', 6375, 8906, 891, 3065, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9358, '2022-10-05', 5500, 8907, 891, 3753, '1.0000', '41.3100', '41.3100', '46.3000', '46.3000', '0.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9359, '2022-10-05', 5500, 8907, 891, 3751, '4.0000', '41.3100', '41.3100', '46.3000', '46.3000', '20.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9360, '2022-10-05', 5976, 8908, 891, 2358, '10.0000', '7.7000', '7.7000', '7.8000', '7.8000', '175.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9361, '2022-10-05', 6383, 8909, 891, 1093, '6.0000', '8.2000', '8.2000', '8.2000', '8.2000', '50.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9362, '2022-10-05', 5967, 8910, 891, 3132, '8.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2546.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9363, '2022-10-05', 5515, 8911, 891, 3508, '10.0000', '4.6800', '4.6800', '5.5000', '5.5000', '152.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9375, '2022-10-05', 5689, 8923, 892, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '70.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9376, '2022-10-05', 6360, 8924, 892, 1908, '7.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9377, '2022-10-05', 6360, 8924, 892, 1376, '9.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9378, '2022-10-05', 6360, 8924, 892, 1176, '9.0000', '2.5000', '2.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9379, '2022-10-05', 6136, 8925, 892, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '106.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9380, '2022-10-05', 6615, 8926, 892, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9381, '2022-10-05', 5949, 8927, 892, 1311, '25.0000', '5.2000', '5.2000', '7.3000', '7.3000', '497.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9382, '2022-10-05', 6409, 8928, 892, 1422, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '145.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9383, '2022-10-05', 6408, 8929, 892, 2978, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9384, '2022-10-05', 5792, 8930, 892, 1978, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9385, '2022-10-05', 6246, 8931, 892, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9386, '2022-10-05', 6158, 8932, 892, 3653, '4.0000', '9.8000', '9.8000', '10.8000', '10.8000', '59.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9387, '2022-10-05', 5453, 8933, 892, 3652, '4.0000', '8.3000', '8.3000', '9.2000', '9.2000', '94.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9388, '2022-10-05', 6368, 8934, 892, 1091, '4.0000', '12.8400', '12.8400', '12.8400', '12.8400', '10.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9389, '2022-10-05', 5677, 8935, 892, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '199.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9390, '2022-10-05', 6010, 8936, 892, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '338.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9391, '2022-10-05', 5853, 8937, 892, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '501.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9392, '2022-10-05', 6316, 8938, 892, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '100.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9393, '2022-10-05', 6205, 8939, 892, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '137.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9394, '2022-10-05', 6691, 8940, 892, 3813, '-40.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9395, '2022-10-05', 6691, 8940, 892, NULL, '50.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-50.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9396, '2022-10-05', 6283, 8941, 893, 2335, '6.0000', '5.1000', '5.1000', '6.0200', '6.0200', '57.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9397, '2022-10-05', 5715, 8942, 894, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9422, '2022-10-03', 6429, 8967, 895, 545, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9421, '2022-10-03', 6428, 8966, 895, 544, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '31.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9420, '2022-10-03', 6218, 8965, 895, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '64.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9419, '2022-10-03', 6205, 8964, 895, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '136.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9418, '2022-10-03', 6158, 8963, 895, 3653, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '57.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9417, '2022-10-03', 6154, 8962, 895, 3027, '1.0000', '39.1000', '39.1000', '39.1000', '39.1000', '78.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9416, '2022-10-03', 6074, 8961, 895, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1070.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9415, '2022-10-03', 5839, 8960, 895, 2258, '1.0000', '19.0000', '19.0000', '19.0000', '19.0000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9414, '2022-10-03', 5828, 8959, 895, 3660, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '93.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9413, '2022-10-03', 5624, 8958, 895, 3709, '2.0000', '20.1000', '20.1000', '20.1000', '20.1000', '1.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9412, '2022-10-03', 5497, 8957, 895, 2288, '2.0000', '5.6000', '5.6000', '5.6000', '5.6000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9411, '2022-10-03', 5456, 8956, 895, 2330, '2.0000', '10.6000', '10.6000', '10.6000', '10.6000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9423, '2022-10-03', 6668, 8968, 895, 1067, '1.0000', '8.9000', '8.9000', '8.9000', '8.9000', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9424, '2022-10-05', 5841, 8969, 896, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '107.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9425, '2022-10-05', 5677, 8970, 896, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '196.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9426, '2022-10-05', 5958, 8971, 896, 521, '2.0000', '16.1000', '16.1000', '16.1000', '16.1000', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9427, '2022-10-05', 5971, 8972, 896, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '62.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9428, '2022-10-05', 6053, 8973, 896, 1126, '1.0000', '14.9000', '14.9000', '16.3700', '16.3700', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9429, '2022-10-05', 6872, 8974, 896, 2598, '-55.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9430, '2022-10-05', 6872, 8974, 896, NULL, '60.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-60.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9449, '2022-10-03', 6652, 8993, 897, 1414, '1.0000', '3.8000', '3.8000', '3.7900', '3.7900', '67.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9448, '2022-10-03', 6619, 8992, 897, 3412, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9447, '2022-10-03', 6377, 8991, 897, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '21.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9446, '2022-10-03', 6360, 8990, 897, 1176, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9445, '2022-10-03', 6351, 8989, 897, 1344, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9444, '2022-10-03', 6350, 8988, 897, 1343, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9443, '2022-10-03', 6349, 8987, 897, 1342, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9442, '2022-10-03', 5749, 8986, 897, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '89.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9441, '2022-10-03', 5471, 8985, 897, 902, '2.0000', '5.0400', '5.0400', '5.9800', '5.9800', '94.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9450, '2022-10-03', 6832, 8994, 897, 1381, '20.0000', '2.6000', '2.6000', '2.6000', '2.6000', '336.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9461, '2022-10-03', 6218, 9005, 898, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '63.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9460, '2022-10-03', 5947, 9004, 898, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9462, '2022-10-03', 6590, 9006, 898, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9454, '2022-10-05', 6828, 8998, 899, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '16.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9455, '2022-10-05', 6406, 8999, 899, 542, '2.0000', '26.1800', '26.1800', '26.1800', '26.1800', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9456, '2022-10-05', 6883, 9000, 899, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '59.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9457, '2022-10-05', 5947, 9001, 900, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9463, '2022-10-05', 6635, 9007, 901, 2051, '2.0000', '11.8000', '11.8000', '13.1000', '13.1000', '1.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9459, '2022-10-05', 6146, 9003, 902, 1487, '1.0000', '33.0000', '33.0000', '33.0000', '33.0000', '73.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9488, '2022-10-05', 6557, 9031, 889, 3735, '3.0000', '8.0659', '8.0659', '9.6000', '9.6000', '118.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10238, '2022-10-05', 6835, 9757, 903, 289, '4.0000', '3.6000', '3.6000', '3.6000', '3.6000', '22.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10237, '2022-10-05', 6835, 9757, 903, 326, '6.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10236, '2022-10-05', 6778, 9756, 903, 2052, '6.0000', '19.3400', '19.3400', '26.1800', '26.1800', '136.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10235, '2022-10-05', 6749, 9755, 903, 1945, '2.0000', '40.0000', '40.0000', '40.0000', '40.0000', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10234, '2022-10-05', 6692, 9754, 903, NULL, '16.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10233, '2022-10-05', 6692, 9754, 903, 2446, '-11.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10232, '2022-10-05', 6564, 9753, 903, 2004, '2.0000', '81.4000', '81.4000', '81.4000', '81.4000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10231, '2022-10-05', 6563, 9752, 903, 3763, '2.0000', '61.1590', '61.1590', '67.0000', '67.0000', '8.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10230, '2022-10-05', 6555, 9751, 903, 3736, '10.0000', '2.9700', '2.9700', '3.6000', '3.6000', '89.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10229, '2022-10-05', 6490, 9750, 903, 2109, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '20.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10228, '2022-10-05', 6458, 9749, 903, 765, '5.0000', '22.9000', '22.9000', '22.9000', '22.9000', '102.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10227, '2022-10-05', 6383, 9748, 903, 1093, '10.0000', '8.2000', '8.2000', '8.2000', '8.2000', '40.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10226, '2022-10-05', 6381, 9747, 903, 1490, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10225, '2022-10-05', 6350, 9746, 903, 1343, '6.0000', '6.0000', '6.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10224, '2022-10-05', 6323, 9745, 903, 3764, '2.0000', '35.4980', '35.4980', '39.0000', '39.0000', '17.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10223, '2022-10-05', 6297, 9744, 903, 1855, '5.0000', '10.4000', '10.4000', '10.4000', '10.4000', '35.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10222, '2022-10-05', 6243, 9743, 903, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '16.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10221, '2022-10-05', 6217, 9742, 903, 946, '7.0000', '2.8800', '2.8800', '2.8800', '2.8800', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10220, '2022-10-05', 6210, 9741, 903, 3050, '6.0000', '7.1000', '7.1000', '7.1000', '7.1000', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10219, '2022-10-05', 6171, 9740, 903, 1327, '6.0000', '8.8000', '8.8000', '8.8000', '8.8000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10218, '2022-10-05', 6158, 9739, 903, 3653, '10.0000', '9.8000', '9.8000', '10.8000', '10.8000', '47.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10217, '2022-10-05', 6064, 9738, 903, 1380, '6.0000', '4.7000', '4.7000', '4.7000', '4.7000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10216, '2022-10-05', 5982, 9737, 903, 1963, '10.0000', '7.9400', '7.9400', '10.5500', '10.5500', '126.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10215, '2022-10-05', 5778, 9736, 903, 3822, '5.0000', '16.3911', '16.3911', '18.0000', '18.0000', '95.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10214, '2022-10-05', 5757, 9735, 903, 1115, '2.0000', '40.0000', '40.0000', '42.0000', '42.0000', '99.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10213, '2022-10-05', 5754, 9734, 903, 3505, '10.0000', '7.2000', '7.2000', '7.2000', '7.2000', '28.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10212, '2022-10-05', 5619, 9733, 903, 3509, '6.0000', '6.6300', '6.6300', '7.8000', '7.8000', '91.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10239, '2022-10-05', 6895, 9758, 903, 3786, '10.0000', '9.7900', '9.7900', '10.8000', '10.8000', '112.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10329, '2022-10-06', 6753, 9843, 937, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '202.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10299, '2022-10-05', 6612, 9815, 904, 3772, '6.0000', '16.5600', '16.5600', '18.4000', '18.4000', '99.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10298, '2022-10-05', 6597, 9814, 904, 3740, '3.0000', '17.0100', '17.0100', '18.9000', '18.9000', '52.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10297, '2022-10-05', 6572, 9813, 904, 2993, '4.0000', '17.0000', '17.0000', '17.0000', '17.0000', '92.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10296, '2022-10-05', 6442, 9812, 904, 3804, '1.0000', '75.1600', '75.1600', '83.6000', '83.6000', '9.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10295, '2022-10-05', 6339, 9811, 904, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10294, '2022-10-05', 6337, 9810, 904, 539, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '10.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10293, '2022-10-05', 6333, 9809, 904, 2361, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '103.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10292, '2022-10-05', 6288, 9808, 904, 1416, '5.0000', '56.0000', '56.0000', '66.5200', '66.5200', '72.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10291, '2022-10-05', 6214, 9807, 904, 750, '6.0000', '2.8000', '2.8000', '2.8000', '2.8000', '131.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10290, '2022-10-05', 6201, 9806, 904, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10289, '2022-10-05', 6188, 9805, 904, 3080, '6.0000', '7.0000', '7.0000', '7.0000', '7.0000', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10288, '2022-10-05', 6185, 9804, 904, 3401, '5.0000', '7.8500', '7.8500', '7.8500', '7.8500', '17.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10287, '2022-10-05', 6010, 9803, 904, 3621, '5.0000', '15.4888', '15.4888', '16.5000', '16.5000', '322.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10286, '2022-10-05', 5853, 9802, 904, 3620, '10.0000', '8.8287', '8.8287', '10.5000', '10.5000', '483.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10285, '2022-10-05', 5813, 9801, 904, 663, '10.0000', '4.9000', '4.9000', '4.9000', '4.9000', '19.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10284, '2022-10-05', 5792, 9800, 904, 1036, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '29.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10283, '2022-10-05', 5792, 9800, 904, 1978, '5.0000', '30.2000', '30.2000', '36.9900', '36.9900', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10282, '2022-10-05', 5654, 9799, 904, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10281, '2022-10-05', 5573, 9798, 904, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '991.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10280, '2022-10-05', 5562, 9797, 904, 3488, '3.0000', '47.7700', '47.7700', '58.9000', '58.9000', '12.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10330, '2022-10-06', 6818, 9844, 938, 3067, '4.0000', '3.5000', '3.5000', '3.5000', '3.5000', '212.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9539, '2022-10-05', 5947, 9080, 905, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10327, '2022-10-05', 6839, 9841, 906, 3769, '10.0000', '4.9100', '4.9100', '5.5000', '5.5000', '58.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10326, '2022-10-05', 6668, 9840, 906, 1067, '6.0000', '8.9000', '8.9000', '8.9000', '8.9000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10325, '2022-10-05', 6599, 9839, 906, 3742, '3.0000', '17.0015', '17.0015', '18.9000', '18.9000', '55.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10324, '2022-10-05', 6585, 9838, 906, 1064, '2.0000', '46.9900', '46.9900', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10323, '2022-10-05', 6448, 9837, 906, 2265, '5.0000', '15.0000', '15.0000', '15.0000', '15.0000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10322, '2022-10-05', 6390, 9836, 906, 1910, '1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10321, '2022-10-05', 6375, 9835, 906, 2304, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '168.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10320, '2022-10-05', 6375, 9835, 906, 3065, '4.0000', '3.5200', '3.5200', '3.5200', '3.5200', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10319, '2022-10-05', 6361, 9834, 906, 3725, '50.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4304.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10318, '2022-10-05', 6332, 9833, 906, 2560, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '22.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10317, '2022-10-05', 6297, 9832, 906, 1855, '6.0000', '10.4000', '10.4000', '10.4000', '10.4000', '35.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10316, '2022-10-05', 6205, 9831, 906, 3026, '5.0000', '38.5000', '38.5000', '38.5000', '38.5000', '130.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10315, '2022-10-05', 6173, 9830, 906, 753, '6.0000', '3.1500', '3.1500', '3.1500', '3.1500', '14.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10314, '2022-10-05', 6125, 9829, 906, 3053, '6.0000', '10.5000', '10.5000', '12.5000', '12.5000', '148.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10313, '2022-10-05', 6065, 9828, 906, 527, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10312, '2022-10-05', 5976, 9827, 906, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10311, '2022-10-05', 5949, 9826, 906, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '477.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10310, '2022-10-05', 5926, 9825, 906, 2072, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10309, '2022-10-05', 5906, 9824, 906, 2046, '3.0000', '15.8200', '15.8200', '15.8200', '15.8200', '24.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10308, '2022-10-05', 5906, 9824, 906, 2118, '2.0000', '15.8200', '15.8200', '15.8200', '15.8200', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10307, '2022-10-05', 5881, 9823, 906, 3427, '3.0000', '13.5000', '13.5000', '14.8500', '14.8500', '72.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10306, '2022-10-05', 5784, 9822, 906, 3583, '1.0000', '82.6875', '82.6875', '95.7600', '95.7600', '8.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10305, '2022-10-05', 5779, 9821, 906, 3821, '6.0000', '14.6863', '14.6863', '16.0000', '16.0000', '91.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10304, '2022-10-05', 5689, 9820, 906, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '53.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10303, '2022-10-05', 5641, 9819, 906, 2319, '3.0000', '31.1000', '31.1000', '31.1000', '31.1000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10302, '2022-10-05', 5586, 9818, 906, 3135, '5.0000', '28.9000', '28.9000', '28.9000', '28.9000', '203.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10301, '2022-10-05', 5535, 9817, 906, 2277, '20.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1181.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10300, '2022-10-05', 5487, 9816, 906, 3816, '6.0000', '17.1500', '17.1500', '18.9000', '18.9000', '194.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10328, '2022-10-06', 5947, 9842, 936, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '27.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9885, '2022-10-05', 6872, 9420, 907, NULL, '70.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-70.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9884, '2022-10-05', 6872, 9420, 907, 2598, '-60.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9883, '2022-10-05', 6854, 9419, 907, 1966, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9882, '2022-10-05', 6835, 9418, 907, 326, '10.0000', '3.6000', '3.6000', '3.6000', '3.6000', '5.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9881, '2022-10-05', 6823, 9417, 907, 1488, '5.0000', '10.7800', '10.7800', '10.7800', '10.7800', '57.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9880, '2022-10-05', 6819, 9416, 907, 1929, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9879, '2022-10-05', 6813, 9415, 907, 1368, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9878, '2022-10-05', 6771, 9414, 907, 2554, '1.0000', '19.2000', '19.2000', '19.2000', '19.2000', '2.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9877, '2022-10-05', 6695, 9413, 907, 3044, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '80.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9876, '2022-10-05', 6682, 9412, 907, 1919, '10.0000', '10.0000', '10.0000', '10.0000', '10.0000', '58.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9875, '2022-10-05', 6681, 9411, 907, 2983, '5.0000', '10.0000', '10.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9874, '2022-10-05', 6678, 9410, 907, 1461, '5.0000', '14.3000', '14.3000', '14.3000', '14.3000', '19.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9873, '2022-10-05', 6677, 9409, 907, 1274, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '269.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9872, '2022-10-05', 6650, 9408, 907, 1146, '4.0000', '5.7000', '5.7000', '5.7000', '5.7000', '28.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9871, '2022-10-05', 6647, 9407, 907, 1353, '2.0000', '8.9000', '8.9000', '8.7500', '8.7500', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9870, '2022-10-05', 6631, 9406, 907, 995, '4.0000', '7.7000', '7.7000', '7.7000', '7.7000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9869, '2022-10-05', 6612, 9405, 907, 3772, '2.0000', '16.5600', '16.5600', '18.4000', '18.4000', '99.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9868, '2022-10-05', 6609, 9404, 907, 3773, '3.0000', '11.6821', '11.6821', '12.7000', '12.7000', '158.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9867, '2022-10-05', 6605, 9403, 907, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '17.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9866, '2022-10-05', 6599, 9402, 907, 3742, '2.0000', '17.0015', '17.0015', '18.9000', '18.9000', '55.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9865, '2022-10-05', 6598, 9401, 907, 3741, '2.0000', '17.0100', '17.0100', '18.9000', '18.9000', '91.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9864, '2022-10-05', 6597, 9400, 907, 3740, '2.0000', '17.0100', '17.0100', '18.9000', '18.9000', '52.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9863, '2022-10-05', 6596, 9399, 907, 1349, '2.0000', '18.9000', '18.9000', '18.9000', '18.9000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9862, '2022-10-05', 6581, 9398, 907, 3805, '2.0000', '10.3500', '10.3500', '11.5000', '11.5000', '48.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9861, '2022-10-05', 6573, 9397, 907, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9860, '2022-10-05', 6572, 9396, 907, 2993, '4.0000', '17.0000', '17.0000', '17.0000', '17.0000', '92.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9859, '2022-10-05', 6528, 9395, 907, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '251.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9858, '2022-10-05', 6510, 9394, 907, 2079, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9857, '2022-10-05', 6464, 9393, 907, 1160, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9856, '2022-10-05', 6436, 9392, 907, 3589, '2.0000', '3.5319', '3.5319', '5.8000', '5.8000', '28.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9855, '2022-10-05', 6423, 9391, 907, 2083, '4.0000', '6.5000', '6.5000', '6.5000', '6.5000', '31.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9854, '2022-10-05', 6415, 9390, 907, 2056, '5.0000', '4.6200', '4.6200', '4.6200', '4.6200', '164.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9853, '2022-10-05', 6408, 9389, 907, 2068, '15.0000', '4.6700', '4.6700', '6.0300', '6.0300', '77.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9852, '2022-10-05', 6403, 9388, 907, 3802, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '49.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9851, '2022-10-05', 6386, 9387, 907, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '283.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9850, '2022-10-05', 6375, 9386, 907, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '168.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9849, '2022-10-05', 6368, 9385, 907, 1091, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9848, '2022-10-05', 6365, 9384, 907, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '126.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9847, '2022-10-05', 6354, 9383, 907, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '540.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9846, '2022-10-05', 6353, 9382, 907, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '232.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9845, '2022-10-05', 6346, 9381, 907, 1921, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '238.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9844, '2022-10-05', 6328, 9380, 907, 3817, '2.0000', '24.4100', '24.4100', '26.9000', '26.9000', '58.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9843, '2022-10-05', 6323, 9379, 907, 3764, '1.0000', '35.4980', '35.4980', '39.0000', '39.0000', '17.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9842, '2022-10-05', 6312, 9378, 907, 1118, '5.0000', '7.5000', '7.5000', '7.5000', '7.5000', '19.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9841, '2022-10-05', 6301, 9377, 907, 1339, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9840, '2022-10-05', 6296, 9376, 907, 3815, '3.0000', '25.4000', '25.4000', '28.5000', '28.5000', '194.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9839, '2022-10-05', 6293, 9375, 907, 3486, '3.0000', '14.6000', '14.6000', '14.6000', '14.6000', '175.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9838, '2022-10-05', 6292, 9374, 907, 1489, '5.0000', '7.8000', '7.8000', '7.8000', '7.8000', '11.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9837, '2022-10-05', 6290, 9373, 907, 2318, '1.0000', '122.4000', '122.4000', '122.4000', '122.4000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9836, '2022-10-05', 6288, 9372, 907, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '72.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9835, '2022-10-05', 6283, 9371, 907, 2335, '5.0000', '5.1000', '5.1000', '6.0200', '6.0200', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9834, '2022-10-05', 6264, 9370, 907, 3404, '10.0000', '6.0000', '6.0000', '6.8500', '6.8500', '94.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9833, '2022-10-05', 6248, 9369, 907, 1408, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9832, '2022-10-05', 6234, 9368, 907, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '111.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9831, '2022-10-05', 6232, 9367, 907, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '79.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9830, '2022-10-05', 6226, 9366, 907, 3491, '3.0000', '1.9000', '1.9000', '1.9000', '1.9000', '60.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9829, '2022-10-05', 6225, 9365, 907, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9828, '2022-10-05', 6221, 9364, 907, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9827, '2022-10-05', 6220, 9363, 907, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '224.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9826, '2022-10-05', 6205, 9362, 907, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '130.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9825, '2022-10-05', 6178, 9361, 907, 3060, '20.0000', '1.6000', '1.6000', '2.2000', '2.2000', '591.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9824, '2022-10-05', 6167, 9360, 907, 3661, '4.0000', '9.4000', '9.4000', '10.4000', '10.4000', '17.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9823, '2022-10-05', 6151, 9359, 907, 2044, '3.0000', '6.7000', '6.7000', '12.6000', '12.6000', '47.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9822, '2022-10-05', 6136, 9358, 907, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '96.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9821, '2022-10-05', 6132, 9357, 907, 1879, '5.0000', '4.3500', '4.3500', '4.3500', '4.3500', '100.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9820, '2022-10-05', 6127, 9356, 907, 1841, '2.0000', '7.3000', '7.3000', '7.3000', '7.3000', '87.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9819, '2022-10-05', 6117, 9355, 907, 3158, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '6.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9818, '2022-10-05', 6115, 9354, 907, 3730, '3.0000', '7.1000', '7.1000', '7.1000', '7.1000', '2.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9817, '2022-10-05', 6098, 9353, 907, 3081, '10.0000', '5.6000', '5.6000', '5.6000', '5.6000', '872.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9816, '2022-10-05', 6095, 9352, 907, 3138, '10.0000', '8.3200', '8.3200', '8.3200', '8.3200', '98.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9815, '2022-10-05', 6088, 9351, 907, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '48.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9814, '2022-10-05', 6082, 9350, 907, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '182.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9813, '2022-10-05', 6078, 9349, 907, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '551.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9812, '2022-10-05', 6077, 9348, 907, 3496, '10.0000', '4.2154', '4.2154', '4.0000', '4.0000', '82.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9811, '2022-10-05', 6076, 9347, 907, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1938.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9810, '2022-10-05', 6075, 9346, 907, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1566.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9809, '2022-10-05', 6074, 9345, 907, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1060.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9808, '2022-10-05', 6033, 9344, 907, 3490, '2.0000', '31.4000', '31.4000', '31.4000', '31.4000', '25.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9807, '2022-10-05', 6020, 9343, 907, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9806, '2022-10-05', 6019, 9342, 907, 1947, '2.0000', '2.5300', '2.5300', '2.5300', '2.5300', '215.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9805, '2022-10-05', 6003, 9341, 907, 2321, '5.0000', '6.7000', '6.7000', '9.1000', '9.1000', '46.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9804, '2022-10-05', 5995, 9340, 907, 3071, '5.0000', '6.0000', '6.0000', '7.6000', '7.6000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9803, '2022-10-05', 5983, 9339, 907, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '171.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9802, '2022-10-05', 5976, 9338, 907, 2358, '10.0000', '7.7000', '7.7000', '7.8000', '7.8000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9801, '2022-10-05', 5967, 9337, 907, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2536.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9800, '2022-10-05', 5965, 9336, 907, 3787, '4.0000', '12.5145', '12.5145', '13.5000', '13.5000', '124.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9799, '2022-10-05', 5962, 9335, 907, 522, '3.0000', '6.9900', '6.9900', '10.8000', '10.8000', '52.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9798, '2022-10-05', 5958, 9334, 907, 521, '2.0000', '16.1000', '16.1000', '16.1000', '16.1000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9797, '2022-10-05', 5949, 9333, 907, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '477.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9796, '2022-10-05', 5948, 9332, 907, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '294.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9795, '2022-10-05', 5926, 9331, 907, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9794, '2022-10-05', 5898, 9330, 907, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '216.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9793, '2022-10-05', 5853, 9329, 907, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '483.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9792, '2022-10-05', 5849, 9328, 907, 2357, '4.0000', '3.1000', '3.1000', '3.1000', '3.1000', '82.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9791, '2022-10-05', 5847, 9327, 907, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '433.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9790, '2022-10-05', 5827, 9326, 907, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '122.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9789, '2022-10-05', 5787, 9325, 907, 1470, '2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9788, '2022-10-05', 5779, 9324, 907, 3821, '2.0000', '14.6863', '14.6863', '16.0000', '16.0000', '92.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9787, '2022-10-05', 5775, 9323, 907, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '69.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9786, '2022-10-05', 5770, 9322, 907, 3079, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9785, '2022-10-05', 5753, 9321, 907, 1117, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '46.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9784, '2022-10-05', 5740, 9320, 907, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '238.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9783, '2022-10-05', 5731, 9319, 907, 1917, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9782, '2022-10-05', 5730, 9318, 907, 3005, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '86.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9781, '2022-10-05', 5712, 9317, 907, 2298, '10.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1176.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9780, '2022-10-05', 5689, 9316, 907, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '55.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9779, '2022-10-05', 5677, 9315, 907, 2351, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '189.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9778, '2022-10-05', 5657, 9314, 907, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '249.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9777, '2022-10-05', 5656, 9313, 907, NULL, '9.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9776, '2022-10-05', 5656, 9313, 907, 3433, '-4.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9775, '2022-10-05', 5629, 9312, 907, 1429, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9774, '2022-10-05', 5596, 9311, 907, 2256, '2.0000', '16.8000', '16.8000', '16.8000', '16.8000', '86.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9773, '2022-10-05', 5580, 9310, 907, 3511, '4.0000', '7.2414', '7.2414', '8.4000', '8.4000', '85.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9772, '2022-10-05', 5535, 9309, 907, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1171.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9771, '2022-10-05', 5528, 9308, 907, 3800, '2.0000', '13.2556', '13.2556', '16.6000', '16.6000', '53.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9770, '2022-10-05', 5519, 9307, 907, 3663, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '251.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9769, '2022-10-05', 5515, 9306, 907, 3508, '10.0000', '4.6800', '4.6800', '5.5000', '5.5000', '142.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9768, '2022-10-05', 5471, 9305, 907, 902, '5.0000', '5.0400', '5.0400', '5.9800', '5.9800', '89.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9767, '2022-10-05', 5451, 9304, 907, 2387, '10.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1193.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9766, '2022-10-05', 5439, 9303, 907, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '123.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9765, '2022-10-05', 5418, 9302, 907, 1851, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '195.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9886, '2022-10-05', 6895, 9421, 907, 3786, '4.0000', '9.7900', '9.7900', '10.8000', '10.8000', '113.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9691, '2022-10-05', 5787, 9228, 908, 1470, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9692, '2022-10-05', 6705, 9229, 908, 1071, '1.0000', '15.8000', '15.8000', '15.8000', '15.8000', '25.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9693, '2022-10-05', 6301, 9230, 908, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9694, '2022-10-05', 5586, 9231, 908, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '204.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9695, '2022-10-05', 5585, 9232, 908, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '33.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9696, '2022-10-05', 6111, 9233, 908, 1319, '2.0000', '14.5000', '14.5000', '14.5000', '14.5000', '53.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9697, '2022-10-05', 6120, 9234, 908, 1995, '2.0000', '14.8500', '14.8500', '14.8500', '14.8500', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9698, '2022-10-05', 5799, 9235, 908, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '104.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9699, '2022-10-05', 6037, 9236, 908, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9700, '2022-10-05', 6293, 9237, 908, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '175.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9701, '2022-10-05', 6348, 9238, 908, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '38.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9702, '2022-10-05', 5969, 9239, 908, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '99.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9703, '2022-10-05', 6408, 9240, 908, 2068, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '77.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9704, '2022-10-05', 6409, 9241, 908, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '143.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9705, '2022-10-05', 5986, 9242, 908, 2311, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '90.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9706, '2022-10-05', 5955, 9243, 908, 3424, '2.0000', '17.9000', '17.9000', '17.9000', '17.9000', '24.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9707, '2022-10-05', 6394, 9244, 908, 3823, '3.0000', '5.4400', '5.4400', '6.6000', '6.6000', '297.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9708, '2022-10-05', 6813, 9245, 908, 1368, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9709, '2022-10-05', 6242, 9246, 908, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '77.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9710, '2022-10-05', 6604, 9247, 908, 766, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '477.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9711, '2022-10-05', 5418, 9248, 908, 1851, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '205.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9712, '2022-10-05', 6010, 9249, 908, 3621, '3.0000', '15.4888', '15.4888', '16.5000', '16.5000', '330.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9713, '2022-10-05', 5853, 9250, 908, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '485.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9714, '2022-10-05', 6232, 9251, 908, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '79.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9715, '2022-10-05', 5573, 9252, 908, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '991.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9716, '2022-10-05', 6117, 9253, 909, 3158, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '6.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9717, '2022-10-05', 6738, 9254, 909, 1905, '3.0000', '3.0000', '3.0000', '3.0000', '3.0000', '137.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9718, '2022-10-05', 6818, 9255, 909, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '218.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9719, '2022-10-05', 5996, 9256, 910, 933, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '670.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9762, '2022-10-05', 6853, 9299, 911, NULL, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9761, '2022-10-05', 6823, 9298, 911, 1488, '3.0000', '10.7800', '10.7800', '10.7800', '10.7800', '57.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9760, '2022-10-05', 6778, 9297, 911, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '136.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9759, '2022-10-05', 6670, 9296, 911, 1463, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '48.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9758, '2022-10-05', 6574, 9295, 911, 988, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '35.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9757, '2022-10-05', 6501, 9294, 911, 3662, '3.0000', '9.0000', '9.0000', '10.6000', '10.6000', '37.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9756, '2022-10-05', 6457, 9293, 911, 3607, '1.0000', '39.9000', '39.9000', '43.9000', '43.9000', '1.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9755, '2022-10-05', 6455, 9292, 911, 3047, '2.0000', '19.5800', '19.5800', '19.7300', '19.7300', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9754, '2022-10-05', 6296, 9291, 911, 3815, '3.0000', '25.4000', '25.4000', '28.5000', '28.5000', '194.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9753, '2022-10-05', 6292, 9290, 911, 1489, '3.0000', '7.8000', '7.8000', '7.8000', '7.8000', '11.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9752, '2022-10-05', 6089, 9289, 911, 1047, '1.0000', '73.5000', '73.5000', '73.5000', '73.5000', '29.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9751, '2022-10-05', 6010, 9288, 911, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '328.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9750, '2022-10-05', 5969, 9287, 911, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '96.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9749, '2022-10-05', 5967, 9286, 911, 3132, '5.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2536.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9748, '2022-10-05', 5926, 9285, 911, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9747, '2022-10-05', 5853, 9284, 911, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '483.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9746, '2022-10-05', 5749, 9283, 911, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9745, '2022-10-05', 5720, 9282, 911, 914, '2.0000', '23.0000', '23.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9744, '2022-10-05', 5677, 9281, 911, 2351, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '189.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9763, '2022-10-05', 6828, 9300, 911, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '15.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9740, '2022-10-05', 5642, 9277, 912, 2320, '2.0000', '24.4300', '24.4300', '24.4300', '24.4300', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9741, '2022-10-05', 5990, 9278, 912, 1933, '2.0000', '6.8000', '6.8000', '8.6500', '8.6500', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9742, '2022-10-05', 5418, 9279, 913, 1851, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '195.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9743, '2022-10-05', 6559, 9280, 914, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9764, '2022-10-05', 5740, 9301, 911, 2274, '7.0000', '15.5000', '15.5000', '15.5000', '15.5000', '238.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9895, '2022-10-03', 6555, 9430, 915, 3736, '10.0000', '2.9700', '2.9700', '3.6000', '3.6000', '89.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9894, '2022-10-03', 6450, 9429, 915, 1943, '5.0000', '45.0000', '45.0000', '45.0000', '45.0000', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9893, '2022-10-03', 6449, 9428, 915, 1942, '4.0000', '25.5000', '25.5000', '25.5000', '25.5000', '24.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9892, '2022-10-03', 6277, 9427, 915, 3649, '1.0000', '24.2816', '24.2816', '27.5000', '27.5000', '15.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9896, '2022-10-03', 6829, 9431, 915, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '13.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9899, '2022-10-03', 6218, 9434, 916, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '62.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9898, '2022-10-05', 6753, 9433, 917, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '205.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9901, '2022-10-03', 6523, 9436, 918, 977, '1.0000', '131.5700', '131.5700', '131.5700', '131.5700', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9911, '2022-10-03', 6078, 9446, 919, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '550.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9910, '2022-10-03', 5733, 9445, 919, 3019, '1.0000', '20.0000', '20.0000', '20.0000', '20.0000', '43.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9912, '2022-10-03', 6817, 9447, 919, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '54.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9908, '2022-10-05', 6007, 9443, 920, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9909, '2022-10-05', 5677, 9444, 920, 2351, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '183.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9913, '2022-10-03', 6652, 9448, 919, 1414, '2.0000', '3.8000', '3.8000', '3.7900', '3.7900', '65.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9925, '2022-10-05', 5715, 9457, 921, 3023, '12.0000', '13.1400', '13.1400', '13.1400', '13.1400', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10180, '2022-10-05', 5471, 9705, 922, 902, '10.0000', '5.0400', '5.0400', '5.9800', '5.9800', '79.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10179, '2022-10-05', 6823, 9704, 922, 1488, '6.0000', '10.7800', '10.7800', '10.7800', '10.7800', '51.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10178, '2022-10-05', 6772, 9703, 922, 2555, '1.0000', '19.2000', '19.2000', '19.2000', '19.2000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10177, '2022-10-05', 6640, 9702, 922, 3413, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '43.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10176, '2022-10-05', 6446, 9701, 922, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '114.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10175, '2022-10-05', 6370, 9700, 922, 3420, '4.0000', '24.5000', '24.5000', '25.3000', '25.3000', '1.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10174, '2022-10-05', 6365, 9699, 922, 2038, '5.0000', '30.0000', '30.0000', '30.0000', '30.0000', '121.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10173, '2022-10-05', 6293, 9698, 922, 3486, '5.0000', '14.6000', '14.6000', '14.6000', '14.6000', '170.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10172, '2022-10-05', 6283, 9697, 922, 2335, '6.0000', '5.1000', '5.1000', '6.0200', '6.0200', '46.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10171, '2022-10-05', 6248, 9696, 922, 1408, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10170, '2022-10-05', 6232, 9695, 922, 3587, '5.0000', '6.4556', '6.4556', '7.1000', '7.1000', '70.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10169, '2022-10-05', 6209, 9694, 922, 2287, '10.0000', '4.5000', '4.5000', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10168, '2022-10-05', 6197, 9693, 922, NULL, '1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10167, '2022-10-05', 6191, 9692, 922, 3018, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '91.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10166, '2022-10-05', 6128, 9691, 922, 3398, '6.0000', '4.5000', '4.5000', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10165, '2022-10-05', 6123, 9690, 922, 1878, '1.0000', '52.7000', '52.7000', '60.5000', '60.5000', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10164, '2022-10-05', 6117, 9689, 922, 3158, '5.0000', '6.6000', '6.6000', '6.6000', '6.6000', '1.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10163, '2022-10-05', 6082, 9688, 922, 3032, '6.0000', '6.9000', '6.9000', '6.9000', '6.9000', '176.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10162, '2022-10-05', 6074, 9687, 922, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1018.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10161, '2022-10-05', 6042, 9686, 922, 938, '2.0000', '25.9500', '25.9500', '25.9500', '25.9500', '50.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10160, '2022-10-05', 6020, 9685, 922, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10159, '2022-10-05', 6011, 9684, 922, 3028, '4.0000', '14.2100', '14.2100', '14.2100', '14.2100', '50.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10158, '2022-10-05', 6001, 9683, 922, 1313, '10.0000', '5.1000', '5.1000', '6.2000', '6.2000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10157, '2022-10-05', 5827, 9682, 922, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '117.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10156, '2022-10-05', 5751, 9681, 922, 1112, '20.0000', '10.8000', '10.8000', '10.8000', '10.8000', '109.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10155, '2022-10-05', 5740, 9680, 922, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '221.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10154, '2022-10-05', 5717, 9679, 922, 2381, '6.0000', '2.4000', '2.4000', '2.4000', '2.4000', '277.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10153, '2022-10-05', 5528, 9678, 922, 3800, '6.0000', '13.2556', '13.2556', '16.6000', '16.6000', '47.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10152, '2022-10-05', 5509, 9677, 922, 1854, '6.0000', '6.8800', '6.8800', '6.8800', '6.8800', '0.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10151, '2022-10-05', 5507, 9676, 922, 1379, '3.0000', '4.9900', '4.9900', '4.9900', '4.9900', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10150, '2022-10-05', 5501, 9675, 922, 3752, '2.0000', '44.0800', '44.0800', '49.0000', '49.0000', '25.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10209, '2022-10-05', 6553, 9730, 933, 2122, '10.0000', '10.5000', '10.5000', '10.5000', '10.5000', '75.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9958, '2022-10-05', 6218, 9490, 923, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '61.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9959, '2022-10-05', 6667, 9491, 924, NULL, '25.0000', '2.0000', '2.0000', '3.0000', '3.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9960, '2022-10-05', 6316, 9492, 925, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '99.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9961, '2022-10-05', 6753, 9493, 926, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '203.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9962, '2022-10-05', 6382, 9494, 927, 2285, '4.0000', '4.1000', '4.1000', '4.1000', '4.1000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9963, '2022-10-05', 5898, 9495, 927, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '214.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9964, '2022-10-05', 5677, 9496, 927, 2351, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '181.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9965, '2022-10-05', 6097, 9497, 927, 3045, '6.0000', '7.2000', '7.2000', '7.2000', '7.2000', '97.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9966, '2022-10-05', 5740, 9498, 927, 2274, '6.0000', '15.5000', '15.5000', '15.5000', '15.5000', '222.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (9967, '2022-10-05', 6464, 9499, 927, 1160, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10018, '2022-10-05', 6007, 9549, 928, 2391, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10019, '2022-10-05', 5768, 9550, 928, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '189.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10020, '2022-10-05', 6348, 9551, 928, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '36.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10021, '2022-10-05', 6228, 9552, 928, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10022, '2022-10-05', 5775, 9553, 928, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '68.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10279, '2022-10-05', 6052, 9796, 929, 758, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '22.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10278, '2022-10-05', 5847, 9795, 929, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '413.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10277, '2022-10-05', 6294, 9794, 929, 1412, '3.0000', '23.0000', '23.0000', '30.0000', '30.0000', '36.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10276, '2022-10-05', 6077, 9793, 929, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '103.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10275, '2022-10-05', 5770, 9792, 929, 3079, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10274, '2022-10-05', 6884, 9791, 929, 3122, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '69.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10273, '2022-10-05', 6867, 9790, 929, 1027, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10272, '2022-10-05', 6866, 9789, 929, 3552, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '97.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10271, '2022-10-05', 6865, 9788, 929, 1026, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10270, '2022-10-05', 6864, 9787, 929, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4658.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10269, '2022-10-05', 6837, 9786, 929, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '9.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10268, '2022-10-05', 6813, 9785, 929, 1368, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10267, '2022-10-05', 6738, 9784, 929, 1905, '5.0000', '3.0000', '3.0000', '3.0000', '3.0000', '132.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10266, '2022-10-05', 6650, 9783, 929, 1146, '5.0000', '5.7000', '5.7000', '5.7000', '5.7000', '23.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10265, '2022-10-05', 6642, 9782, 929, 3414, '5.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10264, '2022-10-05', 6603, 9781, 929, 3768, '5.0000', '6.1900', '6.1900', '6.9000', '6.9000', '70.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10263, '2022-10-05', 6451, 9780, 929, 3021, '2.0000', '53.2000', '53.2000', '53.2000', '53.2000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10262, '2022-10-05', 6409, 9779, 929, 1422, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '140.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10261, '2022-10-05', 6408, 9778, 929, 2068, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '74.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10260, '2022-10-05', 6395, 9777, 929, 540, '5.0000', '9.5500', '9.5500', '9.5500', '9.5500', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10259, '2022-10-05', 6360, 9776, 929, 1176, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10258, '2022-10-05', 6320, 9775, 929, 1053, '2.0000', '63.2200', '63.2200', '63.2200', '63.2200', '33.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10257, '2022-10-05', 6219, 9774, 929, NULL, '338.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-338.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10256, '2022-10-05', 6219, 9774, 929, 3150, '-288.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10255, '2022-10-05', 6218, 9773, 929, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '59.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10254, '2022-10-05', 6209, 9772, 929, 2287, '6.0000', '4.5000', '4.5000', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10253, '2022-10-05', 6144, 9771, 929, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '12.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10252, '2022-10-05', 6140, 9770, 929, 1882, '1.0000', '30.8000', '30.8000', '30.8000', '30.8000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10251, '2022-10-05', 6031, 9769, 929, 2984, '1.0000', '17.8200', '17.8200', '26.7000', '26.7000', '9.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10250, '2022-10-05', 6010, 9768, 929, 3621, '6.0000', '15.4888', '15.4888', '16.5000', '16.5000', '322.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10249, '2022-10-05', 5991, 9767, 929, 1079, '1.0000', '37.7000', '37.7000', '37.7000', '37.7000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10248, '2022-10-05', 5969, 9766, 929, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '86.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10247, '2022-10-05', 5967, 9765, 929, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2526.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10246, '2022-10-05', 5673, 9764, 929, 3762, '6.0000', '15.8900', '15.8900', '17.7000', '17.7000', '41.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10245, '2022-10-05', 5657, 9763, 929, 2382, '6.0000', '4.2000', '4.2000', '4.2000', '4.2000', '243.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10244, '2022-10-05', 5650, 9762, 929, 1438, '1.0000', '7.9000', '7.9000', '7.9000', '7.9000', '20.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10243, '2022-10-05', 5593, 9761, 929, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10242, '2022-10-05', 5465, 9760, 929, NULL, '7.0000', '0.0000', '0.0000', '98.6000', '98.6000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10241, '2022-10-05', 5465, 9760, 929, 3776, '-6.0000', '0.0000', '0.0000', '98.6000', '98.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10331, '2022-10-06', 6513, 9845, 938, 662, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10063, '2022-10-05', 6825, 9592, 930, 3670, '25.0000', '46.2800', '46.2800', '1.0000', '1.0000', '882.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10064, '2022-10-05', 5881, 9593, 930, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '72.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10065, '2022-10-05', 6895, 9594, 930, 3786, '1.0000', '9.7900', '9.7900', '10.8000', '10.8000', '112.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10066, '2022-10-05', 6083, 9595, 930, 3029, '3.0000', '2.7000', '2.7000', '2.7000', '2.7000', '108.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10067, '2022-10-05', 5654, 9596, 930, 3062, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '149.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10068, '2022-10-05', 5586, 9597, 930, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '203.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10069, '2022-10-05', 6682, 9598, 930, 1919, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '57.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10070, '2022-10-05', 6074, 9599, 930, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1018.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10071, '2022-10-05', 6818, 9600, 930, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '216.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10072, '2022-10-05', 5704, 9601, 930, 911, '2.0000', '15.0000', '15.0000', '16.0500', '16.0500', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10143, '2022-10-05', 5689, 9668, 932, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '53.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10144, '2022-10-05', 6394, 9669, 932, 3823, '1.0000', '5.4400', '5.4400', '6.6000', '6.6000', '296.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10145, '2022-10-05', 5779, 9670, 932, 3821, '1.0000', '14.6863', '14.6863', '16.0000', '16.0000', '91.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10146, '2022-10-05', 5740, 9671, 932, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '221.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10147, '2022-10-05', 5770, 9672, 932, 3079, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10148, '2022-10-05', 5451, 9673, 932, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1191.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10149, '2022-10-05', 6604, 9674, 932, 766, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '475.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10208, '2022-10-05', 6510, 9729, 933, 2079, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10207, '2022-10-05', 6394, 9728, 933, 3823, '20.0000', '5.4400', '5.4400', '6.6000', '6.6000', '276.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10206, '2022-10-05', 6225, 9727, 933, 2250, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10205, '2022-10-05', 6215, 9726, 933, 2283, '2.0000', '30.6900', '30.6900', '30.6900', '30.6900', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10204, '2022-10-05', 6183, 9725, 933, 749, '6.0000', '5.7500', '5.7500', '5.7500', '5.7500', '189.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10203, '2022-10-05', 6106, 9724, 933, NULL, '23.0000', '1.5000', '1.5000', '1.5000', '1.5000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10202, '2022-10-05', 6106, 9724, 933, 3814, '-3.0000', '1.5000', '1.5000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10210, '2022-10-05', 6592, 9731, 933, 2373, '5.0000', '3.1800', '3.1800', '3.1800', '3.1800', '87.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10211, '2022-10-05', 5654, 9732, 933, 3062, '20.0000', '2.0000', '2.0000', '2.0000', '2.0000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10191, '2022-10-05', 5635, 9715, 934, 3749, '-5.0000', '14.7600', '14.7600', '14.7600', '14.7600', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10192, '2022-10-05', 5635, 9715, 934, NULL, '6.0000', '14.7600', '14.7600', '14.7600', '14.7600', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10240, '2022-10-05', 5947, 9759, 935, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10332, '2022-10-06', 6075, 9846, 939, 3025, '48.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1518.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10333, '2022-10-06', 6076, 9847, 939, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1914.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10334, '2022-10-06', 6120, 9848, 939, 1995, '3.0000', '14.8500', '14.8500', '14.8500', '14.8500', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10335, '2022-10-06', 6111, 9849, 939, 1319, '3.0000', '14.5000', '14.5000', '14.5000', '14.5000', '50.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10336, '2022-10-06', 6316, 9850, 939, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '98.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10337, '2022-10-06', 6010, 9851, 939, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '318.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10338, '2022-10-06', 6365, 9852, 939, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '119.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10339, '2022-10-06', 6234, 9853, 939, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '108.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10340, '2022-10-06', 6242, 9854, 939, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '76.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10341, '2022-10-06', 6337, 9855, 939, 539, '2.0000', '49.5300', '49.5300', '49.5300', '49.5300', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10342, '2022-10-06', 6830, 9856, 939, 2562, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '41.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10343, '2022-10-06', 6829, 9857, 939, 2561, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '12.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10344, '2022-10-06', 6285, 9858, 939, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '68.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10345, '2022-10-06', 5947, 9859, 940, 1967, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '24.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10346, '2022-10-06', 6218, 9860, 940, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '57.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10347, '2022-10-06', 6394, 9861, 941, 3823, '7.0000', '5.4400', '5.4400', '6.6000', '6.6000', '269.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10348, '2022-10-06', 5731, 9862, 941, 1917, '7.0000', '17.2000', '17.2000', '17.2000', '17.2000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10349, '2022-10-06', 5740, 9863, 941, 2274, '7.0000', '15.5000', '15.5000', '15.5000', '15.5000', '214.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10350, '2022-10-06', 5971, 9864, 941, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '61.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10351, '2022-10-06', 5652, 9865, 941, 2991, '3.0000', '12.0000', '12.0000', '12.0000', '12.0000', '31.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10352, '2022-10-06', 5926, 9866, 941, 2072, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '30.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10353, '2022-10-06', 6604, 9867, 941, 766, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '472.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10354, '2022-10-06', 5705, 9868, 941, 1169, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10355, '2022-10-06', 6129, 9869, 941, 3399, '2.0000', '3.4000', '3.4000', '3.4000', '3.4000', '57.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10356, '2022-10-06', 6816, 9870, 941, 3390, '1.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '55.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10427, '2022-10-06', 6825, 9937, 942, 3670, '3.0000', '46.2800', '46.2800', '1.0000', '1.0000', '879.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10426, '2022-10-06', 6431, 9936, 942, 3834, '1.0000', '4.3200', '4.3200', '5.3000', '5.3000', '299.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10425, '2022-10-06', 6385, 9935, 942, 2251, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10424, '2022-10-06', 6219, 9934, 942, NULL, '340.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-340.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10423, '2022-10-06', 6219, 9934, 942, 3150, '-338.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10422, '2022-10-06', 5853, 9933, 942, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '481.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10421, '2022-10-06', 5632, 9932, 942, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '104.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10420, '2022-10-06', 5451, 9931, 942, 2387, '1.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1190.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10428, '2022-10-06', 6834, 9938, 942, 2034, '1.0000', '5.3000', '5.3000', '5.3000', '5.3000', '93.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10366, '2022-10-06', 5715, 9879, 943, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10367, '2022-10-06', 6417, 9880, 944, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '55.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10368, '2022-10-06', 5971, 9881, 944, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '59.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10369, '2022-10-06', 6222, 9882, 944, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10370, '2022-10-06', 6603, 9883, 944, 3768, '4.0000', '6.1900', '6.1900', '6.9000', '6.9000', '66.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10371, '2022-10-06', 6847, 9884, 944, 1150, '4.0000', '6.5000', '6.5000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10372, '2022-10-06', 6359, 9885, 944, 3492, '10.0000', '5.6288', '5.6288', '2.5000', '2.5000', '191.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10373, '2022-10-06', 6166, 9886, 944, 3658, '4.0000', '6.5087', '6.5087', '7.5000', '7.5000', '84.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10374, '2022-10-06', 6165, 9887, 944, 3659, '4.0000', '5.8901', '5.8901', '6.5000', '6.5000', '84.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10375, '2022-10-06', 6609, 9888, 944, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '156.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10376, '2022-10-06', 6053, 9889, 944, 1126, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10377, '2022-10-06', 6162, 9890, 944, 3656, '4.0000', '6.6000', '6.6000', '7.3000', '7.3000', '105.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10378, '2022-10-06', 6160, 9891, 944, 3654, '4.0000', '5.9471', '5.9471', '7.0000', '7.0000', '56.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10379, '2022-10-06', 6235, 9892, 944, 949, '4.0000', '4.9800', '4.9800', '5.9800', '5.9800', '21.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10380, '2022-10-06', 6346, 9893, 944, 1921, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '233.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10381, '2022-10-06', 5705, 9894, 944, 1169, '4.0000', '7.0000', '7.0000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10382, '2022-10-06', 5965, 9895, 944, 3787, '4.0000', '12.5145', '12.5145', '13.5000', '13.5000', '120.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10383, '2022-10-06', 5618, 9896, 944, 3510, '4.0000', '7.4800', '7.4800', '8.8000', '8.8000', '97.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10384, '2022-10-06', 6766, 9897, 944, 1399, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10385, '2022-10-06', 6657, 9898, 944, 1152, '4.0000', '5.4000', '5.4000', '5.4000', '5.4000', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10386, '2022-10-06', 6532, 9899, 944, 3579, '4.0000', '8.0796', '8.0796', '9.3700', '9.3700', '81.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10387, '2022-10-06', 6671, 9900, 944, 1996, '4.0000', '7.1500', '7.1500', '7.8000', '7.8000', '49.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10388, '2022-10-06', 5886, 9901, 944, 927, '4.0000', '8.6000', '8.6000', '8.6000', '8.6000', '124.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10389, '2022-10-06', 5471, 9902, 944, 902, '4.0000', '5.0400', '5.0400', '5.9800', '5.9800', '75.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10390, '2022-10-06', 6386, 9903, 944, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '273.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10391, '2022-10-06', 6491, 9904, 944, 2295, '10.0000', '9.6200', '9.6200', '9.6200', '9.6200', '167.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10392, '2022-10-06', 6881, 9905, 944, 3131, '1.0000', '49.5000', '49.5000', '55.0000', '55.0000', '27.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10393, '2022-10-06', 5635, 9906, 944, 3749, '-6.0000', '14.7600', '14.7600', '14.7600', '14.7600', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10394, '2022-10-06', 5635, 9906, 944, NULL, '10.0000', '14.7600', '14.7600', '14.7600', '14.7600', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10395, '2022-10-06', 6543, 9907, 944, 2062, '4.0000', '11.2000', '11.2000', '13.9200', '13.9200', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10396, '2022-10-06', 6517, 9908, 944, 2254, '4.0000', '8.7000', '8.7000', '10.4500', '10.4500', '69.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10397, '2022-10-06', 6171, 9909, 944, 1327, '4.0000', '8.8000', '8.8000', '8.8000', '8.8000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10398, '2022-10-06', 5978, 9910, 944, 3068, '2.0000', '21.3000', '21.3000', '21.3000', '21.3000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10399, '2022-10-06', 6456, 9911, 944, 1896, '2.0000', '21.6000', '21.6000', '21.6000', '21.6000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10400, '2022-10-06', 6445, 9912, 944, 3581, '4.0000', '21.8000', '21.8000', '21.6000', '21.6000', '58.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10401, '2022-10-06', 5848, 9913, 944, 2369, '4.0000', '8.2800', '8.2800', '8.2800', '8.2800', '33.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10402, '2022-10-06', 6170, 9914, 944, 1326, '4.0000', '10.0000', '10.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10403, '2022-10-06', 6111, 9915, 944, 1319, '4.0000', '14.5000', '14.5000', '14.5000', '14.5000', '46.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10404, '2022-10-06', 6202, 9916, 944, 3006, '4.0000', '9.5000', '9.5000', '9.5000', '9.5000', '388.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10405, '2022-10-06', 5984, 9917, 944, 3483, '2.0000', '19.5300', '19.5300', '22.9100', '22.9100', '70.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10406, '2022-10-06', 5729, 9918, 944, 1993, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10407, '2022-10-06', 5586, 9919, 944, 3135, '4.0000', '28.9000', '28.9000', '28.9000', '28.9000', '199.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10408, '2022-10-06', 6751, 9920, 944, 2514, '-1.0000', '20.0000', '20.0000', '40.8300', '40.8300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10409, '2022-10-06', 6751, 9920, 944, NULL, '3.0000', '20.0000', '20.0000', '40.8300', '40.8300', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10410, '2022-10-06', 6188, 9921, 944, 3080, '4.0000', '7.0000', '7.0000', '7.0000', '7.0000', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10411, '2022-10-06', 6607, 9922, 944, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '66.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10412, '2022-10-06', 6296, 9923, 944, 3815, '2.0000', '25.4000', '25.4000', '28.5000', '28.5000', '192.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10413, '2022-10-06', 6075, 9924, 944, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1494.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10414, '2022-10-06', 6137, 9925, 944, 2276, '4.0000', '15.0000', '15.0000', '15.0000', '15.0000', '129.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10415, '2022-10-06', 5827, 9926, 944, 3651, '4.0000', '5.9947', '5.9947', '6.6000', '6.6000', '113.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10416, '2022-10-06', 6835, 9927, 944, 289, '10.0000', '3.6000', '3.6000', '3.6000', '3.6000', '12.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10417, '2022-10-06', 6077, 9928, 944, 3496, '20.0000', '4.2154', '4.2154', '4.0000', '4.0000', '83.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10418, '2022-10-06', 6738, 9929, 944, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '128.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10419, '2022-10-06', 6832, 9930, 944, 1381, '10.0000', '2.6000', '2.6000', '2.6000', '2.6000', '326.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10589, '2022-10-06', 6190, 10098, 956, 2126, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '50.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13000, '2022-10-06', 6861, 12385, 945, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '9.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12999, '2022-10-06', 6765, 12384, 945, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '37.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12998, '2022-10-06', 6753, 12383, 945, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '191.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12997, '2022-10-06', 6749, 12382, 945, 1945, '2.0000', '40.0000', '40.0000', '40.0000', '40.0000', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12996, '2022-10-06', 6719, 12381, 945, 1004, '1.0000', '17.4000', '17.4000', '17.4000', '17.4000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12995, '2022-10-06', 6609, 12380, 945, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '141.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12994, '2022-10-06', 6608, 12379, 945, 3774, '4.0000', '12.9538', '12.9538', '14.3000', '14.3000', '153.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12993, '2022-10-06', 6599, 12378, 945, 3742, '2.0000', '17.0015', '17.0015', '18.9000', '18.9000', '49.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12992, '2022-10-06', 6592, 12377, 945, 2373, '4.0000', '3.1800', '3.1800', '3.1800', '3.1800', '81.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12991, '2022-10-06', 6590, 12376, 945, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12990, '2022-10-06', 6581, 12375, 945, 3805, '2.0000', '10.3500', '10.3500', '11.5000', '11.5000', '40.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12989, '2022-10-06', 6565, 12374, 945, 2007, '1.0000', '64.7800', '64.7800', '64.7800', '64.7800', '3.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12988, '2022-10-06', 6519, 12373, 945, 975, '1.0000', '120.3600', '120.3600', '120.3600', '120.3600', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12987, '2022-10-06', 6501, 12372, 945, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '32.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12986, '2022-10-06', 6485, 12371, 945, 970, '1.0000', '109.9000', '109.9000', '109.9000', '109.9000', '13.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12985, '2022-10-06', 6458, 12370, 945, 765, '1.0000', '22.9000', '22.9000', '22.9000', '22.9000', '99.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12984, '2022-10-06', 6449, 12369, 945, 1942, '3.0000', '25.5000', '25.5000', '25.5000', '25.5000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12983, '2022-10-06', 6394, 12368, 945, 3823, '8.0000', '5.4400', '5.4400', '6.6000', '6.6000', '251.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12982, '2022-10-06', 6342, 12367, 945, 957, '1.0000', '58.1000', '58.1000', '58.1000', '58.1000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12981, '2022-10-06', 6316, 12366, 945, 3757, '2.0000', '54.8358', '54.8358', '62.0000', '62.0000', '71.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12980, '2022-10-06', 6302, 12365, 945, 2116, '3.0000', '23.0000', '23.0000', '23.0000', '23.0000', '27.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12979, '2022-10-06', 6286, 12364, 945, 953, '4.0000', '9.6000', '9.6000', '9.6000', '9.6000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12978, '2022-10-06', 6275, 12363, 945, 2032, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '291.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12977, '2022-10-06', 6273, 12362, 945, 3033, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12976, '2022-10-06', 6234, 12361, 945, 3801, '3.0000', '34.8921', '34.8921', '40.3000', '40.3000', '70.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12975, '2022-10-06', 6202, 12360, 945, 3006, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '370.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12974, '2022-10-06', 6170, 12359, 945, 1326, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12973, '2022-10-06', 6158, 12358, 945, 3653, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '37.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12972, '2022-10-06', 6148, 12357, 945, 391, '5.0000', '24.3000', '24.3000', '24.3000', '24.3000', '9.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12971, '2022-10-06', 6137, 12356, 945, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '127.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12970, '2022-10-06', 6132, 12355, 945, 1879, '4.0000', '4.3500', '4.3500', '4.3500', '4.3500', '91.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12969, '2022-10-06', 6109, 12354, 945, 3819, '1.0000', '48.6400', '48.6400', '53.7000', '53.7000', '23.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12968, '2022-10-06', 6098, 12353, 945, 3081, '10.0000', '5.6000', '5.6000', '5.6000', '5.6000', '862.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12967, '2022-10-06', 6092, 12352, 945, 528, '2.0000', '14.9000', '14.9000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12966, '2022-10-06', 6082, 12351, 945, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '166.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12965, '2022-10-06', 6076, 12350, 945, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1728.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12964, '2022-10-06', 6074, 12349, 945, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '690.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12963, '2022-10-06', 6053, 12348, 945, 1126, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12962, '2022-10-06', 6036, 12347, 945, 3894, '2.0000', '4.4300', '4.4300', '4.4300', '4.4300', '34.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12961, '2022-10-06', 5983, 12346, 945, 2333, '3.0000', '5.9000', '5.9000', '5.9000', '5.9000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12960, '2022-10-06', 5963, 12345, 945, 3428, '1.0000', '14.5000', '14.5000', '15.9500', '15.9500', '41.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12959, '2022-10-06', 5881, 12344, 945, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '66.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12958, '2022-10-06', 5849, 12343, 945, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12957, '2022-10-06', 5799, 12342, 945, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '78.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12956, '2022-10-06', 5740, 12341, 945, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '169.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12955, '2022-10-06', 5730, 12340, 945, 3005, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '78.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12954, '2022-10-06', 5605, 12339, 945, NULL, '4.0000', '21.5000', '21.5000', '21.5000', '21.5000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12953, '2022-10-06', 5601, 12338, 945, 3035, '3.0000', '4.2917', '4.2917', '5.9500', '5.9500', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12952, '2022-10-06', 5573, 12337, 945, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '989.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12951, '2022-10-06', 5548, 12336, 945, 2374, '3.0000', '2.9800', '2.9800', '2.9800', '2.9800', '258.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12950, '2022-10-06', 5541, 12335, 945, 905, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13001, '2022-10-06', 5835, 12386, 945, 924, '1.0000', '33.9800', '33.9800', '43.7000', '43.7000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10703, '2022-10-06', 6860, 10208, 957, 3738, '1.0000', '15.4923', '15.4923', '18.0000', '18.0000', '213.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10483, '2022-10-06', 6879, 9992, 946, 3121, '2.0000', '3.8700', '3.8700', '4.3000', '4.3000', '349.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10484, '2022-10-06', 6007, 9993, 946, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10485, '2022-10-06', 6818, 9994, 946, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '210.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10486, '2022-10-06', 6379, 9995, 946, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '139.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10487, '2022-10-06', 5710, 9996, 946, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '96.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10488, '2022-10-06', 6117, 9997, 946, 3158, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10489, '2022-10-06', 6831, 9998, 946, 3391, '5.0000', '1.6000', '1.6000', '1.6000', '1.6000', '677.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10490, '2022-10-06', 6222, 9999, 947, 2279, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10491, '2022-10-06', 6221, 10000, 947, 1331, '5.0000', '12.9800', '12.9800', '12.9800', '12.9800', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10492, '2022-10-06', 6218, 10001, 947, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '55.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10493, '2022-10-06', 6228, 10002, 948, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10494, '2022-10-06', 5775, 10003, 948, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '67.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10495, '2022-10-06', 6640, 10004, 948, 3413, '1.0000', '4.7000', '4.7000', '4.7000', '4.7000', '42.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10496, '2022-10-06', 6418, 10005, 948, 2580, '1.0000', '6.3300', '6.3300', '6.3800', '6.3800', '598.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10497, '2022-10-06', 6117, 10006, 949, 1320, '10.0000', '6.6000', '6.6000', '6.6000', '6.6000', '294.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10498, '2022-10-06', 6117, 10007, 950, 1320, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '293.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10499, '2022-10-06', 6316, 10008, 951, 3757, '3.0000', '54.8358', '54.8358', '62.0000', '62.0000', '93.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10500, '2022-10-06', 6480, 10009, 951, 550, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10501, '2022-10-06', 6232, 10010, 951, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '68.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10502, '2022-10-06', 5949, 10011, 951, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '475.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10503, '2022-10-06', 6075, 10012, 952, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1470.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10504, '2022-10-06', 6076, 10013, 952, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1866.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10505, '2022-10-06', 6273, 10014, 952, 3033, '6.0000', '26.0000', '26.0000', '26.0000', '26.0000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10506, '2022-10-06', 5969, 10015, 953, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10507, '2022-10-06', 5641, 10016, 953, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '60.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10508, '2022-10-06', 6205, 10017, 953, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10509, '2022-10-06', 5418, 10018, 953, 1851, '7.0000', '5.5000', '5.5000', '5.5000', '5.5000', '188.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10510, '2022-10-06', 5549, 10019, 953, 2372, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '294.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10511, '2022-10-06', 6134, 10020, 953, 1120, '4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '125.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10512, '2022-10-06', 5983, 10021, 953, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '166.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10513, '2022-10-06', 5849, 10022, 953, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '73.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10514, '2022-10-06', 5770, 10023, 953, 3079, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10515, '2022-10-06', 6842, 10024, 953, 1373, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10516, '2022-10-06', 6501, 10025, 953, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '33.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10517, '2022-10-06', 5712, 10026, 953, 2298, '10.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1166.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10518, '2022-10-06', 6686, 10027, 953, 559, '2.0000', '2.5000', '2.5000', '2.8000', '2.8000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10519, '2022-10-06', 6864, 10028, 953, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4656.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10520, '2022-10-06', 6867, 10029, 953, 1027, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10521, '2022-10-06', 6077, 10030, 953, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '81.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10522, '2022-10-06', 6604, 10031, 953, 766, '7.0000', '5.5000', '5.5000', '5.5000', '5.5000', '465.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10523, '2022-10-06', 6414, 10032, 953, 763, '2.0000', '9.9000', '9.9000', '9.9000', '9.9000', '29.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10524, '2022-10-06', 6075, 10033, 953, 3025, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1469.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10525, '2022-10-06', 6772, 10034, 954, 2555, '1.0000', '19.2000', '19.2000', '19.2000', '19.2000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10526, '2022-10-06', 6771, 10035, 954, 2554, '1.0000', '19.2000', '19.2000', '19.2000', '19.2000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10527, '2022-10-06', 6075, 10036, 955, 3025, '8.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1461.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10528, '2022-10-06', 6076, 10037, 955, 3024, '8.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1858.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10529, '2022-10-06', 6864, 10038, 955, 3082, '6.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4650.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10530, '2022-10-06', 5827, 10039, 955, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '111.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10531, '2022-10-06', 6337, 10040, 955, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10532, '2022-10-06', 5926, 10041, 955, 2072, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '28.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10533, '2022-10-06', 6320, 10042, 955, 1053, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '32.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10534, '2022-10-06', 6074, 10043, 955, 2303, '6.0000', '8.5000', '8.5000', '8.5000', '8.5000', '972.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10535, '2022-10-06', 6823, 10044, 955, 1488, '2.0000', '10.7800', '10.7800', '10.7800', '10.7800', '49.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10536, '2022-10-06', 5828, 10045, 955, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '91.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10702, '2022-10-06', 6408, 10207, 957, 2068, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '69.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10701, '2022-10-06', 6285, 10206, 957, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '64.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10700, '2022-10-06', 6220, 10205, 957, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '219.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10699, '2022-10-06', 5593, 10204, 957, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10698, '2022-10-06', 5592, 10203, 957, 906, '3.0000', '7.1500', '7.1500', '7.1500', '7.1500', '16.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10718, '2022-10-06', 5754, 10223, 960, 3505, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '26.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10679, '2022-10-06', 6896, 10184, 958, 3807, '5.0000', '28.8100', '28.8100', '32.1000', '32.1000', '66.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10678, '2022-10-06', 6677, 10183, 958, 1274, '5.0000', '10.0000', '10.0000', '10.0000', '10.0000', '264.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10677, '2022-10-06', 6652, 10182, 958, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '60.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10676, '2022-10-06', 6435, 10181, 958, 3833, '5.0000', '8.1000', '8.1000', '9.0000', '9.0000', '95.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10675, '2022-10-06', 6381, 10180, 958, 1490, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10674, '2022-10-06', 6360, 10179, 958, NULL, '8.0000', '2.5000', '2.5000', '2.5000', '2.5000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10673, '2022-10-06', 6360, 10179, 958, 1176, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10672, '2022-10-06', 6320, 10178, 958, 1053, '1.0000', '63.2200', '63.2200', '63.2200', '63.2200', '31.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10671, '2022-10-06', 6219, 10177, 958, NULL, '390.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-390.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10670, '2022-10-06', 6219, 10177, 958, 3150, '-340.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10669, '2022-10-06', 6007, 10176, 958, 2391, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '81.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10668, '2022-10-06', 5774, 10175, 958, 918, '4.0000', '15.0000', '15.0000', '15.0000', '15.0000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10667, '2022-10-06', 5713, 10174, 958, 3069, '3.0000', '6.6500', '6.6500', '6.6500', '6.6500', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10666, '2022-10-06', 5677, 10173, 958, 2351, '6.0000', '13.2000', '13.2000', '15.4000', '15.4000', '175.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10665, '2022-10-06', 5535, 10172, 958, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1171.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10680, '2022-10-06', 5947, 10185, 959, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10681, '2022-10-06', 6218, 10186, 959, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '54.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10716, '2022-10-06', 6285, 10221, 960, 2057, '1.0000', '9.4700', '9.4700', '10.9800', '10.9800', '64.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10715, '2022-10-06', 6228, 10220, 960, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10714, '2022-10-06', 6221, 10219, 960, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10713, '2022-10-06', 6215, 10218, 960, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10712, '2022-10-06', 6140, 10217, 960, 1882, '1.0000', '30.8000', '30.8000', '30.8000', '30.8000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10711, '2022-10-06', 6130, 10216, 960, 2979, '2.0000', '6.4000', '6.4000', '7.4000', '7.4000', '32.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10710, '2022-10-06', 6095, 10215, 960, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '96.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10709, '2022-10-06', 6030, 10214, 960, 1128, '2.0000', '4.4300', '4.4300', '4.4300', '4.4300', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10708, '2022-10-06', 5949, 10213, 960, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '471.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10707, '2022-10-06', 5885, 10212, 960, 1103, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '76.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10706, '2022-10-06', 5775, 10211, 960, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '66.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10705, '2022-10-06', 5740, 10210, 960, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '202.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10704, '2022-10-06', 5440, 10209, 960, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '269.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10717, '2022-10-06', 6380, 10222, 960, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10696, '2022-10-06', 5677, 10201, 961, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10697, '2022-10-06', 6845, 10202, 961, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10806, '2022-10-06', 6876, 10310, 962, 3015, '10.0000', '0.9800', '0.9800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10805, '2022-10-06', 6843, 10309, 962, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '33.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10804, '2022-10-06', 6686, 10308, 962, 559, '5.0000', '2.5000', '2.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10803, '2022-10-06', 6681, 10307, 962, 2983, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10802, '2022-10-06', 6617, 10306, 962, 557, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '25.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10801, '2022-10-06', 6446, 10305, 962, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '112.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10800, '2022-10-06', 6439, 10304, 962, 965, '3.0000', '10.2000', '10.2000', '10.2000', '10.2000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10799, '2022-10-06', 6435, 10303, 962, 3833, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '93.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10798, '2022-10-06', 6386, 10302, 962, 2346, '10.0000', '3.2000', '3.2000', '3.2000', '3.2000', '263.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10797, '2022-10-06', 6378, 10301, 962, 2255, '3.0000', '26.5000', '26.5000', '26.5000', '26.5000', '64.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10796, '2022-10-06', 6354, 10300, 962, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '530.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10795, '2022-10-06', 6353, 10299, 962, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '222.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10794, '2022-10-06', 6297, 10298, 962, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '33.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10793, '2022-10-06', 6294, 10297, 962, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '35.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10792, '2022-10-06', 6285, 10296, 962, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '61.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10791, '2022-10-06', 6242, 10295, 962, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '75.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10790, '2022-10-06', 6226, 10294, 962, 3491, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '55.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10789, '2022-10-06', 6223, 10293, 962, 3551, '20.0000', '0.6000', '0.6000', '0.6000', '0.6000', '385.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10788, '2022-10-06', 6220, 10292, 962, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '214.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10787, '2022-10-06', 6202, 10291, 962, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '381.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10786, '2022-10-06', 6162, 10290, 962, 3656, '6.0000', '6.6000', '6.6000', '7.3000', '7.3000', '99.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10785, '2022-10-06', 6010, 10289, 962, 3621, '3.0000', '15.4888', '15.4888', '16.5000', '16.5000', '312.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10784, '2022-10-06', 5969, 10288, 962, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '81.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10783, '2022-10-06', 5898, 10287, 962, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '210.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10782, '2022-10-06', 5853, 10286, 962, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '477.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10781, '2022-10-06', 5651, 10285, 962, 2386, '4.0000', '6.1700', '6.1700', '6.1700', '6.1700', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10780, '2022-10-06', 5593, 10284, 962, 2290, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10779, '2022-10-06', 5545, 10283, 962, 3500, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '25.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10778, '2022-10-06', 5418, 10282, 962, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '182.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10807, '2022-10-06', 5995, 10311, 962, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '50.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10749, '2022-10-06', 5827, 10254, 963, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '106.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10750, '2022-10-06', 6010, 10255, 963, 3621, '3.0000', '15.4888', '15.4888', '16.5000', '16.5000', '312.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10751, '2022-10-06', 6860, 10256, 963, 3738, '1.0000', '15.4923', '15.4923', '18.0000', '18.0000', '212.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10752, '2022-10-06', 5983, 10257, 963, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '164.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10753, '2022-10-06', 5731, 10258, 963, 1917, '3.0000', '17.2000', '17.2000', '17.2000', '17.2000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10754, '2022-10-06', 6124, 10259, 963, 3825, '1.0000', '18.1500', '18.1500', '20.0000', '20.0000', '119.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10755, '2022-10-06', 6603, 10260, 963, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '64.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10756, '2022-10-06', 6895, 10261, 963, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '110.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10757, '2022-10-06', 6542, 10262, 964, 2047, '6.0000', '7.8000', '7.8000', '9.0400', '9.0400', '40.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10758, '2022-10-06', 6767, 10263, 964, 2994, '8.0000', '9.5000', '9.5000', '9.5000', '9.5000', '18.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10759, '2022-10-06', 6234, 10264, 964, 3801, '6.0000', '34.8921', '34.8921', '40.3000', '40.3000', '99.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10760, '2022-10-06', 5439, 10265, 964, 3799, '4.0000', '27.2586', '27.2586', '58.4000', '58.4000', '119.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10761, '2022-10-06', 5641, 10266, 964, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10762, '2022-10-06', 5623, 10267, 964, 2556, '6.0000', '18.9000', '18.9000', '18.9000', '18.9000', '18.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10763, '2022-10-06', 6337, 10268, 964, 539, '3.0000', '49.5300', '49.5300', '49.5300', '49.5300', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10764, '2022-10-06', 6860, 10269, 964, 3738, '6.0000', '15.4923', '15.4923', '18.0000', '18.0000', '206.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10765, '2022-10-06', 6219, 10270, 965, 3150, '-390.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10766, '2022-10-06', 6219, 10270, 965, NULL, '410.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-410.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10767, '2022-10-06', 5906, 10271, 965, 2046, '2.0000', '15.8200', '15.8200', '15.8200', '15.8200', '22.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10768, '2022-10-06', 6134, 10272, 965, 1120, '6.0000', '5.8000', '5.8000', '5.8000', '5.8000', '119.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10769, '2022-10-06', 6663, 10273, 965, 2328, '6.0000', '2.5000', '2.5000', '2.5000', '2.5000', '157.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10770, '2022-10-06', 5731, 10274, 965, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10771, '2022-10-06', 5799, 10275, 966, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '101.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10772, '2022-10-06', 5535, 10276, 966, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1166.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10773, '2022-10-06', 6431, 10277, 966, 3834, '6.0000', '4.3200', '4.3200', '5.3000', '5.3000', '293.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10774, '2022-10-06', 5641, 10278, 966, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10775, '2022-10-06', 6835, 10279, 966, 289, '5.0000', '3.6000', '3.6000', '3.6000', '3.6000', '7.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10776, '2022-10-06', 6331, 10280, 966, 1952, '10.0000', '1.4900', '1.4900', '1.4900', '1.4900', '75.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10777, '2022-10-06', 5926, 10281, 966, 2072, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10808, '2022-10-06', 6898, 10312, 962, 3809, '1.0000', '9.0000', '9.0000', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11487, '2022-10-06', 6379, 10967, 967, 3421, '1.0000', '8.7056', '8.7056', '2.1000', '2.1000', '124.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11486, '2022-10-06', 6074, 10966, 967, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '842.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11485, '2022-10-06', 5976, 10965, 967, 2358, '2.0000', '7.7000', '7.7000', '7.8000', '7.8000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11484, '2022-10-06', 5949, 10964, 967, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '428.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11488, '2022-10-06', 6670, 10968, 967, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '45.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10814, '2022-10-06', 6074, 10318, 968, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '950.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10815, '2022-10-06', 6076, 10319, 968, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1848.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10816, '2022-10-06', 6075, 10320, 968, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1456.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10817, '2022-10-06', 6528, 10321, 968, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '241.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10818, '2022-10-06', 6864, 10322, 968, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4648.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10819, '2022-10-06', 6077, 10323, 968, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '79.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10820, '2022-10-06', 6867, 10324, 968, 1027, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10821, '2022-10-06', 6865, 10325, 968, 1026, '3.0000', '3.5000', '3.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10822, '2022-10-06', 5500, 10326, 969, 3751, '12.0000', '41.3100', '41.3100', '46.3000', '46.3000', '8.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10823, '2022-10-06', 5847, 10327, 969, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '393.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10824, '2022-10-06', 6074, 10328, 970, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '930.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10825, '2022-10-06', 6076, 10329, 970, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1838.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10826, '2022-10-06', 6075, 10330, 970, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1451.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10827, '2022-10-06', 6528, 10331, 970, 1899, '10.0000', '5.9800', '5.9800', '5.9800', '5.9800', '231.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10828, '2022-10-06', 6864, 10332, 970, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4646.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10829, '2022-10-06', 6077, 10333, 970, 3496, '2.0000', '4.2154', '4.2154', '4.0000', '4.0000', '77.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10830, '2022-10-06', 6867, 10334, 970, 1027, '2.0000', '3.5000', '3.5000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10831, '2022-10-06', 6865, 10335, 970, 1026, '3.0000', '3.5000', '3.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10832, '2022-10-06', 5731, 10336, 971, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10833, '2022-10-06', 6440, 10337, 972, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '5.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10834, '2022-10-06', 5792, 10338, 972, 1036, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '27.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10835, '2022-10-06', 5847, 10339, 973, 3136, '5.0000', '3.1651', '3.1651', '7.5000', '7.5000', '388.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10836, '2022-10-06', 5559, 10340, 973, 1940, '4.0000', '8.3000', '8.3000', '9.9300', '9.9300', '77.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10837, '2022-10-06', 6753, 10341, 974, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '199.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10838, '2022-10-06', 6074, 10342, 975, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '920.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10839, '2022-10-06', 5847, 10343, 976, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '378.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10840, '2022-10-06', 5949, 10344, 976, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '459.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10841, '2022-10-06', 6678, 10345, 976, 1461, '4.0000', '14.3000', '14.3000', '14.3000', '14.3000', '15.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10842, '2022-10-06', 6205, 10346, 977, 3026, '3.0000', '38.5000', '38.5000', '38.5000', '38.5000', '126.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10843, '2022-10-06', 5711, 10347, 978, 2009, '1.0000', '44.8000', '44.8000', '49.3000', '49.3000', '7.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11175, '2022-10-06', 6377, 10666, 979, 1465, '2.0000', '55.0000', '55.0000', '55.0000', '55.0000', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11174, '2022-10-06', 6273, 10665, 979, 3033, '6.0000', '26.0000', '26.0000', '26.0000', '26.0000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11173, '2022-10-06', 6243, 10664, 979, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '15.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11172, '2022-10-06', 6234, 10663, 979, 3801, '6.0000', '34.8921', '34.8921', '40.3000', '40.3000', '88.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11171, '2022-10-06', 5906, 10662, 979, 2046, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '17.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11170, '2022-10-06', 5768, 10661, 979, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '187.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11176, '2022-10-06', 6753, 10667, 979, 3737, '3.0000', '72.8788', '72.8788', '85.0000', '85.0000', '196.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10851, '2022-10-07', 5847, 10355, 980, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '377.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10852, '2022-10-07', 6024, 10356, 981, 937, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10853, '2022-10-07', 6210, 10357, 981, 3050, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10854, '2022-10-07', 5451, 10358, 981, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1187.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10855, '2022-10-07', 6260, 10359, 981, 2314, '1.0000', '5.7000', '5.7000', '5.7000', '5.7000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10856, '2022-10-07', 6260, 10359, 981, 1333, '1.0000', '5.7000', '5.7000', '5.7000', '5.7000', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10857, '2022-10-07', 6429, 10360, 981, 545, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10858, '2022-10-07', 5418, 10361, 981, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '180.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10859, '2022-10-07', 6890, 10362, 981, 3548, '2.0000', '3.5000', '3.5000', '4.6000', '4.6000', '501.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10860, '2022-10-07', 6007, 10363, 981, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '80.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10861, '2022-10-07', 6219, 10364, 981, 3150, '-410.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10862, '2022-10-07', 6219, 10364, 981, NULL, '420.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-420.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10863, '2022-10-07', 6261, 10365, 981, 2053, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '118.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10864, '2022-10-07', 5592, 10366, 981, 906, '2.0000', '7.1500', '7.1500', '7.1500', '7.1500', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10865, '2022-10-07', 6209, 10367, 981, 2287, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10866, '2022-10-07', 6621, 10368, 981, 1852, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '33.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10867, '2022-10-07', 6304, 10369, 981, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '110.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10868, '2022-10-07', 6600, 10370, 981, 1351, '1.0000', '12.9000', '12.9000', '12.9000', '12.9000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10869, '2022-10-07', 6889, 10371, 981, 3133, '1.0000', '24.3000', '24.3000', '13.5000', '13.5000', '42.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10870, '2022-10-07', 6820, 10372, 981, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '434.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10871, '2022-10-07', 6506, 10373, 981, 1846, '2.0000', '3.8800', '3.8800', '3.8800', '3.8800', '23.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10872, '2022-10-07', 5751, 10374, 981, 1112, '1.0000', '10.8000', '10.8000', '10.8000', '10.8000', '108.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10873, '2022-10-07', 6667, 10375, 981, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1095.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10874, '2022-10-07', 5986, 10376, 981, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '89.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10875, '2022-10-07', 6542, 10377, 981, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '38.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10876, '2022-10-07', 6264, 10378, 981, 3404, '2.0000', '6.0000', '6.0000', '6.8500', '6.8500', '92.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10877, '2022-10-07', 5749, 10379, 981, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '85.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10878, '2022-10-07', 6532, 10380, 981, 3579, '1.0000', '8.0796', '8.0796', '9.3700', '9.3700', '80.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10879, '2022-10-07', 5453, 10381, 981, 3652, '1.0000', '8.3000', '8.3000', '9.2000', '9.2000', '93.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10880, '2022-10-07', 5979, 10382, 981, 2316, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '459.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10881, '2022-10-07', 6677, 10383, 981, 1274, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '262.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10882, '2022-10-07', 6297, 10384, 981, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '31.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10883, '2022-10-07', 5969, 10385, 981, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '79.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10884, '2022-10-07', 6220, 10386, 981, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '211.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10885, '2022-10-07', 6895, 10387, 981, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '108.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10886, '2022-10-07', 6201, 10388, 981, 2315, '2.0000', '6.9000', '6.9000', '8.7000', '8.7000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10887, '2022-10-07', 6691, 10389, 981, 3813, '-50.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10888, '2022-10-07', 6691, 10389, 981, NULL, '53.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-53.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10889, '2022-10-07', 5677, 10390, 981, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '170.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10890, '2022-10-07', 5730, 10391, 981, 3005, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '81.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10891, '2022-10-07', 5729, 10392, 981, 1993, '1.0000', '10.5000', '10.5000', '10.5000', '10.5000', '44.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10892, '2022-10-07', 6751, 10393, 981, 2514, '-3.0000', '20.0000', '20.0000', '40.8300', '40.8300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10893, '2022-10-07', 6751, 10393, 981, NULL, '4.0000', '20.0000', '20.0000', '40.8300', '40.8300', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10894, '2022-10-07', 6414, 10394, 982, 763, '1.0000', '9.9000', '9.9000', '9.9000', '9.9000', '28.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10895, '2022-10-07', 6218, 10395, 983, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '52.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10896, '2022-10-07', 6828, 10396, 983, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '14.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11177, '2022-10-07', 6242, 10668, 1006, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '69.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11169, '2022-10-07', 6860, 10660, 984, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '182.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11168, '2022-10-07', 6752, 10659, 984, 3842, '6.0000', '22.0000', '22.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11167, '2022-10-07', 6683, 10658, 984, 1002, '4.0000', '8.2000', '8.2000', '8.2000', '8.2000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11166, '2022-10-07', 6584, 10657, 984, 3411, '10.0000', '8.2000', '8.2000', '8.2000', '8.2000', '5.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11165, '2022-10-07', 6519, 10656, 984, 975, '4.0000', '120.3600', '120.3600', '120.3600', '120.3600', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11164, '2022-10-07', 6445, 10655, 984, 3581, '5.0000', '21.8000', '21.8000', '21.6000', '21.6000', '52.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11163, '2022-10-07', 6439, 10654, 984, 965, '4.0000', '10.2000', '10.2000', '10.2000', '10.2000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11162, '2022-10-07', 6337, 10653, 984, 539, '1.0000', '49.5300', '49.5300', '49.5300', '49.5300', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11161, '2022-10-07', 6328, 10652, 984, 3817, '10.0000', '24.4100', '24.4100', '26.9000', '26.9000', '46.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11160, '2022-10-07', 6316, 10651, 984, 3757, '5.0000', '54.8358', '54.8358', '62.0000', '62.0000', '88.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11159, '2022-10-07', 6304, 10650, 984, 1853, '10.0000', '13.5000', '13.5000', '13.5000', '13.5000', '97.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11158, '2022-10-07', 6297, 10649, 984, 1855, '10.0000', '10.4000', '10.4000', '10.4000', '10.4000', '21.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11157, '2022-10-07', 6242, 10648, 984, 3588, '3.0000', '58.3529', '58.3529', '66.5300', '66.5300', '70.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11156, '2022-10-07', 6167, 10647, 984, 3661, '10.0000', '9.4000', '9.4000', '10.4000', '10.4000', '7.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11155, '2022-10-07', 6144, 10646, 984, 1864, '2.0000', '88.9000', '88.9000', '88.9000', '88.9000', '9.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11154, '2022-10-07', 6139, 10645, 984, 3055, '5.0000', '15.9500', '15.9500', '15.9500', '15.9500', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11153, '2022-10-07', 6125, 10644, 984, 3053, '10.0000', '10.5000', '10.5000', '12.5000', '12.5000', '138.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11152, '2022-10-07', 6124, 10643, 984, 3825, '5.0000', '18.1500', '18.1500', '20.0000', '20.0000', '114.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11151, '2022-10-07', 6102, 10642, 984, 2291, '4.0000', '27.8000', '27.8000', '27.8000', '27.8000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11150, '2022-10-07', 6076, 10641, 984, 3024, '36.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1782.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11149, '2022-10-07', 6075, 10640, 984, 3025, '36.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1379.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11148, '2022-10-07', 6074, 10639, 984, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '900.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11147, '2022-10-07', 6011, 10638, 984, 3028, '10.0000', '14.2100', '14.2100', '14.2100', '14.2100', '40.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11146, '2022-10-07', 5970, 10637, 984, 2310, '5.0000', '9.1500', '9.1500', '12.8500', '12.8500', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11145, '2022-10-07', 5948, 10636, 984, 2075, '20.0000', '6.0000', '6.0000', '9.0000', '9.0000', '274.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11144, '2022-10-07', 5827, 10635, 984, 3651, '10.0000', '5.9947', '5.9947', '6.6000', '6.6000', '94.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11143, '2022-10-07', 5792, 10634, 984, 1036, '5.0000', '30.2000', '30.2000', '36.9900', '36.9900', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11142, '2022-10-07', 5740, 10633, 984, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '187.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11141, '2022-10-07', 5557, 10632, 984, 565, '3.0000', '175.6100', '175.6100', '175.6100', '175.6100', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11178, '2022-10-07', 5519, 10669, 1006, 3663, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '241.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10928, '2022-10-07', 6197, 10426, 985, 3630, '-1.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10929, '2022-10-07', 6197, 10426, 985, NULL, '2.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10930, '2022-10-07', 6765, 10427, 986, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '38.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11048, '2022-10-07', 6253, 10542, 999, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '8.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11047, '2022-10-07', 6834, 10541, 987, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '91.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11046, '2022-10-07', 6379, 10540, 987, 3421, '8.0000', '8.7056', '8.7056', '2.1000', '2.1000', '130.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11045, '2022-10-07', 6286, 10539, 987, 953, '1.0000', '9.6000', '9.6000', '9.6000', '9.6000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11044, '2022-10-07', 6248, 10538, 987, 1408, '1.0000', '9.4000', '9.4000', '9.4000', '9.4000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11043, '2022-10-07', 5988, 10537, 987, 2033, '2.0000', '3.0000', '3.0000', '3.4200', '3.4200', '92.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11042, '2022-10-07', 5977, 10536, 987, 2360, '4.0000', '7.5000', '7.5000', '7.8000', '7.8000', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11041, '2022-10-07', 5967, 10535, 987, 3132, '2.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2524.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11040, '2022-10-07', 5949, 10534, 987, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '447.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11039, '2022-10-07', 5881, 10533, 987, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '68.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11038, '2022-10-07', 5714, 10532, 987, 2280, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11037, '2022-10-07', 5710, 10531, 987, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '95.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11036, '2022-10-07', 5629, 10530, 987, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11035, '2022-10-07', 5586, 10529, 987, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '198.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11034, '2022-10-07', 5440, 10528, 987, 2306, '2.0000', '3.4100', '3.4100', '3.4100', '3.4100', '267.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11049, '2022-10-07', 6242, 10543, 1000, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '70.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10947, '2022-10-07', 6027, 10444, 988, 1948, '1.0000', '17.2600', '17.2600', '22.2100', '22.2100', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10948, '2022-10-07', 5677, 10445, 988, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '167.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10949, '2022-10-07', 6692, 10446, 988, 2446, '-16.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10950, '2022-10-07', 6692, 10446, 988, NULL, '18.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10951, '2022-10-07', 6605, 10447, 989, 2119, '10.0000', '5.8000', '5.8000', '5.8000', '5.8000', '7.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10952, '2022-10-07', 6232, 10448, 990, 3587, '10.0000', '6.4556', '6.4556', '7.1000', '7.1000', '58.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10953, '2022-10-07', 6265, 10449, 991, 1863, '2.0000', '11.8000', '11.8000', '11.8000', '11.8000', '15.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10954, '2022-10-07', 5985, 10450, 991, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '60.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10955, '2022-10-07', 6835, 10451, 991, 289, '7.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10956, '2022-10-07', 6835, 10451, 991, NULL, '3.0000', '3.6000', '3.6000', '3.6000', '3.6000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10957, '2022-10-07', 6076, 10452, 991, 3024, '8.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1794.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10958, '2022-10-07', 5946, 10453, 992, 929, '1.0000', '58.4000', '58.4000', '58.4000', '58.4000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10959, '2022-10-07', 5657, 10454, 992, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '238.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10960, '2022-10-07', 6220, 10455, 992, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '206.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10961, '2022-10-07', 5677, 10456, 992, 2351, '7.0000', '13.2000', '13.2000', '15.4000', '15.4000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10962, '2022-10-07', 5853, 10457, 992, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '472.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10963, '2022-10-07', 5898, 10458, 992, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '207.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10964, '2022-10-07', 6451, 10459, 992, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10965, '2022-10-07', 6613, 10460, 992, 2300, '1.0000', '45.6000', '45.6000', '52.8000', '52.8000', '120.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10966, '2022-10-07', 6078, 10461, 992, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '548.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10967, '2022-10-07', 6339, 10462, 992, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10968, '2022-10-07', 6234, 10463, 992, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '88.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10969, '2022-10-07', 6607, 10464, 992, 2583, '3.0000', '16.0000', '16.0000', '17.7100', '17.7100', '63.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10970, '2022-10-07', 6296, 10465, 992, 3815, '5.0000', '25.4000', '25.4000', '28.5000', '28.5000', '187.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10971, '2022-10-07', 6609, 10466, 992, 3773, '4.0000', '11.6821', '11.6821', '12.7000', '12.7000', '150.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10972, '2022-10-07', 5926, 10467, 992, 2072, '18.0000', '10.9000', '10.9000', '10.9000', '10.9000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10973, '2022-10-07', 5926, 10467, 992, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '428.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10974, '2022-10-07', 5949, 10468, 992, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '447.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10975, '2022-10-07', 6264, 10469, 992, 3404, '5.0000', '6.0000', '6.0000', '6.8500', '6.8500', '87.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10976, '2022-10-07', 5618, 10470, 992, 3510, '5.0000', '7.4800', '7.4800', '8.8000', '8.8000', '92.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10977, '2022-10-07', 6435, 10471, 992, 3833, '4.0000', '8.1000', '8.1000', '9.0000', '9.0000', '89.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10978, '2022-10-07', 6383, 10472, 992, 1093, '4.0000', '8.2000', '8.2000', '8.2000', '8.2000', '36.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10979, '2022-10-07', 6814, 10473, 992, 1076, '1.0000', '61.8000', '61.8000', '61.8000', '61.8000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10980, '2022-10-07', 6042, 10474, 992, 938, '1.0000', '25.9500', '25.9500', '25.9500', '25.9500', '49.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10981, '2022-10-07', 6513, 10475, 992, 662, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10982, '2022-10-07', 6328, 10476, 992, 3817, '2.0000', '24.4100', '24.4100', '26.9000', '26.9000', '46.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10983, '2022-10-07', 5559, 10477, 992, 1940, '2.0000', '8.3000', '8.3000', '9.9300', '9.9300', '75.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10984, '2022-10-07', 6455, 10478, 992, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10985, '2022-10-07', 6037, 10479, 992, 1315, '3.0000', '9.1000', '9.1000', '9.1000', '9.1000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10986, '2022-10-07', 6260, 10480, 992, 1333, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10987, '2022-10-07', 5576, 10481, 992, 1108, '3.0000', '8.7000', '8.7000', '8.7000', '8.7000', '46.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10988, '2022-10-07', 5631, 10482, 992, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '105.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10989, '2022-10-07', 5581, 10483, 992, 2343, '3.0000', '11.3000', '11.3000', '11.3000', '11.3000', '147.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10990, '2022-10-07', 5582, 10484, 992, 2342, '3.0000', '12.5000', '12.5000', '12.5000', '12.5000', '274.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10991, '2022-10-07', 6301, 10485, 992, 1339, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '34.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10992, '2022-10-07', 5676, 10486, 992, 2018, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '72.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10993, '2022-10-07', 6205, 10487, 992, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '125.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10994, '2022-10-07', 5500, 10488, 992, 3751, '2.0000', '41.3100', '41.3100', '46.3000', '46.3000', '6.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10995, '2022-10-07', 6204, 10489, 992, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10996, '2022-10-07', 6353, 10490, 992, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '212.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10997, '2022-10-07', 6304, 10491, 992, 1853, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '97.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10998, '2022-10-07', 6384, 10492, 993, 1477, '4.0000', '9.6600', '9.6600', '9.6600', '9.6600', '106.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (10999, '2022-10-07', 6612, 10493, 994, 3772, '2.0000', '16.5600', '16.5600', '18.4000', '18.4000', '97.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11000, '2022-10-07', 6391, 10494, 994, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '59.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11001, '2022-10-07', 6024, 10495, 994, 937, '2.0000', '4.9900', '4.9900', '4.9900', '4.9900', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11002, '2022-10-07', 5911, 10496, 994, 2516, '1.0000', '28.8750', '28.8750', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11003, '2022-10-07', 6202, 10497, 994, 3006, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '379.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11004, '2022-10-07', 5976, 10498, 994, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '153.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11005, '2022-10-07', 5975, 10499, 994, 2379, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11006, '2022-10-07', 6417, 10500, 994, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '54.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11007, '2022-10-07', 6136, 10501, 994, 1324, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '91.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11008, '2022-10-07', 6838, 10502, 994, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '60.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11009, '2022-10-07', 5768, 10503, 994, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '187.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11010, '2022-10-07', 5926, 10504, 994, 1970, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '424.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11011, '2022-10-07', 6750, 10505, 994, 2125, '6.0000', '6.7000', '6.7000', '6.7000', '6.7000', '33.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11012, '2022-10-07', 5535, 10506, 994, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1156.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11013, '2022-10-07', 6027, 10507, 994, 1948, '1.0000', '17.2600', '17.2600', '22.2100', '22.2100', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11014, '2022-10-07', 5592, 10508, 994, 906, '4.0000', '7.1500', '7.1500', '7.1500', '7.1500', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11015, '2022-10-07', 6215, 10509, 994, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11016, '2022-10-07', 5955, 10510, 994, 3424, '1.0000', '17.9000', '17.9000', '17.9000', '17.9000', '23.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11017, '2022-10-07', 6078, 10511, 994, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '547.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11018, '2022-10-07', 5427, 10512, 994, 2365, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11019, '2022-10-07', 6895, 10513, 994, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '106.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11020, '2022-10-07', 5965, 10514, 994, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '118.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11021, '2022-10-07', 6670, 10515, 995, 1463, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '46.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11022, '2022-10-07', 6384, 10516, 995, 1477, '2.0000', '9.6600', '9.6600', '9.6600', '9.6600', '104.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11023, '2022-10-07', 5487, 10517, 995, 3816, '2.0000', '17.1500', '17.1500', '18.9000', '18.9000', '192.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11024, '2022-10-07', 5979, 10518, 995, 2316, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '457.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11025, '2022-10-07', 6416, 10519, 995, 962, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '69.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11026, '2022-10-07', 5881, 10520, 996, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '68.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11027, '2022-10-07', 5904, 10521, 996, 1308, '1.0000', '24.7000', '24.7000', '24.7000', '24.7000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11028, '2022-10-07', 6273, 10522, 996, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11029, '2022-10-07', 6433, 10523, 996, 587, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11030, '2022-10-07', 6765, 10524, 996, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '37.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11031, '2022-10-07', 6666, 10525, 997, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11032, '2022-10-07', 5947, 10526, 998, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11033, '2022-10-07', 6218, 10527, 998, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '51.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11050, '2022-10-07', 5853, 10544, 1000, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '467.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11051, '2022-10-07', 6010, 10545, 1000, 3621, '5.0000', '15.4888', '15.4888', '16.5000', '16.5000', '307.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11052, '2022-10-07', 6033, 10546, 1000, 3490, '5.0000', '31.4000', '31.4000', '31.4000', '31.4000', '20.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11481, '2022-10-07', 6699, 10961, 1001, 1287, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '174.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11480, '2022-10-07', 6557, 10960, 1001, 3735, '4.0000', '8.0659', '8.0659', '9.6000', '9.6000', '110.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11479, '2022-10-07', 6457, 10959, 1001, 3607, '1.0000', '39.9000', '39.9000', '43.9000', '43.9000', '0.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11478, '2022-10-07', 6417, 10958, 1001, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '50.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11477, '2022-10-07', 6378, 10957, 1001, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11476, '2022-10-07', 6377, 10956, 1001, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11475, '2022-10-07', 6374, 10955, 1001, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4250.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11474, '2022-10-07', 6232, 10954, 1001, 3587, '2.0000', '6.4556', '6.4556', '7.1000', '7.1000', '56.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11473, '2022-10-07', 6223, 10953, 1001, 3551, '50.0000', '0.6000', '0.6000', '0.6000', '0.6000', '330.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11472, '2022-10-07', 6220, 10952, 1001, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '193.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11471, '2022-10-07', 6207, 10951, 1001, 2375, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '30.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11470, '2022-10-07', 6205, 10950, 1001, 3026, '5.0000', '38.5000', '38.5000', '38.5000', '38.5000', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11469, '2022-10-07', 6144, 10949, 1001, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '8.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11468, '2022-10-07', 6143, 10948, 1001, 1121, '12.0000', '11.2000', '11.2000', '11.2000', '11.2000', '48.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11467, '2022-10-07', 6142, 10947, 1001, 2354, '8.0000', '9.3000', '9.3000', '9.3000', '9.3000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11466, '2022-10-07', 6141, 10946, 1001, 1166, '8.0000', '15.9500', '15.9500', '15.9500', '15.9500', '24.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11465, '2022-10-07', 6141, 10946, 1001, 2048, '4.0000', '15.9500', '15.9500', '15.9500', '15.9500', '0.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11464, '2022-10-07', 6095, 10945, 1001, 3138, '10.0000', '8.3200', '8.3200', '8.3200', '8.3200', '86.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11463, '2022-10-07', 6076, 10944, 1001, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1782.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11462, '2022-10-07', 6075, 10943, 1001, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1379.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11461, '2022-10-07', 5967, 10942, 1001, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2504.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11460, '2022-10-07', 5898, 10941, 1001, 2350, '10.0000', '13.2000', '13.2000', '13.2000', '13.2000', '197.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11459, '2022-10-07', 5799, 10940, 1001, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '95.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11458, '2022-10-07', 5757, 10939, 1001, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '98.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11457, '2022-10-07', 5642, 10938, 1001, 2320, '2.0000', '24.4300', '24.4300', '24.4300', '24.4300', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11456, '2022-10-07', 5641, 10937, 1001, 2319, '3.0000', '31.1000', '31.1000', '31.1000', '31.1000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11455, '2022-10-07', 5629, 10936, 1001, 1429, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11454, '2022-10-07', 5448, 10935, 1001, 2266, '5.0000', '14.5000', '14.5000', '14.5000', '14.5000', '89.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11482, '2022-10-07', 6879, 10962, 1001, 3121, '10.0000', '3.8700', '3.8700', '4.3000', '4.3000', '339.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11082, '2022-10-07', 6445, 10575, 1002, 3581, '1.0000', '21.8000', '21.8000', '21.6000', '21.6000', '52.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11083, '2022-10-07', 6208, 10576, 1002, 2113, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '109.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11084, '2022-10-07', 6621, 10577, 1002, 1852, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '31.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11085, '2022-10-07', 6834, 10578, 1002, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '89.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11086, '2022-10-07', 6667, 10579, 1002, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1090.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11087, '2022-10-07', 5710, 10580, 1002, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '94.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11088, '2022-10-07', 6354, 10581, 1002, 2344, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '525.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11089, '2022-10-07', 6603, 10582, 1002, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '62.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11090, '2022-10-07', 6829, 10583, 1002, 2561, '2.0000', '29.7000', '29.7000', '29.7000', '29.7000', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11091, '2022-10-07', 6408, 10584, 1002, 2068, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '65.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11092, '2022-10-07', 6285, 10585, 1002, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '58.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11093, '2022-10-07', 5657, 10586, 1002, 2382, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '235.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11094, '2022-10-07', 5995, 10587, 1002, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11095, '2022-10-07', 5730, 10588, 1002, 3005, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '78.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11096, '2022-10-07', 6007, 10589, 1002, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '79.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11097, '2022-10-07', 6607, 10590, 1002, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '61.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11098, '2022-10-07', 6608, 10591, 1002, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '158.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11099, '2022-10-07', 6609, 10592, 1002, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '148.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11100, '2022-10-07', 6496, 10593, 1002, 3758, '3.0000', '5.0500', '5.0500', '5.7000', '5.7000', '182.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11101, '2022-10-07', 5451, 10594, 1002, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1185.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11102, '2022-10-07', 5629, 10595, 1002, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11103, '2022-10-07', 6839, 10596, 1002, 3769, '5.0000', '4.9100', '4.9100', '5.5000', '5.5000', '53.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11104, '2022-10-07', 6542, 10597, 1002, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '36.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11105, '2022-10-07', 6352, 10598, 1002, 1409, '3.0000', '2.5000', '2.5000', '2.5000', '2.5000', '161.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11106, '2022-10-07', 6223, 10599, 1002, 3551, '5.0000', '0.6000', '0.6000', '0.6000', '0.6000', '330.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11107, '2022-10-07', 5827, 10600, 1002, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '94.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11108, '2022-10-07', 5418, 10601, 1003, 1851, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '170.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11109, '2022-10-07', 5592, 10602, 1003, 906, '5.0000', '7.1500', '7.1500', '7.1500', '7.1500', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11110, '2022-10-07', 5931, 10603, 1003, 1090, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '44.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11111, '2022-10-07', 6277, 10604, 1003, 3649, '5.0000', '24.2816', '24.2816', '27.5000', '27.5000', '10.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11112, '2022-10-07', 6285, 10605, 1003, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '53.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11113, '2022-10-07', 6368, 10606, 1003, 1091, '4.0000', '12.8400', '12.8400', '12.8400', '12.8400', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11114, '2022-10-07', 6474, 10607, 1003, 549, '12.0000', '71.2000', '71.2000', '71.2000', '71.2000', '35.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11115, '2022-10-07', 6860, 10608, 1003, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '182.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11116, '2022-10-07', 6158, 10609, 1003, 3653, '5.0000', '9.8000', '9.8000', '10.8000', '10.8000', '40.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11117, '2022-10-07', 6363, 10610, 1003, 1411, '5.0000', '14.8000', '14.8000', '22.7800', '22.7800', '148.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11118, '2022-10-07', 5677, 10611, 1003, 2351, '5.0000', '13.2000', '13.2000', '15.4000', '15.4000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11119, '2022-10-07', 6446, 10612, 1003, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '107.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11120, '2022-10-07', 6566, 10613, 1003, 2130, '2.0000', '88.8800', '88.8800', '88.8800', '88.8800', '8.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11121, '2022-10-07', 6122, 10614, 1004, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '13.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11122, '2022-10-07', 5949, 10615, 1004, 1311, '15.0000', '5.2000', '5.2000', '7.3000', '7.3000', '432.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11123, '2022-10-07', 5926, 10616, 1004, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '414.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11124, '2022-10-07', 6075, 10617, 1004, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1379.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11125, '2022-10-07', 5641, 10618, 1005, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11126, '2022-10-07', 5740, 10619, 1005, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '187.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11127, '2022-10-07', 5969, 10620, 1005, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '76.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11128, '2022-10-07', 6032, 10621, 1005, 2322, '2.0000', '17.2100', '17.2100', '17.2100', '17.2100', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11129, '2022-10-07', 6154, 10622, 1005, 3027, '1.0000', '39.1000', '39.1000', '39.1000', '39.1000', '77.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11130, '2022-10-07', 6228, 10623, 1005, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11131, '2022-10-07', 6323, 10624, 1005, 3764, '1.0000', '35.4980', '35.4980', '39.0000', '39.0000', '16.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11132, '2022-10-07', 6691, 10625, 1005, 3813, '-53.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11133, '2022-10-07', 6691, 10625, 1005, NULL, '63.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-63.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11134, '2022-10-07', 6692, 10626, 1005, 2446, '-18.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11135, '2022-10-07', 6692, 10626, 1005, NULL, '28.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-28.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11136, '2022-10-07', 6838, 10627, 1005, 2996, '3.0000', '17.7100', '17.7100', '17.7100', '17.7100', '57.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11137, '2022-10-07', 5986, 10628, 1005, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11138, '2022-10-07', 5977, 10629, 1005, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '49.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11139, '2022-10-07', 5976, 10630, 1005, 2358, '4.0000', '7.7000', '7.7000', '7.8000', '7.8000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11140, '2022-10-07', 6820, 10631, 1005, 3615, '2.0000', '5.2982', '5.2982', '5.9000', '5.9000', '432.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11179, '2022-10-07', 6164, 10670, 1006, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '60.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11180, '2022-10-07', 6309, 10671, 1006, 3422, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '19.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11181, '2022-10-07', 5656, 10672, 1006, 3841, '3.0000', '9.9000', '9.9000', '9.9000', '9.9000', '8.0000', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11292, '2022-10-07', 6572, 10778, 1007, 2993, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '90.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11291, '2022-10-07', 6385, 10777, 1007, 2309, '1.0000', '7.4000', '7.4000', '7.4000', '7.4000', '91.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11290, '2022-10-07', 6385, 10777, 1007, 2251, '4.0000', '7.4000', '7.4000', '7.4000', '7.4000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11289, '2022-10-07', 6383, 10776, 1007, 1093, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '23.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11293, '2022-10-07', 6751, 10779, 1007, 2514, '-4.0000', '20.0000', '20.0000', '40.8300', '40.8300', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11187, '2022-10-07', 5969, 10677, 1008, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11188, '2022-10-07', 5592, 10678, 1008, 906, '4.0000', '7.1500', '7.1500', '7.1500', '7.1500', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11189, '2022-10-07', 6074, 10679, 1008, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '895.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11190, '2022-10-07', 5731, 10680, 1008, 1917, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11191, '2022-10-07', 6220, 10681, 1008, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '197.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11192, '2022-10-07', 6813, 10682, 1008, 1368, '3.0000', '13.0000', '13.0000', '13.0000', '13.0000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11193, '2022-10-07', 5949, 10683, 1008, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '428.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11194, '2022-10-07', 5418, 10684, 1008, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '164.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11195, '2022-10-07', 5689, 10685, 1008, 2050, '6.0000', '3.3000', '3.3000', '3.3000', '3.3000', '47.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11196, '2022-10-07', 6408, 10686, 1008, 2068, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '61.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11197, '2022-10-07', 6409, 10687, 1008, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '138.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11198, '2022-10-07', 5975, 10688, 1008, 2379, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11199, '2022-10-07', 6749, 10689, 1008, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11200, '2022-10-07', 5535, 10690, 1008, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1146.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11201, '2022-10-07', 6385, 10691, 1008, 2251, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11202, '2022-10-07', 6383, 10692, 1008, 1093, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '28.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11203, '2022-10-07', 6312, 10693, 1008, 1118, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11204, '2022-10-07', 6078, 10694, 1008, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '546.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11205, '2022-10-07', 6273, 10695, 1008, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11206, '2022-10-07', 6007, 10696, 1009, 2391, '10.0000', '11.3800', '11.3800', '11.3800', '11.3800', '69.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11207, '2022-10-07', 6881, 10697, 1009, 3131, '1.0000', '49.5000', '49.5000', '55.0000', '55.0000', '26.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11208, '2022-10-07', 6074, 10698, 1009, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '892.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11209, '2022-10-07', 6316, 10699, 1010, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '87.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11210, '2022-10-07', 6612, 10700, 1010, 3772, '1.0000', '16.5600', '16.5600', '18.4000', '18.4000', '96.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11211, '2022-10-07', 6242, 10701, 1011, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '68.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11286, '2022-10-07', 5770, 10773, 1013, 3079, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11451, '2022-10-07', 6390, 10932, 1012, 1910, '1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11450, '2022-10-07', 6385, 10931, 1012, 2309, '5.0000', '7.4000', '7.4000', '7.4000', '7.4000', '91.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11449, '2022-10-07', 6383, 10930, 1012, 1093, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '23.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11448, '2022-10-07', 6378, 10929, 1012, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '61.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11447, '2022-10-07', 6375, 10928, 1012, 2304, '10.0000', '3.5200', '3.5200', '3.5200', '3.5200', '158.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11446, '2022-10-07', 6354, 10927, 1012, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '515.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11445, '2022-10-07', 6316, 10926, 1012, 3757, '1.0000', '54.8358', '54.8358', '62.0000', '62.0000', '86.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11444, '2022-10-07', 6297, 10925, 1012, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '19.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11443, '2022-10-07', 6285, 10924, 1012, 2057, '10.0000', '9.4700', '9.4700', '10.9800', '10.9800', '43.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11442, '2022-10-07', 6219, 10923, 1012, NULL, '470.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-470.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11441, '2022-10-07', 6219, 10923, 1012, 3150, '-420.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11440, '2022-10-07', 6205, 10922, 1012, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11439, '2022-10-07', 6201, 10921, 1012, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11438, '2022-10-07', 6144, 10920, 1012, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '8.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11437, '2022-10-07', 6136, 10919, 1012, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '81.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11436, '2022-10-07', 6083, 10918, 1012, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '68.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11435, '2022-10-07', 6082, 10917, 1012, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '171.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11434, '2022-10-07', 6074, 10916, 1012, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '842.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11433, '2022-10-07', 5995, 10915, 1012, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11432, '2022-10-07', 5983, 10914, 1012, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '162.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11431, '2022-10-07', 5977, 10913, 1012, 2360, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '44.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11430, '2022-10-07', 5969, 10912, 1012, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '63.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11429, '2022-10-07', 5967, 10911, 1012, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2504.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11428, '2022-10-07', 5906, 10910, 1012, 2046, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '12.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11427, '2022-10-07', 5886, 10909, 1012, 927, '3.0000', '8.6000', '8.6000', '8.6000', '8.6000', '121.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11426, '2022-10-07', 5885, 10908, 1012, 1103, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '73.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11425, '2022-10-07', 5849, 10907, 1012, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '68.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11424, '2022-10-07', 5768, 10906, 1012, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '186.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11423, '2022-10-07', 5654, 10905, 1012, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11422, '2022-10-07', 5641, 10904, 1012, 2319, '2.0000', '31.1000', '31.1000', '31.1000', '31.1000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11421, '2022-10-07', 5631, 10903, 1012, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '103.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11420, '2022-10-07', 5576, 10902, 1012, 1108, '2.0000', '8.7000', '8.7000', '8.7000', '8.7000', '44.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11419, '2022-10-07', 5535, 10901, 1012, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1145.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11418, '2022-10-07', 5440, 10900, 1012, 2306, '1.0000', '3.4100', '3.4100', '3.4100', '3.4100', '266.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11417, '2022-10-07', 5435, 10899, 1012, 2308, '5.0000', '7.4000', '7.4000', '7.4000', '7.4000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11452, '2022-10-07', 6750, 10933, 1012, 2125, '2.0000', '6.7000', '6.7000', '6.7000', '6.7000', '31.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11287, '2022-10-07', 6595, 10774, 1013, 2565, '1.0000', '7.9000', '7.9000', '7.9000', '7.9000', '67.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11288, '2022-10-07', 6074, 10775, 1014, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '852.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11294, '2022-10-07', 6751, 10779, 1007, NULL, '5.0000', '20.0000', '20.0000', '40.8300', '40.8300', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11295, '2022-10-07', 6171, 10780, 1015, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11374, '2022-10-07', 6220, 10857, 1017, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '193.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11375, '2022-10-07', 6205, 10858, 1017, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '118.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11376, '2022-10-07', 6508, 10859, 1017, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11377, '2022-10-07', 6314, 10860, 1017, 655, '1.0000', '33.0200', '33.0200', '33.0200', '33.0200', '3.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11378, '2022-10-07', 5975, 10861, 1017, 2379, '4.0000', '9.1500', '9.1500', '12.2100', '12.2100', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11379, '2022-10-07', 6609, 10862, 1017, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '146.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11380, '2022-10-07', 6296, 10863, 1017, 3815, '2.0000', '25.4000', '25.4000', '28.5000', '28.5000', '185.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11381, '2022-10-07', 6032, 10864, 1017, 2322, '2.0000', '17.2100', '17.2100', '17.2100', '17.2100', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11382, '2022-10-07', 5641, 10865, 1017, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11383, '2022-10-07', 6205, 10866, 1018, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11384, '2022-10-07', 6612, 10867, 1019, 3772, '3.0000', '16.5600', '16.5600', '18.4000', '18.4000', '93.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11385, '2022-10-07', 6557, 10868, 1019, 3735, '4.0000', '8.0659', '8.0659', '9.6000', '9.6000', '110.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11386, '2022-10-07', 6020, 10869, 1019, 2302, '2.0000', '16.1378', '16.1378', '20.9000', '20.9000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11387, '2022-10-07', 6417, 10870, 1019, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '50.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11388, '2022-10-07', 6379, 10871, 1019, 3421, '6.0000', '8.7056', '8.7056', '2.1000', '2.1000', '124.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11389, '2022-10-07', 5515, 10872, 1019, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '137.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11390, '2022-10-07', 6630, 10873, 1019, 1402, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11391, '2022-10-07', 6001, 10874, 1019, 1313, '5.0000', '5.1000', '5.1000', '6.2000', '6.2000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11392, '2022-10-07', 5714, 10875, 1019, 2280, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11393, '2022-10-07', 6074, 10876, 1019, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '842.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11394, '2022-10-07', 5828, 10877, 1019, 3660, '6.0000', '11.1000', '11.1000', '12.3000', '12.3000', '85.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11395, '2022-10-07', 5827, 10878, 1019, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '92.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11396, '2022-10-07', 5975, 10879, 1019, 2379, '5.0000', '9.1500', '9.1500', '12.2100', '12.2100', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11397, '2022-10-07', 6820, 10880, 1019, 3615, '4.0000', '5.2982', '5.2982', '5.9000', '5.9000', '428.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11398, '2022-10-07', 5801, 10881, 1019, 3123, '2.0000', '5.8500', '5.8500', '6.5000', '6.5000', '68.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11399, '2022-10-07', 5740, 10882, 1019, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '184.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11400, '2022-10-07', 5731, 10883, 1019, 1917, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11401, '2022-10-07', 6088, 10884, 1019, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '47.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11402, '2022-10-07', 5799, 10885, 1019, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '95.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11403, '2022-10-07', 6778, 10886, 1019, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '135.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11404, '2022-10-07', 6543, 10887, 1019, 2062, '2.0000', '11.2000', '11.2000', '13.9200', '13.9200', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11405, '2022-10-07', 6360, 10888, 1019, 3839, '-8.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11406, '2022-10-07', 6360, 10888, 1019, NULL, '18.0000', '2.5000', '2.5000', '2.5000', '2.5000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11407, '2022-10-07', 6603, 10889, 1019, 3768, '4.0000', '6.1900', '6.1900', '6.9000', '6.9000', '58.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11408, '2022-10-07', 5995, 10890, 1019, 3071, '4.0000', '6.0000', '6.0000', '7.6000', '7.6000', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11409, '2022-10-07', 6508, 10891, 1019, 973, '2.0000', '13.3000', '13.3000', '13.3000', '13.3000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11410, '2022-10-07', 6860, 10892, 1019, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '180.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11411, '2022-10-07', 6573, 10893, 1019, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11412, '2022-10-07', 5713, 10894, 1019, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11413, '2022-10-07', 6376, 10895, 1019, 2364, '31.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2154.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11414, '2022-10-07', 6595, 10896, 1020, 2565, '1.0000', '7.9000', '7.9000', '8.9000', '8.9000', '66.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11415, '2022-10-07', 5770, 10897, 1020, 3079, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11416, '2022-10-07', 6245, 10898, 1020, 2111, '4.0000', '2.9900', '2.9900', '2.9900', '2.9900', '91.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11453, '2022-10-07', 5795, 10934, 1021, 586, '1.0000', '35.3000', '35.3000', '35.0000', '35.0000', '41.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11483, '2022-10-07', 6685, 10963, 1022, 2981, '1.0000', '0.5000', '0.5000', '0.5000', '0.5000', '674.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11489, '2022-10-07', 6205, 10969, 1023, 3026, '4.0000', '38.5000', '38.5000', '38.5000', '38.5000', '112.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11490, '2022-10-07', 6860, 10970, 1023, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '168.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11491, '2022-10-07', 6273, 10971, 1024, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11492, '2022-10-07', 5947, 10972, 1025, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11493, '2022-10-07', 6590, 10973, 1025, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11494, '2022-10-07', 6696, 10974, 1025, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '328.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11495, '2022-10-07', 5947, 10975, 1026, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11496, '2022-10-07', 5715, 10976, 1026, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11497, '2022-10-07', 6079, 10977, 1027, 939, '1.0000', '19.0000', '19.0000', '19.0000', '19.0000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11498, '2022-10-07', 6221, 10978, 1028, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11499, '2022-10-07', 6696, 10979, 1028, 2282, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '323.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11500, '2022-10-07', 6190, 10980, 1029, 2126, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '48.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11501, '2022-10-07', 5963, 10981, 1030, 3428, '3.0000', '14.5000', '14.5000', '15.9500', '15.9500', '45.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11502, '2022-10-08', 5947, 10982, 1031, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11503, '2022-10-08', 6696, 10983, 1032, 2282, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '320.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11504, '2022-10-08', 5422, 10984, 1033, 3554, '-6.0000', '0.0000', '0.0000', '18.7000', '18.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11505, '2022-10-08', 5422, 10984, 1033, NULL, '7.0000', '0.0000', '0.0000', '18.7000', '18.7000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11506, '2022-10-08', 6075, 10985, 1034, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1369.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11507, '2022-10-08', 6074, 10986, 1034, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '832.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11508, '2022-10-08', 6860, 10987, 1034, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '166.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11867, '2022-10-10', 6228, 11327, 1081, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11866, '2022-10-10', 5775, 11326, 1081, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '62.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12434, '2022-10-08', 6228, 11864, 1035, 1954, '2.0000', '20.9500', '20.9500', '20.9500', '20.9500', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11512, '2022-10-08', 5603, 10991, 1036, 3011, '3.0000', '4.4000', '4.4000', '4.4000', '4.4000', '81.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11513, '2022-10-08', 6818, 10992, 1036, 3067, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '209.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11514, '2022-10-08', 6501, 10993, 1036, 3662, '1.0000', '9.0000', '9.0000', '10.6000', '10.6000', '32.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11515, '2022-10-08', 6218, 10994, 1037, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '49.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11516, '2022-10-08', 5715, 10995, 1037, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11517, '2022-10-08', 5947, 10996, 1038, 1967, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11518, '2022-10-08', 6218, 10997, 1038, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '47.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11519, '2022-10-08', 6180, 10998, 1039, 1861, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '79.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11520, '2022-10-08', 6843, 10999, 1040, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '32.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11521, '2022-10-08', 6841, 11000, 1040, 1372, '7.0000', '2.6000', '2.6000', '2.6000', '2.6000', '77.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11522, '2022-10-08', 6074, 11001, 1041, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '812.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11523, '2022-10-08', 6486, 11002, 1042, 1268, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '52.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11524, '2022-10-08', 5814, 11003, 1042, 1277, '3.0000', '24.0900', '24.0900', '24.0900', '24.0900', '90.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11525, '2022-10-08', 5792, 11004, 1042, 1036, '3.0000', '30.2000', '30.2000', '36.9900', '36.9900', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11526, '2022-10-08', 6290, 11005, 1042, 2318, '1.0000', '122.4000', '122.4000', '122.4000', '122.4000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11527, '2022-10-08', 6581, 11006, 1042, 3805, '5.0000', '10.3500', '10.3500', '11.5000', '11.5000', '41.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11528, '2022-10-08', 5799, 11007, 1042, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '91.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11529, '2022-10-08', 6408, 11008, 1042, 2068, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '56.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11530, '2022-10-08', 6699, 11009, 1042, 1287, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '169.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11531, '2022-10-08', 6559, 11010, 1042, 984, '2.0000', '66.2000', '66.2000', '75.0000', '75.0000', '11.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11672, '2022-10-08', 6841, 11141, 1043, 1372, '10.0000', '2.6000', '2.6000', '2.6000', '2.6000', '67.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11671, '2022-10-08', 6517, 11140, 1043, 2254, '2.0000', '8.7000', '8.7000', '10.4500', '10.4500', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11670, '2022-10-08', 6417, 11139, 1043, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '49.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11669, '2022-10-08', 6285, 11138, 1043, 2057, '3.0000', '9.4700', '9.4700', '10.9800', '10.9800', '38.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11668, '2022-10-08', 6275, 11137, 1043, 2032, '3.0000', '4.7000', '4.7000', '4.7000', '4.7000', '291.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11667, '2022-10-08', 6156, 11136, 1043, NULL, '146.0000', '5.0000', '5.0000', '0.5500', '0.5500', '-146.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11666, '2022-10-08', 6156, 11136, 1043, 3782, '-96.0000', '5.0000', '5.0000', '0.5500', '0.5500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11665, '2022-10-08', 6074, 11135, 1043, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '809.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11664, '2022-10-08', 6020, 11134, 1043, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '20.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11663, '2022-10-08', 5981, 11133, 1043, NULL, '2.0000', '12.6500', '12.6500', '12.6500', '12.6500', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11662, '2022-10-08', 5981, 11133, 1043, 3775, '-1.0000', '12.6500', '12.6500', '12.6500', '12.6500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11661, '2022-10-08', 5975, 11132, 1043, 1969, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11660, '2022-10-08', 5957, 11131, 1043, 3543, '2.0000', '3.7691', '3.7691', '8.8200', '8.8200', '5.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11659, '2022-10-08', 5799, 11130, 1043, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '87.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11658, '2022-10-08', 5689, 11129, 1043, 2050, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '43.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11657, '2022-10-08', 5654, 11128, 1043, 3062, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '114.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11656, '2022-10-08', 5603, 11127, 1043, 3011, '3.0000', '4.4000', '4.4000', '4.4000', '4.4000', '78.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11655, '2022-10-08', 5528, 11126, 1043, 3800, '2.0000', '13.2556', '13.2556', '16.6000', '16.6000', '45.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11673, '2022-10-08', 5971, 11142, 1050, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '58.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11551, '2022-10-08', 6838, 11028, 1044, 2996, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '55.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11552, '2022-10-08', 6095, 11029, 1044, 3138, '2.0000', '8.3200', '8.3200', '8.3200', '8.3200', '84.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12436, '2022-10-11', 5947, 11866, 1097, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13405, '2022-10-08', 6667, 12775, 1045, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1035.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13404, '2022-10-08', 6381, 12774, 1045, 1490, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13403, '2022-10-08', 6375, 12773, 1045, 2304, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '143.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13402, '2022-10-08', 6332, 12772, 1045, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13401, '2022-10-08', 6285, 12771, 1045, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '25.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13400, '2022-10-08', 6217, 12770, 1045, 946, '3.0000', '2.8800', '2.8800', '2.8800', '2.8800', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13399, '2022-10-08', 6158, 12769, 1045, 3653, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '35.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13398, '2022-10-08', 6117, 12768, 1045, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '287.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13397, '2022-10-08', 6112, 12767, 1045, 3820, '1.0000', '12.7000', '12.7000', '14.0000', '14.0000', '197.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13396, '2022-10-08', 6095, 12766, 1045, 3893, '3.0000', '8.3200', '8.3200', '8.3200', '8.3200', '397.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13395, '2022-10-08', 6009, 12765, 1045, 2262, '1.0000', '35.9000', '35.9000', '35.9000', '35.9000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13394, '2022-10-08', 5967, 12764, 1045, 3132, '5.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2489.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13393, '2022-10-08', 5949, 12763, 1045, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '357.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13392, '2022-10-08', 5898, 12762, 1045, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '188.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13391, '2022-10-08', 5847, 12761, 1045, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '362.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13390, '2022-10-08', 5757, 12760, 1045, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '97.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13389, '2022-10-08', 5754, 12759, 1045, 4060, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '24.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13388, '2022-10-08', 5677, 12758, 1045, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13387, '2022-10-08', 5657, 12757, 1045, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '208.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13386, '2022-10-08', 5440, 12756, 1045, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '245.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13385, '2022-10-08', 5422, 12755, 1045, 3847, '1.0000', '21.5769', '21.5769', '18.7000', '18.7000', '51.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13406, '2022-10-08', 6860, 12776, 1045, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '159.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12437, '2022-10-11', 5642, 11867, 1098, 2320, '1.0000', '24.4300', '24.4300', '24.4300', '24.4300', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11577, '2022-10-08', 6820, 11053, 1046, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '427.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11578, '2022-10-08', 6581, 11054, 1047, 3805, '1.0000', '10.3500', '10.3500', '11.5000', '11.5000', '40.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11579, '2022-10-08', 6667, 11055, 1047, 3835, '4.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1081.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11580, '2022-10-08', 6590, 11056, 1047, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11581, '2022-10-08', 6590, 11057, 1048, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11582, '2022-10-08', 6032, 11058, 1048, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11583, '2022-10-08', 6352, 11059, 1048, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '151.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11584, '2022-10-08', 5710, 11060, 1048, 1300, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '91.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11585, '2022-10-08', 6374, 11061, 1048, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4240.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11586, '2022-10-08', 5853, 11062, 1048, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '463.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11587, '2022-10-08', 5949, 11063, 1048, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '422.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11588, '2022-10-08', 6605, 11064, 1048, 2119, '2.0000', '5.8000', '5.8000', '5.8000', '5.8000', '5.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11589, '2022-10-08', 5976, 11065, 1048, 2358, '4.0000', '7.7000', '7.7000', '7.8000', '7.8000', '145.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11590, '2022-10-08', 6188, 11066, 1048, 3080, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11591, '2022-10-08', 5996, 11067, 1048, 933, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '667.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11650, '2022-10-08', 6863, 11121, 1049, NULL, '27.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-27.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11649, '2022-10-08', 6863, 11121, 1049, 3612, '-25.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11648, '2022-10-08', 6834, 11120, 1049, 2034, '4.0000', '5.3000', '5.3000', '5.3000', '5.3000', '85.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11647, '2022-10-08', 6754, 11119, 1049, 1906, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '357.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11646, '2022-10-08', 6667, 11118, 1049, 3835, '1.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1080.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11645, '2022-10-08', 6621, 11117, 1049, 1852, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '28.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11644, '2022-10-08', 6619, 11116, 1049, 3412, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11643, '2022-10-08', 6573, 11115, 1049, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11642, '2022-10-08', 6496, 11114, 1049, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '177.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11641, '2022-10-08', 6267, 11113, 1049, NULL, '3.0000', '7.1000', '7.1000', '8.0400', '8.0400', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11640, '2022-10-08', 6267, 11113, 1049, 1425, '2.0000', '7.1000', '7.1000', '8.0400', '8.0400', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11639, '2022-10-08', 6154, 11112, 1049, 3027, '1.0000', '39.1000', '39.1000', '39.1000', '39.1000', '76.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11638, '2022-10-08', 6040, 11111, 1049, 2986, '5.0000', '3.0500', '3.0500', '3.0500', '3.0500', '2.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11637, '2022-10-08', 6039, 11110, 1049, 2985, '5.0000', '4.5500', '4.5500', '4.5500', '4.5500', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11636, '2022-10-08', 5948, 11109, 1049, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '270.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11635, '2022-10-08', 5535, 11108, 1049, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1140.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11634, '2022-10-08', 5451, 11107, 1049, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1165.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11651, '2022-10-08', 6864, 11122, 1049, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4643.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11652, '2022-10-08', 6376, 11123, 1049, 2364, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11653, '2022-10-08', 6127, 11124, 1049, 1841, '4.0000', '7.3000', '7.3000', '7.3000', '7.3000', '83.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11654, '2022-10-08', 5799, 11125, 1049, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '87.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11674, '2022-10-08', 6309, 11143, 1051, 3422, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '18.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11675, '2022-10-08', 6557, 11144, 1051, 3735, '1.0000', '8.0659', '8.0659', '9.6000', '9.6000', '109.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11676, '2022-10-08', 6218, 11145, 1052, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '46.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11691, '2022-10-08', 6225, 11158, 1053, 2250, '45.0000', '2.8000', '2.8000', '2.8000', '2.8000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11690, '2022-10-08', 6220, 11157, 1053, 2388, '18.0000', '5.0000', '5.0000', '5.0000', '5.0000', '175.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11692, '2022-10-08', 6225, 11158, 1053, 2356, '41.0000', '2.8000', '2.8000', '2.8000', '2.8000', '259.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11680, '2022-10-08', 5947, 11148, 1054, 1967, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11684, '2022-10-08', 5427, 11151, 1055, 2365, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '118.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11685, '2022-10-08', 5926, 11152, 1055, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '409.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11686, '2022-10-08', 6608, 11153, 1055, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '156.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11687, '2022-10-08', 6609, 11154, 1055, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '144.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11688, '2022-10-08', 6332, 11155, 1055, 2560, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '18.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11689, '2022-10-08', 6218, 11156, 1056, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '45.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11693, '2022-10-08', 6220, 11159, 1057, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '170.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11694, '2022-10-08', 5689, 11160, 1058, 2050, '8.0000', '3.3000', '3.3000', '3.3000', '3.3000', '35.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11695, '2022-10-08', 5451, 11161, 1059, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1163.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11696, '2022-10-08', 6408, 11162, 1060, 2068, '1.0000', '4.6700', '4.6700', '6.0300', '6.0300', '55.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11697, '2022-10-08', 6408, 11163, 1061, 2068, '1.0000', '4.6700', '4.6700', '6.0300', '6.0300', '54.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11698, '2022-10-08', 5586, 11164, 1062, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '197.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11699, '2022-10-10', 6590, 11165, 1063, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11700, '2022-10-10', 5715, 11166, 1063, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11701, '2022-10-10', 5535, 11167, 1064, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1130.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11702, '2022-10-10', 6099, 11168, 1064, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '35.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11703, '2022-10-10', 6202, 11169, 1064, 3006, '4.0000', '9.5000', '9.5000', '9.5000', '9.5000', '375.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11704, '2022-10-10', 6408, 11170, 1064, 2068, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '52.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11705, '2022-10-10', 6409, 11171, 1064, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '136.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11706, '2022-10-10', 6136, 11172, 1064, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '71.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11707, '2022-10-10', 6074, 11173, 1065, 2303, '15.0000', '8.5000', '8.5000', '8.5000', '8.5000', '794.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11708, '2022-10-10', 5949, 11174, 1065, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '412.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11709, '2022-10-10', 5926, 11175, 1065, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '404.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11710, '2022-10-10', 6872, 11176, 1065, 2598, '-70.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11711, '2022-10-10', 6872, 11176, 1065, NULL, '80.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-80.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11712, '2022-10-10', 6667, 11177, 1065, 3835, '10.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1070.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11713, '2022-10-10', 6154, 11178, 1065, 3027, '1.0000', '39.1000', '39.1000', '43.0000', '43.0000', '75.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11714, '2022-10-10', 6691, 11179, 1065, 3813, '-63.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11715, '2022-10-10', 6691, 11179, 1065, NULL, '73.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-73.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11716, '2022-10-10', 6385, 11180, 1066, 2309, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12257, '2022-10-10', 6351, 11696, 1067, 1344, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12256, '2022-10-10', 6350, 11695, 1067, 1343, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12255, '2022-10-10', 6349, 11694, 1067, 1342, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12254, '2022-10-10', 6183, 11693, 1067, 749, '5.0000', '5.7500', '5.7500', '5.7500', '5.7500', '184.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12253, '2022-10-10', 5601, 11692, 1067, 3035, '3.0000', '4.2917', '4.2917', '5.9500', '5.9500', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12252, '2022-10-10', 5600, 11691, 1067, 3051, '3.0000', '2.6233', '2.6233', '3.6000', '3.6000', '868.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12251, '2022-10-10', 5456, 11690, 1067, 2330, '4.0000', '10.6000', '10.6000', '10.6000', '10.6000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12258, '2022-10-10', 6832, 11697, 1067, 1381, '5.0000', '2.6000', '2.6000', '2.6000', '2.6000', '321.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11725, '2022-10-10', 6417, 11189, 1068, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '48.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11726, '2022-10-10', 6415, 11190, 1069, 2056, '1.0000', '4.6200', '4.6200', '4.6200', '4.6200', '163.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11727, '2022-10-10', 6158, 11191, 1069, 3653, '1.0000', '9.8000', '9.8000', '10.8000', '10.8000', '37.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11728, '2022-10-10', 6828, 11192, 1070, 3501, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '13.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11729, '2022-10-10', 6218, 11193, 1070, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '44.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11730, '2022-10-10', 5947, 11194, 1071, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11731, '2022-10-10', 6218, 11195, 1071, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '43.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11732, '2022-10-10', 6590, 11196, 1071, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11848, '2022-10-10', 5991, 11310, 1078, NULL, '1.0000', '37.7000', '37.7000', '41.0000', '41.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11802, '2022-10-10', 6749, 11266, 1072, 1945, '2.0000', '40.0000', '40.0000', '42.0000', '42.0000', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11801, '2022-10-10', 6717, 11265, 1072, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '7.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11800, '2022-10-10', 6712, 11264, 1072, 3387, '5.0000', '7.8000', '7.8000', '7.8000', '7.8000', '3.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11799, '2022-10-10', 6533, 11263, 1072, 3727, '3.0000', '3.9000', '3.9000', '3.9000', '3.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11798, '2022-10-10', 6472, 11262, 1072, 756, '1.0000', '28.0000', '28.0000', '28.0000', '28.0000', '18.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11797, '2022-10-10', 6441, 11261, 1072, 3803, '2.0000', '207.6800', '207.6800', '230.8000', '230.8000', '8.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11796, '2022-10-10', 6288, 11260, 1072, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '71.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11795, '2022-10-10', 6260, 11259, 1072, 1333, '5.0000', '5.7000', '5.7000', '5.7000', '5.7000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11794, '2022-10-10', 6242, 11258, 1072, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '66.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11793, '2022-10-10', 6201, 11257, 1072, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11792, '2022-10-10', 6058, 11256, 1072, 1316, '2.0000', '20.3000', '20.3000', '20.3000', '20.3000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11791, '2022-10-10', 5988, 11255, 1072, 2033, '10.0000', '3.0000', '3.0000', '3.4200', '3.4200', '82.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11790, '2022-10-10', 5926, 11254, 1072, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '391.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11789, '2022-10-10', 5849, 11253, 1072, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '63.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11788, '2022-10-10', 5834, 11252, 1072, 1989, '2.0000', '41.5800', '41.5800', '41.5800', '41.5800', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11787, '2022-10-10', 5799, 11251, 1072, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '82.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11786, '2022-10-10', 5792, 11250, 1072, 1036, '5.0000', '30.2000', '30.2000', '36.9900', '36.9900', '13.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11785, '2022-10-10', 5611, 11249, 1072, 1858, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11784, '2022-10-10', 5588, 11248, 1072, 3075, '5.0000', '14.9600', '14.9600', '14.9600', '14.9600', '93.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11783, '2022-10-10', 5587, 11247, 1072, 3076, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '178.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11837, '2022-10-10', 6886, 11300, 1075, 3124, '2.0000', '10.8000', '10.8000', '12.0000', '12.0000', '18.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11755, '2022-10-10', 6840, 11219, 1073, 1371, '1.0000', '5.2000', '5.2000', '5.2000', '5.2000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11756, '2022-10-10', 6374, 11220, 1074, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4190.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11757, '2022-10-10', 6122, 11221, 1074, 648, '1.0000', '47.2000', '47.2000', '47.2000', '47.2000', '12.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11758, '2022-10-10', 5531, 11222, 1074, 2123, '1.0000', '80.5000', '80.5000', '80.5000', '80.5000', '7.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11759, '2022-10-10', 5792, 11223, 1074, 1036, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '13.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11760, '2022-10-10', 5926, 11224, 1074, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '391.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11761, '2022-10-10', 5582, 11225, 1074, 2342, '1.0000', '12.5000', '12.5000', '12.5000', '12.5000', '273.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11762, '2022-10-10', 5581, 11226, 1074, 2343, '1.0000', '11.3000', '11.3000', '11.3000', '11.3000', '146.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11763, '2022-10-10', 5657, 11227, 1074, 2382, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '228.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11764, '2022-10-10', 5641, 11228, 1074, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11765, '2022-10-10', 6778, 11229, 1074, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '134.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11766, '2022-10-10', 6285, 11230, 1074, 2057, '2.0000', '9.4700', '9.4700', '10.9800', '10.9800', '36.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11767, '2022-10-10', 6373, 11231, 1074, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '14.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11768, '2022-10-10', 5593, 11232, 1074, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '19.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11769, '2022-10-10', 6293, 11233, 1074, 3486, '3.0000', '14.6000', '14.6000', '14.6000', '14.6000', '167.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11770, '2022-10-10', 6273, 11234, 1074, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '42.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11771, '2022-10-10', 5440, 11235, 1074, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '258.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11772, '2022-10-10', 6264, 11236, 1074, 3404, '3.0000', '6.0000', '6.0000', '6.8500', '6.8500', '84.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11773, '2022-10-10', 6506, 11237, 1074, 1846, '5.0000', '3.8800', '3.8800', '3.8800', '3.8800', '18.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11774, '2022-10-10', 6205, 11238, 1074, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '111.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11775, '2022-10-10', 5986, 11239, 1074, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '87.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11776, '2022-10-10', 5949, 11240, 1074, 1311, '7.0000', '5.2000', '5.2000', '7.3000', '7.3000', '405.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11777, '2022-10-10', 5740, 11241, 1074, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '182.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11778, '2022-10-10', 5535, 11242, 1074, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1120.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11779, '2022-10-10', 6408, 11243, 1074, 2068, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '48.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11780, '2022-10-10', 6460, 11244, 1074, 1078, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '55.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11781, '2022-10-10', 5977, 11245, 1074, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '41.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11782, '2022-10-10', 6612, 11246, 1074, 3772, '1.0000', '16.5600', '16.5600', '18.4000', '18.4000', '92.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11836, '2022-10-10', 6607, 11299, 1075, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '59.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11835, '2022-10-10', 6288, 11298, 1075, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '70.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11834, '2022-10-10', 6242, 11297, 1075, 3588, '2.0000', '58.3529', '58.3529', '66.5300', '66.5300', '64.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11833, '2022-10-10', 5805, 11296, 1075, 1305, '2.0000', '9.0000', '9.0000', '9.0000', '9.0000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11832, '2022-10-10', 5439, 11295, 1075, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '117.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11810, '2022-10-10', 6838, 11274, 1076, 2996, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '54.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11811, '2022-10-10', 6820, 11275, 1076, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '426.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11812, '2022-10-10', 6831, 11276, 1076, 3391, '2.0000', '1.6000', '1.6000', '1.6000', '1.6000', '675.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11813, '2022-10-10', 6825, 11277, 1076, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '869.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11814, '2022-10-10', 6379, 11278, 1076, 3421, '2.0000', '8.7056', '8.7056', '2.1000', '2.1000', '122.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11815, '2022-10-10', 6374, 11279, 1076, 3614, '5.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4185.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11816, '2022-10-10', 5710, 11280, 1076, 1300, '4.0000', '4.0200', '4.0200', '4.0200', '4.0200', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11849, '2022-10-10', 6378, 11311, 1078, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '60.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11878, '2022-10-10', 6316, 11335, 1077, 3757, '10.0000', '54.8358', '54.8358', '74.0000', '74.0000', '76.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11877, '2022-10-10', 6205, 11334, 1077, 3026, '3.0000', '38.5000', '38.5000', '38.5000', '38.5000', '108.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11876, '2022-10-10', 5770, 11333, 1077, 2989, '18.0000', '4.0000', '4.0000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11875, '2022-10-10', 5770, 11333, 1077, 3079, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11874, '2022-10-10', 5418, 11332, 1077, 1851, '24.0000', '5.5000', '5.5000', '5.5000', '5.5000', '140.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11879, '2022-10-10', 5985, 11336, 1077, 3056, '5.0000', '12.2000', '12.2000', '12.2000', '12.2000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11850, '2022-10-10', 6225, 11312, 1078, 2356, '1.0000', '2.8000', '2.8000', '2.8000', '2.8000', '258.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11840, '2022-10-10', 5651, 11303, 1079, 2386, '5.0000', '6.1700', '6.1700', '6.1700', '6.1700', '54.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11841, '2022-10-10', 6559, 11304, 1080, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12433, '2022-10-08', 5775, 11863, 1035, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '62.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12435, '2022-10-11', 6218, 11865, 1097, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '32.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11868, '2022-10-10', 6872, 11328, 1081, 2598, '-80.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11869, '2022-10-10', 6872, 11328, 1081, NULL, '100.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-100.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11870, '2022-10-10', 6380, 11329, 1081, 3073, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '9.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11871, '2022-10-10', 5991, 11330, 1081, 3848, '-1.0000', '37.7000', '37.7000', '41.0000', '41.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11872, '2022-10-10', 5991, 11330, 1081, NULL, '2.0000', '37.7000', '37.7000', '41.0000', '41.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11873, '2022-10-10', 5983, 11331, 1082, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11880, '2022-10-10', 6753, 11337, 1077, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '191.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12556, '2022-10-10', 6217, 11973, 1083, 946, '10.0000', '2.8800', '2.8800', '2.8800', '2.8800', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12555, '2022-10-10', 6895, 11972, 1083, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '95.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12554, '2022-10-10', 6829, 11971, 1083, 2561, '5.0000', '29.7000', '29.7000', '29.7000', '29.7000', '5.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12553, '2022-10-10', 6809, 11970, 1083, 1299, '5.0000', '13.8000', '13.8000', '13.8000', '13.8000', '61.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12552, '2022-10-10', 6692, 11969, 1083, NULL, '38.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-38.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12551, '2022-10-10', 6692, 11969, 1083, 2446, '-28.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12550, '2022-10-10', 6667, 11968, 1083, 3835, '10.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1060.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12549, '2022-10-10', 6584, 11967, 1083, 3411, '4.0000', '8.2000', '8.2000', '8.2000', '8.2000', '1.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12548, '2022-10-10', 6583, 11966, 1083, 1374, '2.0000', '14.3000', '14.3000', '14.3000', '14.3000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12547, '2022-10-10', 6565, 11965, 1083, 2007, '1.0000', '64.7800', '64.7800', '64.7800', '64.7800', '3.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12546, '2022-10-10', 6513, 11964, 1083, 607, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12545, '2022-10-10', 6513, 11964, 1083, 662, '4.0000', '14.0000', '14.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12544, '2022-10-10', 6508, 11963, 1083, 973, '5.0000', '13.3000', '13.3000', '13.3000', '13.3000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12543, '2022-10-10', 6496, 11962, 1083, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '162.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12542, '2022-10-10', 6459, 11961, 1083, 966, '4.0000', '20.9000', '20.9000', '20.9000', '20.9000', '36.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12541, '2022-10-10', 6431, 11960, 1083, 3834, '10.0000', '4.3200', '4.3200', '5.3000', '5.3000', '283.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12540, '2022-10-10', 6427, 11959, 1083, 1475, '3.0000', '17.5000', '17.5000', '17.5000', '17.5000', '16.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12539, '2022-10-10', 6411, 11958, 1083, 764, '3.0000', '17.6000', '17.6000', '17.6000', '17.6000', '68.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12538, '2022-10-10', 6394, 11957, 1083, 3823, '10.0000', '5.4400', '5.4400', '6.6000', '6.6000', '251.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12537, '2022-10-10', 6333, 11956, 1083, 2361, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '95.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12536, '2022-10-10', 6286, 11955, 1083, 953, '2.0000', '9.6000', '9.6000', '9.6000', '9.6000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12535, '2022-10-10', 6277, 11954, 1083, 3649, '5.0000', '24.2816', '24.2816', '27.5000', '27.5000', '5.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12534, '2022-10-10', 6276, 11953, 1083, 1157, '5.0000', '17.6000', '17.6000', '17.6000', '17.6000', '10.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12533, '2022-10-10', 6273, 11952, 1083, 3033, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12532, '2022-10-10', 6225, 11951, 1083, 2356, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '236.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12531, '2022-10-10', 6220, 11950, 1083, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '160.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12530, '2022-10-10', 6185, 11949, 1083, 3401, '3.0000', '7.8500', '7.8500', '7.8500', '7.8500', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12529, '2022-10-10', 6184, 11948, 1083, 945, '5.0000', '7.8500', '7.8500', '7.8500', '7.8500', '27.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12528, '2022-10-10', 6115, 11947, 1083, 1156, '3.0000', '7.1000', '7.1000', '7.1000', '7.1000', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12527, '2022-10-10', 6115, 11947, 1083, 3730, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12526, '2022-10-10', 6101, 11946, 1083, 2999, '3.0000', '28.5000', '28.5000', '28.5000', '28.5000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12525, '2022-10-10', 6096, 11945, 1083, 2990, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12524, '2022-10-10', 6092, 11944, 1083, 528, '4.0000', '14.9000', '14.9000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12523, '2022-10-10', 6083, 11943, 1083, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12522, '2022-10-10', 6037, 11942, 1083, 1315, '6.0000', '9.1000', '9.1000', '9.1000', '9.1000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12521, '2022-10-10', 6034, 11941, 1083, 1874, '3.0000', '41.8000', '41.8000', '48.0000', '48.0000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12520, '2022-10-10', 6032, 11940, 1083, 2322, '5.0000', '17.2100', '17.2100', '17.2100', '17.2100', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12519, '2022-10-10', 5986, 11939, 1083, 2311, '5.0000', '13.7000', '13.7000', '14.2500', '14.2500', '80.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12518, '2022-10-10', 5978, 11938, 1083, 3068, '2.0000', '21.3000', '21.3000', '21.3000', '21.3000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12517, '2022-10-10', 5969, 11937, 1083, 2252, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12516, '2022-10-10', 5955, 11936, 1083, 3424, '5.0000', '17.9000', '17.9000', '17.9000', '17.9000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12515, '2022-10-10', 5949, 11935, 1083, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '374.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12514, '2022-10-10', 5948, 11934, 1083, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '252.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12513, '2022-10-10', 5926, 11933, 1083, 1970, '30.0000', '10.9000', '10.9000', '10.9000', '10.9000', '335.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12512, '2022-10-10', 5911, 11932, 1083, NULL, '6.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12511, '2022-10-10', 5911, 11932, 1083, 2516, '-1.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12510, '2022-10-10', 5853, 11931, 1083, 3620, '10.0000', '8.8287', '8.8287', '10.5000', '10.5000', '433.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12509, '2022-10-10', 5778, 11930, 1083, 3822, '7.0000', '16.3911', '16.3911', '18.0000', '18.0000', '88.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12508, '2022-10-10', 5770, 11929, 1083, 2989, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12507, '2022-10-10', 5729, 11928, 1083, 1993, '10.0000', '10.5000', '10.5000', '10.5000', '10.5000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12506, '2022-10-10', 5696, 11927, 1083, 514, '5.0000', '14.0000', '14.0000', '14.0000', '14.0000', '57.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12505, '2022-10-10', 5689, 11926, 1083, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '25.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12504, '2022-10-10', 5655, 11925, 1083, 1114, '5.0000', '28.5000', '28.5000', '28.5000', '28.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12503, '2022-10-10', 5641, 11924, 1083, 2319, '5.0000', '31.1000', '31.1000', '31.1000', '31.1000', '44.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12502, '2022-10-10', 5623, 11923, 1083, 2556, '5.0000', '18.9000', '18.9000', '18.9000', '18.9000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12501, '2022-10-10', 5619, 11922, 1083, 3509, '8.0000', '6.6300', '6.6300', '7.8000', '7.8000', '83.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12500, '2022-10-10', 5535, 11921, 1083, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1099.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12557, '2022-10-11', 5841, 11974, 1102, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '102.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12242, '2022-10-10', 6813, 11681, 1084, 1368, '4.0000', '13.0000', '13.0000', '13.0000', '13.0000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12241, '2022-10-10', 6809, 11680, 1084, 1299, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '61.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12240, '2022-10-10', 6778, 11679, 1084, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '133.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12239, '2022-10-10', 6764, 11678, 1084, 3580, '5.0000', '5.9900', '5.9900', '6.3500', '6.3500', '32.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12238, '2022-10-10', 6663, 11677, 1084, 2328, '6.0000', '2.5000', '2.5000', '2.5000', '2.5000', '151.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12237, '2022-10-10', 6607, 11676, 1084, 2583, '1.0000', '16.0000', '16.0000', '17.7100', '17.7100', '58.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12236, '2022-10-10', 6606, 11675, 1084, 1352, '2.0000', '15.5300', '15.5300', '15.5300', '15.5300', '34.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12235, '2022-10-10', 6605, 11674, 1084, 1445, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '5.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12234, '2022-10-10', 6605, 11674, 1084, 2119, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12233, '2022-10-10', 6573, 11673, 1084, 1964, '2.0000', '21.4000', '21.4000', '21.4000', '21.4000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12232, '2022-10-10', 6538, 11672, 1084, 3074, '4.0000', '10.3000', '10.3000', '10.3000', '10.3000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12231, '2022-10-10', 6458, 11671, 1084, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '99.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12230, '2022-10-10', 6434, 11670, 1084, 1895, '6.0000', '5.2000', '5.2000', '5.2000', '5.2000', '125.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12229, '2022-10-10', 6391, 11669, 1084, 762, '4.0000', '3.3200', '3.3200', '3.3200', '3.3200', '55.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12228, '2022-10-10', 6377, 11668, 1084, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '17.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12227, '2022-10-10', 6376, 11667, 1084, 2364, '50.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2094.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12226, '2022-10-10', 6357, 11666, 1084, 2278, '4.0000', '13.0000', '13.0000', '13.0000', '13.0000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12225, '2022-10-10', 6346, 11665, 1084, 1921, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '228.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12224, '2022-10-10', 6332, 11664, 1084, 2560, '4.0000', '16.5000', '16.5000', '16.5000', '16.5000', '11.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12223, '2022-10-10', 6302, 11663, 1084, 2116, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '27.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12222, '2022-10-10', 6273, 11662, 1084, 3033, '2.0000', '26.0000', '26.0000', '26.0000', '26.0000', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12221, '2022-10-10', 6248, 11661, 1084, 1408, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12220, '2022-10-10', 6234, 11660, 1084, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '82.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12219, '2022-10-10', 6228, 11659, 1084, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12218, '2022-10-10', 6225, 11658, 1084, 2356, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '236.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12217, '2022-10-10', 6222, 11657, 1084, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12216, '2022-10-10', 6215, 11656, 1084, 2283, '2.0000', '30.6900', '30.6900', '30.6900', '30.6900', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12215, '2022-10-10', 6205, 11655, 1084, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '107.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12214, '2022-10-10', 6201, 11654, 1084, 2315, '3.0000', '6.9000', '6.9000', '8.7000', '8.7000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12213, '2022-10-10', 6189, 11653, 1084, NULL, '17.0000', '1.2000', '1.2000', '1.2000', '1.2000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12212, '2022-10-10', 6189, 11653, 1084, 3559, '-5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12211, '2022-10-10', 6143, 11652, 1084, 1121, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '46.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12210, '2022-10-10', 6141, 11651, 1084, 1166, '2.0000', '15.9500', '15.9500', '15.9500', '15.9500', '22.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12209, '2022-10-10', 6138, 11650, 1084, 772, '4.0000', '17.5000', '17.5000', '17.5000', '17.5000', '28.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12208, '2022-10-10', 6101, 11649, 1084, 2999, '2.0000', '28.5000', '28.5000', '28.5000', '28.5000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12207, '2022-10-10', 6074, 11648, 1084, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '774.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12206, '2022-10-10', 6030, 11647, 1084, 1128, '4.0000', '4.4300', '4.4300', '4.4300', '4.4300', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12205, '2022-10-10', 6024, 11646, 1084, 937, '4.0000', '4.9900', '4.9900', '4.9900', '4.9900', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12204, '2022-10-10', 6007, 11645, 1084, 2391, '5.0000', '11.3800', '11.3800', '11.3800', '11.3800', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12203, '2022-10-10', 6002, 11644, 1084, 934, '3.0000', '6.8000', '6.8000', '8.5500', '8.5500', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12202, '2022-10-10', 5995, 11643, 1084, 3071, '1.0000', '6.0000', '6.0000', '7.6000', '7.6000', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12201, '2022-10-10', 5983, 11642, 1084, 2333, '4.0000', '5.9000', '5.9000', '5.9000', '5.9000', '156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12200, '2022-10-10', 5979, 11641, 1084, 2316, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '453.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12199, '2022-10-10', 5977, 11640, 1084, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12198, '2022-10-10', 5976, 11639, 1084, 2358, '3.0000', '7.7000', '7.7000', '7.8000', '7.8000', '142.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12197, '2022-10-10', 5970, 11638, 1084, 931, '3.0000', '9.1500', '9.1500', '12.8500', '12.8500', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12196, '2022-10-10', 5963, 11637, 1084, 3428, '4.0000', '14.5000', '14.5000', '15.9500', '15.9500', '41.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12195, '2022-10-10', 5841, 11636, 1084, 3429, '4.0000', '18.0000', '18.0000', '19.8000', '19.8000', '103.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12194, '2022-10-10', 5799, 11635, 1084, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '78.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12193, '2022-10-10', 5792, 11634, 1084, 1036, '2.0000', '30.2000', '30.2000', '36.9900', '36.9900', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12192, '2022-10-10', 5775, 11633, 1084, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '61.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12191, '2022-10-10', 5657, 11632, 1084, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '224.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12190, '2022-10-10', 5623, 11631, 1084, 2556, '4.0000', '18.9000', '18.9000', '18.9000', '18.9000', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11992, '2022-10-10', 5655, 11443, 1085, 1114, '1.0000', '28.5000', '28.5000', '28.5000', '28.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (11993, '2022-10-10', 5655, 11443, 1085, NULL, '1.0000', '28.5000', '28.5000', '28.5000', '28.5000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12189, '2022-10-10', 5500, 11630, 1084, 3751, '1.0000', '41.3100', '41.3100', '46.3000', '46.3000', '5.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12188, '2022-10-10', 5451, 11629, 1084, 2387, '15.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1148.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12328, '2022-10-10', 6835, 11761, 1086, NULL, '13.0000', '3.6000', '3.6000', '3.6000', '3.6000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12327, '2022-10-10', 6835, 11761, 1086, 3843, '-3.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12326, '2022-10-10', 6764, 11760, 1086, 3580, '8.0000', '5.9900', '5.9900', '6.3500', '6.3500', '32.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12325, '2022-10-10', 6596, 11759, 1086, 1349, '3.0000', '18.9000', '18.9000', '18.9000', '18.9000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12324, '2022-10-10', 6479, 11758, 1086, 319, '1.0000', '39.7000', '39.7000', '39.7000', '39.7000', '16.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12323, '2022-10-10', 6479, 11758, 1086, 3571, '1.0000', '39.7000', '39.7000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12322, '2022-10-10', 6459, 11757, 1086, 966, '2.0000', '20.9000', '20.9000', '20.9000', '20.9000', '36.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12321, '2022-10-10', 6332, 11756, 1086, 2560, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '11.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12320, '2022-10-10', 6302, 11755, 1086, 2116, '3.0000', '23.0000', '23.0000', '23.0000', '23.0000', '27.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12319, '2022-10-10', 6225, 11754, 1086, 2356, '8.0000', '2.8000', '2.8000', '2.8000', '2.8000', '236.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12318, '2022-10-10', 6121, 11753, 1086, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12317, '2022-10-10', 6046, 11752, 1086, 3569, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '63.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12316, '2022-10-10', 5949, 11751, 1086, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '384.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12315, '2022-10-10', 5948, 11750, 1086, 2075, '8.0000', '6.0000', '6.0000', '9.0000', '9.0000', '252.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12314, '2022-10-10', 5926, 11749, 1086, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '345.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12313, '2022-10-10', 5853, 11748, 1086, 3620, '8.0000', '8.8287', '8.8287', '10.5000', '10.5000', '445.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12312, '2022-10-10', 5849, 11747, 1086, 2357, '10.0000', '3.1000', '3.1000', '3.1000', '3.1000', '53.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12311, '2022-10-10', 5762, 11746, 1086, 773, '2.0000', '20.7400', '20.7400', '28.5400', '28.5400', '1.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12310, '2022-10-10', 5740, 11745, 1086, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '176.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12309, '2022-10-10', 5731, 11744, 1086, 1917, '1.0000', '17.2000', '17.2000', '17.2000', '17.2000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12308, '2022-10-10', 5640, 11743, 1086, NULL, '31.0000', '11.1000', '11.1000', '12.3000', '12.3000', '-31.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12307, '2022-10-10', 5640, 11743, 1086, 3783, '-26.0000', '11.1000', '11.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12306, '2022-10-10', 5593, 11742, 1086, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12305, '2022-10-10', 5540, 11741, 1086, 1280, '1.0000', '22.0000', '22.0000', '33.0000', '33.0000', '46.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12304, '2022-10-10', 5535, 11740, 1086, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1099.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12303, '2022-10-10', 5471, 11739, 1086, 902, '5.0000', '5.0400', '5.0400', '5.9800', '5.9800', '70.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12329, '2022-10-10', 6895, 11762, 1086, 3786, '6.0000', '9.7900', '9.7900', '10.8000', '10.8000', '95.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12187, '2022-10-10', 5439, 11628, 1084, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '116.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12243, '2022-10-10', 6897, 11682, 1084, 3808, '20.0000', '3.8910', '3.8910', '4.8000', '4.8000', '178.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12244, '2022-10-10', 5652, 11683, 1084, 2991, '4.0000', '12.0000', '12.0000', '12.0000', '12.0000', '27.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12245, '2022-10-10', 6844, 11684, 1084, 2084, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12246, '2022-10-10', 5926, 11685, 1087, 1970, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '345.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12247, '2022-10-10', 6078, 11686, 1087, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '545.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12248, '2022-10-10', 6205, 11687, 1087, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '106.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12249, '2022-10-10', 6897, 11688, 1087, 3808, '1.0000', '3.8910', '3.8910', '4.8000', '4.8000', '177.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12250, '2022-10-10', 5949, 11689, 1087, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '384.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12259, '2022-10-10', 6657, 11698, 1067, 1152, '3.0000', '5.4000', '5.4000', '5.4000', '5.4000', '15.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12260, '2022-10-10', 6333, 11699, 1067, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '95.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12261, '2022-10-10', 5740, 11700, 1088, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '176.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12262, '2022-10-10', 5982, 11701, 1088, 1963, '4.0000', '7.9400', '7.9400', '10.5500', '10.5500', '122.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12263, '2022-10-10', 5535, 11702, 1088, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1099.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12264, '2022-10-10', 6767, 11703, 1088, 2994, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '16.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12265, '2022-10-10', 6083, 11704, 1088, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12266, '2022-10-10', 5418, 11705, 1088, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '137.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12267, '2022-10-10', 6215, 11706, 1088, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12268, '2022-10-10', 6378, 11707, 1088, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '59.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12269, '2022-10-10', 6154, 11708, 1088, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '74.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12270, '2022-10-10', 5629, 11709, 1088, 1429, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12271, '2022-10-10', 6572, 11710, 1088, 2993, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '89.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12272, '2022-10-10', 6074, 11711, 1089, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '764.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12273, '2022-10-10', 5847, 11712, 1089, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '365.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12274, '2022-10-10', 6702, 11713, 1089, 1068, '10.0000', '8.8000', '8.8000', '12.6000', '12.6000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12302, '2022-10-10', 6599, 11738, 1090, 3742, '4.0000', '17.0015', '17.0015', '18.9000', '18.9000', '49.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12330, '2022-10-10', 6078, 11763, 1086, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '544.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12386, '2022-10-10', 6868, 11817, 1091, 1028, '6.0000', '3.4000', '3.4000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12385, '2022-10-10', 6867, 11816, 1091, 1027, '6.0000', '3.5000', '3.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12384, '2022-10-10', 6866, 11815, 1091, 3552, '6.0000', '3.5000', '3.5000', '4.0000', '4.0000', '91.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12383, '2022-10-10', 6863, 11814, 1091, NULL, '33.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-33.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12382, '2022-10-10', 6863, 11814, 1091, 3612, '-27.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12381, '2022-10-10', 6821, 11813, 1091, 2313, '1.0000', '65.0000', '65.0000', '68.0000', '68.0000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12380, '2022-10-10', 6795, 11812, 1091, 1452, '2.0000', '55.8000', '55.8000', '61.4000', '61.4000', '1.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12379, '2022-10-10', 6647, 11811, 1091, 1353, '6.0000', '8.9000', '8.9000', '8.7500', '8.7500', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12378, '2022-10-10', 6644, 11810, 1091, 1860, '5.0000', '4.6000', '4.6000', '4.6000', '4.6000', '9.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12377, '2022-10-10', 6640, 11809, 1091, 3413, '2.0000', '4.7000', '4.7000', '4.7000', '4.7000', '40.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12376, '2022-10-10', 6528, 11808, 1091, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '226.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12375, '2022-10-10', 6496, 11807, 1091, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '162.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12374, '2022-10-10', 6446, 11806, 1091, 1449, '4.0000', '4.9000', '4.9000', '4.9000', '4.9000', '103.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12373, '2022-10-10', 6417, 11805, 1091, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '47.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12372, '2022-10-10', 6316, 11804, 1091, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '75.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12371, '2022-10-10', 6294, 11803, 1091, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '34.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12370, '2022-10-10', 6290, 11802, 1091, 2318, '1.0000', '122.4000', '122.4000', '122.4000', '122.4000', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12369, '2022-10-10', 6121, 11801, 1091, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12368, '2022-10-10', 6077, 11800, 1091, 3496, '6.0000', '4.2154', '4.2154', '4.0000', '4.0000', '71.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12367, '2022-10-10', 6076, 11799, 1091, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1758.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12366, '2022-10-10', 6075, 11798, 1091, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1345.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12365, '2022-10-10', 5967, 11797, 1091, 3132, '10.0000', '3.7220', '3.7220', '4.0000', '4.0000', '2489.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12364, '2022-10-10', 5898, 11796, 1091, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '192.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12363, '2022-10-10', 5853, 11795, 1091, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '442.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12362, '2022-10-10', 5733, 11794, 1091, 3019, '1.0000', '20.0000', '20.0000', '22.0000', '22.0000', '42.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12361, '2022-10-10', 5711, 11793, 1091, 2009, '1.0000', '44.8000', '44.8000', '49.3000', '49.3000', '6.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12360, '2022-10-10', 5585, 11792, 1091, 2973, '2.0000', '23.4000', '23.4000', '23.4000', '23.4000', '31.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12387, '2022-10-10', 6881, 11818, 1091, 3131, '2.0000', '49.5000', '49.5000', '55.0000', '55.0000', '24.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12359, '2022-10-10', 6817, 11791, 1092, 2024, '3.0000', '13.8000', '13.8000', '13.8000', '13.8000', '51.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12388, '2022-10-10', 6613, 11819, 1091, 2300, '1.0000', '45.6000', '45.6000', '52.8000', '52.8000', '119.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12389, '2022-10-10', 6729, 11820, 1091, 1456, '2.0000', '40.6000', '40.6000', '44.6600', '44.6600', '1.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12390, '2022-10-10', 6779, 11821, 1091, 1074, '2.0000', '46.0000', '46.0000', '46.0000', '46.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12391, '2022-10-10', 6074, 11822, 1093, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '744.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12392, '2022-10-10', 6285, 11823, 1093, 2057, '5.0000', '9.4700', '9.4700', '10.9800', '10.9800', '31.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12393, '2022-10-10', 5898, 11824, 1093, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '188.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12394, '2022-10-10', 5677, 11825, 1093, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12395, '2022-10-10', 5447, 11826, 1093, NULL, '4.0000', '19.8000', '19.8000', '27.2500', '27.2500', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12396, '2022-10-10', 5986, 11827, 1093, 2311, '2.0000', '13.7000', '13.7000', '14.2500', '14.2500', '80.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12397, '2022-10-10', 6446, 11828, 1093, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '98.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12398, '2022-10-10', 6010, 11829, 1093, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '303.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12399, '2022-10-10', 6381, 11830, 1093, 1490, '10.0000', '4.0000', '4.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12400, '2022-10-10', 5440, 11831, 1093, 2306, '10.0000', '3.4100', '3.4100', '3.4100', '3.4100', '248.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12401, '2022-10-10', 6234, 11832, 1093, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '77.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12402, '2022-10-10', 6607, 11833, 1094, 2583, '10.0000', '16.0000', '16.0000', '17.7100', '17.7100', '48.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12403, '2022-10-10', 5447, 11834, 1095, 3850, '-4.0000', '19.8000', '19.8000', '27.2500', '27.2500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12404, '2022-10-10', 5447, 11834, 1095, NULL, '5.0000', '19.8000', '19.8000', '27.2500', '27.2500', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12405, '2022-10-11', 6670, 11835, 1096, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '44.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12406, '2022-10-11', 6007, 11836, 1096, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '63.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12407, '2022-10-11', 5716, 11837, 1096, 2384, '2.0000', '3.6000', '3.6000', '3.6000', '3.6000', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12408, '2022-10-11', 6428, 11838, 1096, 544, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '29.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12409, '2022-10-11', 6332, 11839, 1096, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12410, '2022-10-11', 6818, 11840, 1096, 3067, '3.0000', '3.5000', '3.5000', '3.5000', '3.5000', '206.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12438, '2022-10-11', 6032, 11868, 1098, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12439, '2022-10-11', 6679, 11869, 1098, 3546, '1.0000', '9.9900', '9.9900', '9.9900', '9.9900', '2.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12440, '2022-10-11', 6491, 11870, 1098, 2295, '1.0000', '9.6200', '9.6200', '9.6200', '9.6200', '166.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12441, '2022-10-11', 5853, 11871, 1098, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '439.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12442, '2022-10-11', 6074, 11872, 1098, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '740.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12443, '2022-10-11', 5792, 11873, 1099, 1036, '4.0000', '30.2000', '30.2000', '36.9900', '36.9900', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12444, '2022-10-11', 6301, 11874, 1099, 1339, '4.0000', '10.5000', '10.5000', '10.5000', '10.5000', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12445, '2022-10-11', 5911, 11875, 1099, 2516, '-3.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12446, '2022-10-11', 5911, 11875, 1099, NULL, '6.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12447, '2022-10-11', 6176, 11876, 1099, 2323, '5.0000', '4.1000', '4.1000', '4.1000', '4.1000', '277.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12448, '2022-10-11', 6296, 11877, 1099, 3815, '3.0000', '25.4000', '25.4000', '28.5000', '28.5000', '182.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12449, '2022-10-11', 6294, 11878, 1099, 1412, '5.0000', '23.0000', '23.0000', '30.0000', '30.0000', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12450, '2022-10-11', 5892, 11879, 1099, 3666, '5.0000', '10.7841', '10.7841', '8.6000', '8.6000', '0.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12451, '2022-10-11', 6353, 11880, 1099, 1920, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '192.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12452, '2022-10-11', 6590, 11881, 1099, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12453, '2022-10-11', 6285, 11882, 1099, 2057, '6.0000', '9.4700', '9.4700', '10.9800', '10.9800', '25.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12454, '2022-10-11', 5596, 11883, 1099, 2256, '3.0000', '16.8000', '16.8000', '16.8000', '16.8000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12915, '2022-10-12', 5508, 12301, 1130, 904, '1.0000', '77.9100', '77.9100', '85.7000', '85.7000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12914, '2022-10-11', 6883, 12300, 1100, 3129, '4.0000', '6.3000', '6.3000', '7.0000', '7.0000', '53.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12913, '2022-10-11', 6851, 12299, 1100, 3022, '5.0000', '26.0000', '26.0000', '26.0000', '26.0000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12912, '2022-10-11', 6702, 12298, 1100, 1068, '1.0000', '8.8000', '8.8000', '12.6000', '12.6000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12911, '2022-10-11', 6691, 12297, 1100, NULL, '88.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-88.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12910, '2022-10-11', 6691, 12297, 1100, 3813, '-78.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12909, '2022-10-11', 6663, 12296, 1100, 2328, '5.0000', '2.5000', '2.5000', '2.5000', '2.5000', '146.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12908, '2022-10-11', 6642, 12295, 1100, 3414, '5.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '15.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12907, '2022-10-11', 6434, 12294, 1100, 1895, '5.0000', '5.2000', '5.2000', '5.2000', '5.2000', '120.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12906, '2022-10-11', 6357, 12293, 1100, 2278, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12905, '2022-10-11', 6356, 12292, 1100, NULL, '8.0000', '7.2000', '7.2000', '7.2000', '7.2000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12904, '2022-10-11', 6356, 12292, 1100, 3555, '-5.0000', '7.2000', '7.2000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12903, '2022-10-11', 6211, 12291, 1100, 2067, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12902, '2022-10-11', 6211, 12291, 1100, 2305, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12901, '2022-10-11', 6202, 12290, 1100, 3006, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '370.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12900, '2022-10-11', 6167, 12289, 1100, 3661, '5.0000', '9.4000', '9.4000', '10.4000', '10.4000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12899, '2022-10-11', 6143, 12288, 1100, 1121, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '44.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12898, '2022-10-11', 6141, 12287, 1100, 1166, '2.0000', '15.9500', '15.9500', '15.9500', '15.9500', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12897, '2022-10-11', 6122, 12286, 1100, 648, '4.0000', '47.2000', '47.2000', '47.2000', '47.2000', '8.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12896, '2022-10-11', 6103, 12285, 1100, 2275, '5.0000', '15.2000', '15.2000', '15.2000', '15.2000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12895, '2022-10-11', 6088, 12284, 1100, 3759, '4.0000', '24.0714', '24.0714', '26.8000', '26.8000', '40.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12894, '2022-10-11', 6087, 12283, 1100, NULL, '2.0000', '0.0000', '0.0000', '142.0500', '142.0500', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12893, '2022-10-11', 6087, 12283, 1100, 3778, '-1.0000', '0.0000', '0.0000', '142.0500', '142.0500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12892, '2022-10-11', 5975, 12282, 1100, 1969, '5.0000', '9.1500', '9.1500', '12.2100', '12.2100', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12891, '2022-10-11', 5969, 12281, 1100, 2252, '6.0000', '8.8000', '8.8000', '10.7000', '10.7000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12890, '2022-10-11', 5955, 12280, 1100, 3424, '4.0000', '17.9000', '17.9000', '17.9000', '17.9000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12889, '2022-10-11', 5949, 12279, 1100, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '359.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12888, '2022-10-11', 5926, 12278, 1100, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '325.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12887, '2022-10-11', 5853, 12277, 1100, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '435.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12886, '2022-10-11', 5849, 12276, 1100, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12885, '2022-10-11', 5834, 12275, 1100, 1989, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12884, '2022-10-11', 5797, 12274, 1100, 3739, '5.0000', '17.0048', '17.0048', '18.9000', '18.9000', '91.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12883, '2022-10-11', 5762, 12273, 1100, 1034, '2.0000', '20.7400', '20.7400', '28.5400', '28.5400', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12882, '2022-10-11', 5762, 12273, 1100, 773, '1.0000', '20.7400', '20.7400', '28.5400', '28.5400', '0.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12881, '2022-10-11', 5677, 12272, 1100, 2351, '6.0000', '13.2000', '13.2000', '15.4000', '15.4000', '141.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12880, '2022-10-11', 5569, 12271, 1100, 1436, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '5.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12879, '2022-10-11', 5562, 12270, 1100, 3488, '3.0000', '47.7700', '47.7700', '58.9000', '58.9000', '9.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12878, '2022-10-11', 5465, 12269, 1100, NULL, '9.0000', '0.0000', '0.0000', '98.6000', '98.6000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12877, '2022-10-11', 5465, 12269, 1100, 3776, '-7.0000', '0.0000', '0.0000', '98.6000', '98.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12876, '2022-10-11', 5447, 12268, 1100, 3851, '4.0000', '24.7066', '24.7066', '27.2500', '27.2500', '235.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12875, '2022-10-11', 5439, 12267, 1100, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '115.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12916, '2022-10-12', 5906, 12302, 1130, 2046, '1.0000', '15.8200', '15.8200', '15.8200', '15.8200', '11.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12497, '2022-10-11', 5991, 11919, 1101, 3848, '-2.0000', '37.7000', '37.7000', '41.0000', '41.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12498, '2022-10-11', 5991, 11919, 1101, NULL, '3.0000', '37.7000', '37.7000', '41.0000', '41.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12499, '2022-10-11', 6395, 11920, 1101, 540, '1.0000', '9.5500', '9.5500', '9.5500', '9.5500', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12558, '2022-10-11', 6010, 11975, 1102, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '302.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12559, '2022-10-11', 6691, 11976, 1102, 3813, '-83.0000', '6.5000', '6.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12560, '2022-10-11', 6691, 11976, 1102, NULL, '88.0000', '6.5000', '6.5000', '6.5000', '6.5000', '-88.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12561, '2022-10-11', 5640, 11977, 1102, 3783, '-31.0000', '11.1000', '11.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12562, '2022-10-11', 5640, 11977, 1102, NULL, '32.0000', '11.1000', '11.1000', '12.3000', '12.3000', '-32.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12563, '2022-10-11', 6248, 11978, 1102, 1408, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12564, '2022-10-11', 6391, 11979, 1102, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '52.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12565, '2022-10-11', 6024, 11980, 1102, 937, '3.0000', '4.9900', '4.9900', '4.9900', '4.9900', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12607, '2022-10-11', 6375, 12022, 1103, 2304, '2.0000', '3.5200', '3.5200', '3.5200', '3.5200', '153.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12606, '2022-10-11', 6193, 12021, 1103, 2115, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12608, '2022-10-11', 6592, 12023, 1103, 2373, '2.0000', '3.1800', '3.1800', '3.1800', '3.1800', '81.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12569, '2022-10-11', 6820, 11984, 1104, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '425.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12570, '2022-10-11', 6216, 11985, 1104, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2480.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12677, '2022-10-11', 6075, 12083, 1114, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1339.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12676, '2022-10-11', 6074, 12082, 1113, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '700.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12675, '2022-10-11', 6843, 12081, 1105, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '31.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12674, '2022-10-11', 6749, 12080, 1105, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12673, '2022-10-11', 6717, 12079, 1105, 2010, '1.0000', '38.4000', '38.4000', '38.4000', '38.4000', '6.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12672, '2022-10-11', 6643, 12078, 1105, 1140, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '19.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12671, '2022-10-11', 6445, 12077, 1105, 3581, '2.0000', '21.8000', '21.8000', '21.6000', '21.6000', '50.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12670, '2022-10-11', 6442, 12076, 1105, 3804, '1.0000', '75.1600', '75.1600', '83.6000', '83.6000', '8.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12669, '2022-10-11', 6339, 12075, 1105, 954, '1.0000', '60.3000', '60.3000', '60.3000', '60.3000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12668, '2022-10-11', 6321, 12074, 1105, 1054, '1.0000', '25.8000', '25.8000', '25.8000', '25.8000', '29.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12667, '2022-10-11', 6316, 12073, 1105, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '74.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12666, '2022-10-11', 6245, 12072, 1105, 2111, '2.0000', '2.9900', '2.9900', '2.9900', '2.9900', '89.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12665, '2022-10-11', 6242, 12071, 1105, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '63.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12664, '2022-10-11', 6233, 12070, 1105, 1276, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12663, '2022-10-11', 6220, 12069, 1105, 2388, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '159.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12662, '2022-10-11', 6176, 12068, 1105, 2323, '1.0000', '4.1000', '4.1000', '4.1000', '4.1000', '276.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12661, '2022-10-11', 6076, 12067, 1105, 3024, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1757.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12660, '2022-10-11', 6075, 12066, 1105, 3025, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1344.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12659, '2022-10-11', 5983, 12065, 1105, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12658, '2022-10-11', 5926, 12064, 1105, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '333.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12657, '2022-10-11', 5749, 12063, 1105, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '84.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12656, '2022-10-11', 5740, 12062, 1105, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '175.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12655, '2022-10-11', 5712, 12061, 1105, 2298, '2.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1164.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12654, '2022-10-11', 5676, 12060, 1105, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '68.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12653, '2022-10-11', 5586, 12059, 1105, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '196.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12678, '2022-10-11', 6076, 12084, 1114, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1752.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12605, '2022-10-11', 6234, 12020, 1106, 3801, '3.0000', '34.8921', '34.8921', '40.3000', '40.3000', '74.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12609, '2022-10-11', 6020, 12024, 1103, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '19.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12602, '2022-10-11', 6408, 12017, 1107, 2068, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '38.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12603, '2022-10-11', 5792, 12018, 1107, 1036, '4.0000', '30.2000', '30.2000', '36.9900', '36.9900', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12604, '2022-10-11', 6685, 12019, 1107, 2981, '100.0000', '0.5000', '0.5000', '0.5000', '0.5000', '574.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12610, '2022-10-11', 5770, 12025, 1108, 2989, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12611, '2022-10-11', 5652, 12026, 1109, 2991, '12.0000', '12.0000', '12.0000', '12.0000', '12.0000', '15.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12612, '2022-10-11', 6844, 12027, 1109, 2084, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12613, '2022-10-11', 6844, 12027, 1109, NULL, '18.0000', '5.5000', '5.5000', '5.5000', '5.5000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12680, '2022-10-11', 5926, 12086, 1114, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '330.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12679, '2022-10-11', 5740, 12085, 1114, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '172.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12652, '2022-10-11', 6293, 12058, 1110, 3486, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '165.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12651, '2022-10-11', 6283, 12057, 1110, 2335, '3.0000', '5.1000', '5.1000', '6.0200', '6.0200', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12650, '2022-10-11', 6219, 12056, 1110, NULL, '96.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-96.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12649, '2022-10-11', 6219, 12056, 1110, 3150, '-46.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12648, '2022-10-11', 6088, 12055, 1110, 3759, '2.0000', '24.0714', '24.0714', '26.8000', '26.8000', '41.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12647, '2022-10-11', 6034, 12054, 1110, 1874, '1.0000', '41.8000', '41.8000', '48.0000', '48.0000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12646, '2022-10-11', 6032, 12053, 1110, 2322, '1.0000', '17.2100', '17.2100', '17.2100', '17.2100', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12645, '2022-10-11', 5881, 12052, 1110, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '66.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12644, '2022-10-11', 5774, 12051, 1110, 918, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12643, '2022-10-11', 5731, 12050, 1110, NULL, '5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12642, '2022-10-11', 5640, 12049, 1110, NULL, '35.0000', '11.1000', '11.1000', '12.3000', '12.3000', '-35.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12641, '2022-10-11', 5640, 12049, 1110, 3783, '-32.0000', '11.1000', '11.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12640, '2022-10-11', 5595, 12048, 1110, NULL, '5.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12639, '2022-10-11', 5595, 12048, 1110, 3516, '-4.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12681, '2022-10-11', 6233, 12087, 1114, 1276, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12631, '2022-10-11', 5947, 12041, 1111, 1967, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12632, '2022-10-11', 6590, 12042, 1112, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12633, '2022-10-11', 5676, 12043, 1112, 2018, '3.0000', '30.0000', '30.0000', '34.0000', '34.0000', '68.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12634, '2022-10-11', 5641, 12044, 1112, 2319, '1.0000', '31.1000', '31.1000', '34.2000', '34.2000', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12635, '2022-10-11', 5976, 12045, 1112, 2358, '10.0000', '7.7000', '7.7000', '7.8000', '7.8000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12636, '2022-10-11', 6879, 12046, 1112, 3121, '10.0000', '3.8700', '3.8700', '4.3000', '4.3000', '329.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12637, '2022-10-11', 5472, 12047, 1112, 2400, '-8.0000', '2912.8841', '2912.8841', '4.6000', '4.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12638, '2022-10-11', 5472, 12047, 1112, NULL, '28.0000', '2912.8841', '2912.8841', '4.6000', '4.6000', '-28.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12682, '2022-10-11', 6245, 12088, 1114, 2111, '5.0000', '2.9900', '2.9900', '2.9900', '2.9900', '84.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12683, '2022-10-11', 6664, 12089, 1114, 3856, '25.0000', '1.7549', '1.7549', '1.6000', '1.6000', '973.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12684, '2022-10-11', 6217, 12090, 1115, 946, '3.0000', '2.8800', '2.8800', '2.8800', '2.8800', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12685, '2022-10-11', 5813, 12091, 1115, 663, '3.0000', '4.9000', '4.9000', '4.9000', '4.9000', '16.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12686, '2022-10-11', 6604, 12092, 1116, 766, '40.0000', '5.5000', '5.5000', '5.5000', '5.5000', '425.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12687, '2022-10-11', 5447, 12093, 1117, 3851, '2.0000', '24.7066', '24.7066', '28.7000', '28.7000', '239.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12688, '2022-10-11', 5640, 12094, 1117, 3783, '-35.0000', '11.1000', '11.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12689, '2022-10-11', 5640, 12094, 1117, NULL, '39.0000', '11.1000', '11.1000', '12.3000', '12.3000', '-39.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12690, '2022-10-11', 5641, 12095, 1117, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12691, '2022-10-11', 5677, 12096, 1117, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '141.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12692, '2022-10-11', 5772, 12097, 1117, NULL, '6.0000', '0.0000', '0.0000', '4.5000', '4.5000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12693, '2022-10-11', 5885, 12098, 1117, 1103, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '71.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12694, '2022-10-11', 5986, 12099, 1117, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '79.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12695, '2022-10-11', 6220, 12100, 1117, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12696, '2022-10-11', 6248, 12101, 1117, 1408, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12697, '2022-10-11', 6316, 12102, 1117, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '73.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12698, '2022-10-11', 6764, 12103, 1117, 3580, '2.0000', '5.9900', '5.9900', '6.3500', '6.3500', '30.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12699, '2022-10-11', 5472, 12104, 1118, 2400, '-28.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12700, '2022-10-11', 5472, 12104, 1118, NULL, '38.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '-38.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12701, '2022-10-11', 5640, 12105, 1119, 3783, '-39.0000', '11.1000', '11.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12702, '2022-10-11', 5640, 12105, 1119, NULL, '41.0000', '11.1000', '11.1000', '12.3000', '12.3000', '-41.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12703, '2022-10-11', 6328, 12106, 1119, 3817, '2.0000', '24.4100', '24.4100', '26.9000', '26.9000', '44.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12704, '2022-10-11', 6860, 12107, 1119, 3738, '2.0000', '15.4923', '15.4923', '18.0000', '18.0000', '162.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12705, '2022-10-11', 5629, 12108, 1119, 1429, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12706, '2022-10-11', 5676, 12109, 1119, 2018, '2.0000', '30.0000', '30.0000', '34.0000', '34.0000', '66.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12707, '2022-10-11', 5586, 12110, 1119, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '195.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12708, '2022-10-11', 6205, 12111, 1119, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '105.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12745, '2022-10-11', 6817, 12146, 1120, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '50.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12744, '2022-10-11', 6640, 12145, 1120, 3413, '5.0000', '4.7000', '4.7000', '4.7000', '4.7000', '35.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12743, '2022-10-11', 6620, 12144, 1120, 1099, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '26.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12742, '2022-10-11', 6332, 12143, 1120, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12741, '2022-10-11', 6167, 12142, 1120, 3661, '2.0000', '9.4000', '9.4000', '10.4000', '10.4000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12740, '2022-10-11', 6096, 12141, 1120, 2990, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12739, '2022-10-11', 6095, 12140, 1120, 3138, '3.0000', '8.3200', '8.3200', '8.3200', '8.3200', '78.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12738, '2022-10-11', 6074, 12139, 1120, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '690.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12737, '2022-10-11', 6026, 12138, 1120, NULL, '10.0000', '0.0000', '0.0000', '2.1000', '2.1000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12736, '2022-10-11', 6025, 12137, 1120, NULL, '10.0000', '0.0000', '0.0000', '0.8000', '0.8000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12735, '2022-10-11', 6020, 12136, 1120, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12734, '2022-10-11', 5976, 12135, 1120, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '127.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12733, '2022-10-11', 5974, 12134, 1120, 3870, '1.0000', '8.4900', '8.4900', '9.5000', '9.5000', '239.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12732, '2022-10-11', 5827, 12133, 1120, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '89.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12731, '2022-10-11', 5740, 12132, 1120, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '169.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12730, '2022-10-11', 5731, 12131, 1120, NULL, '8.0000', '17.2000', '17.2000', '17.2000', '17.2000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12729, '2022-10-11', 5731, 12131, 1120, 3854, '-5.0000', '17.2000', '17.2000', '17.2000', '17.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12728, '2022-10-11', 5440, 12130, 1120, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '245.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12746, '2022-10-11', 6860, 12147, 1120, 3738, '3.0000', '15.4923', '15.4923', '18.0000', '18.0000', '159.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12747, '2022-10-11', 6088, 12148, 1120, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '40.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12748, '2022-10-11', 5969, 12149, 1120, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12749, '2022-10-11', 6201, 12150, 1120, 2315, '2.0000', '6.9000', '6.9000', '8.7000', '8.7000', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12791, '2022-10-11', 6451, 12189, 1121, 3021, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12790, '2022-10-11', 6365, 12188, 1121, 2038, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '118.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12789, '2022-10-11', 6354, 12187, 1121, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '505.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12788, '2022-10-11', 6316, 12186, 1121, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '72.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12787, '2022-10-11', 6273, 12185, 1121, 3033, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12786, '2022-10-11', 6134, 12184, 1121, 1120, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '114.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12785, '2022-10-11', 6132, 12183, 1121, 1879, '5.0000', '4.3500', '4.3500', '4.3500', '4.3500', '91.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12784, '2022-10-11', 6083, 12182, 1121, 3029, '10.0000', '2.7000', '2.7000', '2.7000', '2.7000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12783, '2022-10-11', 6053, 12181, 1121, 1126, '2.0000', '14.9000', '14.9000', '16.3700', '16.3700', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12782, '2022-10-11', 5911, 12180, 1121, NULL, '8.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12781, '2022-10-11', 5911, 12180, 1121, 2516, '-6.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12780, '2022-10-11', 5674, 12179, 1121, 3549, '20.0000', '1.5000', '1.5000', '2.1000', '2.1000', '421.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12779, '2022-10-11', 5654, 12178, 1121, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '104.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12778, '2022-10-11', 5641, 12177, 1121, 2319, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12777, '2022-10-11', 5596, 12176, 1121, 2256, '1.0000', '16.8000', '16.8000', '16.8000', '16.8000', '82.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12776, '2022-10-11', 5586, 12175, 1121, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '193.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12775, '2022-10-11', 5549, 12174, 1121, 2372, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '289.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12774, '2022-10-11', 5548, 12173, 1121, 2374, '5.0000', '2.9800', '2.9800', '2.9800', '2.9800', '258.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12792, '2022-10-11', 6353, 12190, 1121, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '182.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12769, '2022-10-11', 6627, 12169, 1122, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '24.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12770, '2022-10-11', 5451, 12170, 1123, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1161.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12771, '2022-10-11', 5607, 12171, 1123, 3708, '1.0000', '11.4000', '11.4000', '11.4000', '11.4000', '2.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12772, '2022-10-11', 5472, 12172, 1124, 2400, '-38.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12773, '2022-10-11', 5472, 12172, 1124, NULL, '48.0000', '2912.8841', '2912.8841', '4.5000', '4.5000', '-48.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12918, '2022-10-12', 6542, 12304, 1130, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '34.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12917, '2022-10-12', 6376, 12303, 1130, 2364, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2084.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12874, '2022-10-11', 6853, 12266, 1125, NULL, '2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12873, '2022-10-11', 6853, 12266, 1125, 3832, '-1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12872, '2022-10-11', 6627, 12265, 1125, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12871, '2022-10-11', 6590, 12264, 1125, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12870, '2022-10-11', 6399, 12263, 1125, 2019, '5.0000', '6.1000', '6.1000', '6.1000', '6.1000', '197.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12869, '2022-10-11', 6332, 12262, 1125, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '7.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12868, '2022-10-11', 6301, 12261, 1125, 1339, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '25.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12867, '2022-10-11', 6264, 12260, 1125, 3404, '5.0000', '6.0000', '6.0000', '6.8500', '6.8500', '79.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12866, '2022-10-11', 6260, 12259, 1125, 1333, '5.0000', '5.7000', '5.7000', '5.7000', '5.7000', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12865, '2022-10-11', 6234, 12258, 1125, 3801, '4.0000', '34.8921', '34.8921', '40.3000', '40.3000', '70.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12864, '2022-10-11', 6221, 12257, 1125, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12863, '2022-10-11', 6220, 12256, 1125, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '146.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12862, '2022-10-11', 6204, 12255, 1125, 2312, '2.0000', '15.8000', '15.8000', '17.7000', '17.7000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12861, '2022-10-11', 6082, 12254, 1125, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '166.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12860, '2022-10-11', 5992, 12253, 1125, NULL, '8.0000', '7.0000', '7.0000', '9.5000', '9.5000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12859, '2022-10-11', 5992, 12253, 1125, 3560, '-7.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12858, '2022-10-11', 5985, 12252, 1125, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12857, '2022-10-11', 5981, 12251, 1125, NULL, '3.0000', '12.6500', '12.6500', '12.6500', '12.6500', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12856, '2022-10-11', 5981, 12251, 1125, 3775, '-2.0000', '12.6500', '12.6500', '12.6500', '12.6500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12855, '2022-10-11', 5976, 12250, 1125, 2358, '5.0000', '7.7000', '7.7000', '7.8000', '7.8000', '122.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12854, '2022-10-11', 5949, 12249, 1125, 1311, '15.0000', '5.2000', '5.2000', '7.3000', '7.3000', '359.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12853, '2022-10-11', 5948, 12248, 1125, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '247.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12852, '2022-10-11', 5926, 12247, 1125, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '325.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12851, '2022-10-11', 5849, 12246, 1125, 2357, '1.0000', '3.1000', '3.1000', '3.1000', '3.1000', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12850, '2022-10-11', 5797, 12245, 1125, 3739, '2.0000', '17.0048', '17.0048', '18.9000', '18.9000', '91.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12849, '2022-10-11', 5689, 12244, 1125, 2050, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '15.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12848, '2022-10-11', 5657, 12243, 1125, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '219.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12847, '2022-10-11', 5589, 12242, 1125, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '137.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12846, '2022-10-11', 5576, 12241, 1125, 1108, '3.0000', '8.7000', '8.7000', '8.7000', '8.7000', '42.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12845, '2022-10-11', 5573, 12240, 1125, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '989.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12844, '2022-10-11', 5559, 12239, 1125, 1940, '3.0000', '8.3000', '8.3000', '9.9300', '9.9300', '72.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12843, '2022-10-11', 5515, 12238, 1125, 3508, '6.0000', '4.6800', '4.6800', '5.5000', '5.5000', '131.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12919, '2022-10-12', 6872, 12305, 1130, 2598, '-100.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12830, '2022-10-11', 5640, 12225, 1126, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '655.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12831, '2022-10-11', 6766, 12226, 1126, 1399, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12832, '2022-10-11', 6832, 12227, 1126, 1381, '3.0000', '2.6000', '2.6000', '2.6000', '2.6000', '318.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12833, '2022-10-11', 6316, 12228, 1127, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '71.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12840, '2022-10-11', 6272, 12235, 1128, 538, '2.0000', '31.5000', '31.5000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12839, '2022-10-11', 6161, 12234, 1128, 1178, '4.0000', '5.3000', '5.3000', '5.3000', '5.3000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12838, '2022-10-11', 5969, 12233, 1128, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12841, '2022-10-11', 6436, 12236, 1128, 3589, '5.0000', '3.5319', '3.5319', '5.8000', '5.8000', '23.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12842, '2022-10-11', 5947, 12237, 1129, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12920, '2022-10-12', 6872, 12305, 1130, NULL, '108.0000', '2.0000', '2.0000', '2.2000', '2.2000', '-108.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12921, '2022-10-12', 5947, 12306, 1131, 1967, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12922, '2022-10-12', 5947, 12307, 1132, 1967, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12923, '2022-10-12', 6218, 12308, 1132, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '41.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12924, '2022-10-12', 6608, 12309, 1133, 3774, '3.0000', '12.9538', '12.9538', '14.3000', '14.3000', '153.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12925, '2022-10-12', 6075, 12310, 1133, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1315.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12926, '2022-10-12', 6076, 12311, 1133, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1728.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12927, '2022-10-12', 6375, 12312, 1133, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '148.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12928, '2022-10-12', 6446, 12313, 1133, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '93.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12929, '2022-10-12', 5749, 12314, 1133, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '79.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12930, '2022-10-12', 6609, 12315, 1133, 3773, '3.0000', '11.6821', '11.6821', '12.7000', '12.7000', '141.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12931, '2022-10-12', 6896, 12316, 1133, 3807, '3.0000', '28.8100', '28.8100', '32.1000', '32.1000', '63.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12948, '2022-10-12', 6375, 12333, 1134, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '143.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12947, '2022-10-12', 6361, 12332, 1134, 3725, '50.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4254.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12946, '2022-10-12', 6205, 12331, 1134, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '104.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12945, '2022-10-12', 6083, 12330, 1134, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12944, '2022-10-12', 6007, 12329, 1134, 2391, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '60.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12943, '2022-10-12', 5674, 12328, 1134, 3549, '20.0000', '1.5000', '1.5000', '2.1000', '2.1000', '401.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12942, '2022-10-12', 5641, 12327, 1134, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '59.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12941, '2022-10-12', 5640, 12326, 1134, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '653.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (12949, '2022-10-12', 6664, 12334, 1134, 3856, '25.0000', '1.7549', '1.7549', '1.6000', '1.6000', '948.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13002, '2022-10-12', 5447, 12387, 1135, 3851, '5.0000', '24.7066', '24.7066', '28.7000', '28.7000', '230.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13003, '2022-10-12', 6220, 12388, 1135, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '141.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13004, '2022-10-12', 6340, 12389, 1136, 955, '2.0000', '60.3000', '60.3000', '72.0000', '72.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13005, '2022-10-12', 6037, 12390, 1136, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13006, '2022-10-12', 6667, 12391, 1136, 3835, '25.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1035.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13007, '2022-10-12', 5588, 12392, 1137, 3075, '1.0000', '14.9600', '14.9600', '14.9600', '14.9600', '92.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13008, '2022-10-12', 6455, 12393, 1138, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13009, '2022-10-12', 6363, 12394, 1138, 1411, '1.0000', '14.8000', '14.8000', '22.7800', '22.7800', '147.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13010, '2022-10-12', 5841, 12395, 1138, 3429, '1.0000', '18.0000', '18.0000', '19.8000', '19.8000', '101.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13011, '2022-10-12', 6024, 12396, 1138, 3896, '2.0000', '4.9900', '4.9900', '5.5000', '5.5000', '78.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13012, '2022-10-12', 6391, 12397, 1138, 762, '2.0000', '3.3200', '3.3200', '3.3200', '3.3200', '50.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13013, '2022-10-12', 6528, 12398, 1138, 1899, '2.0000', '5.9800', '5.9800', '5.9800', '5.9800', '224.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13014, '2022-10-12', 6075, 12399, 1138, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1311.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13015, '2022-10-12', 5473, 12400, 1138, 3904, '4.0000', '4.5000', '4.5000', '5.0000', '5.0000', '496.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13016, '2022-10-12', 6038, 12401, 1138, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '141.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13017, '2022-10-12', 6260, 12402, 1138, 1333, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13018, '2022-10-12', 6265, 12403, 1138, 1863, '1.0000', '11.8000', '11.8000', '11.8000', '11.8000', '14.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13019, '2022-10-12', 6390, 12404, 1138, NULL, '1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13020, '2022-10-12', 6294, 12405, 1138, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13021, '2022-10-12', 6813, 12406, 1138, 1368, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13022, '2022-10-12', 5657, 12407, 1139, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '214.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13023, '2022-10-12', 5473, 12408, 1140, 3904, '3.0000', '4.5000', '4.5000', '5.0000', '5.0000', '493.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13024, '2022-10-12', 5535, 12409, 1140, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1089.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13025, '2022-10-12', 6358, 12410, 1140, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4190.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13026, '2022-10-12', 6082, 12411, 1140, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '164.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13027, '2022-10-12', 5657, 12412, 1140, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '210.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13028, '2022-10-12', 6225, 12413, 1140, 2356, '6.0000', '2.8000', '2.8000', '2.8000', '2.8000', '230.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13029, '2022-10-12', 6573, 12414, 1140, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13030, '2022-10-12', 6083, 12415, 1140, 3029, '6.0000', '2.7000', '2.7000', '2.7000', '2.7000', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13031, '2022-10-12', 5654, 12416, 1140, 3062, '6.0000', '2.0000', '2.0000', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13032, '2022-10-12', 5973, 12417, 1140, 3869, '2.0000', '7.9600', '7.9600', '8.9000', '8.9000', '46.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13033, '2022-10-12', 6373, 12418, 1140, 3003, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '13.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13034, '2022-10-12', 5714, 12419, 1140, 2280, '7.0000', '3.3000', '3.3000', '3.3000', '3.3000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13035, '2022-10-12', 5705, 12420, 1140, 1169, '3.0000', '7.0000', '7.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13036, '2022-10-12', 5471, 12421, 1140, 902, '2.0000', '5.0400', '5.0400', '5.9800', '5.9800', '68.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13037, '2022-10-12', 6755, 12422, 1140, 1009, '1.0000', '5.4000', '5.4000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13038, '2022-10-12', 6755, 12422, 1140, NULL, '1.0000', '5.4000', '5.4000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13039, '2022-10-12', 5548, 12423, 1140, 2374, '3.0000', '2.9800', '2.9800', '2.9800', '2.9800', '255.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13040, '2022-10-12', 6591, 12424, 1140, NULL, '2.0000', '0.0000', '0.0000', '11.0000', '11.0000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13041, '2022-10-12', 5892, 12425, 1140, 3507, '2.0000', '10.7841', '10.7841', '8.6000', '8.6000', '9.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13042, '2022-10-12', 5991, 12426, 1140, 3874, '1.0000', '38.0874', '38.0874', '43.0000', '43.0000', '80.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13043, '2022-10-12', 5640, 12427, 1140, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '650.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13044, '2022-10-12', 6171, 12428, 1140, 1327, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13045, '2022-10-12', 5969, 12429, 1140, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13046, '2022-10-12', 6834, 12430, 1140, 2034, '5.0000', '5.3000', '5.3000', '5.3000', '5.3000', '80.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13051, '2022-10-12', 5799, 12435, 1141, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '77.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13050, '2022-10-12', 5710, 12434, 1141, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '85.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13052, '2022-10-12', 6117, 12436, 1141, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '289.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13053, '2022-10-12', 6738, 12437, 1141, 1905, '1.0000', '3.0000', '3.0000', '3.0000', '3.0000', '127.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13304, '2022-10-12', 6753, 12678, 1152, 3737, '4.0000', '72.8788', '72.8788', '85.0000', '85.0000', '165.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13297, '2022-10-12', 6771, 12671, 1143, 2554, '1.0000', '19.2000', '19.2000', '19.2000', '19.2000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13296, '2022-10-12', 6883, 12670, 1143, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '51.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13295, '2022-10-12', 6882, 12669, 1143, 3130, '1.0000', '22.5000', '22.5000', '25.0000', '25.0000', '22.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13294, '2022-10-12', 6851, 12668, 1143, 3022, '1.0000', '26.0000', '26.0000', '26.0000', '26.0000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13293, '2022-10-12', 6843, 12667, 1143, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '30.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13292, '2022-10-12', 6765, 12666, 1143, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '36.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13291, '2022-10-12', 6753, 12665, 1143, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '169.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13290, '2022-10-12', 6694, 12664, 1143, 1003, '2.0000', '52.8000', '52.8000', '52.8000', '52.8000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13289, '2022-10-12', 6691, 12663, 1143, 4077, '10.0000', '6.5000', '6.5000', '6.5000', '6.5000', '233.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13288, '2022-10-12', 6674, 12662, 1143, 1923, '5.0000', '4.4500', '4.4500', '4.4500', '4.4500', '265.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13287, '2022-10-12', 6670, 12661, 1143, 1463, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '41.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13286, '2022-10-12', 6603, 12660, 1143, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '56.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13285, '2022-10-12', 6590, 12659, 1143, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13284, '2022-10-12', 6559, 12658, 1143, 984, '1.0000', '66.2000', '66.2000', '75.0000', '75.0000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13283, '2022-10-12', 6528, 12657, 1143, 1899, '5.0000', '5.9800', '5.9800', '5.9800', '5.9800', '219.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13282, '2022-10-12', 6522, 12656, 1143, 976, '1.0000', '49.7000', '49.7000', '49.7000', '49.7000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13281, '2022-10-12', 6501, 12655, 1143, 3662, '5.0000', '9.0000', '9.0000', '10.6000', '10.6000', '27.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13280, '2022-10-12', 6479, 12654, 1143, 319, '2.0000', '39.7000', '39.7000', '39.7000', '39.7000', '14.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13279, '2022-10-12', 6451, 12653, 1143, 3993, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13278, '2022-10-12', 6394, 12652, 1143, 3823, '10.0000', '5.4400', '5.4400', '6.6000', '6.6000', '241.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13277, '2022-10-12', 6389, 12651, 1143, NULL, '6.0000', '7.4000', '7.4000', '9.7000', '9.7000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13276, '2022-10-12', 6389, 12651, 1143, 3610, '-5.0000', '7.4000', '7.4000', '9.7000', '9.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13275, '2022-10-12', 6365, 12650, 1143, 2038, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '115.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13274, '2022-10-12', 6358, 12649, 1143, 3906, '10.0000', '3.0100', '3.0100', '2.7500', '2.7500', '4180.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13273, '2022-10-12', 6357, 12648, 1143, 2278, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13272, '2022-10-12', 6353, 12647, 1143, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '167.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13271, '2022-10-12', 6352, 12646, 1143, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '131.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13270, '2022-10-12', 6332, 12645, 1143, 2560, '3.0000', '16.5000', '16.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13269, '2022-10-12', 6327, 12644, 1143, NULL, '2.0000', '28.6000', '28.6000', '28.6000', '28.6000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13268, '2022-10-12', 6316, 12643, 1143, 3757, '2.0000', '54.8358', '54.8358', '74.0000', '74.0000', '69.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13267, '2022-10-12', 6314, 12642, 1143, 655, '1.0000', '33.0200', '33.0200', '33.0200', '33.0200', '2.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13266, '2022-10-12', 6283, 12641, 1143, 2335, '1.0000', '5.1000', '5.1000', '6.0200', '6.0200', '42.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13265, '2022-10-12', 6260, 12640, 1143, 1333, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13264, '2022-10-12', 6234, 12639, 1143, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '68.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13263, '2022-10-12', 6225, 12638, 1143, 2356, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '223.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13262, '2022-10-12', 6202, 12637, 1143, 3985, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '367.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13261, '2022-10-12', 6184, 12636, 1143, 945, '2.0000', '7.8500', '7.8500', '7.8500', '7.8500', '25.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13260, '2022-10-12', 6117, 12635, 1143, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '287.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13259, '2022-10-12', 6112, 12634, 1143, 3820, '2.0000', '12.7000', '12.7000', '14.0000', '14.0000', '197.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13258, '2022-10-12', 6102, 12633, 1143, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13257, '2022-10-12', 6097, 12632, 1143, 3045, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '95.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13256, '2022-10-12', 5975, 12631, 1143, 1969, '8.0000', '9.1500', '9.1500', '12.2100', '12.2100', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13255, '2022-10-12', 5915, 12630, 1143, 1040, '1.0000', '127.0000', '127.0000', '130.0000', '130.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13254, '2022-10-12', 5853, 12629, 1143, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '431.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13253, '2022-10-12', 5848, 12628, 1143, 2369, '2.0000', '8.2800', '8.2800', '8.2800', '8.2800', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13252, '2022-10-12', 5835, 12627, 1143, 924, '1.0000', '33.9800', '33.9800', '33.9800', '33.9800', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13251, '2022-10-12', 5828, 12626, 1143, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '83.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13250, '2022-10-12', 5827, 12625, 1143, 3651, '4.0000', '5.9947', '5.9947', '6.6000', '6.6000', '85.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13249, '2022-10-12', 5790, 12624, 1143, 518, '1.0000', '149.2800', '149.2800', '149.2800', '149.2800', '18.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13248, '2022-10-12', 5787, 12623, 1143, NULL, '3.0000', '22.0000', '22.0000', '22.0000', '22.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13247, '2022-10-12', 5787, 12623, 1143, 4009, '-1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13246, '2022-10-12', 5779, 12622, 1143, 3821, '2.0000', '14.6863', '14.6863', '16.0000', '16.0000', '89.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13245, '2022-10-12', 5775, 12621, 1143, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '61.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13244, '2022-10-12', 5656, 12620, 1143, 3841, '2.0000', '9.9000', '9.9000', '9.9000', '9.9000', '6.0000', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13243, '2022-10-12', 5634, 12619, 1143, 392, '1.0000', '7.1000', '7.1000', '7.1000', '7.1000', '33.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13242, '2022-10-12', 5629, 12618, 1143, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13241, '2022-10-12', 5593, 12617, 1143, 2071, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13240, '2022-10-12', 5585, 12616, 1143, 3962, '3.0000', '23.4000', '23.4000', '23.4000', '23.4000', '28.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13239, '2022-10-12', 5439, 12615, 1143, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '114.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13305, '2022-10-12', 6096, 12679, 1152, 3976, '7.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13220, '2022-10-12', 6352, 12596, 1144, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '131.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13219, '2022-10-12', 5531, 12595, 1144, 2123, '1.0000', '80.5000', '80.5000', '80.5000', '80.5000', '6.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13221, '2022-10-12', 6433, 12597, 1144, 587, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13121, '2022-10-12', 6075, 12503, 1145, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1306.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13122, '2022-10-12', 6076, 12504, 1145, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1723.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13123, '2022-10-12', 6686, 12505, 1145, 559, '2.0000', '2.5000', '2.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13124, '2022-10-12', 5948, 12506, 1145, 2075, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '246.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13125, '2022-10-12', 5949, 12507, 1145, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '357.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13126, '2022-10-12', 6348, 12508, 1145, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '35.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13127, '2022-10-12', 5714, 12509, 1145, 2280, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13128, '2022-10-12', 6218, 12510, 1145, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '40.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13129, '2022-10-12', 6381, 12511, 1145, 1490, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13130, '2022-10-12', 6353, 12512, 1145, 1920, '5.0000', '3.7500', '3.7500', '3.7500', '3.7500', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13131, '2022-10-12', 6219, 12513, 1145, 3150, '-96.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13132, '2022-10-12', 6219, 12513, 1145, NULL, '116.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-116.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13133, '2022-10-12', 6007, 12514, 1145, 2391, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '58.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13134, '2022-10-12', 6838, 12515, 1145, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '22.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13135, '2022-10-12', 6685, 12516, 1145, 3998, '20.0000', '0.5000', '0.5000', '0.5000', '0.5000', '554.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13136, '2022-10-12', 6020, 12517, 1145, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13137, '2022-10-12', 5472, 12518, 1145, 3903, '3.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '449.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13138, '2022-10-12', 6162, 12519, 1145, 3656, '1.0000', '6.6000', '6.6000', '7.3000', '7.3000', '98.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13139, '2022-10-12', 6220, 12520, 1145, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '138.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13140, '2022-10-12', 5980, 12521, 1145, 3872, '1.0000', '11.6042', '11.6042', '13.1000', '13.1000', '89.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13141, '2022-10-12', 6333, 12522, 1145, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '92.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13142, '2022-10-12', 6136, 12523, 1145, 1324, '2.0000', '3.8000', '3.8000', '3.8000', '3.8000', '69.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13143, '2022-10-12', 5473, 12524, 1146, 3904, '4.0000', '4.5000', '4.5000', '5.0000', '5.0000', '489.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13144, '2022-10-12', 6121, 12525, 1146, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13145, '2022-10-12', 6197, 12526, 1146, 3630, '-2.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13146, '2022-10-12', 6197, 12526, 1146, NULL, '3.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13147, '2022-10-12', 6557, 12527, 1146, 3735, '5.0000', '8.0659', '8.0659', '9.6000', '9.6000', '104.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13148, '2022-10-12', 6615, 12528, 1146, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13149, '2022-10-12', 5629, 12529, 1146, 1429, '3.0000', '8.4000', '8.4000', '8.4000', '8.4000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13150, '2022-10-12', 5629, 12529, 1146, 1171, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13151, '2022-10-12', 6218, 12530, 1146, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '39.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13152, '2022-10-12', 6037, 12531, 1146, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13153, '2022-10-12', 5787, 12532, 1147, 4009, '-2.0000', '22.0000', '22.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13154, '2022-10-12', 5787, 12532, 1147, NULL, '3.0000', '22.0000', '22.0000', '22.0000', '22.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13155, '2022-10-12', 6597, 12533, 1147, 3740, '3.0000', '17.0100', '17.0100', '18.9000', '18.9000', '49.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13156, '2022-10-12', 6598, 12534, 1147, 3741, '5.0000', '17.0100', '17.0100', '18.9000', '18.9000', '86.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13157, '2022-10-12', 6599, 12535, 1147, 3742, '4.0000', '17.0015', '17.0015', '18.9000', '18.9000', '45.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13222, '2022-10-12', 6749, 12598, 1144, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '24.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13223, '2022-10-12', 6753, 12599, 1148, 3737, '20.0000', '72.8788', '72.8788', '85.0000', '85.0000', '169.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13224, '2022-10-12', 6078, 12600, 1149, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '543.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13225, '2022-10-12', 5640, 12601, 1149, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '648.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13226, '2022-10-12', 6205, 12602, 1149, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '103.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13227, '2022-10-12', 5593, 12603, 1149, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13228, '2022-10-12', 5677, 12604, 1149, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13229, '2022-10-12', 6820, 12605, 1149, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '424.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13230, '2022-10-12', 6083, 12606, 1149, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13231, '2022-10-12', 5657, 12607, 1149, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '208.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13232, '2022-10-12', 6136, 12608, 1149, 1324, '1.0000', '3.8000', '3.8000', '3.8000', '3.8000', '68.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13302, '2022-10-12', 6552, 12676, 1151, 577, '1.0000', '186.8000', '186.8000', '186.9500', '186.9500', '17.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13301, '2022-10-12', 6225, 12675, 1150, 2356, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '223.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13300, '2022-10-12', 6158, 12674, 1150, 3653, '2.0000', '9.8000', '9.8000', '10.8000', '10.8000', '35.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13299, '2022-10-12', 6125, 12673, 1150, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '136.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13298, '2022-10-12', 5975, 12672, 1150, 1969, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '13.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13303, '2022-10-12', 6353, 12677, 1152, 1920, '50.0000', '3.7500', '3.7500', '3.7500', '3.7500', '117.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13306, '2022-10-12', 6096, 12679, 1152, 1181, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13307, '2022-10-12', 6209, 12680, 1152, 2287, '12.0000', '4.5000', '4.5000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13308, '2022-10-12', 5977, 12681, 1152, 2360, '12.0000', '7.5000', '7.5000', '7.8000', '7.8000', '26.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13310, '2022-10-12', 6245, 12683, 1153, 2111, '2.0000', '2.9900', '2.9900', '2.9900', '2.9900', '82.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13311, '2022-10-12', 5472, 12684, 1153, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '448.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13312, '2022-10-12', 6218, 12685, 1154, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '38.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13381, '2022-10-12', 6813, 12751, 1155, 1368, '2.0000', '13.0000', '13.0000', '13.0000', '13.0000', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13380, '2022-10-12', 6696, 12750, 1155, 2282, '3.0000', '4.2000', '4.2000', '4.9500', '4.9500', '317.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13379, '2022-10-12', 6591, 12749, 1155, NULL, '4.0000', '0.0000', '0.0000', '11.5000', '11.5000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13378, '2022-10-12', 6591, 12749, 1155, 3910, '-2.0000', '0.0000', '0.0000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13377, '2022-10-12', 6569, 12748, 1155, 3995, '1.0000', '15.0000', '15.0000', '16.0000', '16.0000', '22.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13376, '2022-10-12', 6406, 12747, 1155, 542, '1.0000', '26.1800', '26.1800', '26.1800', '26.1800', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13375, '2022-10-12', 6322, 12746, 1155, 3425, '1.0000', '21.8300', '21.8300', '24.0000', '24.0000', '41.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13374, '2022-10-12', 6220, 12745, 1155, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '135.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13373, '2022-10-12', 6125, 12744, 1155, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '134.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13372, '2022-10-12', 6078, 12743, 1155, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '542.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13371, '2022-10-12', 6024, 12742, 1155, 3896, '3.0000', '4.9900', '4.9900', '5.5000', '5.5000', '75.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13370, '2022-10-12', 5980, 12741, 1155, 4082, '1.0000', '6.8688', '6.8688', '13.4000', '13.4000', '88.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13369, '2022-10-12', 5970, 12740, 1155, 931, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13368, '2022-10-12', 5847, 12739, 1155, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '362.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13367, '2022-10-12', 5828, 12738, 1155, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '81.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13366, '2022-10-12', 5801, 12737, 1155, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '67.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13365, '2022-10-12', 5778, 12736, 1155, 3822, '2.0000', '16.3911', '16.3911', '18.0000', '18.0000', '86.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13364, '2022-10-12', 5689, 12735, 1155, 2050, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '12.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13363, '2022-10-12', 5676, 12734, 1155, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '65.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13362, '2022-10-12', 5629, 12733, 1155, 1171, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13361, '2022-10-12', 5586, 12732, 1155, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '192.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13334, '2022-10-12', 5740, 12706, 1156, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '168.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13335, '2022-10-12', 5640, 12707, 1156, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '647.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13336, '2022-10-12', 5640, 12708, 1157, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '646.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13337, '2022-10-12', 6590, 12709, 1157, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13382, '2022-10-12', 6259, 12752, 1155, NULL, '2.0000', '0.0000', '0.0000', '19.9000', '19.9000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13360, '2022-10-12', 5715, 12731, 1158, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13383, '2022-10-12', 5977, 12753, 1159, 2360, '1.0000', '7.5000', '7.5000', '7.8000', '7.8000', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13384, '2022-10-12', 6696, 12754, 1160, 2282, '1.0000', '4.2000', '4.2000', '4.9500', '4.9500', '316.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13407, '2022-10-08', 6228, 12777, 1045, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13408, '2022-10-12', 5473, 12778, 1161, 3904, '20.0000', '4.5000', '4.5000', '5.0000', '5.0000', '469.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13409, '2022-10-12', 6358, 12779, 1161, 3906, '20.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4160.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13410, '2022-10-12', 5984, 12780, 1161, 3483, '5.0000', '19.5300', '19.5300', '22.9100', '22.9100', '65.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13411, '2022-10-12', 6712, 12781, 1161, 3387, '3.0000', '7.8000', '7.8000', '7.8000', '7.8000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13412, '2022-10-12', 5965, 12782, 1161, 3787, '5.0000', '12.5145', '12.5145', '13.5000', '13.5000', '113.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13413, '2022-10-12', 6030, 12783, 1161, 3895, '5.0000', '4.4300', '4.4300', '4.9000', '4.9000', '145.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13419, '2022-10-12', 6590, 12789, 1162, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13420, '2022-10-12', 5451, 12790, 1162, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13421, '2022-10-12', 6819, 12791, 1162, 1929, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13422, '2022-10-12', 6359, 12792, 1162, 4069, '10.0000', '1.7604', '1.7604', '2.5000', '2.5000', '181.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13423, '2022-10-12', 5982, 12793, 1162, 1963, '4.0000', '7.9400', '7.9400', '10.5500', '10.5500', '118.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13424, '2022-10-12', 5573, 12794, 1162, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '988.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13425, '2022-10-12', 5716, 12795, 1162, 2384, '4.0000', '3.6000', '3.6000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13426, '2022-10-12', 5716, 12795, 1162, 515, '1.0000', '3.6000', '3.6000', '3.6000', '3.6000', '15.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13427, '2022-10-12', 5898, 12796, 1162, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '186.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13428, '2022-10-12', 5853, 12797, 1162, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '429.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13429, '2022-10-12', 6025, 12798, 1162, 3887, '6.0000', '0.7347', '0.7347', '0.8000', '0.8000', '484.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13430, '2022-10-12', 5946, 12799, 1162, 929, '1.0000', '58.4000', '58.4000', '58.4000', '58.4000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13431, '2022-10-12', 6222, 12800, 1162, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13432, '2022-10-12', 6834, 12801, 1162, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '78.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13433, '2022-10-12', 6352, 12802, 1162, 1409, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13434, '2022-10-12', 6696, 12803, 1162, 2282, '1.0000', '4.2000', '4.2000', '4.9500', '4.9500', '315.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13435, '2022-10-12', 5472, 12804, 1162, 3903, '5.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '443.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13436, '2022-10-12', 6685, 12805, 1162, 3998, '10.0000', '0.5000', '0.5000', '0.5000', '0.5000', '544.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13437, '2022-10-12', 6189, 12806, 1162, 3559, '-17.0000', '1.2000', '1.2000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13438, '2022-10-12', 6189, 12806, 1162, NULL, '23.0000', '1.2000', '1.2000', '1.2000', '1.2000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13439, '2022-10-12', 6664, 12807, 1162, 3856, '5.0000', '1.7549', '1.7549', '1.6000', '1.6000', '943.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13440, '2022-10-12', 6162, 12808, 1162, 3656, '3.0000', '6.6000', '6.6000', '7.3000', '7.3000', '95.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13441, '2022-10-12', 5986, 12809, 1162, 2311, '1.0000', '13.7000', '13.7000', '14.2500', '14.2500', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13442, '2022-10-12', 5640, 12810, 1162, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '645.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13443, '2022-10-12', 5640, 12811, 1163, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '644.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13444, '2022-10-12', 5740, 12812, 1163, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '166.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13445, '2022-10-12', 5731, 12813, 1163, 4078, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '12.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13446, '2022-10-13', 6373, 12814, 1164, 3990, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '12.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13447, '2022-10-13', 6228, 12815, 1164, 1954, '1.0000', '20.9500', '20.9500', '20.9500', '20.9500', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13448, '2022-10-13', 6221, 12816, 1164, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13449, '2022-10-13', 5535, 12817, 1164, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1079.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13450, '2022-10-13', 5729, 12818, 1164, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13451, '2022-10-13', 5581, 12819, 1164, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13452, '2022-10-13', 5651, 12820, 1164, 2386, '3.0000', '6.1700', '6.1700', '6.1700', '6.1700', '51.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13453, '2022-10-13', 6137, 12821, 1164, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '125.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13454, '2022-10-13', 5710, 12822, 1164, 1300, '5.0000', '4.0200', '4.0200', '4.0200', '4.0200', '80.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13455, '2022-10-13', 6667, 12823, 1164, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1030.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13456, '2022-10-13', 5418, 12824, 1164, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '131.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13457, '2022-10-13', 6216, 12825, 1164, 3617, '30.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2450.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13458, '2022-10-13', 6187, 12826, 1164, 2008, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '42.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13459, '2022-10-13', 5976, 12827, 1164, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '248.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13460, '2022-10-13', 6218, 12828, 1165, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '37.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13461, '2022-10-13', 5947, 12829, 1166, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '238.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13462, '2022-10-13', 6218, 12830, 1166, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '36.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13463, '2022-10-13', 5986, 12831, 1167, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '71.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13464, '2022-10-13', 5710, 12832, 1167, 1300, '3.0000', '4.0200', '4.0200', '4.0200', '4.0200', '77.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13465, '2022-10-13', 6353, 12833, 1167, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '107.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13466, '2022-10-13', 5657, 12834, 1168, 2382, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '205.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13467, '2022-10-13', 5980, 12835, 1168, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '87.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13468, '2022-10-13', 6834, 12836, 1168, 2034, '3.0000', '5.3000', '5.3000', '5.3000', '5.3000', '75.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13469, '2022-10-13', 5677, 12837, 1168, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13514, '2022-10-13', 6626, 12882, 1169, 1476, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '8.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13513, '2022-10-13', 6464, 12881, 1169, 1160, '4.0000', '4.0000', '4.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13512, '2022-10-13', 6421, 12880, 1169, 4087, '1.0000', '15.4200', '15.4200', '17.2000', '17.2000', '59.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13511, '2022-10-13', 6417, 12879, 1169, 1990, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13510, '2022-10-13', 6294, 12878, 1169, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13509, '2022-10-13', 6220, 12877, 1169, 2388, '6.0000', '5.0000', '5.0000', '5.0000', '5.0000', '129.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13508, '2022-10-13', 6205, 12876, 1169, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '102.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13507, '2022-10-13', 6117, 12875, 1169, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '285.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13506, '2022-10-13', 6115, 12874, 1169, 1156, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13505, '2022-10-13', 6096, 12873, 1169, 1181, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13504, '2022-10-13', 6088, 12872, 1169, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '39.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13503, '2022-10-13', 6010, 12871, 1169, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '298.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13502, '2022-10-13', 5980, 12870, 1169, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '86.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13501, '2022-10-13', 5975, 12869, 1169, 1969, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13500, '2022-10-13', 5965, 12868, 1169, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '111.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13499, '2022-10-13', 5898, 12867, 1169, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '182.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13498, '2022-10-13', 5853, 12866, 1169, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '426.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13497, '2022-10-13', 5834, 12865, 1169, 1989, '2.0000', '41.5800', '41.5800', '41.5800', '41.5800', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13496, '2022-10-13', 5828, 12864, 1169, 3660, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '77.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13495, '2022-10-13', 5677, 12863, 1169, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '133.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13494, '2022-10-13', 5633, 12862, 1169, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13493, '2022-10-13', 5535, 12861, 1169, 2277, '20.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1059.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13515, '2022-10-13', 6793, 12883, 1169, 1457, '2.0000', '91.2000', '91.2000', '91.2000', '91.2000', '16.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13516, '2022-10-13', 6860, 12884, 1169, 3738, '5.0000', '15.4923', '15.4923', '18.0000', '18.0000', '154.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13517, '2022-10-13', 5714, 12885, 1170, 2280, '7.0000', '3.3000', '3.3000', '3.3000', '3.3000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13518, '2022-10-13', 5714, 12885, 1170, 2383, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '357.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13519, '2022-10-13', 5949, 12886, 1170, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '347.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13520, '2022-10-13', 6421, 12887, 1170, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '58.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13521, '2022-10-13', 5980, 12888, 1170, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '85.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13522, '2022-10-13', 6088, 12889, 1170, 3759, '2.0000', '24.0714', '24.0714', '26.8000', '26.8000', '37.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13523, '2022-10-13', 5535, 12890, 1170, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1049.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13524, '2022-10-13', 5593, 12891, 1170, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '14.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13525, '2022-10-13', 5447, 12892, 1170, 3851, '4.0000', '24.7066', '24.7066', '28.7000', '28.7000', '226.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13526, '2022-10-13', 6615, 12893, 1170, 2368, '4.0000', '11.0000', '11.0000', '11.0000', '11.0000', '44.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13527, '2022-10-13', 5977, 12894, 1170, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '22.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13528, '2022-10-13', 5422, 12895, 1170, 3847, '2.0000', '21.5769', '21.5769', '18.7000', '18.7000', '49.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13531, '2022-10-13', 5841, 12898, 1171, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '99.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13532, '2022-10-13', 5946, 12899, 1171, 929, '1.0000', '58.4000', '58.4000', '58.4000', '58.4000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13533, '2022-10-13', 6010, 12900, 1171, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '297.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13534, '2022-10-13', 5427, 12901, 1172, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13535, '2022-10-13', 5991, 12902, 1172, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '79.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13536, '2022-10-13', 5677, 12903, 1172, 2351, '1.0000', '13.2000', '13.2000', '15.4000', '15.4000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13537, '2022-10-13', 5988, 12904, 1172, 2033, '3.0000', '3.0000', '3.0000', '3.4200', '3.4200', '79.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13538, '2022-10-13', 6373, 12905, 1173, 3990, '1.0000', '72.2000', '72.2000', '72.2000', '72.2000', '11.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13539, '2022-10-13', 6610, 12906, 1173, 2271, '1.0000', '70.0000', '70.0000', '81.5000', '81.5000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13540, '2022-10-13', 6738, 12907, 1173, 1905, '20.0000', '3.0000', '3.0000', '3.0000', '3.0000', '107.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13541, '2022-10-13', 6228, 12908, 1173, 1954, '2.0000', '20.9500', '20.9500', '20.9500', '20.9500', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13542, '2022-10-13', 5775, 12909, 1173, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13543, '2022-10-13', 6353, 12910, 1173, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '97.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13544, '2022-10-13', 5991, 12911, 1173, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '78.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13545, '2022-10-13', 6860, 12912, 1174, 3738, '50.0000', '15.4923', '15.4923', '18.0000', '18.0000', '104.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13546, '2022-10-13', 5947, 12913, 1175, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '237.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13547, '2022-10-13', 6860, 12914, 1176, 3738, '4.0000', '15.4923', '15.4923', '18.0000', '18.0000', '100.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13548, '2022-10-13', 6267, 12915, 1176, 3845, '-3.0000', '7.1000', '7.1000', '8.0400', '8.0400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13549, '2022-10-13', 6267, 12915, 1176, NULL, '5.0000', '7.1000', '7.1000', '8.0400', '8.0400', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13550, '2022-10-13', 6870, 12916, 1177, 3585, '3.0000', '36.4852', '36.4852', '40.1400', '40.1400', '42.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13551, '2022-10-13', 6860, 12917, 1178, 3738, '6.0000', '15.4923', '15.4923', '18.0000', '18.0000', '94.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13552, '2022-10-13', 5847, 12918, 1179, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '361.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13573, '2022-10-13', 6812, 12936, 1180, 2036, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '9.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13572, '2022-10-13', 6408, 12935, 1180, 2068, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '28.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13571, '2022-10-13', 6209, 12934, 1180, 1957, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13570, '2022-10-13', 6209, 12934, 1180, 2287, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13569, '2022-10-13', 6076, 12933, 1180, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1711.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13568, '2022-10-13', 6075, 12932, 1180, 3025, '14.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1292.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13567, '2022-10-13', 6001, 12931, 1180, 1313, '8.0000', '5.1000', '5.1000', '6.2000', '6.2000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13566, '2022-10-13', 5969, 12930, 1180, 2252, '6.0000', '8.8000', '8.8000', '10.7000', '10.7000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13565, '2022-10-13', 5714, 12929, 1180, 2383, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '347.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13564, '2022-10-13', 5515, 12928, 1180, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '126.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13574, '2022-10-13', 6409, 12937, 1180, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '134.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13575, '2022-10-13', 5897, 12938, 1181, 1290, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '13.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13576, '2022-10-13', 5969, 12939, 1182, 2252, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13577, '2022-10-13', 6075, 12940, 1183, 3025, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1291.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13578, '2022-10-13', 6570, 12941, 1184, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '58.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13579, '2022-10-13', 5689, 12942, 1185, 2050, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '10.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13580, '2022-10-13', 6394, 12943, 1185, 3823, '2.0000', '5.4400', '5.4400', '6.6000', '6.6000', '239.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13581, '2022-10-13', 6177, 12944, 1185, 3565, '1.0000', '293935099227180.0000', '293935099227180.0000', '3.5000', '3.5000', '180.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13582, '2022-10-13', 6176, 12945, 1185, 2323, '1.0000', '4.1000', '4.1000', '4.1000', '4.1000', '275.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13583, '2022-10-13', 6353, 12946, 1185, 1920, '2.0000', '3.7500', '3.7500', '3.7500', '3.7500', '95.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13584, '2022-10-13', 6260, 12947, 1186, 1333, '4.0000', '5.7000', '5.7000', '5.7000', '5.7000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13585, '2022-10-13', 5640, 12948, 1186, 3897, '10.0000', '11.1000', '11.1000', '12.3000', '12.3000', '634.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13586, '2022-10-13', 5948, 12949, 1186, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '236.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13587, '2022-10-13', 6664, 12950, 1186, 3856, '50.0000', '1.7549', '1.7549', '1.6000', '1.6000', '893.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13588, '2022-10-14', 5799, 12951, 1187, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '76.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13589, '2022-10-14', 6640, 12952, 1187, 3413, '1.0000', '4.7000', '4.7000', '4.7000', '4.7000', '34.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13591, '2022-10-13', 5790, 12954, 1188, 518, '1.0000', '149.2800', '149.2800', '149.2800', '149.2800', '17.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13592, '2022-10-14', 5926, 12955, 1189, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '322.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13593, '2022-10-14', 5948, 12956, 1189, 2075, '3.0000', '6.0000', '6.0000', '9.0000', '9.0000', '233.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13594, '2022-10-14', 5949, 12957, 1189, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '344.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13595, '2022-10-14', 6872, 12958, 1189, 4004, '6.0000', '2.0000', '2.0000', '2.2000', '2.2000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13596, '2022-10-14', 6619, 12959, 1189, 3412, '4.0000', '3.5000', '3.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13597, '2022-10-14', 5969, 12960, 1189, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13598, '2022-10-14', 6754, 12961, 1189, 1906, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '354.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13599, '2022-10-14', 6391, 12962, 1189, 762, '3.0000', '3.3200', '3.3200', '3.3200', '3.3200', '47.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13600, '2022-10-14', 5640, 12963, 1189, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '633.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13601, '2022-10-14', 6143, 12964, 1189, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '43.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13602, '2022-10-14', 5792, 12965, 1190, 1036, '1.0000', '30.2000', '30.2000', '39.9000', '39.9000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13603, '2022-10-14', 6224, 12966, 1190, 2385, '4.0000', '1.9000', '1.9000', '1.9000', '1.9000', '30.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13604, '2022-10-14', 6691, 12967, 1190, 4077, '5.0000', '6.5000', '6.5000', '6.5000', '6.5000', '228.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13605, '2022-10-14', 5629, 12968, 1190, 1171, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13606, '2022-10-14', 5847, 12969, 1190, 3136, '4.0000', '3.1651', '3.1651', '7.5000', '7.5000', '357.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13607, '2022-10-14', 5826, 12970, 1190, 921, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13608, '2022-10-14', 6674, 12971, 1190, 1923, '3.0000', '4.4500', '4.4500', '4.4500', '4.4500', '262.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13609, '2022-10-14', 6113, 12972, 1190, 2086, '3.0000', '9.8000', '9.8000', '9.8000', '9.8000', '28.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13610, '2022-10-14', 6345, 12973, 1190, 1922, '4.0000', '3.6300', '3.6300', '4.4000', '4.4000', '91.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13611, '2022-10-14', 6078, 12974, 1190, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '541.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13612, '2022-10-14', 6726, 12975, 1191, 1006, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13613, '2022-10-14', 6726, 12975, 1191, NULL, '9.0000', '6.0000', '6.0000', '6.0000', '6.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13614, '2022-10-14', 5841, 12976, 1191, 3429, '10.0000', '18.0000', '18.0000', '19.8000', '19.8000', '89.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13625, '2022-10-14', 6194, 12987, 1192, 2261, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '93.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13624, '2022-10-14', 6040, 12986, 1192, 3975, '2.0000', '3.0500', '3.0500', '3.0500', '3.0500', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13623, '2022-10-14', 6011, 12985, 1192, 3028, '1.0000', '14.2100', '14.2100', '14.2100', '14.2100', '39.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13622, '2022-10-14', 5749, 12984, 1192, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '77.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13621, '2022-10-14', 5535, 12983, 1192, 2277, '2.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1047.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13626, '2022-10-14', 6245, 12988, 1192, 2111, '2.0000', '2.9900', '2.9900', '2.9900', '2.9900', '80.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13627, '2022-10-14', 6570, 12989, 1192, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '57.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13628, '2022-10-14', 5948, 12990, 1192, 2075, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '232.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13765, '2022-10-14', 6692, 13124, 1193, 2446, '-38.0000', '3.2399', '3.2399', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13764, '2022-10-14', 6538, 13123, 1193, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13763, '2022-10-14', 6296, 13122, 1193, 3815, '2.0000', '25.4000', '25.4000', '28.5000', '28.5000', '172.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13762, '2022-10-14', 6293, 13121, 1193, 4068, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '163.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13761, '2022-10-14', 6234, 13120, 1193, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '66.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13760, '2022-10-14', 6075, 13119, 1193, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1218.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13759, '2022-10-14', 5983, 13118, 1193, 2333, '3.0000', '5.9000', '5.9000', '5.9000', '5.9000', '151.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13758, '2022-10-14', 5948, 13117, 1193, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '222.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13757, '2022-10-14', 5926, 13116, 1193, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '291.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13756, '2022-10-14', 5906, 13115, 1193, 2046, '5.0000', '15.8200', '15.8200', '15.8200', '15.8200', '6.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13755, '2022-10-14', 5589, 13114, 1193, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '135.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13754, '2022-10-14', 5588, 13113, 1193, 3075, '2.0000', '14.9600', '14.9600', '14.9600', '14.9600', '90.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13753, '2022-10-14', 5427, 13112, 1193, 2365, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13766, '2022-10-14', 6692, 13124, 1193, NULL, '47.0000', '3.2399', '3.2399', '4.0000', '4.0000', '-47.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14364, '2022-10-14', 6075, 13690, 1194, 3025, '48.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1128.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14363, '2022-10-14', 5656, 13689, 1194, 3841, '6.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14365, '2022-10-15', 5717, 13691, 1261, 2381, '5.0000', '2.4000', '2.4000', '2.4000', '2.4000', '272.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13830, '2022-10-14', 5447, 13188, 1206, 3851, '10.0000', '24.7066', '24.7066', '28.7000', '28.7000', '216.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13661, '2022-10-14', 5947, 13021, 1195, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '235.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13662, '2022-10-14', 6218, 13022, 1195, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '35.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13663, '2022-10-14', 5689, 13023, 1196, 2050, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '5.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13664, '2022-10-14', 5586, 13024, 1196, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '190.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13665, '2022-10-14', 5585, 13025, 1196, 3962, '1.0000', '23.4000', '23.4000', '23.4000', '23.4000', '27.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13666, '2022-10-14', 5677, 13026, 1196, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '128.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13667, '2022-10-14', 5949, 13027, 1196, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '342.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13668, '2022-10-14', 5926, 13028, 1196, 1970, '1.0000', '10.9000', '10.9000', '10.9000', '10.9000', '311.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13669, '2022-10-14', 5593, 13029, 1196, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13670, '2022-10-14', 5641, 13030, 1196, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '58.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13671, '2022-10-14', 6358, 13031, 1196, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4150.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13672, '2022-10-14', 6003, 13032, 1196, 2321, '1.0000', '6.7000', '6.7000', '9.1000', '9.1000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13673, '2022-10-14', 6543, 13033, 1196, 2062, '1.0000', '11.2000', '11.2000', '13.9200', '13.9200', '10.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13674, '2022-10-14', 5757, 13034, 1196, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '96.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13675, '2022-10-14', 5969, 13035, 1196, 2252, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13676, '2022-10-14', 6656, 13036, 1196, 4089, '1.0000', '11.7100', '11.7100', '13.1000', '13.1000', '59.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13677, '2022-10-14', 6074, 13037, 1196, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '688.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13678, '2022-10-14', 6590, 13038, 1196, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13679, '2022-10-14', 5983, 13039, 1196, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '151.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13680, '2022-10-14', 5472, 13040, 1197, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '442.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13681, '2022-10-14', 6347, 13041, 1197, 2269, '1.0000', '8.5000', '8.5000', '8.5000', '8.5000', '37.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13744, '2022-10-14', 6297, 13103, 1198, 1855, '10.0000', '10.4000', '10.4000', '10.4000', '10.4000', '9.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13743, '2022-10-14', 5998, 13102, 1198, 3971, '5.0000', '5.0000', '5.0000', '6.4000', '6.4000', '55.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13742, '2022-10-14', 5979, 13101, 1198, 4081, '5.0000', '6.0097', '6.0097', '6.8000', '6.8000', '91.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13741, '2022-10-14', 5949, 13100, 1198, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '332.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13740, '2022-10-14', 5926, 13099, 1198, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '291.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13739, '2022-10-14', 5740, 13098, 1198, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '151.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13738, '2022-10-14', 5471, 13097, 1198, 902, '5.0000', '5.0400', '5.0400', '5.9800', '5.9800', '63.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13737, '2022-10-14', 5418, 13096, 1198, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '119.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13745, '2022-10-14', 6399, 13104, 1198, 2019, '10.0000', '6.1000', '6.1000', '6.1000', '6.1000', '187.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13691, '2022-10-14', 6010, 13051, 1199, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '296.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13692, '2022-10-14', 6333, 13052, 1199, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '89.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13693, '2022-10-14', 5472, 13053, 1199, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '440.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13694, '2022-10-14', 5967, 13054, 1199, 3132, '3.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2486.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13695, '2022-10-14', 6026, 13055, 1199, 3886, '4.0000', '2.0143', '2.0143', '2.1000', '2.1000', '136.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13696, '2022-10-14', 6609, 13056, 1200, 3773, '7.0000', '11.6821', '11.6821', '12.7000', '12.7000', '134.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13697, '2022-10-14', 6608, 13057, 1200, 3774, '7.0000', '12.9538', '12.9538', '14.3000', '14.3000', '146.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13698, '2022-10-14', 6427, 13058, 1200, 1475, '5.0000', '17.5000', '17.5000', '17.5000', '17.5000', '11.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13699, '2022-10-14', 6408, 13059, 1200, 2068, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '18.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13700, '2022-10-14', 5926, 13060, 1200, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '291.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13701, '2022-10-14', 5535, 13061, 1200, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1037.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13702, '2022-10-14', 5640, 13062, 1200, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '630.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13703, '2022-10-14', 6375, 13063, 1200, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '138.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13704, '2022-10-14', 6283, 13064, 1200, 2335, '5.0000', '5.1000', '5.1000', '6.0200', '6.0200', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13705, '2022-10-14', 6384, 13065, 1200, 1477, '10.0000', '9.6600', '9.6600', '9.6600', '9.6600', '94.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13706, '2022-10-14', 6391, 13066, 1200, 762, '5.0000', '3.3200', '3.3200', '3.3200', '3.3200', '42.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13707, '2022-10-14', 6024, 13067, 1200, 3896, '5.0000', '4.9900', '4.9900', '5.5000', '5.5000', '70.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13708, '2022-10-14', 5624, 13068, 1200, 4120, '3.0000', '18.1800', '18.1800', '20.1000', '20.1000', '57.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13709, '2022-10-14', 5969, 13069, 1200, 2252, '7.0000', '8.8000', '8.8000', '10.7000', '10.7000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13710, '2022-10-14', 6248, 13070, 1200, 1408, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13711, '2022-10-14', 5779, 13071, 1200, 3821, '4.0000', '14.6863', '14.6863', '16.0000', '16.0000', '85.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13712, '2022-10-14', 5593, 13072, 1200, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '12.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13713, '2022-10-14', 5991, 13073, 1200, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '77.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13714, '2022-10-14', 6532, 13074, 1200, 3579, '8.0000', '8.0796', '8.0796', '9.3700', '9.3700', '72.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13715, '2022-10-14', 6158, 13075, 1200, 3653, '5.0000', '9.8000', '9.8000', '10.8000', '10.8000', '30.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13716, '2022-10-14', 5965, 13076, 1200, 3787, '5.0000', '12.5145', '12.5145', '13.5000', '13.5000', '106.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13717, '2022-10-14', 5986, 13077, 1200, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '69.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13718, '2022-10-14', 6202, 13078, 1200, 3985, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '362.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13719, '2022-10-14', 6149, 13079, 1200, 1949, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13720, '2022-10-14', 5778, 13080, 1200, 3822, '5.0000', '16.3911', '16.3911', '18.0000', '18.0000', '81.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13721, '2022-10-14', 6883, 13081, 1200, 3129, '3.0000', '6.3000', '6.3000', '7.0000', '7.0000', '48.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13722, '2022-10-14', 6572, 13082, 1200, 3996, '5.0000', '17.0000', '17.0000', '17.0000', '17.0000', '84.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13723, '2022-10-14', 6813, 13083, 1200, 1368, '5.0000', '13.0000', '13.0000', '13.0000', '13.0000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13724, '2022-10-14', 6777, 13084, 1200, NULL, '2.0000', '21.7400', '21.7400', '26.5000', '26.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13725, '2022-10-14', 5956, 13085, 1200, 3744, '-5.0000', '17.8400', '17.8400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13726, '2022-10-14', 5956, 13085, 1200, NULL, '8.0000', '17.8400', '17.8400', '24.0000', '24.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13727, '2022-10-14', 6832, 13086, 1201, 1381, '20.0000', '2.6000', '2.6000', '2.6000', '2.6000', '298.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13728, '2022-10-14', 5641, 13087, 1201, 3890, '2.0000', '31.1000', '31.1000', '34.2100', '34.2100', '56.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13729, '2022-10-14', 5607, 13088, 1201, 3708, '2.0000', '11.4000', '11.4000', '11.4000', '11.4000', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13730, '2022-10-14', 6383, 13089, 1201, 4117, '4.0000', '8.7203', '8.7203', '9.8000', '9.8000', '116.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13731, '2022-10-14', 6368, 13090, 1201, 1091, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13732, '2022-10-14', 5731, 13091, 1201, 4078, '10.0000', '17.2000', '17.2000', '17.2000', '17.2000', '2.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13733, '2022-10-14', 5740, 13092, 1201, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '151.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13734, '2022-10-14', 5974, 13093, 1201, 4080, '3.0000', '8.4900', '8.4900', '9.5000', '9.5000', '236.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13735, '2022-10-14', 6517, 13094, 1201, 2254, '3.0000', '8.7000', '8.7000', '10.4500', '10.4500', '64.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13736, '2022-10-14', 5451, 13095, 1201, 2387, '10.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1146.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13746, '2022-10-14', 5959, 13105, 1198, NULL, '5.0000', '23.7000', '23.7000', '29.8000', '29.8000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13747, '2022-10-14', 5792, 13106, 1202, 1036, '1.0000', '30.2000', '30.2000', '36.9900', '36.9900', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13748, '2022-10-14', 6608, 13107, 1202, 3774, '4.0000', '12.9538', '12.9538', '14.3000', '14.3000', '142.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13749, '2022-10-14', 6884, 13108, 1202, 3122, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '68.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13750, '2022-10-14', 6007, 13109, 1202, 2391, '3.0000', '11.3800', '11.3800', '11.3800', '11.3800', '55.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13751, '2022-10-14', 6075, 13110, 1202, 3025, '1.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1218.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13752, '2022-10-14', 6888, 13111, 1202, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '21.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13969, '2022-10-14', 6574, 13322, 1203, 988, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '34.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13968, '2022-10-14', 6456, 13321, 1203, 1896, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13967, '2022-10-14', 6445, 13320, 1203, 3581, '1.0000', '21.8000', '21.8000', '21.6000', '21.6000', '47.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13966, '2022-10-14', 6342, 13319, 1203, 957, '1.0000', '58.1000', '58.1000', '58.1000', '58.1000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13965, '2022-10-14', 6333, 13318, 1203, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '86.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13964, '2022-10-14', 6101, 13317, 1203, 3978, '2.0000', '28.5000', '28.5000', '28.5000', '28.5000', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13963, '2022-10-14', 6010, 13316, 1203, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '295.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13962, '2022-10-14', 5971, 13315, 1203, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '56.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13961, '2022-10-14', 5729, 13314, 1203, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '27.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13960, '2022-10-14', 5589, 13313, 1203, 2370, '4.0000', '9.4000', '9.4000', '9.4000', '9.4000', '131.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13959, '2022-10-14', 5500, 13312, 1203, 3751, '1.0000', '41.3100', '41.3100', '46.3000', '46.3000', '3.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13970, '2022-10-14', 6670, 13323, 1203, 1463, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '38.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14100, '2022-10-14', 6532, 13446, 1213, 3579, '5.0000', '8.0796', '8.0796', '9.3700', '9.3700', '67.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13831, '2022-10-14', 6860, 13189, 1206, 3738, '12.0000', '15.4923', '15.4923', '18.0000', '18.0000', '82.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13796, '2022-10-14', 6188, 13154, 1204, 3080, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13797, '2022-10-14', 6205, 13155, 1205, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '101.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13798, '2022-10-14', 6389, 13156, 1205, 4114, '4.0000', '8.7525', '8.7525', '9.7000', '9.7000', '350.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13799, '2022-10-14', 5799, 13157, 1205, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '72.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13800, '2022-10-14', 6518, 13158, 1205, 974, '1.0000', '61.2000', '61.2000', '61.2000', '61.2000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13801, '2022-10-14', 6554, 13159, 1205, 982, '1.0000', '130.0000', '130.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13802, '2022-10-14', 6232, 13160, 1205, 3587, '1.0000', '6.4556', '6.4556', '9.9000', '9.9000', '55.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13803, '2022-10-14', 6234, 13161, 1205, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '65.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13804, '2022-10-14', 5439, 13162, 1205, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '113.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13805, '2022-10-14', 6042, 13163, 1205, 938, '2.0000', '25.9500', '25.9500', '25.9500', '25.9500', '47.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13806, '2022-10-14', 6188, 13164, 1205, 3080, '4.0000', '7.0000', '7.0000', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13807, '2022-10-14', 5705, 13165, 1205, 1169, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13808, '2022-10-14', 6130, 13166, 1205, 3979, '2.0000', '6.4000', '6.4000', '7.4000', '7.4000', '30.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13809, '2022-10-14', 5931, 13167, 1205, 1090, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '41.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13810, '2022-10-14', 5957, 13168, 1205, 3543, '2.0000', '3.7691', '3.7691', '8.8200', '8.8200', '3.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13811, '2022-10-14', 6102, 13169, 1205, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13812, '2022-10-14', 5898, 13170, 1205, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13813, '2022-10-14', 5472, 13171, 1205, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '439.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13832, '2022-10-14', 6220, 13190, 1206, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '119.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13833, '2022-10-14', 5847, 13191, 1206, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '347.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13834, '2022-10-14', 5472, 13192, 1206, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '429.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13835, '2022-10-14', 5975, 13193, 1206, 1969, '10.0000', '9.1500', '9.1500', '12.2100', '12.2100', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13836, '2022-10-14', 6824, 13194, 1206, 561, '5.0000', '18.4800', '18.4800', '18.4800', '18.4800', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13837, '2022-10-14', 6320, 13195, 1206, 1053, '8.0000', '63.2200', '63.2200', '87.4100', '87.4100', '23.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13838, '2022-10-14', 5792, 13196, 1207, 1036, '1.0000', '30.2000', '30.2000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13839, '2022-10-14', 5983, 13197, 1207, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13840, '2022-10-14', 6257, 13198, 1207, 1887, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13841, '2022-10-14', 5749, 13199, 1207, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13842, '2022-10-14', 6652, 13200, 1207, 1414, '3.0000', '3.8000', '3.8000', '3.7900', '3.7900', '57.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13843, '2022-10-14', 5472, 13201, 1208, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '419.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13866, '2022-10-14', 6555, 13222, 1209, 3736, '2.0000', '2.9700', '2.9700', '3.6000', '3.6000', '87.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13865, '2022-10-14', 6454, 13221, 1209, NULL, '2.0000', '0.0000', '0.0000', '4.3000', '4.3000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13864, '2022-10-14', 6381, 13220, 1209, 1490, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13863, '2022-10-14', 6360, 13219, 1209, 3907, '3.0000', '2.5000', '2.5000', '2.8000', '2.8000', '379.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13862, '2022-10-14', 6217, 13218, 1209, NULL, '1.0000', '2.8800', '2.8800', '2.8800', '2.8800', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13861, '2022-10-14', 6217, 13218, 1209, 946, '1.0000', '2.8800', '2.8800', '2.8800', '2.8800', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13860, '2022-10-14', 6190, 13217, 1209, 2126, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '46.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13859, '2022-10-14', 6065, 13216, 1209, 527, '1.0000', '4.9900', '4.9900', '4.9900', '4.9900', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13858, '2022-10-14', 5714, 13215, 1209, 2383, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '345.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13857, '2022-10-14', 5657, 13214, 1209, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '203.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13856, '2022-10-14', 5473, 13213, 1209, 3904, '2.0000', '4.5000', '4.5000', '5.0000', '5.0000', '467.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13867, '2022-10-14', 6664, 13223, 1209, 4122, '7.0000', '0.6197', '0.6197', '1.6000', '1.6000', '886.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13868, '2022-10-14', 6842, 13224, 1209, 1373, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13869, '2022-10-14', 6075, 13225, 1210, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1194.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13870, '2022-10-14', 6555, 13226, 1210, 3736, '3.0000', '2.9700', '2.9700', '3.6000', '3.6000', '84.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13871, '2022-10-14', 5740, 13227, 1210, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '149.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13872, '2022-10-14', 5440, 13228, 1210, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '242.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13873, '2022-10-14', 6375, 13229, 1210, 2304, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '135.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13874, '2022-10-14', 6795, 13230, 1211, 1452, '1.0000', '55.8000', '55.8000', '55.8000', '55.8000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13875, '2022-10-14', 5500, 13231, 1211, 3751, '1.0000', '41.3100', '41.3100', '46.3000', '46.3000', '2.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13876, '2022-10-14', 5501, 13232, 1211, 3752, '1.0000', '44.0800', '44.0800', '49.0000', '49.0000', '24.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13877, '2022-10-14', 5650, 13233, 1211, 1438, '4.0000', '7.9000', '7.9000', '7.9000', '7.9000', '16.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13878, '2022-10-14', 6158, 13234, 1211, 3653, '4.0000', '9.8000', '9.8000', '10.8000', '10.8000', '26.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13879, '2022-10-14', 6853, 13235, 1211, 3832, '-2.0000', '23.0000', '23.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13880, '2022-10-14', 6853, 13235, 1211, NULL, '5.0000', '23.0000', '23.0000', '23.0000', '23.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13881, '2022-10-14', 6288, 13236, 1211, 1416, '2.0000', '56.0000', '56.0000', '66.5200', '66.5200', '68.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13882, '2022-10-14', 5640, 13237, 1211, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '627.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13883, '2022-10-14', 5641, 13238, 1211, 3890, '2.0000', '31.1000', '31.1000', '34.2100', '34.2100', '54.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13884, '2022-10-14', 6032, 13239, 1211, 3889, '2.0000', '17.2100', '17.2100', '19.0000', '19.0000', '98.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13885, '2022-10-14', 6552, 13240, 1211, 577, '2.0000', '186.8000', '186.8000', '186.9500', '186.9500', '15.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13886, '2022-10-14', 5731, 13241, 1211, 4078, '2.0000', '17.2000', '17.2000', '17.2000', '17.2000', '0.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13887, '2022-10-14', 5731, 13241, 1211, NULL, '7.0000', '17.2000', '17.2000', '17.2000', '17.2000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13888, '2022-10-14', 5982, 13242, 1212, 4106, '3.0000', '9.4113', '9.4113', '11.1000', '11.1000', '297.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13889, '2022-10-14', 6053, 13243, 1212, 1126, '1.0000', '14.9000', '14.9000', '16.3700', '16.3700', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13890, '2022-10-14', 6332, 13244, 1212, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13891, '2022-10-14', 5689, 13245, 1212, 2050, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '1.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13892, '2022-10-14', 5977, 13246, 1212, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13893, '2022-10-14', 5515, 13247, 1212, 3508, '4.0000', '4.6800', '4.6800', '5.5000', '5.5000', '122.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13894, '2022-10-14', 5619, 13248, 1212, 3509, '1.0000', '6.6300', '6.6300', '7.8000', '7.8000', '82.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13895, '2022-10-14', 5970, 13249, 1212, 931, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13896, '2022-10-14', 5967, 13250, 1212, 3132, '5.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2481.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13897, '2022-10-14', 5985, 13251, 1212, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '52.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13898, '2022-10-14', 5440, 13252, 1212, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '239.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13899, '2022-10-14', 6753, 13253, 1212, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '163.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14099, '2022-10-14', 6860, 13445, 1213, 3738, '3.0000', '15.4923', '15.4923', '18.0000', '18.0000', '76.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14098, '2022-10-14', 6841, 13444, 1213, 1372, '5.0000', '2.6000', '2.6000', '2.6000', '2.6000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14097, '2022-10-14', 6813, 13443, 1213, 1368, '3.0000', '13.0000', '13.0000', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14096, '2022-10-14', 6809, 13442, 1213, 1299, '5.0000', '13.8000', '13.8000', '13.8000', '13.8000', '56.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14095, '2022-10-14', 6642, 13441, 1213, 3414, '4.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '11.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14094, '2022-10-14', 6612, 13440, 1213, 3772, '4.0000', '16.5600', '16.5600', '18.4000', '18.4000', '88.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14093, '2022-10-14', 6610, 13439, 1213, 2271, '1.0000', '70.0000', '70.0000', '81.5000', '81.5000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14092, '2022-10-14', 6609, 13438, 1213, 3773, '3.0000', '11.6821', '11.6821', '12.7000', '12.7000', '131.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14091, '2022-10-14', 6608, 13437, 1213, 3774, '3.0000', '12.9538', '12.9538', '14.3000', '14.3000', '139.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14090, '2022-10-14', 6605, 13436, 1213, 1445, '5.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14089, '2022-10-14', 6595, 13435, 1213, 2565, '5.0000', '7.9000', '7.9000', '9.2000', '9.2000', '61.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14088, '2022-10-14', 6590, 13434, 1213, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14087, '2022-10-14', 6572, 13433, 1213, 3996, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '81.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14086, '2022-10-14', 6455, 13432, 1213, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14085, '2022-10-14', 6445, 13431, 1213, 3581, '2.0000', '21.8000', '21.8000', '21.6000', '21.6000', '47.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14084, '2022-10-14', 6408, 13430, 1213, 2068, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14083, '2022-10-14', 6393, 13429, 1213, 2082, '2.0000', '15.0000', '15.0000', '16.0000', '16.0000', '44.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14082, '2022-10-14', 6385, 13428, 1213, 2309, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '86.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14081, '2022-10-14', 6384, 13427, 1213, 1477, '3.0000', '9.6600', '9.6600', '9.6600', '9.6600', '91.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14080, '2022-10-14', 6383, 13426, 1213, 4117, '2.0000', '8.7203', '8.7203', '9.8000', '9.8000', '114.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14079, '2022-10-14', 6358, 13425, 1213, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4140.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14078, '2022-10-14', 6353, 13424, 1213, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '85.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14077, '2022-10-14', 6304, 13423, 1213, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '95.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14076, '2022-10-14', 6292, 13422, 1213, 1489, '3.0000', '7.8000', '7.8000', '9.2000', '9.2000', '8.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14075, '2022-10-14', 6285, 13421, 1213, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14074, '2022-10-14', 6264, 13420, 1213, 3404, '5.0000', '6.0000', '6.0000', '6.8500', '6.8500', '74.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14073, '2022-10-14', 6242, 13419, 1213, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '62.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14072, '2022-10-14', 6205, 13418, 1213, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '100.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14071, '2022-10-14', 6127, 13417, 1213, 1841, '3.0000', '7.3000', '7.3000', '8.8000', '8.8000', '80.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14070, '2022-10-14', 5988, 13416, 1213, 2033, '5.0000', '3.0000', '3.0000', '3.4200', '3.4200', '74.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14069, '2022-10-14', 5977, 13415, 1213, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '17.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14068, '2022-10-14', 5965, 13414, 1213, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '104.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14067, '2022-10-14', 5959, 13413, 1213, NULL, '7.0000', '23.7000', '23.7000', '29.8000', '29.8000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14066, '2022-10-14', 5959, 13413, 1213, 3750, '-5.0000', '23.7000', '23.7000', '29.8000', '29.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14065, '2022-10-14', 5958, 13412, 1213, 521, '2.0000', '16.1000', '16.1000', '21.7000', '21.7000', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14064, '2022-10-14', 5949, 13411, 1213, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '327.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14063, '2022-10-14', 5948, 13410, 1213, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '212.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14062, '2022-10-14', 5926, 13409, 1213, 1970, '8.0000', '10.9000', '10.9000', '10.9000', '10.9000', '278.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14061, '2022-10-14', 5885, 13408, 1213, 1103, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '69.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14060, '2022-10-14', 5865, 13407, 1213, 3052, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '371.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14059, '2022-10-14', 5792, 13406, 1213, NULL, '4.0000', '30.2000', '30.2000', '39.7000', '39.7000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14058, '2022-10-14', 5792, 13406, 1213, 3853, '-2.0000', '30.2000', '30.2000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14057, '2022-10-14', 5729, 13405, 1213, 1993, '3.0000', '10.5000', '10.5000', '10.5000', '10.5000', '27.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14056, '2022-10-14', 5651, 13404, 1213, 2386, '1.0000', '6.1700', '6.1700', '6.1700', '6.1700', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14055, '2022-10-14', 5619, 13403, 1213, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '80.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14101, '2022-10-14', 6374, 13447, 1223, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4105.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13971, '2022-10-14', 5841, 13324, 1203, 3429, '3.0000', '18.0000', '18.0000', '19.8000', '19.8000', '86.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13972, '2022-10-14', 5963, 13325, 1203, 3428, '2.0000', '14.5000', '14.5000', '15.9500', '15.9500', '39.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13973, '2022-10-14', 6829, 13326, 1203, 2561, '2.0000', '29.7000', '29.7000', '29.7000', '29.7000', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13974, '2022-10-14', 5881, 13327, 1203, 3427, '3.0000', '13.5000', '13.5000', '14.8500', '14.8500', '63.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13975, '2022-10-14', 6232, 13328, 1203, 3587, '6.0000', '6.4556', '6.4556', '9.9000', '9.9000', '49.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13976, '2022-10-14', 6828, 13329, 1214, 4073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '12.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (13977, '2022-10-14', 5947, 13330, 1214, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '234.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14033, '2022-10-14', 6816, 13382, 1215, 3390, '1.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '54.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14032, '2022-10-14', 6696, 13381, 1215, 4109, '10.0000', '4.2337', '4.2337', '4.9500', '4.9500', '190.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14031, '2022-10-14', 6359, 13380, 1215, 4069, '5.0000', '1.7604', '1.7604', '2.5000', '2.5000', '176.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14030, '2022-10-14', 6352, 13379, 1215, 1409, '5.0000', '2.5000', '2.5000', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14029, '2022-10-14', 6221, 13378, 1215, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14028, '2022-10-14', 6215, 13377, 1215, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14027, '2022-10-14', 5983, 13376, 1215, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14026, '2022-10-14', 5775, 13375, 1215, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '58.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14025, '2022-10-14', 5754, 13374, 1215, 4060, '2.0000', '7.2000', '7.2000', '7.2000', '7.2000', '19.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14024, '2022-10-14', 5640, 13373, 1215, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '622.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14020, '2022-10-14', 5792, 13370, 1216, NULL, '3.0000', '30.2000', '30.2000', '39.7000', '39.7000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14019, '2022-10-14', 5792, 13370, 1216, 3853, '-1.0000', '30.2000', '30.2000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14021, '2022-10-14', 6829, 13371, 1216, 2561, '2.0000', '29.7000', '29.7000', '29.7000', '29.7000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14128, '2022-10-14', 6876, 13473, 1217, 4008, '15.0000', '0.9800', '0.9800', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14127, '2022-10-14', 6573, 13472, 1217, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '1.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14126, '2022-10-14', 6491, 13471, 1217, 2295, '2.0000', '9.6200', '9.6200', '9.6200', '9.6200', '164.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14125, '2022-10-14', 6374, 13470, 1217, 3614, '30.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4105.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14124, '2022-10-14', 6348, 13469, 1217, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '34.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14123, '2022-10-14', 6285, 13468, 1217, 2057, '4.0000', '9.4700', '9.4700', '10.9800', '10.9800', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14122, '2022-10-14', 6225, 13467, 1217, 2356, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '213.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14121, '2022-10-14', 5926, 13466, 1217, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '278.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14120, '2022-10-14', 5754, 13465, 1217, 4060, '3.0000', '7.2000', '7.2000', '9.2000', '9.2000', '19.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14119, '2022-10-14', 5740, 13464, 1217, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '144.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14118, '2022-10-14', 5677, 13463, 1217, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14117, '2022-10-14', 5657, 13462, 1217, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '198.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14116, '2022-10-14', 5651, 13461, 1217, 2386, '3.0000', '6.1700', '6.1700', '6.1700', '6.1700', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14115, '2022-10-14', 5641, 13460, 1217, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '53.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14114, '2022-10-14', 5640, 13459, 1217, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '621.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14113, '2022-10-14', 5451, 13458, 1217, 2387, '15.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1131.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14129, '2022-10-14', 6264, 13474, 1226, 3404, '2.0000', '6.0000', '6.0000', '6.8500', '6.8500', '72.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14034, '2022-10-14', 5898, 13383, 1218, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '173.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14022, '2022-10-14', 6390, 13372, 1216, 3909, '-1.0000', '29.4500', '29.4500', '29.4500', '29.4500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14023, '2022-10-14', 6390, 13372, 1216, NULL, '2.0000', '29.4500', '29.4500', '29.4500', '29.4500', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14035, '2022-10-14', 5853, 13384, 1218, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '422.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14036, '2022-10-14', 6010, 13385, 1218, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '293.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14037, '2022-10-14', 5677, 13386, 1218, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14038, '2022-10-14', 6332, 13387, 1218, 2560, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14039, '2022-10-14', 5689, 13388, 1218, 2050, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '0.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14040, '2022-10-14', 5689, 13388, 1218, 1428, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '78.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14041, '2022-10-14', 5873, 13389, 1218, 1307, '2.0000', '12.0000', '12.0000', '12.0000', '12.0000', '38.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14042, '2022-10-14', 6220, 13390, 1218, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14043, '2022-10-14', 5472, 13391, 1218, 3903, '3.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '416.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14044, '2022-10-14', 5847, 13392, 1218, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '344.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14045, '2022-10-14', 5854, 13393, 1219, NULL, '2.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14046, '2022-10-14', 6024, 13394, 1219, 3896, '1.0000', '4.9900', '4.9900', '5.5000', '5.5000', '69.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14047, '2022-10-14', 6860, 13395, 1219, 3738, '3.0000', '15.4923', '15.4923', '18.0000', '18.0000', '76.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14048, '2022-10-14', 6218, 13396, 1220, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '34.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14049, '2022-10-14', 5447, 13397, 1221, 3851, '4.0000', '24.7066', '24.7066', '28.7000', '28.7000', '212.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14050, '2022-10-14', 5799, 13398, 1221, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '68.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14051, '2022-10-14', 6778, 13399, 1221, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '131.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14052, '2022-10-14', 5983, 13400, 1222, 2333, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '144.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14053, '2022-10-14', 6273, 13401, 1222, 3033, '5.0000', '26.0000', '26.0000', '27.5000', '27.5000', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14054, '2022-10-14', 5749, 13402, 1222, 1302, '3.0000', '8.1400', '8.1400', '8.1400', '8.1400', '73.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14102, '2022-10-14', 6095, 13448, 1224, 3893, '3.0000', '8.3200', '8.3200', '9.2000', '9.2000', '394.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14103, '2022-10-14', 6455, 13449, 1225, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14104, '2022-10-14', 5640, 13450, 1225, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '621.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14105, '2022-10-14', 6353, 13451, 1225, 1920, '4.0000', '3.7500', '3.7500', '3.7500', '3.7500', '81.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14106, '2022-10-14', 6359, 13452, 1225, 4069, '4.0000', '1.7604', '1.7604', '2.5000', '2.5000', '172.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14107, '2022-10-14', 5593, 13453, 1225, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14108, '2022-10-14', 6205, 13454, 1225, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '99.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14109, '2022-10-14', 6074, 13455, 1225, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '685.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14110, '2022-10-14', 5975, 13456, 1225, 1969, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14111, '2022-10-14', 5975, 13456, 1225, 523, '1.0000', '9.1500', '9.1500', '12.2100', '12.2100', '24.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14112, '2022-10-14', 5775, 13457, 1225, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '57.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14130, '2022-10-14', 6642, 13475, 1226, 3414, '2.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '9.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14131, '2022-10-14', 5640, 13476, 1226, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '619.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14132, '2022-10-14', 6353, 13477, 1226, 1920, '4.0000', '3.7500', '3.7500', '3.7500', '3.7500', '77.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14133, '2022-10-14', 6358, 13478, 1226, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4130.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14134, '2022-10-14', 6053, 13479, 1226, NULL, '1.0000', '14.9000', '14.9000', '16.3700', '16.3700', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14135, '2022-10-14', 6248, 13480, 1226, 1408, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14136, '2022-10-14', 5689, 13481, 1226, 1428, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '75.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14137, '2022-10-14', 6193, 13482, 1226, 2115, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '1.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14138, '2022-10-14', 5696, 13483, 1226, 514, '1.0000', '14.0000', '14.0000', '15.5000', '15.5000', '56.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14139, '2022-10-14', 6332, 13484, 1226, 2560, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14193, '2022-10-14', 6860, 13534, 1227, 3738, '8.0000', '15.4923', '15.4923', '18.0000', '18.0000', '68.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14192, '2022-10-14', 6316, 13533, 1227, 3757, '3.0000', '54.8358', '54.8358', '74.0000', '74.0000', '66.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14191, '2022-10-14', 6304, 13532, 1227, 1853, '8.0000', '13.5000', '13.5000', '13.5000', '13.5000', '87.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14190, '2022-10-14', 6296, 13531, 1227, 3815, '5.0000', '25.4000', '25.4000', '28.5000', '28.5000', '167.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14189, '2022-10-14', 6075, 13530, 1227, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1148.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14188, '2022-10-14', 6033, 13529, 1227, 4064, '2.0000', '31.4000', '31.4000', '31.4000', '31.4000', '18.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14187, '2022-10-14', 5858, 13528, 1227, NULL, '3.0000', '0.0000', '0.0000', '38.0000', '38.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14186, '2022-10-14', 5629, 13527, 1227, 909, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '19.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14185, '2022-10-14', 5629, 13527, 1227, 1171, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14194, '2022-10-14', 6247, 13535, 1236, 2326, '2.0000', '78.0000', '78.0000', '90.4200', '90.4200', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18825, '2022-10-14', 6757, 18038, 1228, 583, '1.0000', '158.4000', '158.4000', '230.8000', '230.8000', '7.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18824, '2022-10-14', 6572, 18037, 1228, 3996, '10.0000', '17.0000', '17.0000', '17.0000', '17.0000', '65.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18823, '2022-10-14', 6327, 18036, 1228, NULL, '16.0000', '28.6000', '28.6000', '28.6000', '28.6000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18822, '2022-10-14', 6327, 18036, 1228, 4010, '-6.0000', '28.6000', '28.6000', '28.6000', '28.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18821, '2022-10-14', 6234, 18035, 1228, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '18.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18820, '2022-10-14', 6102, 18034, 1228, 2291, '10.0000', '27.8000', '27.8000', '27.8000', '27.8000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18819, '2022-10-14', 5585, 18033, 1228, 3962, '5.0000', '23.4000', '23.4000', '23.4000', '23.4000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18826, '2022-10-14', 5778, 18039, 1228, 3822, '10.0000', '16.3911', '16.3911', '18.0000', '18.0000', '61.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14158, '2022-10-14', 5947, 13501, 1229, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '233.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14159, '2022-10-14', 6218, 13502, 1229, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '33.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14160, '2022-10-14', 6590, 13503, 1229, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14161, '2022-10-14', 6075, 13504, 1230, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1172.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14162, '2022-10-14', 6076, 13505, 1230, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1699.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14163, '2022-10-14', 6077, 13506, 1230, 4065, '15.0000', '3.9894', '3.9894', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14164, '2022-10-14', 6074, 13507, 1230, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '675.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14165, '2022-10-14', 6096, 13508, 1231, NULL, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14166, '2022-10-14', 5740, 13509, 1231, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '139.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14167, '2022-10-14', 5947, 13510, 1232, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '231.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14168, '2022-10-14', 6074, 13511, 1233, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '655.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14169, '2022-10-14', 6677, 13512, 1233, 1274, '5.0000', '10.0000', '10.0000', '10.0000', '10.0000', '257.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14170, '2022-10-14', 5586, 13513, 1233, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '188.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14206, '2022-10-14', 6573, 13546, 1234, NULL, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14205, '2022-10-14', 6573, 13546, 1234, 1964, '1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14204, '2022-10-14', 6345, 13545, 1234, 1922, '25.0000', '3.6300', '3.6300', '4.4000', '4.4000', '66.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14203, '2022-10-14', 6205, 13544, 1234, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '97.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14202, '2022-10-14', 6179, 13543, 1234, 3059, '40.0000', '2.1000', '2.1000', '2.1000', '2.1000', '960.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14201, '2022-10-14', 6123, 13542, 1234, 1878, '2.0000', '52.7000', '52.7000', '60.5000', '60.5000', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14200, '2022-10-14', 6075, 13541, 1234, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1148.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14199, '2022-10-14', 5986, 13540, 1234, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '67.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14198, '2022-10-14', 5967, 13539, 1234, 3132, '20.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2461.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14197, '2022-10-14', 5775, 13538, 1234, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14196, '2022-10-14', 5657, 13537, 1234, 2382, '12.0000', '4.2000', '4.2000', '4.2000', '4.2000', '186.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14195, '2022-10-14', 5451, 13536, 1234, 2387, '30.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1101.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14207, '2022-10-14', 6178, 13547, 1234, 3060, '40.0000', '1.6000', '1.6000', '2.2000', '2.2000', '551.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14184, '2022-10-14', 6663, 13526, 1235, 2328, '6.0000', '2.5000', '2.5000', '2.5000', '2.5000', '140.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14208, '2022-10-14', 5799, 13548, 1234, 2066, '6.0000', '20.1300', '20.1300', '27.2600', '27.2600', '62.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14209, '2022-10-14', 5974, 13549, 1234, 4080, '10.0000', '8.4900', '8.4900', '9.5000', '9.5000', '226.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14210, '2022-10-14', 5593, 13550, 1234, 2071, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '9.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14211, '2022-10-14', 5472, 13551, 1237, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '406.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14212, '2022-10-14', 5986, 13552, 1238, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '66.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14214, '2022-10-14', 6753, 13554, 1239, 3737, '3.0000', '72.8788', '72.8788', '85.0000', '85.0000', '160.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14215, '2022-10-15', 6570, 13555, 1240, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '56.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14302, '2022-10-15', 6295, 13632, 1241, 4135, '-11.0000', '0.0000', '0.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14301, '2022-10-15', 5739, 13631, 1241, 2349, '4.0000', '15.0000', '15.0000', '16.0000', '16.0000', '28.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14303, '2022-10-15', 6295, 13632, 1241, NULL, '13.0000', '0.0000', '0.0000', '39.0000', '39.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14219, '2022-10-15', 6295, 13559, 1242, 4135, '-2.0000', '0.0000', '0.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14220, '2022-10-15', 6295, 13559, 1242, NULL, '4.0000', '0.0000', '0.0000', '39.0000', '39.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14221, '2022-10-15', 6434, 13560, 1242, 1895, '4.0000', '5.2000', '5.2000', '5.2000', '5.2000', '116.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14222, '2022-10-15', 6674, 13561, 1242, 1923, '3.0000', '4.4500', '4.4500', '4.4500', '4.4500', '259.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14223, '2022-10-15', 5847, 13562, 1242, 3136, '4.0000', '3.1651', '3.1651', '7.5000', '7.5000', '340.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14224, '2022-10-15', 5448, 13563, 1242, 2266, '2.0000', '14.5000', '14.5000', '17.2000', '17.2000', '87.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14225, '2022-10-15', 5799, 13564, 1242, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '60.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14226, '2022-10-15', 5827, 13565, 1242, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '82.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14334, '2022-10-15', 5792, 13661, 1243, NULL, '10.0000', '30.2000', '30.2000', '39.7000', '39.7000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14333, '2022-10-15', 5792, 13661, 1243, 3853, '-8.0000', '30.2000', '30.2000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14335, '2022-10-15', 5439, 13662, 1251, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '111.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14230, '2022-10-15', 5451, 13568, 1244, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1098.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14231, '2022-10-15', 5535, 13569, 1244, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1032.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14232, '2022-10-15', 5640, 13570, 1244, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '617.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14233, '2022-10-15', 5641, 13571, 1244, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '52.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14234, '2022-10-15', 5654, 13572, 1244, 3062, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14235, '2022-10-15', 5926, 13573, 1244, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '276.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14236, '2022-10-15', 5991, 13574, 1244, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '76.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14237, '2022-10-15', 6007, 13575, 1244, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '54.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14238, '2022-10-15', 6032, 13576, 1244, 3889, '1.0000', '17.2100', '17.2100', '19.0000', '19.0000', '97.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14239, '2022-10-15', 6078, 13577, 1244, 2352, '1.0000', '42.0000', '42.0000', '42.0000', '42.0000', '540.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14240, '2022-10-15', 6134, 13578, 1244, 1120, '2.0000', '5.8000', '5.8000', '5.8000', '5.8000', '112.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14241, '2022-10-15', 6141, 13579, 1244, 1166, '1.0000', '15.9500', '15.9500', '15.9500', '15.9500', '19.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14242, '2022-10-15', 6197, 13580, 1244, 3630, '-3.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14243, '2022-10-15', 6197, 13580, 1244, NULL, '4.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14244, '2022-10-15', 6205, 13581, 1244, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '96.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14245, '2022-10-15', 6378, 13582, 1244, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14246, '2022-10-15', 6434, 13583, 1244, 1895, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '114.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14247, '2022-10-15', 6538, 13584, 1244, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14248, '2022-10-15', 6605, 13585, 1244, NULL, '4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14249, '2022-10-15', 6817, 13586, 1244, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '49.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14250, '2022-10-15', 5898, 13587, 1244, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '171.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14251, '2022-10-15', 5853, 13588, 1244, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '420.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14252, '2022-10-15', 5677, 13589, 1244, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '119.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14253, '2022-10-15', 5586, 13590, 1244, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '187.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14254, '2022-10-15', 6295, 13591, 1245, 4135, '-4.0000', '0.0000', '0.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14255, '2022-10-15', 6295, 13591, 1245, NULL, '9.0000', '0.0000', '0.0000', '39.0000', '39.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14256, '2022-10-15', 5477, 13592, 1245, NULL, '5.0000', '0.0000', '0.0000', '27.5000', '27.5000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14257, '2022-10-15', 5637, 13593, 1245, NULL, '3.0000', '0.0000', '0.0000', '54.2000', '54.2000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14258, '2022-10-15', 5959, 13594, 1245, 3750, '-7.0000', '23.7000', '23.7000', '29.8000', '29.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14259, '2022-10-15', 5959, 13594, 1245, NULL, '12.0000', '23.7000', '23.7000', '29.8000', '29.8000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14260, '2022-10-15', 6903, 13595, 1245, 4121, '5.0000', '22.5000', '22.5000', '25.0000', '25.0000', '25.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14261, '2022-10-15', 5553, 13596, 1245, NULL, '3.0000', '32.8000', '32.8000', '39.0000', '39.0000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14262, '2022-10-15', 5854, 13597, 1245, 4130, '-2.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14263, '2022-10-15', 5854, 13597, 1245, NULL, '12.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14264, '2022-10-15', 5447, 13598, 1245, 3851, '5.0000', '24.7066', '24.7066', '28.7000', '28.7000', '207.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14265, '2022-10-15', 6248, 13599, 1245, 1408, '5.0000', '9.4000', '9.4000', '9.4000', '9.4000', '8.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14266, '2022-10-15', 6363, 13600, 1245, 1411, '5.0000', '14.8000', '14.8000', '22.7800', '22.7800', '142.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14267, '2022-10-15', 6158, 13601, 1245, 3653, '5.0000', '9.8000', '9.8000', '10.8000', '10.8000', '21.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14268, '2022-10-15', 6900, 13602, 1245, 3908, '10.0000', '6.0000', '6.0000', '6.6000', '6.6000', '190.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14269, '2022-10-15', 6446, 13603, 1245, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '88.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14270, '2022-10-15', 6232, 13604, 1245, 3587, '5.0000', '6.4556', '6.4556', '9.9000', '9.9000', '44.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14271, '2022-10-15', 5792, 13605, 1245, 3853, '-6.0000', '30.2000', '30.2000', '39.7000', '39.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14272, '2022-10-15', 5792, 13605, 1245, NULL, '10.0000', '30.2000', '30.2000', '39.7000', '39.7000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14273, '2022-10-15', 6204, 13606, 1246, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14274, '2022-10-15', 6011, 13607, 1247, 3028, '2.0000', '14.2100', '14.2100', '14.2100', '14.2100', '37.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14275, '2022-10-15', 6590, 13608, 1247, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14276, '2022-10-15', 6002, 13609, 1247, 934, '3.0000', '6.8000', '6.8000', '8.5500', '8.5500', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14277, '2022-10-15', 6267, 13610, 1247, 3845, '-5.0000', '7.1000', '7.1000', '8.0400', '8.0400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14278, '2022-10-15', 6267, 13610, 1247, NULL, '9.0000', '7.1000', '7.1000', '8.0400', '8.0400', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14279, '2022-10-15', 6433, 13611, 1247, 587, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14280, '2022-10-15', 6160, 13612, 1247, 3654, '5.0000', '6.1349', '6.1349', '7.0000', '7.0000', '51.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14281, '2022-10-15', 5593, 13613, 1247, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '8.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14282, '2022-10-15', 6573, 13614, 1247, 4134, '-1.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14283, '2022-10-15', 6573, 13614, 1247, NULL, '2.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14284, '2022-10-15', 5640, 13615, 1247, 3897, '6.0000', '11.1000', '11.1000', '12.3000', '12.3000', '611.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14285, '2022-10-15', 6221, 13616, 1247, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14286, '2022-10-15', 6006, 13617, 1247, 1871, '2.0000', '10.8300', '10.8300', '15.2000', '15.2000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14287, '2022-10-15', 6204, 13618, 1247, 2312, '2.0000', '15.8000', '15.8000', '17.7000', '17.7000', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14288, '2022-10-15', 5949, 13619, 1247, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '317.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14289, '2022-10-15', 6295, 13620, 1247, 4135, '-9.0000', '0.0000', '0.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14290, '2022-10-15', 6295, 13620, 1247, NULL, '13.0000', '0.0000', '0.0000', '39.0000', '39.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14291, '2022-10-15', 6691, 13621, 1247, 4077, '10.0000', '6.5000', '6.5000', '6.5000', '6.5000', '218.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14292, '2022-10-15', 5740, 13622, 1247, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '135.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14293, '2022-10-15', 5841, 13623, 1247, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '84.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14294, '2022-10-15', 6753, 13624, 1247, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '159.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14295, '2022-10-15', 5881, 13625, 1247, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '61.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14296, '2022-10-15', 6097, 13626, 1247, 3045, '3.0000', '7.2000', '7.2000', '7.2000', '7.2000', '92.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14297, '2022-10-15', 6003, 13627, 1247, 2321, '4.0000', '6.7000', '6.7000', '9.1000', '9.1000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14298, '2022-10-15', 5456, 13628, 1247, 2330, '4.0000', '10.6000', '10.6000', '10.6000', '10.6000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14299, '2022-10-15', 6822, 13629, 1247, 2345, '4.0000', '10.0000', '10.0000', '10.0000', '10.0000', '316.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14300, '2022-10-15', 6644, 13630, 1247, 1860, '4.0000', '4.6000', '4.6000', '5.2000', '5.2000', '5.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14304, '2022-10-15', 6316, 13633, 1241, 3757, '3.0000', '54.8358', '54.8358', '74.0000', '74.0000', '63.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14305, '2022-10-15', 6610, 13634, 1241, 2271, '1.0000', '70.0000', '70.0000', '81.5000', '81.5000', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14306, '2022-10-15', 5715, 13635, 1248, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14307, '2022-10-15', 5472, 13636, 1248, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '404.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14308, '2022-10-15', 5775, 13637, 1248, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '55.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14309, '2022-10-15', 5640, 13638, 1248, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '607.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14310, '2022-10-15', 6348, 13639, 1248, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '33.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14311, '2022-10-15', 6074, 13640, 1248, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '651.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14312, '2022-10-15', 5991, 13641, 1248, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '75.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14313, '2022-10-15', 6591, 13642, 1248, 4110, '1.0000', '10.4348', '10.4348', '11.5000', '11.5000', '91.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14314, '2022-10-15', 6121, 13643, 1248, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14315, '2022-10-15', 6003, 13644, 1248, 2321, '1.0000', '6.7000', '6.7000', '9.1000', '9.1000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14316, '2022-10-15', 6603, 13645, 1248, 3768, '1.0000', '6.1900', '6.1900', '6.9000', '6.9000', '55.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14317, '2022-10-15', 5976, 13646, 1248, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '246.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14318, '2022-10-15', 6075, 13647, 1248, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1138.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14319, '2022-10-15', 5740, 13648, 1248, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '133.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14320, '2022-10-15', 6083, 13649, 1248, 3029, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14321, '2022-10-15', 5654, 13650, 1248, 3062, '2.0000', '2.0000', '2.0000', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14322, '2022-10-15', 5677, 13651, 1249, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '115.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14323, '2022-10-15', 5853, 13652, 1249, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '418.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14324, '2022-10-15', 5881, 13653, 1249, 3427, '5.0000', '13.5000', '13.5000', '14.8500', '14.8500', '56.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14325, '2022-10-15', 5911, 13654, 1249, 2516, '-8.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14326, '2022-10-15', 5911, 13654, 1249, NULL, '10.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14327, '2022-10-15', 5926, 13655, 1249, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '266.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14328, '2022-10-15', 6010, 13656, 1249, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '291.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14329, '2022-10-15', 6234, 13657, 1249, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '55.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14330, '2022-10-15', 6276, 13658, 1249, 1157, '3.0000', '17.6000', '17.6000', '17.6000', '17.6000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14331, '2022-10-15', 6688, 13659, 1250, 1354, '1.0000', '80.8000', '80.8000', '80.8000', '80.8000', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14332, '2022-10-15', 5881, 13660, 1250, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '54.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14336, '2022-10-15', 6234, 13663, 1251, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '53.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14337, '2022-10-15', 6242, 13664, 1251, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '61.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14338, '2022-10-15', 5740, 13665, 1252, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '132.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14339, '2022-10-15', 6213, 13666, 1252, 3049, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '134.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14340, '2022-10-15', 6828, 13667, 1253, 4073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '11.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14341, '2022-10-15', 6446, 13668, 1254, 1449, '4.0000', '4.9000', '4.9000', '4.9000', '4.9000', '84.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14342, '2022-10-15', 5553, 13669, 1254, 3102, '-3.0000', '32.8000', '32.8000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14343, '2022-10-15', 5553, 13669, 1254, NULL, '4.0000', '32.8000', '32.8000', '39.0000', '39.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14344, '2022-10-15', 5801, 13670, 1255, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '66.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14345, '2022-10-15', 6075, 13671, 1256, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1128.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14346, '2022-10-15', 6332, 13672, 1256, 1341, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14347, '2022-10-15', 6218, 13673, 1257, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '31.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14348, '2022-10-15', 5715, 13674, 1257, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14349, '2022-10-15', 6590, 13675, 1257, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14350, '2022-10-15', 5976, 13676, 1258, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '244.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14351, '2022-10-15', 6225, 13677, 1258, 2356, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '211.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14352, '2022-10-15', 5640, 13678, 1258, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '606.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14353, '2022-10-15', 6328, 13679, 1258, 3817, '1.0000', '24.4100', '24.4100', '26.9000', '26.9000', '43.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14354, '2022-10-15', 5898, 13680, 1258, 2350, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '170.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14355, '2022-10-15', 6590, 13681, 1259, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14356, '2022-10-15', 5853, 13682, 1259, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '415.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14357, '2022-10-15', 5740, 13683, 1259, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '131.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14358, '2022-10-15', 6817, 13684, 1259, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '48.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14359, '2022-10-15', 6007, 13685, 1259, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '53.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14360, '2022-10-15', 6074, 13686, 1259, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '649.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14361, '2022-10-15', 6225, 13687, 1259, 2356, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '209.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14362, '2022-10-15', 6518, 13688, 1260, 974, '1.0000', '61.2000', '61.2000', '80.7000', '80.7000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14366, '2022-10-15', 5629, 13692, 1261, 909, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '17.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14367, '2022-10-15', 5683, 13693, 1262, 3664, '1.0000', '49.4000', '49.4000', '49.4000', '49.4000', '42.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14456, '2022-10-15', 6895, 13776, 1263, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '93.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14455, '2022-10-15', 6890, 13775, 1263, 4124, '3.0000', '3.7809', '3.7809', '6.6000', '6.6000', '997.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14454, '2022-10-15', 6665, 13774, 1263, 4123, '1.0000', '9.5000', '9.5000', '11.0000', '11.0000', '99.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14453, '2022-10-15', 6617, 13773, 1263, 557, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '24.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14452, '2022-10-15', 6608, 13772, 1263, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '137.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14451, '2022-10-15', 6590, 13771, 1263, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14450, '2022-10-15', 6298, 13770, 1263, NULL, '41.0000', '0.0000', '0.0000', '10.8000', '10.8000', '-41.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14449, '2022-10-15', 6298, 13770, 1263, 3557, '-39.0000', '0.0000', '0.0000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14448, '2022-10-15', 6221, 13769, 1263, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14447, '2022-10-15', 5931, 13768, 1263, 1090, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '39.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14446, '2022-10-15', 5631, 13767, 1263, 1992, '3.0000', '6.5000', '6.5000', '6.5000', '6.5000', '100.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14445, '2022-10-15', 5629, 13766, 1263, 909, '2.0000', '8.4000', '8.4000', '8.4000', '8.4000', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14444, '2022-10-15', 5447, 13765, 1263, 3851, '1.0000', '24.7066', '24.7066', '28.7000', '28.7000', '206.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14457, '2022-10-15', 6371, 13777, 1263, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14382, '2022-10-15', 6074, 13707, 1264, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '644.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14383, '2022-10-15', 6294, 13708, 1264, 1412, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14384, '2022-10-15', 6218, 13709, 1264, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '30.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14385, '2022-10-15', 5640, 13710, 1264, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '604.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14386, '2022-10-15', 6590, 13711, 1264, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14387, '2022-10-15', 5657, 13712, 1264, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '181.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14388, '2022-10-15', 6605, 13713, 1264, 4136, '-4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14389, '2022-10-15', 6605, 13713, 1264, NULL, '9.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14390, '2022-10-15', 6396, 13714, 1264, 3991, '1.0000', '13.5000', '13.5000', '17.2000', '17.2000', '3.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14391, '2022-10-15', 5427, 13715, 1264, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '111.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14392, '2022-10-15', 6860, 13716, 1264, 3738, '2.0000', '15.4923', '15.4923', '18.5000', '18.5000', '66.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14393, '2022-10-15', 6295, 13717, 1264, 4135, '-13.0000', '0.0000', '0.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14394, '2022-10-15', 6295, 13717, 1264, NULL, '14.0000', '0.0000', '0.0000', '39.0000', '39.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14395, '2022-10-15', 6377, 13718, 1264, 1465, '1.0000', '55.0000', '55.0000', '28.0000', '28.0000', '16.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14396, '2022-10-15', 6460, 13719, 1264, 1078, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '53.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14397, '2022-10-15', 6575, 13720, 1264, 2569, '1.0000', '9.5000', '9.5000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14398, '2022-10-15', 6577, 13721, 1264, 2572, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14399, '2022-10-15', 5651, 13722, 1265, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '45.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14400, '2022-10-15', 6644, 13723, 1266, 1860, '4.0000', '4.6000', '4.6000', '5.2000', '5.2000', '1.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14425, '2022-10-15', 6838, 13747, 1267, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '21.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14424, '2022-10-15', 6609, 13746, 1267, 3773, '1.0000', '11.6821', '11.6821', '12.7000', '12.7000', '130.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14423, '2022-10-15', 6542, 13745, 1267, 2047, '3.0000', '7.8000', '7.8000', '9.0400', '9.0400', '31.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14422, '2022-10-15', 6297, 13744, 1267, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '7.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14421, '2022-10-15', 6264, 13743, 1267, 3404, '2.0000', '6.0000', '6.0000', '6.8500', '6.8500', '70.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14420, '2022-10-15', 5979, 13742, 1267, 4081, '2.0000', '6.0097', '6.0097', '6.8000', '6.8000', '89.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14419, '2022-10-15', 5977, 13741, 1267, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14418, '2022-10-15', 5640, 13740, 1267, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '603.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14417, '2022-10-15', 5619, 13739, 1267, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '78.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14426, '2022-10-15', 6691, 13748, 1267, 4077, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '216.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14411, '2022-10-15', 5947, 13734, 1268, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '230.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14412, '2022-10-15', 6218, 13735, 1268, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '29.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14413, '2022-10-15', 6828, 13736, 1268, 4073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '10.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14414, '2022-10-15', 6219, 13737, 1269, 3150, '-116.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14415, '2022-10-15', 6219, 13737, 1269, NULL, '136.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-136.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14416, '2022-10-15', 6845, 13738, 1269, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14427, '2022-10-15', 6573, 13749, 1270, 4134, '-2.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14428, '2022-10-15', 6573, 13749, 1270, NULL, '3.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14429, '2022-10-15', 6421, 13750, 1271, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '57.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14430, '2022-10-15', 5593, 13751, 1271, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '7.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14431, '2022-10-15', 6375, 13752, 1271, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '130.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14432, '2022-10-15', 5601, 13753, 1271, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14433, '2022-10-15', 6845, 13754, 1271, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14434, '2022-10-15', 5619, 13755, 1271, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '76.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14435, '2022-10-15', 6225, 13756, 1271, 2356, '4.0000', '2.8000', '2.8000', '2.8000', '2.8000', '205.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14436, '2022-10-15', 5853, 13757, 1271, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '413.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14437, '2022-10-15', 5976, 13758, 1271, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '242.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14438, '2022-10-15', 6383, 13759, 1271, 4117, '4.0000', '8.7203', '8.7203', '9.8000', '9.8000', '110.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14439, '2022-10-15', 5642, 13760, 1271, 3888, '1.0000', '24.4300', '24.4300', '26.9000', '26.9000', '59.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14440, '2022-10-15', 5624, 13761, 1271, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '55.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14441, '2022-10-15', 6664, 13762, 1271, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '836.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14442, '2022-10-15', 5618, 13763, 1271, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '90.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14443, '2022-10-15', 5998, 13764, 1271, 3971, '2.0000', '5.0000', '5.0000', '6.4000', '6.4000', '53.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14458, '2022-10-17', 6205, 13778, 1272, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '95.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14459, '2022-10-17', 6316, 13779, 1272, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '62.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14460, '2022-10-17', 5427, 13780, 1272, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14728, '2022-10-17', 6864, 14045, 1273, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4638.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14727, '2022-10-17', 6839, 14044, 1273, 3769, '4.0000', '4.9100', '4.9100', '5.5000', '5.5000', '49.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14726, '2022-10-17', 6766, 14043, 1273, 1399, '4.0000', '6.0000', '6.0000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14725, '2022-10-17', 6650, 14042, 1273, 1146, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14724, '2022-10-17', 6628, 14041, 1273, 994, '4.0000', '5.4000', '5.4000', '5.8000', '5.8000', '41.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14723, '2022-10-17', 6603, 14040, 1273, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '47.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14722, '2022-10-17', 6535, 14039, 1273, 4149, '4.0000', '3.3755', '3.3755', '3.8000', '3.8000', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14721, '2022-10-17', 6387, 14038, 1273, 3892, '5.0000', '7.2100', '7.2100', '7.9300', '7.9300', '195.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14720, '2022-10-17', 6304, 14037, 1273, 1853, '2.0000', '13.5000', '13.5000', '13.5000', '13.5000', '82.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14719, '2022-10-17', 6295, 14036, 1273, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '127.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14718, '2022-10-17', 6285, 14035, 1273, 4145, '2.0000', '9.6868', '9.6868', '10.9800', '10.9800', '88.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14717, '2022-10-17', 6258, 14034, 1273, 4182, '1.0000', '9.8182', '9.8182', '10.9000', '10.9000', '98.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14716, '2022-10-17', 6245, 14033, 1273, 2111, '5.0000', '2.9900', '2.9900', '2.9900', '2.9900', '75.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14715, '2022-10-17', 6234, 14032, 1273, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '49.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14714, '2022-10-17', 6220, 14031, 1273, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '100.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14713, '2022-10-17', 6125, 14030, 1273, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '131.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14712, '2022-10-17', 6076, 14029, 1273, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1690.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14711, '2022-10-17', 6075, 14028, 1273, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1090.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14710, '2022-10-17', 6074, 14027, 1273, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '632.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14709, '2022-10-17', 5593, 14026, 1273, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14708, '2022-10-17', 5549, 14025, 1273, 2372, '4.0000', '8.2000', '8.2000', '8.2000', '8.2000', '285.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14707, '2022-10-17', 5535, 14024, 1273, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1017.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14706, '2022-10-17', 5477, 14023, 1273, 4150, '2.0000', '26.9169', '26.9169', '27.5000', '27.5000', '63.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14705, '2022-10-17', 5452, 14022, 1273, 1030, '2.0000', '8.0000', '8.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14704, '2022-10-17', 5451, 14021, 1273, 2387, '5.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1091.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14703, '2022-10-17', 5418, 14020, 1273, 1851, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '110.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14729, '2022-10-17', 6677, 14046, 1273, 1274, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '254.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14488, '2022-10-17', 6374, 13807, 1274, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4055.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14489, '2022-10-17', 6825, 13808, 1274, 3670, '50.0000', '46.2800', '46.2800', '1.0000', '1.0000', '819.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14490, '2022-10-17', 6696, 13809, 1275, 4109, '3.0000', '4.2337', '4.2337', '4.9500', '4.9500', '187.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14491, '2022-10-17', 5603, 13810, 1275, 3963, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '77.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14492, '2022-10-17', 5710, 13811, 1275, 1300, '2.0000', '4.0200', '4.0200', '4.0200', '4.0200', '75.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14493, '2022-10-17', 6358, 13812, 1275, 3906, '2.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4128.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14494, '2022-10-17', 5988, 13813, 1275, 2033, '2.0000', '3.0000', '3.0000', '3.4200', '3.4200', '72.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14495, '2022-10-17', 6818, 13814, 1275, 3067, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '204.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14496, '2022-10-17', 6007, 13815, 1275, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '52.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14497, '2022-10-17', 6117, 13816, 1275, 1320, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '282.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14498, '2022-10-17', 5996, 13817, 1275, 933, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '664.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14499, '2022-10-17', 6738, 13818, 1275, 1905, '2.0000', '3.0000', '3.0000', '3.0000', '3.0000', '105.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14655, '2022-10-17', 6843, 13972, 1276, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '29.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14654, '2022-10-17', 6836, 13971, 1276, 3392, '6.0000', '5.2300', '5.2300', '5.2300', '5.2300', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14653, '2022-10-17', 6824, 13970, 1276, 561, '1.0000', '18.4800', '18.4800', '18.4800', '18.4800', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14652, '2022-10-17', 6603, 13969, 1276, 3768, '6.0000', '6.1900', '6.1900', '6.9000', '6.9000', '47.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14651, '2022-10-17', 6592, 13968, 1276, 2373, '3.0000', '3.1800', '3.1800', '3.1800', '3.1800', '78.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14650, '2022-10-17', 6446, 13967, 1276, 1449, '3.0000', '4.9000', '4.9000', '4.9000', '4.9000', '81.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14649, '2022-10-17', 6376, 13966, 1276, 2364, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2064.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14648, '2022-10-17', 6375, 13965, 1276, 2304, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '121.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14647, '2022-10-17', 6297, 13964, 1276, 1855, '2.0000', '10.4000', '10.4000', '10.4000', '10.4000', '5.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14646, '2022-10-17', 6234, 13963, 1276, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '49.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14645, '2022-10-17', 6233, 13962, 1276, 1276, '2.0000', '6.0000', '6.0000', '7.2000', '7.2000', '9.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14644, '2022-10-17', 6232, 13961, 1276, 3587, '2.0000', '6.4556', '6.4556', '9.9000', '9.9000', '42.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14643, '2022-10-17', 6220, 13960, 1276, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '104.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14642, '2022-10-17', 6205, 13959, 1276, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '93.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14641, '2022-10-17', 6162, 13958, 1276, 3656, '6.0000', '6.6000', '6.6000', '7.3000', '7.3000', '89.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14640, '2022-10-17', 6121, 13957, 1276, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14639, '2022-10-17', 5976, 13956, 1276, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '234.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14638, '2022-10-17', 5754, 13955, 1276, 4060, '3.0000', '7.2000', '7.2000', '9.2000', '9.2000', '16.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14637, '2022-10-17', 5729, 13954, 1276, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '25.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14636, '2022-10-17', 5651, 13953, 1276, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14635, '2022-10-17', 5440, 13952, 1276, 2306, '6.0000', '3.4100', '3.4100', '3.4100', '3.4100', '228.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14656, '2022-10-17', 6848, 13973, 1276, 1151, '3.0000', '6.5000', '6.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14522, '2022-10-17', 6903, 13841, 1277, 4121, '1.0000', '22.5000', '22.5000', '25.0000', '25.0000', '24.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14523, '2022-10-17', 6295, 13842, 1277, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '127.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14524, '2022-10-17', 6408, 13843, 1277, 2068, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '13.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14525, '2022-10-17', 5452, 13844, 1277, 1030, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14526, '2022-10-17', 6348, 13845, 1277, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '32.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14527, '2022-10-17', 5809, 13846, 1277, 390, '1.0000', '15.1000', '15.1000', '15.1000', '15.1000', '40.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14528, '2022-10-17', 6075, 13847, 1277, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1114.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14529, '2022-10-17', 6389, 13848, 1277, 4114, '2.0000', '8.7525', '8.7525', '9.7000', '9.7000', '348.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14530, '2022-10-17', 6026, 13849, 1277, 3886, '4.0000', '2.0143', '2.0143', '2.1000', '2.1000', '132.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14531, '2022-10-17', 6103, 13850, 1277, 2275, '2.0000', '15.2000', '15.2000', '15.2000', '15.2000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14532, '2022-10-17', 6543, 13851, 1277, 2062, '1.0000', '11.2000', '11.2000', '13.9200', '13.9200', '9.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14533, '2022-10-17', 6120, 13852, 1277, 1995, '1.0000', '14.8500', '14.8500', '14.8500', '14.8500', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14534, '2022-10-17', 5472, 13853, 1278, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '394.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14682, '2022-10-17', 5827, 13999, 1285, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '80.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14660, '2022-10-17', 6860, 13977, 1279, 3738, '4.0000', '15.4923', '15.4923', '18.5000', '18.5000', '62.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14659, '2022-10-17', 6458, 13976, 1279, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '97.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14658, '2022-10-17', 5856, 13975, 1279, 2578, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '16.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14683, '2022-10-17', 6075, 14000, 1285, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1090.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14540, '2022-10-17', 5853, 13858, 1280, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '409.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14541, '2022-10-17', 5911, 13859, 1280, 2516, '-10.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14542, '2022-10-17', 5911, 13859, 1280, NULL, '11.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14543, '2022-10-17', 5967, 13860, 1280, 3132, '5.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2456.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14544, '2022-10-17', 6010, 13861, 1280, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '289.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14545, '2022-10-17', 6205, 13862, 1280, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '93.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14546, '2022-10-17', 5976, 13863, 1280, 4105, '6.0000', '7.5312', '7.5312', '8.2000', '8.2000', '234.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14547, '2022-10-17', 5969, 13864, 1280, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14548, '2022-10-17', 6408, 13865, 1280, 2068, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14549, '2022-10-17', 6409, 13866, 1280, 1422, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '132.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14550, '2022-10-17', 5619, 13867, 1280, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '74.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14551, '2022-10-17', 5618, 13868, 1280, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '88.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14552, '2022-10-17', 5667, 13869, 1280, 910, '2.0000', '11.8000', '11.8000', '11.8000', '11.8000', '57.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14553, '2022-10-17', 6895, 13870, 1280, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '91.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14554, '2022-10-17', 5949, 13871, 1280, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '312.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14555, '2022-10-17', 6026, 13872, 1280, 3886, '5.0000', '2.0143', '2.0143', '2.1000', '2.1000', '127.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14556, '2022-10-17', 5624, 13873, 1280, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '53.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14557, '2022-10-17', 6543, 13874, 1280, 2062, '2.0000', '11.2000', '11.2000', '13.9200', '13.9200', '7.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14558, '2022-10-17', 6813, 13875, 1280, 1368, '1.0000', '13.0000', '13.0000', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14559, '2022-10-17', 5447, 13876, 1280, 3851, '1.0000', '24.7066', '24.7066', '28.7000', '28.7000', '205.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14560, '2022-10-17', 6125, 13877, 1280, 3053, '1.0000', '10.5000', '10.5000', '12.5000', '12.5000', '131.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14561, '2022-10-17', 6095, 13878, 1280, 3893, '3.0000', '8.3200', '8.3200', '9.2000', '9.2000', '391.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14562, '2022-10-17', 5535, 13879, 1280, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '1017.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14563, '2022-10-17', 5926, 13880, 1280, 1970, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '262.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14564, '2022-10-17', 5849, 13881, 1280, 2357, '5.0000', '3.1000', '3.1000', '3.1000', '3.1000', '42.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14565, '2022-10-17', 5654, 13882, 1280, 3062, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14566, '2022-10-17', 6234, 13883, 1280, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '49.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14567, '2022-10-17', 6607, 13884, 1280, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '46.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14568, '2022-10-17', 6608, 13885, 1280, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '135.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14569, '2022-10-17', 6077, 13886, 1280, 4065, '4.0000', '3.9894', '3.9894', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14570, '2022-10-17', 6076, 13887, 1280, 3024, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1690.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14571, '2022-10-17', 5593, 13888, 1280, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14572, '2022-10-17', 6007, 13889, 1280, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '51.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14573, '2022-10-17', 6394, 13890, 1280, 3823, '3.0000', '5.4400', '5.4400', '6.6000', '6.6000', '236.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14574, '2022-10-17', 6202, 13891, 1280, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '360.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14575, '2022-10-17', 5770, 13892, 1280, 3969, '3.0000', '4.0000', '4.0000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14576, '2022-10-17', 6348, 13893, 1280, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '31.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14577, '2022-10-17', 6750, 13894, 1280, 2125, '5.0000', '6.7000', '6.7000', '6.7000', '6.7000', '26.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14578, '2022-10-17', 6220, 13895, 1280, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '104.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14579, '2022-10-17', 6243, 13896, 1280, 3582, '1.0000', '59.4000', '59.4000', '34.3000', '34.3000', '14.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14580, '2022-10-17', 6074, 13897, 1280, 2303, '8.0000', '8.5000', '8.5000', '8.5000', '8.5000', '632.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14581, '2022-10-17', 6518, 13898, 1281, 974, '1.0000', '61.2000', '61.2000', '80.7000', '80.7000', '27.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14582, '2022-10-17', 6233, 13899, 1281, 1276, '1.0000', '6.0000', '6.0000', '7.2000', '7.2000', '9.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14583, '2022-10-17', 6570, 13900, 1281, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '55.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14584, '2022-10-17', 6696, 13901, 1282, 4109, '3.0000', '4.2337', '4.2337', '4.9500', '4.9500', '184.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14585, '2022-10-17', 5603, 13902, 1282, 3963, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '75.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14586, '2022-10-17', 6117, 13903, 1282, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '280.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14587, '2022-10-17', 6358, 13904, 1282, 3906, '3.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4125.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14588, '2022-10-17', 6353, 13905, 1282, 1920, '3.0000', '3.7500', '3.7500', '3.7500', '3.7500', '74.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14589, '2022-10-17', 6359, 13906, 1282, 4069, '3.0000', '1.7604', '1.7604', '2.5000', '2.5000', '169.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14590, '2022-10-17', 6696, 13907, 1283, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '182.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14591, '2022-10-17', 5603, 13908, 1283, 3963, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '73.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14592, '2022-10-17', 6379, 13909, 1283, 3421, '2.0000', '8.7056', '8.7056', '2.1000', '2.1000', '120.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14593, '2022-10-17', 5710, 13910, 1283, 1300, '1.0000', '4.0200', '4.0200', '4.0200', '4.0200', '74.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14632, '2022-10-17', 6687, 13949, 1284, 1130, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14631, '2022-10-17', 6601, 13948, 1284, 1931, '10.0000', '44.6000', '44.6000', '1.1000', '1.1000', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14630, '2022-10-17', 6542, 13947, 1284, 2047, '2.0000', '7.8000', '7.8000', '9.0400', '9.0400', '29.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14629, '2022-10-17', 6382, 13946, 1284, 2285, '3.0000', '4.1000', '4.1000', '4.1000', '4.1000', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14628, '2022-10-17', 6379, 13945, 1284, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '115.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14627, '2022-10-17', 6375, 13944, 1284, 2304, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '121.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14626, '2022-10-17', 6374, 13943, 1284, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '4045.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14625, '2022-10-17', 6371, 13942, 1284, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14624, '2022-10-17', 6368, 13941, 1284, NULL, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14623, '2022-10-17', 6304, 13940, 1284, 1853, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '82.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14622, '2022-10-17', 6225, 13939, 1284, 2356, '5.0000', '2.8000', '2.8000', '2.8000', '2.8000', '200.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14621, '2022-10-17', 6216, 13938, 1284, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2440.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14620, '2022-10-17', 6112, 13937, 1284, 3820, '2.0000', '12.7000', '12.7000', '14.0000', '14.0000', '195.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14619, '2022-10-17', 6010, 13936, 1284, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '288.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14618, '2022-10-17', 5982, 13935, 1284, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '292.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14617, '2022-10-17', 5931, 13934, 1284, 1090, '2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '37.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14616, '2022-10-17', 5898, 13933, 1284, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '167.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14615, '2022-10-17', 5440, 13932, 1284, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '228.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14614, '2022-10-17', 5418, 13931, 1284, 1851, '3.0000', '5.5000', '5.5000', '5.5000', '5.5000', '112.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14633, '2022-10-17', 6874, 13950, 1284, 3723, '2.0000', '9.0000', '9.0000', '10.8000', '10.8000', '37.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14634, '2022-10-17', 6083, 13951, 1284, 3029, '5.0000', '2.7000', '2.7000', '2.7000', '2.7000', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14657, '2022-10-17', 5969, 13974, 1276, 2252, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14663, '2022-10-17', 5892, 13980, 1286, 4062, '3.0000', '8.5642', '8.5642', '8.6000', '8.6000', '6.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14664, '2022-10-17', 6379, 13981, 1286, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '112.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14665, '2022-10-17', 6860, 13982, 1286, 3738, '1.0000', '15.4923', '15.4923', '18.5000', '18.5000', '61.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14666, '2022-10-17', 5677, 13983, 1286, 2351, '5.0000', '13.2000', '13.2000', '15.4000', '15.4000', '110.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14667, '2022-10-17', 5948, 13984, 1286, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '207.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14668, '2022-10-17', 5651, 13985, 1286, 2386, '1.0000', '6.1700', '6.1700', '6.1700', '6.1700', '42.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14669, '2022-10-17', 5976, 13986, 1286, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '232.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14670, '2022-10-17', 6205, 13987, 1286, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '92.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14671, '2022-10-17', 5581, 13988, 1286, 2343, '2.0000', '11.3000', '11.3000', '11.3000', '11.3000', '142.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14672, '2022-10-17', 6408, 13989, 1286, 2068, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '8.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14673, '2022-10-17', 6895, 13990, 1286, 3786, '3.0000', '9.7900', '9.7900', '10.8000', '10.8000', '88.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14674, '2022-10-17', 6386, 13991, 1286, 4113, '5.0000', '3.5873', '3.5873', '4.2000', '4.2000', '1595.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14675, '2022-10-17', 5801, 13992, 1286, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '65.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14676, '2022-10-17', 6212, 13993, 1286, 3048, '3.0000', '6.6500', '6.6500', '9.3000', '9.3000', '92.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14677, '2022-10-17', 6224, 13994, 1286, 2385, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14678, '2022-10-17', 6617, 13995, 1286, 557, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '23.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14679, '2022-10-17', 5499, 13996, 1286, 2378, '2.0000', '3.8000', '3.8000', '3.8000', '3.8000', '74.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14680, '2022-10-17', 6020, 13997, 1286, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '16.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14681, '2022-10-17', 6510, 13998, 1286, 2079, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14684, '2022-10-17', 6221, 14001, 1287, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14686, '2022-10-17', 5640, 14003, 1288, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '600.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14687, '2022-10-17', 6570, 14004, 1288, 3812, '10.0000', '7.2600', '7.2600', '4.5000', '4.5000', '45.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14688, '2022-10-17', 5969, 14005, 1289, 2252, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14689, '2022-10-17', 6220, 14006, 1289, 2388, '4.0000', '5.0000', '5.0000', '5.0000', '5.0000', '100.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14690, '2022-10-17', 5657, 14007, 1289, 2382, '4.0000', '4.2000', '4.2000', '4.2000', '4.2000', '177.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14691, '2022-10-17', 5949, 14008, 1289, 1311, '1.0000', '5.2000', '5.2000', '7.3000', '7.3000', '311.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14692, '2022-10-17', 5629, 14009, 1289, 909, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '14.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14693, '2022-10-17', 5853, 14010, 1289, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '407.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14694, '2022-10-17', 5451, 14011, 1289, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1091.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14695, '2022-10-17', 6095, 14012, 1289, 3893, '2.0000', '8.3200', '8.3200', '9.2000', '9.2000', '389.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14696, '2022-10-17', 5435, 14013, 1289, 2308, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14697, '2022-10-17', 6383, 14014, 1289, 4117, '2.0000', '8.7203', '8.7203', '9.8000', '9.8000', '108.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14698, '2022-10-17', 5418, 14015, 1289, 1851, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '110.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14699, '2022-10-17', 6621, 14016, 1289, 1852, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '27.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14700, '2022-10-17', 6843, 14017, 1289, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '28.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14701, '2022-10-17', 6834, 14018, 1289, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '73.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14702, '2022-10-17', 5677, 14019, 1289, 2351, '1.0000', '13.2000', '13.2000', '15.4000', '15.4000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14730, '2022-10-17', 5858, 14047, 1290, 4154, '1.0000', '35.1931', '35.1931', '38.0000', '38.0000', '86.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14731, '2022-10-17', 6765, 14048, 1290, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '35.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14732, '2022-10-17', 6218, 14049, 1291, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '28.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15547, '2022-10-18', 6680, 14841, 1357, 1904, '1.0000', '8.3200', '8.3200', '8.3200', '8.3200', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15546, '2022-10-18', 5676, 14840, 1344, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '64.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15522, '2022-10-17', 6860, 14817, 1292, 3738, '12.0000', '15.4923', '15.4923', '18.5000', '18.5000', '11.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15521, '2022-10-17', 6778, 14816, 1292, 2052, '3.0000', '19.3400', '19.3400', '26.1800', '26.1800', '128.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15520, '2022-10-17', 6663, 14815, 1292, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15519, '2022-10-17', 6599, 14814, 1292, 3742, '5.0000', '17.0015', '17.0015', '18.9000', '18.9000', '40.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15518, '2022-10-17', 6552, 14813, 1292, 577, '1.0000', '186.8000', '186.8000', '186.9500', '186.9500', '12.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15517, '2022-10-17', 6535, 14812, 1292, 4221, '4.0000', '3.3184', '3.3184', '3.8000', '3.8000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15516, '2022-10-17', 6415, 14811, 1292, 2056, '5.0000', '4.6200', '4.6200', '4.6200', '4.6200', '154.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15515, '2022-10-17', 6400, 14810, 1292, 4211, '2.0000', '41.4000', '41.4000', '46.0000', '46.0000', '28.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15514, '2022-10-17', 6391, 14809, 1292, 762, '10.0000', '3.3200', '3.3200', '3.7000', '3.7000', '32.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15513, '2022-10-17', 6353, 14808, 1292, 1920, '20.0000', '3.7500', '3.7500', '3.7500', '3.7500', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15512, '2022-10-17', 6316, 14807, 1292, 3757, '3.0000', '54.8358', '54.8358', '74.0000', '74.0000', '56.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15511, '2022-10-17', 6294, 14806, 1292, 4207, '5.0000', '24.2015', '24.2015', '30.0000', '30.0000', '55.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15510, '2022-10-17', 6288, 14805, 1292, 1416, '3.0000', '56.0000', '56.0000', '66.5200', '66.5200', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15509, '2022-10-17', 6243, 14804, 1292, 3582, '2.0000', '59.4000', '59.4000', '68.5000', '68.5000', '12.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15508, '2022-10-17', 6242, 14803, 1292, 3588, '3.0000', '58.3529', '58.3529', '66.5300', '66.5300', '58.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15507, '2022-10-17', 6097, 14802, 1292, 3045, '10.0000', '7.2000', '7.2000', '7.2000', '7.2000', '82.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15506, '2022-10-17', 6076, 14801, 1292, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1637.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15505, '2022-10-17', 6075, 14800, 1292, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1011.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15504, '2022-10-17', 6074, 14799, 1292, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '559.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15503, '2022-10-17', 6024, 14798, 1292, 3896, '5.0000', '4.9900', '4.9900', '5.5000', '5.5000', '64.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15502, '2022-10-17', 5974, 14797, 1292, 4080, '6.0000', '8.4900', '8.4900', '9.5000', '9.5000', '216.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15501, '2022-10-17', 5967, 14796, 1292, 3132, '10.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2436.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15500, '2022-10-17', 5949, 14795, 1292, 1311, '20.0000', '5.2000', '5.2000', '7.3000', '7.3000', '255.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15499, '2022-10-17', 5926, 14794, 1292, 1970, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '210.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15498, '2022-10-17', 5898, 14793, 1292, 2350, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15497, '2022-10-17', 5853, 14792, 1292, 3620, '10.0000', '8.8287', '8.8287', '10.5000', '10.5000', '388.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15496, '2022-10-17', 5814, 14791, 1292, 1277, '10.0000', '24.0900', '24.0900', '24.0900', '24.0900', '74.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15495, '2022-10-17', 5799, 14790, 1292, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '32.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15494, '2022-10-17', 5774, 14789, 1292, 918, '4.0000', '15.0000', '15.0000', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15493, '2022-10-17', 5677, 14788, 1292, 2351, '5.0000', '13.2000', '13.2000', '15.4000', '15.4000', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15492, '2022-10-17', 5654, 14787, 1292, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15491, '2022-10-17', 5640, 14786, 1292, 3897, '10.0000', '11.1000', '11.1000', '12.3000', '12.3000', '567.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15490, '2022-10-17', 5593, 14785, 1292, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15489, '2022-10-17', 5535, 14784, 1292, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '967.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14769, '2022-10-17', 5477, 14086, 1293, 4150, '2.0000', '26.9169', '26.9169', '27.5000', '27.5000', '61.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14770, '2022-10-17', 6652, 14087, 1293, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '52.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14771, '2022-10-17', 5757, 14088, 1294, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '95.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14772, '2022-10-17', 6020, 14089, 1294, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14773, '2022-10-17', 6219, 14090, 1294, 3150, '-136.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14774, '2022-10-17', 6219, 14090, 1294, NULL, '161.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-161.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14775, '2022-10-17', 6832, 14091, 1294, 1381, '15.0000', '2.6000', '2.6000', '2.6000', '2.6000', '283.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14776, '2022-10-17', 6358, 14092, 1294, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4115.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14777, '2022-10-17', 5997, 14093, 1294, NULL, '5.0000', '0.0000', '0.0000', '6.6000', '6.6000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14778, '2022-10-17', 5535, 14094, 1294, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '997.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14779, '2022-10-17', 6532, 14095, 1294, 3579, '2.0000', '8.0796', '8.0796', '9.3700', '9.3700', '65.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14780, '2022-10-17', 6075, 14096, 1294, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1075.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14781, '2022-10-17', 6666, 14097, 1295, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14782, '2022-10-17', 5947, 14098, 1296, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '229.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14912, '2022-10-17', 6890, 14224, 1297, 4124, '10.0000', '3.7809', '3.7809', '6.6000', '6.6000', '987.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14911, '2022-10-17', 6838, 14223, 1297, 2120, '3.0000', '17.7100', '17.7100', '17.7100', '17.7100', '18.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14910, '2022-10-17', 6820, 14222, 1297, 3615, '3.0000', '5.2982', '5.2982', '5.9000', '5.9000', '421.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14909, '2022-10-17', 6766, 14221, 1297, 1399, '2.0000', '6.0000', '6.0000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14908, '2022-10-17', 6671, 14220, 1297, 1996, '4.0000', '7.1500', '7.1500', '7.8000', '7.8000', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14907, '2022-10-17', 6650, 14219, 1297, 1146, '3.0000', '5.7000', '5.7000', '5.7000', '5.7000', '17.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14906, '2022-10-17', 6603, 14218, 1297, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '45.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14905, '2022-10-17', 6572, 14217, 1297, 3996, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '69.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14904, '2022-10-17', 6556, 14216, 1297, 3119, '4.0000', '3.4022', '3.4022', '2.0000', '2.0000', '104.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14903, '2022-10-17', 6510, 14215, 1297, 2079, '10.0000', '3.5000', '3.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14902, '2022-10-17', 6435, 14214, 1297, 3833, '3.0000', '8.1000', '8.1000', '9.0000', '9.0000', '86.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14901, '2022-10-17', 6389, 14213, 1297, 4114, '2.0000', '8.7525', '8.7525', '9.7000', '9.7000', '346.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14900, '2022-10-17', 6387, 14212, 1297, 3892, '10.0000', '7.2100', '7.2100', '7.9300', '7.9300', '185.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14899, '2022-10-17', 6358, 14211, 1297, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4105.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14898, '2022-10-17', 6332, 14210, 1297, 1341, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '22.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14897, '2022-10-17', 6312, 14209, 1297, 1118, '2.0000', '7.5000', '7.5000', '7.5000', '7.5000', '14.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14896, '2022-10-17', 6219, 14208, 1297, NULL, '171.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-171.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14895, '2022-10-17', 6219, 14208, 1297, 3150, '-161.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14894, '2022-10-17', 6216, 14207, 1297, 3617, '15.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2425.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14893, '2022-10-17', 6213, 14206, 1297, 3049, '2.0000', '6.6500', '6.6500', '9.3000', '9.3000', '132.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14892, '2022-10-17', 6075, 14205, 1297, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1063.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14891, '2022-10-17', 5973, 14204, 1297, 4079, '2.0000', '7.9600', '7.9600', '8.9000', '8.9000', '44.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14890, '2022-10-17', 5962, 14203, 1297, 522, '2.0000', '6.9900', '6.9900', '10.8000', '10.8000', '50.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14889, '2022-10-17', 5926, 14202, 1297, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '239.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14888, '2022-10-17', 5911, 14201, 1297, NULL, '12.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14887, '2022-10-17', 5911, 14201, 1297, 2516, '-11.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14886, '2022-10-17', 5865, 14200, 1297, 3052, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '366.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14885, '2022-10-17', 5828, 14199, 1297, 3660, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '70.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14884, '2022-10-17', 5827, 14198, 1297, 3651, '4.0000', '5.9947', '5.9947', '6.6000', '6.6000', '76.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14883, '2022-10-17', 5754, 14197, 1297, 4060, '3.0000', '7.2000', '7.2000', '9.2000', '9.2000', '13.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14882, '2022-10-17', 5753, 14196, 1297, 1117, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '44.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14881, '2022-10-17', 5714, 14195, 1297, 2383, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '335.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14880, '2022-10-17', 5710, 14194, 1297, 1300, '5.0000', '4.0200', '4.0200', '4.0200', '4.0200', '69.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14879, '2022-10-17', 5603, 14193, 1297, 3963, '5.0000', '4.4000', '4.4000', '4.4000', '4.4000', '68.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14878, '2022-10-17', 5519, 14192, 1297, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '236.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14877, '2022-10-17', 5427, 14191, 1297, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '102.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14913, '2022-10-17', 6897, 14225, 1297, 3808, '3.0000', '3.8910', '3.8910', '4.8000', '4.8000', '174.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15488, '2022-10-17', 5427, 14783, 1292, 2365, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '100.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15548, '2022-10-18', 6074, 14842, 1358, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '539.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14858, '2022-10-17', 6563, 14172, 1298, 3763, '2.0000', '61.1590', '61.1590', '81.0000', '81.0000', '6.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14859, '2022-10-17', 6323, 14173, 1298, 3764, '3.0000', '35.4980', '35.4980', '48.0000', '48.0000', '13.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14860, '2022-10-17', 5580, 14174, 1298, 3511, '8.0000', '7.2414', '7.2414', '8.4000', '8.4000', '77.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14861, '2022-10-17', 5723, 14175, 1298, 1286, '4.0000', '9.0000', '9.0000', '9.0000', '9.0000', '12.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14862, '2022-10-17', 6057, 14176, 1299, 1045, '1.0000', '33.2100', '33.2100', '41.5000', '41.5000', '78.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14863, '2022-10-17', 6906, 14177, 1299, 4140, '4.0000', '10.8000', '10.8000', '12.0000', '12.0000', '86.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14864, '2022-10-17', 6901, 14178, 1299, 4108, '10.0000', '4.0100', '4.0100', '4.5000', '4.5000', '120.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14865, '2022-10-17', 6273, 14179, 1299, 3033, '2.0000', '26.0000', '26.0000', '27.5000', '27.5000', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14866, '2022-10-17', 6839, 14180, 1299, 3769, '3.0000', '4.9100', '4.9100', '5.5000', '5.5000', '46.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14867, '2022-10-17', 5472, 14181, 1299, 3903, '5.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '389.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14868, '2022-10-17', 5854, 14182, 1299, 4162, '5.0000', '10.5818', '10.5818', '10.8000', '10.8000', '127.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14869, '2022-10-17', 6647, 14183, 1299, 1353, '5.0000', '8.9000', '8.9000', '8.7500', '8.7500', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14870, '2022-10-17', 5898, 14184, 1299, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '159.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14871, '2022-10-17', 5828, 14185, 1299, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '70.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14872, '2022-10-17', 6415, 14186, 1299, 2056, '4.0000', '4.6200', '4.6200', '4.6200', '4.6200', '154.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14873, '2022-10-17', 6360, 14187, 1299, 3907, '8.0000', '2.5000', '2.5000', '2.8000', '2.8000', '371.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14874, '2022-10-17', 6408, 14188, 1299, 2068, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '6.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14875, '2022-10-17', 5601, 14189, 1299, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14876, '2022-10-17', 5640, 14190, 1300, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '588.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14914, '2022-10-17', 5958, 14226, 1301, 4156, '3.0000', '19.1636', '19.1636', '21.7000', '21.7000', '47.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14915, '2022-10-17', 5948, 14227, 1301, 2075, '6.0000', '6.0000', '6.0000', '9.0000', '9.0000', '201.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14916, '2022-10-17', 6205, 14228, 1301, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '91.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14917, '2022-10-17', 5689, 14229, 1301, 1428, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '70.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14918, '2022-10-17', 6295, 14230, 1301, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '125.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14919, '2022-10-17', 5553, 14231, 1301, 4142, '1.0000', '33.1388', '33.1388', '39.0000', '39.0000', '67.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14920, '2022-10-17', 5535, 14232, 1301, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '987.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14921, '2022-10-17', 6345, 14233, 1302, 1922, '2.0000', '3.6300', '3.6300', '4.4000', '4.4000', '64.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14922, '2022-10-17', 6007, 14234, 1302, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14923, '2022-10-17', 6825, 14235, 1302, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '809.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14924, '2022-10-17', 5977, 14236, 1302, 2360, '3.0000', '7.5000', '7.5000', '7.8000', '7.8000', '12.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14925, '2022-10-17', 5435, 14237, 1302, 2308, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14926, '2022-10-17', 6264, 14238, 1303, 3404, '5.0000', '6.0000', '6.0000', '6.8500', '6.8500', '65.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14927, '2022-10-17', 6906, 14239, 1303, 4140, '4.0000', '10.8000', '10.8000', '12.0000', '12.0000', '82.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14928, '2022-10-17', 5792, 14240, 1303, 4166, '1.0000', '36.1733', '36.1733', '39.7000', '39.7000', '101.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14929, '2022-10-17', 6210, 14241, 1303, 3050, '3.0000', '7.1000', '7.1000', '7.1000', '7.1000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14930, '2022-10-17', 5854, 14242, 1303, 4162, '3.0000', '10.5818', '10.5818', '10.8000', '10.8000', '124.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14931, '2022-10-17', 6273, 14243, 1303, 3033, '2.0000', '26.0000', '26.0000', '27.5000', '27.5000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14932, '2022-10-17', 5911, 14244, 1303, 2516, '-12.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14933, '2022-10-17', 5911, 14244, 1303, NULL, '14.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14934, '2022-10-17', 5427, 14245, 1303, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '100.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14935, '2022-10-17', 6583, 14246, 1303, 1374, '2.0000', '14.3000', '14.3000', '14.3000', '14.3000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14936, '2022-10-17', 5657, 14247, 1303, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '167.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14937, '2022-10-17', 6115, 14248, 1303, 1156, '3.0000', '7.1000', '7.1000', '7.1000', '7.1000', '13.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14938, '2022-10-17', 5451, 14249, 1303, 2387, '15.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1076.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14939, '2022-10-17', 5640, 14250, 1303, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '586.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14940, '2022-10-17', 6511, 14251, 1303, 3409, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '52.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14941, '2022-10-17', 6345, 14252, 1303, 1922, '1.0000', '3.6300', '3.6300', '4.4000', '4.4000', '63.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14942, '2022-10-17', 6346, 14253, 1303, 1921, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '227.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14943, '2022-10-17', 5677, 14254, 1303, 2351, '5.0000', '13.2000', '13.2000', '15.4000', '15.4000', '99.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14944, '2022-10-17', 5730, 14255, 1303, 3966, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '75.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14945, '2022-10-17', 6105, 14256, 1303, 3818, '2.0000', '10.8856', '10.8856', '12.0000', '12.0000', '198.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14946, '2022-10-17', 6301, 14257, 1303, 1339, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14947, '2022-10-17', 6382, 14258, 1303, 2285, '3.0000', '4.1000', '4.1000', '4.1000', '4.1000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14948, '2022-10-17', 6501, 14259, 1303, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '25.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14949, '2022-10-17', 5754, 14260, 1303, 4060, '4.0000', '7.2000', '7.2000', '9.2000', '9.2000', '9.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14950, '2022-10-17', 6435, 14261, 1303, 3833, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '84.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14951, '2022-10-17', 5949, 14262, 1303, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '281.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14952, '2022-10-17', 5593, 14263, 1303, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14953, '2022-10-17', 5714, 14264, 1303, 2383, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '325.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14954, '2022-10-17', 6082, 14265, 1303, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '161.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14955, '2022-10-17', 5713, 14266, 1303, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14956, '2022-10-17', 6358, 14267, 1303, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4095.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14957, '2022-10-17', 6590, 14268, 1303, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '23.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14958, '2022-10-17', 5641, 14269, 1303, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '51.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14959, '2022-10-17', 6211, 14270, 1303, 2067, '2.0000', '4.0000', '4.0000', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14960, '2022-10-17', 5849, 14271, 1303, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '39.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14961, '2022-10-17', 6385, 14272, 1303, 2309, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14962, '2022-10-17', 6383, 14273, 1303, 4117, '3.0000', '8.7203', '8.7203', '9.8000', '9.8000', '105.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14963, '2022-10-17', 6603, 14274, 1303, 3768, '2.0000', '6.1900', '6.1900', '6.9000', '6.9000', '43.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14964, '2022-10-17', 5978, 14275, 1303, 3068, '2.0000', '21.3000', '21.3000', '23.1000', '23.1000', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14965, '2022-10-17', 6672, 14276, 1303, 1001, '3.0000', '4.9500', '4.9500', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14966, '2022-10-17', 6295, 14277, 1303, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '124.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14967, '2022-10-17', 5631, 14278, 1304, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '98.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14968, '2022-10-17', 5631, 14279, 1305, 1992, '2.0000', '6.5000', '6.5000', '6.5000', '6.5000', '96.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14969, '2022-10-17', 5632, 14280, 1305, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '103.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14970, '2022-10-17', 5847, 14281, 1305, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '339.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14999, '2022-10-17', 6843, 14308, 1306, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '27.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14998, '2022-10-17', 6749, 14307, 1306, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '23.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14997, '2022-10-17', 6408, 14306, 1306, 1986, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14996, '2022-10-17', 6408, 14306, 1306, 2068, '6.0000', '4.6700', '4.6700', '6.0300', '6.0300', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14995, '2022-10-17', 6295, 14305, 1306, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '122.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14994, '2022-10-17', 6076, 14304, 1306, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1666.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14993, '2022-10-17', 6075, 14303, 1306, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1051.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14992, '2022-10-17', 6020, 14302, 1306, 2302, '5.0000', '16.1378', '16.1378', '20.9000', '20.9000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14991, '2022-10-17', 5854, 14301, 1306, 4162, '5.0000', '10.5818', '10.5818', '10.8000', '10.8000', '119.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14990, '2022-10-17', 5799, 14300, 1306, 2066, '20.0000', '20.1300', '20.1300', '27.2600', '27.2600', '37.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14989, '2022-10-17', 5757, 14299, 1306, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '94.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14988, '2022-10-17', 5712, 14298, 1306, 2298, '10.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1154.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14987, '2022-10-17', 5553, 14297, 1306, 4142, '2.0000', '33.1388', '33.1388', '39.0000', '39.0000', '65.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (14986, '2022-10-17', 5477, 14296, 1306, 4150, '5.0000', '26.9169', '26.9169', '27.5000', '27.5000', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15000, '2022-10-17', 6890, 14309, 1306, 4124, '25.0000', '3.7809', '3.7809', '6.6000', '6.6000', '962.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15001, '2022-10-17', 5983, 14310, 1307, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '142.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15002, '2022-10-17', 5849, 14311, 1307, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15003, '2022-10-17', 5515, 14312, 1308, 3508, '20.0000', '4.6800', '4.6800', '5.5000', '5.5000', '102.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15004, '2022-10-17', 5710, 14313, 1309, 1300, '40.0000', '4.0200', '4.0200', '4.0200', '4.0200', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15005, '2022-10-17', 6152, 14314, 1309, 1883, '50.0000', '1.2000', '1.2000', '1.2000', '1.2000', '899.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15006, '2022-10-17', 6358, 14315, 1309, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4085.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15007, '2022-10-17', 6738, 14316, 1309, 1905, '40.0000', '3.0000', '3.0000', '3.0000', '3.0000', '65.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15008, '2022-10-17', 6221, 14317, 1309, 1331, '5.0000', '12.9800', '12.9800', '12.9800', '12.9800', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15009, '2022-10-17', 6378, 14318, 1309, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '56.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15010, '2022-10-17', 6872, 14319, 1309, 4004, '5.0000', '2.0000', '2.0000', '2.2000', '2.2000', '1.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15011, '2022-10-17', 6819, 14320, 1309, 1929, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15012, '2022-10-17', 6819, 14320, 1309, NULL, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15013, '2022-10-17', 6590, 14321, 1309, 2281, '5.0000', '25.3000', '25.3000', '25.3000', '25.3000', '18.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15014, '2022-10-17', 6376, 14322, 1309, 2364, '50.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2014.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15015, '2022-10-17', 6358, 14323, 1310, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4075.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15016, '2022-10-17', 6374, 14324, 1310, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3995.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15017, '2022-10-17', 6860, 14325, 1311, 3738, '12.0000', '15.4923', '15.4923', '18.5000', '18.5000', '37.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15018, '2022-10-17', 6753, 14326, 1311, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '154.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15019, '2022-10-17', 5553, 14327, 1311, 4142, '5.0000', '33.1388', '33.1388', '39.0000', '39.0000', '60.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15020, '2022-10-17', 6295, 14328, 1311, 4141, '5.0000', '36.6868', '36.6868', '39.0000', '39.0000', '117.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15021, '2022-10-17', 6205, 14329, 1311, 3026, '5.0000', '38.5000', '38.5000', '38.5000', '38.5000', '86.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15022, '2022-10-17', 5975, 14330, 1311, 523, '10.0000', '9.1500', '9.1500', '12.2100', '12.2100', '14.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15023, '2022-10-17', 6220, 14331, 1311, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '90.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15024, '2022-10-17', 5971, 14332, 1311, 3756, '5.0000', '20.4300', '20.4300', '25.0000', '25.0000', '51.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15025, '2022-10-17', 6417, 14333, 1311, 1990, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '42.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15026, '2022-10-17', 5947, 14334, 1312, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '228.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15027, '2022-10-17', 6218, 14335, 1312, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '27.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15028, '2022-10-17', 5715, 14336, 1313, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '5.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15029, '2022-10-17', 6378, 14337, 1314, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15030, '2022-10-17', 6374, 14338, 1314, 3614, '20.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3975.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15031, '2022-10-17', 6316, 14339, 1315, 3757, '2.0000', '54.8358', '54.8358', '74.0000', '74.0000', '57.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15032, '2022-10-17', 6765, 14340, 1315, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '33.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15033, '2022-10-17', 5635, 14341, 1315, 3749, '-10.0000', '14.7600', '14.7600', '14.7600', '14.7600', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15034, '2022-10-17', 5635, 14341, 1315, NULL, '12.0000', '14.7600', '14.7600', '14.7600', '14.7600', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15035, '2022-10-17', 6188, 14342, 1315, 3080, '2.0000', '7.0000', '7.0000', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15036, '2022-10-17', 5849, 14343, 1315, 2357, '2.0000', '3.1000', '3.1000', '3.1000', '3.1000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15037, '2022-10-17', 5519, 14344, 1315, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '231.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15038, '2022-10-17', 6768, 14345, 1315, 1365, '4.0000', '5.8000', '5.8000', '5.8000', '5.8000', '29.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15039, '2022-10-17', 5472, 14346, 1316, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '379.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15040, '2022-10-17', 5983, 14347, 1317, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '140.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15041, '2022-10-17', 5770, 14348, 1317, 3969, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15042, '2022-10-17', 5770, 14348, 1317, 2329, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15043, '2022-10-17', 6749, 14349, 1317, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15044, '2022-10-17', 6358, 14350, 1317, 3906, '20.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4055.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15045, '2022-10-17', 6352, 14351, 1317, 1409, '20.0000', '2.5000', '2.5000', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15046, '2022-10-17', 6359, 14352, 1317, 4069, '20.0000', '1.7604', '1.7604', '2.5000', '2.5000', '149.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15047, '2022-10-17', 6221, 14353, 1317, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '10.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15048, '2022-10-17', 5847, 14354, 1317, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '319.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15049, '2022-10-17', 6286, 14355, 1318, 953, '4.0000', '9.6000', '9.6000', '11.8000', '11.8000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15050, '2022-10-17', 5904, 14356, 1318, 1308, '3.0000', '24.7000', '24.7000', '24.7000', '24.7000', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15051, '2022-10-17', 5656, 14357, 1318, NULL, '4.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15052, '2022-10-17', 5949, 14358, 1318, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '271.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15053, '2022-10-17', 5677, 14359, 1319, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '97.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15054, '2022-10-17', 5740, 14360, 1319, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '129.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15055, '2022-10-17', 5640, 14361, 1319, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '585.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15056, '2022-10-17', 5849, 14362, 1319, 2357, '2.0000', '3.1000', '3.1000', '3.1000', '3.1000', '32.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15057, '2022-10-17', 6595, 14363, 1319, 2565, '2.0000', '7.9000', '7.9000', '9.2000', '9.2000', '59.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15058, '2022-10-17', 6075, 14364, 1319, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1046.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15059, '2022-10-17', 6868, 14365, 1319, 1028, '3.0000', '3.4000', '3.4000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15060, '2022-10-17', 5689, 14366, 1319, 1428, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15061, '2022-10-17', 5865, 14367, 1319, 3052, '2.0000', '3.5000', '3.5000', '3.5000', '3.5000', '364.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15062, '2022-10-17', 5548, 14368, 1319, 2374, '3.0000', '2.9800', '2.9800', '2.9800', '2.9800', '252.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15063, '2022-10-17', 6032, 14369, 1320, 3889, '2.0000', '17.2100', '17.2100', '19.0000', '19.0000', '95.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15064, '2022-10-17', 6258, 14370, 1320, 4182, '6.0000', '9.8182', '9.8182', '10.9000', '10.9000', '92.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15065, '2022-10-17', 5601, 14371, 1320, 3035, '8.0000', '4.2917', '4.2917', '5.9500', '5.9500', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15066, '2022-10-17', 5629, 14372, 1320, 909, '10.0000', '8.4000', '8.4000', '8.4000', '8.4000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15067, '2022-10-17', 5992, 14373, 1320, 3560, '-8.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15068, '2022-10-17', 5992, 14373, 1320, NULL, '14.0000', '7.0000', '7.0000', '9.5000', '9.5000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15069, '2022-10-17', 6906, 14374, 1320, 4140, '6.0000', '10.8000', '10.8000', '12.0000', '12.0000', '76.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15070, '2022-10-17', 6902, 14375, 1320, 4115, '6.0000', '5.8500', '5.8500', '6.5000', '6.5000', '54.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15071, '2022-10-17', 5553, 14376, 1320, 4142, '6.0000', '33.1388', '33.1388', '39.0000', '39.0000', '54.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15072, '2022-10-17', 6295, 14377, 1320, 4141, '6.0000', '36.6868', '36.6868', '39.0000', '39.0000', '111.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15073, '2022-10-17', 5624, 14378, 1320, 4120, '5.0000', '18.1800', '18.1800', '20.1000', '20.1000', '48.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15074, '2022-10-17', 6903, 14379, 1320, 4121, '5.0000', '22.5000', '22.5000', '25.0000', '25.0000', '19.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15075, '2022-10-17', 5532, 14380, 1320, 4167, '5.0000', '57.4913', '57.4913', '65.0000', '65.0000', '115.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15076, '2022-10-17', 5854, 14381, 1320, 4162, '10.0000', '10.5818', '10.5818', '10.8000', '10.8000', '109.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15077, '2022-10-17', 5477, 14382, 1320, 4150, '5.0000', '26.9169', '26.9169', '27.5000', '27.5000', '51.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15078, '2022-10-17', 6777, 14383, 1320, 4152, '2.0000', '23.8079', '23.8079', '26.5000', '26.5000', '26.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15079, '2022-10-17', 5588, 14384, 1320, 3075, '6.0000', '14.9600', '14.9600', '14.9600', '14.9600', '84.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15080, '2022-10-17', 6083, 14385, 1320, 3029, '1.0000', '2.7000', '2.7000', '2.7000', '2.7000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15081, '2022-10-17', 6083, 14385, 1320, 3061, '9.0000', '2.7000', '2.7000', '2.7000', '2.7000', '315.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15082, '2022-10-17', 5969, 14386, 1320, 2252, '9.0000', '8.8000', '8.8000', '10.7000', '10.7000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15083, '2022-10-17', 5969, 14386, 1320, 2023, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '42.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15084, '2022-10-17', 6535, 14387, 1321, 4149, '4.0000', '3.3755', '3.3755', '3.8000', '3.8000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15085, '2022-10-17', 6295, 14388, 1322, 4141, '4.0000', '36.6868', '36.6868', '39.0000', '39.0000', '107.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15086, '2022-10-17', 5487, 14389, 1322, 3816, '4.0000', '17.1500', '17.1500', '18.9000', '18.9000', '188.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15087, '2022-10-17', 5456, 14390, 1322, 2330, '4.0000', '10.6000', '10.6000', '10.6000', '10.6000', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15088, '2022-10-17', 6568, 14391, 1322, 3827, '10.0000', '13.6100', '13.6100', '15.0000', '15.0000', '40.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15089, '2022-10-17', 6744, 14392, 1322, 4173, '2.0000', '10.6943', '10.6943', '12.0000', '12.0000', '58.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15090, '2022-10-17', 6650, 14393, 1322, 1146, '2.0000', '5.7000', '5.7000', '5.7000', '5.7000', '15.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15091, '2022-10-17', 5477, 14394, 1322, 4150, '4.0000', '26.9169', '26.9169', '27.5000', '27.5000', '47.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15092, '2022-10-17', 5553, 14395, 1322, 4142, '4.0000', '33.1388', '33.1388', '39.0000', '39.0000', '50.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15093, '2022-10-17', 6389, 14396, 1322, 4114, '4.0000', '8.7525', '8.7525', '9.7000', '9.7000', '342.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15094, '2022-10-17', 6654, 14397, 1322, 1066, '5.0000', '22.0000', '22.0000', '22.0000', '22.0000', '70.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15095, '2022-10-17', 5854, 14398, 1322, 4162, '8.0000', '10.5818', '10.5818', '10.8000', '10.8000', '101.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15096, '2022-10-17', 6896, 14399, 1322, 3807, '4.0000', '28.8100', '28.8100', '32.1000', '32.1000', '59.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15097, '2022-10-17', 6609, 14400, 1322, 3773, '3.0000', '11.6821', '11.6821', '12.7000', '12.7000', '127.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15098, '2022-10-17', 5983, 14401, 1322, 2333, '4.0000', '5.9000', '5.9000', '5.9000', '5.9000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15099, '2022-10-17', 6558, 14402, 1322, 983, '4.0000', '5.5000', '5.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15100, '2022-10-17', 6558, 14402, 1322, NULL, '4.0000', '5.5000', '5.5000', '6.0000', '6.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15101, '2022-10-17', 5967, 14403, 1322, 3132, '10.0000', '3.6596', '3.6596', '4.0000', '4.0000', '2436.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15102, '2022-10-17', 5792, 14404, 1322, 4166, '5.0000', '36.1733', '36.1733', '39.7000', '39.7000', '96.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15103, '2022-10-17', 6032, 14405, 1322, 3889, '5.0000', '17.2100', '17.2100', '19.0000', '19.0000', '90.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15104, '2022-10-17', 5959, 14406, 1322, 4157, '2.0000', '27.5500', '27.5500', '29.8000', '29.8000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15105, '2022-10-17', 6812, 14407, 1322, 4161, '4.0000', '29.9644', '29.9644', '34.8000', '34.8000', '19.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15106, '2022-10-17', 6667, 14408, 1322, 3835, '4.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1026.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15107, '2022-10-17', 6250, 14409, 1322, 3622, '-14.0000', '0.0000', '0.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15108, '2022-10-17', 6250, 14409, 1322, NULL, '19.0000', '0.0000', '0.0000', '5.5000', '5.5000', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15109, '2022-10-17', 6624, 14410, 1322, 993, '1.0000', '54.0000', '54.0000', '54.0000', '54.0000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15110, '2022-10-17', 6664, 14411, 1322, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '836.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15111, '2022-10-17', 6371, 14412, 1322, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '15.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15112, '2022-10-17', 6719, 14413, 1322, 1004, '1.0000', '17.4000', '17.4000', '17.4000', '17.4000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15113, '2022-10-17', 6218, 14414, 1323, 3619, '2.0000', '13.6497', '13.6497', '15.0700', '15.0700', '25.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15114, '2022-10-17', 6285, 14415, 1323, 4145, '4.0000', '9.6868', '9.6868', '10.9800', '10.9800', '84.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15115, '2022-10-17', 6408, 14416, 1323, 1986, '4.0000', '4.6700', '4.6700', '6.0300', '6.0300', '172.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15116, '2022-10-17', 6123, 14417, 1323, 1878, '1.0000', '52.7000', '52.7000', '60.5000', '60.5000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15117, '2022-10-17', 5640, 14418, 1323, 3897, '10.0000', '11.1000', '11.1000', '12.3000', '12.3000', '575.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15118, '2022-10-17', 6383, 14419, 1323, 4117, '5.0000', '8.7203', '8.7203', '9.8000', '9.8000', '100.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15119, '2022-10-17', 6895, 14420, 1323, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '83.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15120, '2022-10-17', 5858, 14421, 1323, 4154, '3.0000', '35.1931', '35.1931', '38.0000', '38.0000', '83.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15121, '2022-10-17', 6353, 14422, 1323, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '44.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15122, '2022-10-17', 5799, 14423, 1323, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15123, '2022-10-17', 5977, 14424, 1323, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '10.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15124, '2022-10-17', 6201, 14425, 1323, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15125, '2022-10-17', 6852, 14426, 1323, 4074, '2.0000', '8.4000', '8.4000', '11.8000', '11.8000', '38.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15126, '2022-10-17', 6671, 14427, 1323, 1996, '6.0000', '7.1500', '7.1500', '7.8000', '7.8000', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15127, '2022-10-17', 5593, 14428, 1323, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15128, '2022-10-17', 6590, 14429, 1323, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '17.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15129, '2022-10-17', 5705, 14430, 1323, 1169, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15130, '2022-10-17', 6011, 14431, 1323, 3028, '3.0000', '14.2100', '14.2100', '14.2100', '14.2100', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15131, '2022-10-17', 5540, 14432, 1323, 1280, '1.0000', '22.0000', '22.0000', '33.0000', '33.0000', '45.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15132, '2022-10-17', 6258, 14433, 1323, 4182, '3.0000', '9.8182', '9.8182', '10.9000', '10.9000', '89.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15133, '2022-10-17', 6451, 14434, 1323, 3993, '1.0000', '53.2000', '53.2000', '53.2000', '53.2000', '4.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15134, '2022-10-17', 6437, 14435, 1323, 1275, '2.0000', '18.1000', '18.1000', '18.1000', '18.1000', '12.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15135, '2022-10-17', 6136, 14436, 1323, 1324, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '63.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15136, '2022-10-17', 5519, 14437, 1323, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '226.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15137, '2022-10-17', 6304, 14438, 1323, 1853, '5.0000', '13.5000', '13.5000', '13.5000', '13.5000', '77.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15138, '2022-10-17', 5500, 14439, 1323, 3751, '3.0000', '41.3100', '41.3100', '46.3000', '46.3000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15139, '2022-10-17', 5501, 14440, 1323, 3752, '4.0000', '44.0800', '44.0800', '49.0000', '49.0000', '20.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15140, '2022-10-17', 6131, 14441, 1323, 3077, '6.0000', '18.0000', '18.0000', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15141, '2022-10-17', 5589, 14442, 1323, 2370, '6.0000', '9.4000', '9.4000', '9.4000', '9.4000', '125.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15142, '2022-10-17', 6860, 14443, 1323, 3738, '12.0000', '15.4923', '15.4923', '18.5000', '18.5000', '25.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15332, '2022-10-18', 6812, 14631, 1324, 4218, '1.0000', '26.3790', '26.3790', '34.8000', '34.8000', '18.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15331, '2022-10-18', 6295, 14630, 1324, 4141, '4.0000', '36.6868', '36.6868', '39.0000', '39.0000', '97.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15330, '2022-10-18', 6260, 14629, 1324, 4144, '4.0000', '5.7594', '5.7594', '6.4000', '6.4000', '20.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15329, '2022-10-18', 6205, 14628, 1324, 3026, '4.0000', '38.5000', '38.5000', '38.5000', '38.5000', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15328, '2022-10-18', 6131, 14627, 1324, 3077, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15327, '2022-10-18', 5593, 14626, 1324, 2071, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15333, '2022-10-18', 6861, 14632, 1324, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '8.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15150, '2022-10-18', 6663, 14451, 1325, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '120.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15151, '2022-10-18', 6434, 14452, 1325, 1895, '10.0000', '5.2000', '5.2000', '5.2000', '5.2000', '104.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15152, '2022-10-18', 6356, 14453, 1325, 3555, '-8.0000', '7.2000', '7.2000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15153, '2022-10-18', 6356, 14453, 1325, NULL, '18.0000', '7.2000', '7.2000', '7.2000', '7.2000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15154, '2022-10-18', 6365, 14454, 1326, 2038, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '112.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15155, '2022-10-18', 5657, 14455, 1327, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '165.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15156, '2022-10-18', 5947, 14456, 1328, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '227.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15157, '2022-10-18', 6753, 14457, 1329, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '153.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15158, '2022-10-18', 6860, 14458, 1329, 3738, '2.0000', '15.4923', '15.4923', '18.5000', '18.5000', '23.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15159, '2022-10-18', 5418, 14459, 1329, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '98.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15160, '2022-10-18', 6744, 14460, 1329, 4173, '4.0000', '10.6943', '10.6943', '12.0000', '12.0000', '54.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15161, '2022-10-18', 6448, 14461, 1329, 2265, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '43.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15162, '2022-10-18', 6450, 14462, 1329, 1943, '1.0000', '45.0000', '45.0000', '45.0000', '45.0000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15163, '2022-10-18', 5827, 14463, 1329, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '73.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15164, '2022-10-18', 6220, 14464, 1329, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '85.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15165, '2022-10-18', 6642, 14465, 1329, 3414, '5.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '4.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15166, '2022-10-18', 6843, 14466, 1329, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '26.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15167, '2022-10-18', 6099, 14467, 1329, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '34.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15168, '2022-10-18', 5541, 14468, 1329, 905, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15169, '2022-10-18', 6112, 14469, 1329, 3820, '2.0000', '12.7000', '12.7000', '14.0000', '14.0000', '193.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15170, '2022-10-18', 6353, 14470, 1329, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15171, '2022-10-18', 6288, 14471, 1329, 1416, '1.0000', '56.0000', '56.0000', '66.5200', '66.5200', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15172, '2022-10-18', 6216, 14472, 1329, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2375.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15173, '2022-10-18', 6378, 14473, 1330, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15174, '2022-10-18', 6838, 14474, 1330, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '17.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15175, '2022-10-18', 6220, 14475, 1330, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '83.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15176, '2022-10-18', 5654, 14476, 1330, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15177, '2022-10-18', 5751, 14477, 1330, 1112, '3.0000', '10.8000', '10.8000', '10.8000', '10.8000', '105.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15178, '2022-10-18', 6612, 14478, 1331, 3772, '2.0000', '16.5600', '16.5600', '18.4000', '18.4000', '86.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15179, '2022-10-18', 6293, 14479, 1331, 4068, '2.0000', '14.6000', '14.6000', '14.6000', '14.6000', '161.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15180, '2022-10-18', 6082, 14480, 1331, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '158.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15181, '2022-10-18', 6389, 14481, 1331, 4114, '4.0000', '8.7525', '8.7525', '9.7000', '9.7000', '338.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15182, '2022-10-18', 6435, 14482, 1331, 3833, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '82.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15183, '2022-10-18', 6224, 14483, 1331, 2385, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '20.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15184, '2022-10-18', 5969, 14484, 1331, 2023, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '40.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15185, '2022-10-18', 6075, 14485, 1331, 3025, '15.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1031.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15186, '2022-10-18', 6295, 14486, 1331, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '102.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15187, '2022-10-18', 5958, 14487, 1331, 4156, '2.0000', '19.1636', '19.1636', '21.7000', '21.7000', '45.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15188, '2022-10-18', 5573, 14488, 1331, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '987.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15189, '2022-10-18', 6738, 14489, 1331, 1905, '4.0000', '3.0000', '3.0000', '3.0000', '3.0000', '61.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15190, '2022-10-18', 5827, 14490, 1331, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '71.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15191, '2022-10-18', 5657, 14491, 1331, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15192, '2022-10-18', 6358, 14492, 1331, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4045.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15193, '2022-10-18', 5814, 14493, 1331, 1277, '1.0000', '24.0900', '24.0900', '24.0900', '24.0900', '79.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15194, '2022-10-18', 6147, 14494, 1331, 3038, '1.0000', '35.2000', '35.2000', '35.2000', '35.2000', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15195, '2022-10-18', 5713, 14495, 1331, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15196, '2022-10-18', 5640, 14496, 1331, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '573.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15197, '2022-10-18', 5677, 14497, 1331, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '95.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15198, '2022-10-18', 5898, 14498, 1331, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '157.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15199, '2022-10-18', 5853, 14499, 1331, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '395.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15200, '2022-10-18', 6010, 14500, 1331, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '286.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15201, '2022-10-18', 6202, 14501, 1331, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '358.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15202, '2022-10-18', 5974, 14502, 1331, 4080, '2.0000', '8.4900', '8.4900', '9.5000', '9.5000', '218.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15203, '2022-10-18', 5770, 14503, 1331, 2329, '5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15204, '2022-10-18', 6378, 14504, 1331, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '53.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15205, '2022-10-18', 6074, 14505, 1331, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '602.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15206, '2022-10-18', 5601, 14506, 1331, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15207, '2022-10-18', 5949, 14507, 1331, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '268.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15208, '2022-10-18', 5926, 14508, 1331, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '237.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15209, '2022-10-18', 6026, 14509, 1331, 3886, '10.0000', '2.0143', '2.0143', '2.1000', '2.1000', '117.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15210, '2022-10-18', 6143, 14510, 1331, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '42.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15211, '2022-10-18', 5975, 14511, 1331, 523, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '12.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15212, '2022-10-18', 6134, 14512, 1331, 1120, '1.0000', '5.8000', '5.8000', '5.8000', '5.8000', '111.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15213, '2022-10-18', 6552, 14513, 1332, 577, '2.0000', '186.8000', '186.8000', '186.9500', '186.9500', '12.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15214, '2022-10-18', 5770, 14514, 1332, 2329, '9.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15215, '2022-10-18', 5770, 14514, 1332, 1159, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15216, '2022-10-18', 5740, 14515, 1332, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '125.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15217, '2022-10-18', 6271, 14516, 1332, 537, '2.0000', '62.0000', '62.0000', '62.0000', '62.0000', '22.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15257, '2022-10-18', 6353, 14556, 1333, 1920, '4.0000', '3.7500', '3.7500', '3.7500', '3.7500', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15256, '2022-10-18', 6248, 14555, 1333, 4183, '3.0000', '9.6681', '9.6681', '10.8000', '10.8000', '177.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15255, '2022-10-18', 6224, 14554, 1333, 2385, '5.0000', '1.9000', '1.9000', '1.9000', '1.9000', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15254, '2022-10-18', 6164, 14553, 1333, 3657, '4.0000', '14.6000', '14.6000', '16.0600', '16.0600', '56.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15253, '2022-10-18', 5976, 14552, 1333, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '230.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15252, '2022-10-18', 5969, 14551, 1333, 2023, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '37.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15251, '2022-10-18', 5926, 14550, 1333, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '235.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15250, '2022-10-18', 5847, 14549, 1333, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '314.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15249, '2022-10-18', 5674, 14548, 1333, 3549, '4.0000', '1.5000', '1.5000', '2.1000', '2.1000', '397.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15248, '2022-10-18', 5587, 14547, 1333, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '176.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15258, '2022-10-18', 6663, 14557, 1333, 2328, '4.0000', '2.5000', '2.5000', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15230, '2022-10-18', 6872, 14529, 1334, 4004, '1.0000', '2.0000', '2.0000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15231, '2022-10-18', 6873, 14530, 1334, 3484, '5.0000', '1.7189', '1.7189', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15325, '2022-10-18', 6880, 14624, 1335, 3128, '1.0000', '13.5000', '13.5000', '15.0000', '15.0000', '387.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15324, '2022-10-18', 6860, 14623, 1335, 3738, '2.0000', '15.4923', '15.4923', '18.5000', '18.5000', '16.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15323, '2022-10-18', 6399, 14622, 1335, 2019, '2.0000', '6.1000', '6.1000', '6.1000', '6.1000', '175.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15322, '2022-10-18', 6346, 14621, 1335, 1921, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '225.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15321, '2022-10-18', 6345, 14620, 1335, 1922, '2.0000', '3.6300', '3.6300', '4.4000', '4.4000', '61.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15320, '2022-10-18', 6295, 14619, 1335, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '97.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15319, '2022-10-18', 6258, 14618, 1335, 4202, '2.0000', '9.3060', '9.3060', '10.9000', '10.9000', '89.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15318, '2022-10-18', 6074, 14617, 1335, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '597.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15317, '2022-10-18', 5959, 14616, 1335, 4197, '1.0000', '25.7381', '25.7381', '29.8000', '29.8000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15316, '2022-10-18', 5949, 14615, 1335, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '265.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15315, '2022-10-18', 5853, 14614, 1335, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '388.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15314, '2022-10-18', 5847, 14613, 1335, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '314.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15313, '2022-10-18', 5729, 14612, 1335, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15312, '2022-10-18', 5714, 14611, 1335, 2383, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '320.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15311, '2022-10-18', 5477, 14610, 1335, 4187, '1.0000', '22.0699', '22.0699', '27.5000', '27.5000', '47.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15326, '2022-10-18', 6883, 14625, 1335, 3129, '2.0000', '6.3000', '6.3000', '7.0000', '7.0000', '46.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15259, '2022-10-18', 5453, 14558, 1333, 3652, '1.0000', '8.3000', '8.3000', '9.2000', '9.2000', '92.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15260, '2022-10-18', 6205, 14559, 1336, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '81.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15261, '2022-10-18', 5986, 14560, 1336, 4107, '3.0000', '13.6040', '13.6040', '15.0000', '15.0000', '63.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15262, '2022-10-18', 5440, 14561, 1336, 2306, '8.0000', '3.4100', '3.4100', '3.4100', '3.4100', '220.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15263, '2022-10-18', 6375, 14562, 1336, 2304, '8.0000', '3.5200', '3.5200', '3.5200', '3.5200', '113.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15264, '2022-10-18', 5651, 14563, 1336, 2386, '3.0000', '6.1700', '6.1700', '6.1700', '6.1700', '39.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15265, '2022-10-18', 6075, 14564, 1336, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1026.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15266, '2022-10-18', 6222, 14565, 1336, 2279, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15267, '2022-10-18', 6755, 14566, 1336, 4116, '6.0000', '5.8525', '5.8525', '6.5000', '6.5000', '173.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15268, '2022-10-18', 5740, 14567, 1337, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '115.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15269, '2022-10-18', 6874, 14568, 1337, 3723, '10.0000', '9.0000', '9.0000', '10.8000', '10.8000', '27.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15270, '2022-10-18', 6232, 14569, 1337, 4172, '6.0000', '8.2895', '8.2895', '9.9000', '9.9000', '274.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15271, '2022-10-18', 5948, 14570, 1337, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '191.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15272, '2022-10-18', 5977, 14571, 1337, 2360, '6.0000', '7.5000', '7.5000', '7.8000', '7.8000', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15273, '2022-10-18', 6895, 14572, 1337, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '78.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15274, '2022-10-18', 5970, 14573, 1337, 931, '4.0000', '9.1500', '9.1500', '12.8500', '12.8500', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15275, '2022-10-18', 5657, 14574, 1337, 2382, '5.0000', '4.2000', '4.2000', '4.2000', '4.2000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15276, '2022-10-18', 5447, 14575, 1337, 3851, '4.0000', '24.7066', '24.7066', '28.7000', '28.7000', '201.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15277, '2022-10-18', 5958, 14576, 1337, 4156, '4.0000', '19.1636', '19.1636', '21.7000', '21.7000', '41.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15278, '2022-10-18', 5956, 14577, 1337, 4159, '4.0000', '22.2686', '22.2686', '24.0000', '24.0000', '38.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15279, '2022-10-18', 5959, 14578, 1337, 4157, '3.0000', '27.5500', '27.5500', '29.8000', '29.8000', '42.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15280, '2022-10-18', 5926, 14579, 1337, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '225.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15281, '2022-10-18', 6399, 14580, 1337, 2019, '10.0000', '6.1000', '6.1000', '6.1000', '6.1000', '165.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15282, '2022-10-18', 6220, 14581, 1337, 2388, '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', '78.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15283, '2022-10-18', 5624, 14582, 1337, 4120, '3.0000', '18.1800', '18.1800', '20.1000', '20.1000', '45.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15284, '2022-10-18', 5853, 14583, 1337, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '388.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15285, '2022-10-18', 6427, 14584, 1337, 1475, '4.0000', '17.5000', '17.5000', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15286, '2022-10-18', 5968, 14585, 1337, 4155, '5.0000', '10.7800', '10.7800', '12.0000', '12.0000', '54.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15287, '2022-10-18', 6699, 14586, 1337, 1287, '3.0000', '7.0000', '7.0000', '8.4000', '8.4000', '166.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15288, '2022-10-18', 6010, 14587, 1337, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '282.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15289, '2022-10-18', 6205, 14588, 1337, 3026, '2.0000', '38.5000', '38.5000', '38.5000', '38.5000', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15290, '2022-10-18', 5729, 14589, 1337, 1993, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15291, '2022-10-18', 5535, 14590, 1337, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '977.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15292, '2022-10-18', 6627, 14591, 1337, 2336, '1.0000', '79.1500', '79.1500', '79.1500', '79.1500', '22.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15293, '2022-10-18', 5677, 14592, 1337, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15294, '2022-10-18', 6615, 14593, 1337, 2368, '4.0000', '11.0000', '11.0000', '11.0000', '11.0000', '40.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15295, '2022-10-18', 5749, 14594, 1337, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '68.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15296, '2022-10-18', 6862, 14595, 1337, 3584, '6.0000', '3.5455', '3.5455', '4.0200', '4.0200', '63.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15297, '2022-10-18', 5988, 14596, 1337, 2033, '7.0000', '3.0000', '3.0000', '3.4200', '3.4200', '65.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15298, '2022-10-18', 6295, 14597, 1337, 4141, '4.0000', '36.6868', '36.6868', '39.0000', '39.0000', '97.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15299, '2022-10-18', 6273, 14598, 1337, 3033, '3.0000', '26.0000', '26.0000', '27.5000', '27.5000', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15300, '2022-10-18', 6652, 14599, 1337, 1414, '10.0000', '3.8000', '3.8000', '3.7900', '3.7900', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15301, '2022-10-18', 6301, 14600, 1337, 1339, '5.0000', '10.5000', '10.5000', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15302, '2022-10-18', 6377, 14601, 1337, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '15.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15303, '2022-10-18', 6010, 14602, 1338, 3621, '5.0000', '15.4888', '15.4888', '16.5000', '16.5000', '277.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15304, '2022-10-18', 6320, 14603, 1338, 1053, '1.0000', '63.2200', '63.2200', '87.4100', '87.4100', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15305, '2022-10-18', 6644, 14604, 1338, 4165, '7.0000', '4.6774', '4.6774', '5.2000', '5.2000', '53.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15306, '2022-10-18', 5710, 14605, 1338, 1300, '10.0000', '4.0200', '4.0200', '4.0200', '4.0200', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15307, '2022-10-18', 6860, 14606, 1338, 3738, '5.0000', '15.4923', '15.4923', '18.5000', '18.5000', '16.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15308, '2022-10-18', 6292, 14607, 1338, 4179, '10.0000', '8.2075', '8.2075', '9.2000', '9.2000', '35.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15309, '2022-10-18', 5549, 14608, 1338, 2372, '5.0000', '8.2000', '8.2000', '8.2000', '8.2000', '280.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15310, '2022-10-18', 6264, 14609, 1338, 3404, '10.0000', '6.0000', '6.0000', '6.8500', '6.8500', '55.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15334, '2022-10-18', 6901, 14633, 1324, 4108, '10.0000', '4.0100', '4.0100', '4.5000', '4.5000', '110.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15335, '2022-10-18', 6076, 14634, 1339, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1642.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15336, '2022-10-18', 6864, 14635, 1339, 3082, '10.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4628.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15337, '2022-10-18', 5792, 14636, 1339, 4190, '2.0000', '34.1634', '34.1634', '39.7000', '39.7000', '94.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15338, '2022-10-18', 6386, 14637, 1339, 4113, '10.0000', '3.5873', '3.5873', '4.2000', '4.2000', '1585.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15339, '2022-10-18', 6095, 14638, 1339, 3893, '10.0000', '8.3200', '8.3200', '9.2000', '9.2000', '379.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15340, '2022-10-18', 5712, 14639, 1339, 2298, '10.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1144.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15341, '2022-10-18', 6297, 14640, 1339, 4208, '5.0000', '9.8672', '9.8672', '10.4000', '10.4000', '55.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15342, '2022-10-18', 6154, 14641, 1339, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '73.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15343, '2022-10-18', 6870, 14642, 1340, 3585, '2.0000', '36.4852', '36.4852', '40.1400', '40.1400', '40.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15344, '2022-10-18', 6548, 14643, 1340, 4214, '1.0000', '8.8200', '8.8200', '9.8000', '9.8000', '59.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15345, '2022-10-18', 5633, 14644, 1341, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15346, '2022-10-18', 6205, 14645, 1341, 3026, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '78.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15347, '2022-10-18', 6860, 14646, 1341, 3738, '5.0000', '15.4923', '15.4923', '18.5000', '18.5000', '11.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15348, '2022-10-18', 6455, 14647, 1341, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15349, '2022-10-18', 5598, 14648, 1341, 3031, '5.0000', '2.6000', '2.6000', '4.3000', '4.3000', '512.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15350, '2022-10-18', 5778, 14649, 1341, 3822, '3.0000', '16.3911', '16.3911', '18.0000', '18.0000', '78.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15351, '2022-10-18', 6864, 14650, 1341, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4626.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15352, '2022-10-18', 6075, 14651, 1341, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1021.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15353, '2022-10-18', 6076, 14652, 1341, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1637.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15354, '2022-10-18', 6074, 14653, 1341, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '577.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15355, '2022-10-18', 6528, 14654, 1341, 1899, '4.0000', '5.9800', '5.9800', '5.9800', '5.9800', '215.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15356, '2022-10-18', 5854, 14655, 1341, 4191, '5.0000', '8.8462', '8.8462', '10.8000', '10.8000', '96.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15357, '2022-10-18', 5439, 14656, 1341, 3799, '3.0000', '27.2586', '27.2586', '58.4000', '58.4000', '108.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15358, '2022-10-18', 6234, 14657, 1341, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '47.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15359, '2022-10-18', 6609, 14658, 1341, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '125.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15360, '2022-10-18', 6608, 14659, 1341, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '133.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15361, '2022-10-18', 6865, 14660, 1341, 1026, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15362, '2022-10-18', 6865, 14660, 1341, NULL, '1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15363, '2022-10-18', 6417, 14661, 1341, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '41.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15364, '2022-10-18', 6020, 14662, 1341, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15365, '2022-10-18', 5532, 14663, 1341, 4188, '2.0000', '56.9412', '56.9412', '65.0000', '65.0000', '113.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15366, '2022-10-18', 6256, 14664, 1341, NULL, '2.0000', '0.0000', '0.0000', '7.9000', '7.9000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15367, '2022-10-18', 5624, 14665, 1341, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '43.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15368, '2022-10-18', 5551, 14666, 1341, NULL, '1.0000', '0.0000', '0.0000', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15369, '2022-10-18', 5487, 14667, 1341, 3816, '3.0000', '17.1500', '17.1500', '18.9000', '18.9000', '185.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15370, '2022-10-18', 6220, 14668, 1341, 2388, '7.0000', '5.0000', '5.0000', '5.0000', '5.0000', '71.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15371, '2022-10-18', 5991, 14669, 1341, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '74.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15372, '2022-10-18', 5640, 14670, 1341, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '570.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15373, '2022-10-18', 6615, 14671, 1341, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '38.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15374, '2022-10-18', 5535, 14672, 1341, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '976.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15375, '2022-10-18', 6304, 14673, 1341, 1853, '3.0000', '13.5000', '13.5000', '13.5000', '13.5000', '74.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15376, '2022-10-18', 5926, 14674, 1341, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '215.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15377, '2022-10-18', 5948, 14675, 1341, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '186.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15378, '2022-10-18', 5949, 14676, 1341, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '260.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15379, '2022-10-18', 6399, 14677, 1341, 2019, '5.0000', '6.1000', '6.1000', '6.1000', '6.1000', '170.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15380, '2022-10-18', 5974, 14678, 1341, 4080, '2.0000', '8.4900', '8.4900', '9.5000', '9.5000', '216.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15381, '2022-10-18', 6383, 14679, 1341, 4117, '2.0000', '8.7203', '8.7203', '9.8000', '9.8000', '98.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15382, '2022-10-18', 6385, 14680, 1341, 2309, '2.0000', '7.4000', '7.4000', '7.4000', '7.4000', '81.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15383, '2022-10-18', 6225, 14681, 1341, 2356, '3.0000', '2.8000', '2.8000', '2.8000', '2.8000', '197.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15384, '2022-10-18', 5898, 14682, 1341, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '155.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15385, '2022-10-18', 6010, 14683, 1341, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '275.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15386, '2022-10-18', 6353, 14684, 1341, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15387, '2022-10-18', 5858, 14685, 1341, 4192, '1.0000', '27.3468', '27.3468', '38.0000', '38.0000', '82.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15388, '2022-10-18', 5757, 14686, 1341, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '93.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15389, '2022-10-18', 6038, 14687, 1341, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '139.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15390, '2022-10-18', 6246, 14688, 1341, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15391, '2022-10-18', 5418, 14689, 1341, 1851, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '93.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15392, '2022-10-18', 6453, 14690, 1341, 547, '1.0000', '50.6000', '50.6000', '50.6000', '50.6000', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15393, '2022-10-18', 5419, 14691, 1341, 3826, '3.0000', '16.1385', '16.1385', '18.9000', '18.9000', '57.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15394, '2022-10-18', 5754, 14692, 1342, 4060, '3.0000', '7.2000', '7.2000', '9.2000', '9.2000', '6.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15395, '2022-10-18', 6312, 14693, 1342, 1118, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15396, '2022-10-18', 6871, 14694, 1342, 3572, '1.0000', '38.3600', '38.3600', '41.1200', '41.1200', '8.0000', 1, 0, NULL, 55, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15397, '2022-10-18', 6695, 14695, 1343, 3044, '1.0000', '4.0000', '4.0000', '4.0000', '4.0000', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15544, '2022-10-18', 6825, 14838, 1344, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '799.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15543, '2022-10-18', 6555, 14837, 1344, 3736, '2.0000', '2.9700', '2.9700', '3.6000', '3.6000', '82.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15542, '2022-10-18', 6434, 14836, 1344, 1895, '2.0000', '5.2000', '5.2000', '5.2000', '5.2000', '102.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15541, '2022-10-18', 6375, 14835, 1344, 2304, '1.0000', '3.5200', '3.5200', '3.5200', '3.5200', '112.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15540, '2022-10-18', 6333, 14834, 1344, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '82.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15539, '2022-10-18', 6286, 14833, 1344, 4222, '1.0000', '10.6033', '10.6033', '11.8000', '11.8000', '59.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15538, '2022-10-18', 6225, 14832, 1344, 2356, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '195.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15537, '2022-10-18', 6219, 14831, 1344, NULL, '181.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-181.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15536, '2022-10-18', 6219, 14831, 1344, 3150, '-171.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15535, '2022-10-18', 6216, 14830, 1344, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2365.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15534, '2022-10-18', 6204, 14829, 1344, 2312, '1.0000', '15.8000', '15.8000', '17.7000', '17.7000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15533, '2022-10-18', 6074, 14828, 1344, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '559.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15532, '2022-10-18', 6007, 14827, 1344, 2391, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15531, '2022-10-18', 5988, 14826, 1344, 2033, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '64.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15530, '2022-10-18', 5986, 14825, 1344, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '62.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15529, '2022-10-18', 5976, 14824, 1344, 4105, '4.0000', '7.5312', '7.5312', '8.2000', '8.2000', '226.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15528, '2022-10-18', 5969, 14823, 1344, 2023, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '34.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15527, '2022-10-18', 5740, 14822, 1344, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '106.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15526, '2022-10-18', 5689, 14821, 1344, 1428, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '58.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15525, '2022-10-18', 5586, 14820, 1344, 3135, '1.0000', '28.9000', '28.9000', '28.9000', '28.9000', '184.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15524, '2022-10-18', 5573, 14819, 1344, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '986.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15523, '2022-10-18', 5440, 14818, 1344, 2306, '1.0000', '3.4100', '3.4100', '3.4100', '3.4100', '219.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15545, '2022-10-18', 6838, 14839, 1344, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '15.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15421, '2022-10-18', 5947, 14718, 1345, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '226.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15422, '2022-10-18', 5461, 14719, 1346, 506, '1.0000', '194.0000', '194.0000', '194.0000', '194.0000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15423, '2022-10-18', 5971, 14720, 1347, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '50.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15424, '2022-10-18', 5535, 14721, 1347, 2277, '9.0000', '3.9100', '3.9100', '3.9100', '3.9100', '967.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15425, '2022-10-18', 6271, 14722, 1348, 537, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '21.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15426, '2022-10-18', 6078, 14723, 1349, 2352, '20.0000', '42.0000', '42.0000', '42.0000', '42.0000', '520.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15427, '2022-10-18', 5926, 14724, 1350, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '210.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15428, '2022-10-18', 6445, 14725, 1350, 3581, '5.0000', '21.8000', '21.8000', '21.6000', '21.6000', '42.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15429, '2022-10-18', 5814, 14726, 1350, 1277, '5.0000', '24.0900', '24.0900', '24.0900', '24.0900', '74.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15430, '2022-10-18', 6078, 14727, 1350, 2352, '2.0000', '42.0000', '42.0000', '42.0000', '42.0000', '518.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15431, '2022-10-18', 6101, 14728, 1350, 3978, '2.0000', '28.5000', '28.5000', '28.5000', '28.5000', '3.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15432, '2022-10-18', 6210, 14729, 1350, 3050, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15433, '2022-10-18', 5439, 14730, 1350, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '106.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15434, '2022-10-18', 6234, 14731, 1350, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '45.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15435, '2022-10-18', 6538, 14732, 1350, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15436, '2022-10-18', 6895, 14733, 1350, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '76.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15437, '2022-10-18', 5949, 14734, 1350, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '255.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15438, '2022-10-18', 6074, 14735, 1350, 2303, '15.0000', '8.5000', '8.5000', '8.5000', '8.5000', '560.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15439, '2022-10-18', 5956, 14736, 1350, 4195, '2.0000', '19.9535', '19.9535', '24.0000', '24.0000', '40.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15440, '2022-10-18', 6437, 14737, 1350, 1275, '3.0000', '18.1000', '18.1000', '18.1000', '18.1000', '9.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15441, '2022-10-18', 6438, 14738, 1350, 546, '1.0000', '34.0000', '34.0000', '34.0000', '34.0000', '37.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15442, '2022-10-18', 5740, 14739, 1350, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '109.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15443, '2022-10-18', 5586, 14740, 1350, 3135, '2.0000', '28.9000', '28.9000', '28.9000', '28.9000', '184.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15444, '2022-10-18', 5629, 14741, 1350, 909, '4.0000', '8.4000', '8.4000', '8.4000', '8.4000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15445, '2022-10-18', 5629, 14741, 1350, NULL, '1.0000', '8.4000', '8.4000', '8.4000', '8.4000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15446, '2022-10-18', 5689, 14742, 1350, 1428, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '58.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15447, '2022-10-18', 6371, 14743, 1350, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15448, '2022-10-18', 5641, 14744, 1350, 3890, '2.0000', '31.1000', '31.1000', '34.2100', '34.2100', '49.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15449, '2022-10-18', 5640, 14745, 1350, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '568.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15450, '2022-10-18', 6647, 14746, 1350, 1353, '4.0000', '8.9000', '8.9000', '8.7500', '8.7500', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15451, '2022-10-18', 5854, 14747, 1350, 4191, '10.0000', '8.8462', '8.8462', '10.8000', '10.8000', '86.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15452, '2022-10-18', 6075, 14748, 1350, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1011.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15453, '2022-10-18', 6110, 14749, 1350, 1116, '1.0000', '34.1000', '34.1000', '39.5000', '39.5000', '10.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15454, '2022-10-18', 5532, 14750, 1350, 4188, '2.0000', '56.9412', '56.9412', '65.0000', '65.0000', '111.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15455, '2022-10-18', 6137, 14751, 1350, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '123.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15456, '2022-10-18', 6744, 14752, 1350, 4216, '2.0000', '10.2184', '10.2184', '12.0000', '12.0000', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15457, '2022-10-18', 6718, 14753, 1350, 1972, '2.0000', '12.9000', '12.9000', '12.9000', '12.9000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15458, '2022-10-18', 5959, 14754, 1350, 4197, '1.0000', '25.7381', '25.7381', '29.8000', '29.8000', '45.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15459, '2022-10-18', 6865, 14755, 1350, 4223, '-1.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15460, '2022-10-18', 6865, 14755, 1350, NULL, '4.0000', '3.5000', '3.5000', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15461, '2022-10-18', 6864, 14756, 1350, 3082, '2.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4624.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15462, '2022-10-18', 5799, 14757, 1350, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '32.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15463, '2022-10-18', 5947, 14758, 1351, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '225.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15468, '2022-10-18', 5749, 14763, 1352, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15467, '2022-10-18', 5725, 14762, 1352, 1301, '2.0000', '9.4000', '9.4000', '11.4000', '11.4000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15469, '2022-10-18', 6399, 14764, 1352, 2019, '5.0000', '6.1000', '6.1000', '6.1000', '6.1000', '165.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15470, '2022-10-18', 6738, 14765, 1353, 1905, '10.0000', '3.0000', '3.0000', '3.0000', '3.0000', '51.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15471, '2022-10-18', 6394, 14766, 1353, 3823, '10.0000', '5.4400', '5.4400', '6.6000', '6.6000', '226.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15472, '2022-10-18', 5847, 14767, 1353, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '312.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15473, '2022-10-18', 6316, 14768, 1354, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '56.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15474, '2022-10-18', 5740, 14769, 1354, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '106.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15475, '2022-10-18', 6298, 14770, 1354, 4209, '2.0000', '5.5742', '5.5742', '10.8000', '10.8000', '117.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15476, '2022-10-18', 6205, 14771, 1354, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '77.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15477, '2022-10-18', 6360, 14772, 1354, 3907, '6.0000', '2.5000', '2.5000', '2.8000', '2.8000', '365.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15478, '2022-10-18', 5472, 14773, 1355, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '377.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15479, '2022-10-18', 5969, 14774, 1355, 2023, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '34.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15480, '2022-10-18', 5714, 14775, 1355, 2383, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '318.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15481, '2022-10-18', 5640, 14776, 1355, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '567.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15482, '2022-10-18', 6074, 14777, 1355, 2303, '1.0000', '8.5000', '8.5000', '8.5000', '8.5000', '559.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15483, '2022-10-18', 6607, 14778, 1356, 2583, '1.0000', '16.0000', '16.0000', '17.7100', '17.7100', '45.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15484, '2022-10-18', 6606, 14779, 1356, 1352, '1.0000', '15.5300', '15.5300', '15.5300', '15.5300', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15485, '2022-10-18', 6333, 14780, 1356, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '82.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15486, '2022-10-18', 5792, 14781, 1356, 4190, '1.0000', '34.1634', '34.1634', '39.7000', '39.7000', '93.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15487, '2022-10-18', 6078, 14782, 1356, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '517.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15549, '2022-10-18', 6528, 14843, 1358, 1899, '10.0000', '5.9800', '5.9800', '7.5000', '7.5000', '205.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15550, '2022-10-18', 5553, 14844, 1358, 4142, '1.0000', '33.1388', '33.1388', '39.0000', '39.0000', '49.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15551, '2022-10-18', 6076, 14845, 1358, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1625.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15552, '2022-10-18', 6819, 14846, 1359, 4185, '-1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15553, '2022-10-18', 6819, 14846, 1359, NULL, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15554, '2022-10-18', 5640, 14847, 1359, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '565.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15555, '2022-10-18', 6148, 14848, 1359, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '8.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15556, '2022-10-18', 6380, 14849, 1359, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15557, '2022-10-18', 5451, 14850, 1359, 2387, '6.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1070.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15558, '2022-10-18', 5677, 14851, 1360, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '89.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15559, '2022-10-18', 5853, 14852, 1360, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '386.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15560, '2022-10-18', 5689, 14853, 1360, 1428, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '56.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15561, '2022-10-18', 5640, 14854, 1360, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '564.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15584, '2022-10-18', 6342, 14876, 1361, 957, '2.0000', '58.1000', '58.1000', '77.0000', '77.0000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15563, '2022-10-18', 5472, 14856, 1362, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '367.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15564, '2022-10-18', 6285, 14857, 1363, 4145, '6.0000', '9.6868', '9.6868', '10.9800', '10.9800', '78.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15565, '2022-10-18', 5589, 14858, 1363, 2370, '4.0000', '9.4000', '9.4000', '9.4000', '9.4000', '121.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15566, '2022-10-18', 6668, 14859, 1363, 1067, '4.0000', '8.9000', '8.9000', '8.9000', '8.9000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15567, '2022-10-18', 5452, 14860, 1363, 1030, '3.0000', '8.0000', '8.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15568, '2022-10-18', 5452, 14860, 1363, NULL, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15569, '2022-10-18', 6205, 14861, 1363, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '75.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15570, '2022-10-18', 6074, 14862, 1363, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '519.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15571, '2022-10-18', 5418, 14863, 1363, 1851, '12.0000', '5.5000', '5.5000', '5.5000', '5.5000', '81.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15572, '2022-10-18', 6088, 14864, 1363, 3759, '3.0000', '24.0714', '24.0714', '26.8000', '26.8000', '34.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15573, '2022-10-18', 6295, 14865, 1363, 4141, '3.0000', '36.6868', '36.6868', '39.0000', '39.0000', '94.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15574, '2022-10-18', 6843, 14866, 1363, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '25.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15575, '2022-10-18', 5799, 14867, 1363, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '29.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15576, '2022-10-18', 6380, 14868, 1364, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '7.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15577, '2022-10-18', 6007, 14869, 1364, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15578, '2022-10-18', 6820, 14870, 1365, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '420.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15579, '2022-10-18', 6838, 14871, 1365, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '14.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15580, '2022-10-18', 6590, 14872, 1366, 2281, '4.0000', '25.3000', '25.3000', '25.3000', '25.3000', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15581, '2022-10-18', 6221, 14873, 1366, 1331, '4.0000', '12.9800', '12.9800', '12.9800', '12.9800', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15582, '2022-10-18', 5710, 14874, 1366, 1300, '19.0000', '4.0200', '4.0200', '4.0200', '4.0200', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15583, '2022-10-18', 6738, 14875, 1366, 1905, '40.0000', '3.0000', '3.0000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15687, '2022-10-19', 6609, 14975, 1367, 3773, '1.0000', '11.6821', '11.6821', '12.7000', '12.7000', '124.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15686, '2022-10-19', 6517, 14974, 1367, 2254, '2.0000', '8.7000', '8.7000', '10.4500', '10.4500', '62.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15685, '2022-10-19', 6513, 14973, 1367, 578, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '17.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15684, '2022-10-19', 6394, 14972, 1367, 3823, '2.0000', '5.4400', '5.4400', '6.6000', '6.6000', '224.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15683, '2022-10-19', 6375, 14971, 1367, 2304, '2.0000', '3.5200', '3.5200', '3.5200', '3.5200', '110.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15682, '2022-10-19', 6298, 14970, 1367, 4209, '2.0000', '5.5742', '5.5742', '10.8000', '10.8000', '115.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15681, '2022-10-19', 6074, 14969, 1367, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '517.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15680, '2022-10-19', 5977, 14968, 1367, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15679, '2022-10-19', 5971, 14967, 1367, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '49.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15678, '2022-10-19', 5949, 14966, 1367, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '253.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15677, '2022-10-19', 5948, 14965, 1367, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '184.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15676, '2022-10-19', 5754, 14964, 1367, 4060, '2.0000', '7.2000', '7.2000', '9.2000', '9.2000', '4.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15675, '2022-10-19', 5714, 14963, 1367, 2383, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '315.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15674, '2022-10-19', 5689, 14962, 1367, 1428, '3.0000', '3.3000', '3.3000', '3.3000', '3.3000', '53.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15673, '2022-10-19', 5656, 14961, 1367, NULL, '5.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15672, '2022-10-19', 5656, 14961, 1367, 3433, '-4.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15691, '2022-10-19', 5740, 14979, 1367, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '103.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15664, '2022-10-19', 5898, 14953, 1368, 2350, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '154.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15665, '2022-10-19', 5677, 14954, 1368, 2351, '1.0000', '13.2000', '13.2000', '15.4000', '15.4000', '88.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15666, '2022-10-19', 5740, 14955, 1368, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '105.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15667, '2022-10-19', 6232, 14956, 1368, 4199, '1.0000', '7.4981', '7.4981', '9.9000', '9.9000', '279.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15668, '2022-10-19', 5451, 14957, 1368, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1068.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15669, '2022-10-19', 6895, 14958, 1368, 3786, '1.0000', '9.7900', '9.7900', '10.8000', '10.8000', '75.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15670, '2022-10-19', 6220, 14959, 1368, 2388, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '70.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15671, '2022-10-19', 6218, 14960, 1369, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '24.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15692, '2022-10-19', 6260, 14980, 1367, 4144, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '18.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15693, '2022-10-19', 6902, 14981, 1367, 4115, '2.0000', '5.8500', '5.8500', '6.5000', '6.5000', '52.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15694, '2022-10-19', 6221, 14982, 1367, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15695, '2022-10-19', 6496, 14983, 1367, 3758, '2.0000', '5.0500', '5.0500', '5.7000', '5.7000', '160.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15959, '2022-10-19', 6895, 15235, 1370, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '73.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15958, '2022-10-19', 6777, 15234, 1370, 4217, '1.0000', '23.2540', '23.2540', '26.5000', '26.5000', '25.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15957, '2022-10-19', 6363, 15233, 1370, 1411, '1.0000', '14.8000', '14.8000', '22.7800', '22.7800', '141.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15956, '2022-10-19', 6331, 15232, 1370, 1952, '1.0000', '1.4900', '1.4900', '1.4900', '1.4900', '74.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15955, '2022-10-19', 6260, 15231, 1370, 4144, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '16.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15954, '2022-10-19', 6256, 15230, 1370, NULL, '4.0000', '0.0000', '0.0000', '7.9000', '7.9000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15953, '2022-10-19', 6256, 15230, 1370, 4224, '-2.0000', '0.0000', '0.0000', '7.9000', '7.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15952, '2022-10-19', 6063, 15229, 1370, 1046, '1.0000', '38.5000', '38.5000', '41.3000', '41.3000', '13.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15951, '2022-10-19', 5968, 15228, 1370, 4198, '2.0000', '10.7800', '10.7800', '12.0000', '12.0000', '54.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15950, '2022-10-19', 5841, 15227, 1370, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '82.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15949, '2022-10-19', 5713, 15226, 1370, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15948, '2022-10-19', 5677, 15225, 1370, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '84.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16195, '2022-10-19', 6879, 15463, 1392, 3121, '10.0000', '3.8700', '3.8700', '5.0000', '5.0000', '319.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15709, '2022-10-19', 6117, 14996, 1371, 1320, '2.0000', '6.6000', '6.6000', '6.6000', '6.6000', '278.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15710, '2022-10-19', 6379, 14997, 1371, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '109.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15711, '2022-10-19', 6696, 14998, 1371, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '180.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15712, '2022-10-19', 5603, 14999, 1371, 3963, '1.0000', '4.4000', '4.4000', '4.4000', '4.4000', '67.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15713, '2022-10-19', 5451, 15000, 1371, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1066.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15714, '2022-10-19', 6209, 15001, 1372, 1957, '2.0000', '4.5000', '4.5000', '8.3000', '8.3000', '33.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15715, '2022-10-19', 6253, 15002, 1373, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '7.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15716, '2022-10-19', 5513, 15003, 1373, 593, '1.0000', '94.0200', '94.0200', '94.0200', '94.0200', '0.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15717, '2022-10-19', 6580, 15004, 1373, 552, '1.0000', '328.9000', '328.9000', '328.9000', '328.9000', '7.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15718, '2022-10-19', 5532, 15005, 1373, 4188, '3.0000', '56.9412', '56.9412', '65.0000', '65.0000', '108.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15719, '2022-10-19', 6590, 15006, 1373, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15720, '2022-10-19', 6496, 15007, 1373, 3758, '12.0000', '5.0500', '5.0500', '5.7000', '5.7000', '148.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15721, '2022-10-19', 6285, 15008, 1373, 4145, '4.0000', '9.6868', '9.6868', '10.9800', '10.9800', '74.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15722, '2022-10-19', 5959, 15009, 1373, 4197, '3.0000', '25.7381', '25.7381', '29.8000', '29.8000', '41.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15723, '2022-10-19', 5540, 15010, 1373, 1280, '2.0000', '22.0000', '22.0000', '33.0000', '33.0000', '43.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15724, '2022-10-19', 6338, 15011, 1373, NULL, '2.0000', '0.0000', '0.0000', '53.5000', '53.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15725, '2022-10-19', 6148, 15012, 1373, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '7.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15726, '2022-10-19', 6153, 15013, 1373, 3400, '1.0000', '77.0000', '77.0000', '77.0000', '77.0000', '7.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15727, '2022-10-19', 6216, 15014, 1374, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2315.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15728, '2022-10-19', 6513, 15015, 1375, 578, '3.0000', '14.0000', '14.0000', '14.0000', '14.0000', '14.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15729, '2022-10-19', 6753, 15016, 1375, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '152.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15730, '2022-10-19', 6359, 15017, 1375, 4069, '10.0000', '1.7604', '1.7604', '2.5000', '2.5000', '139.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15731, '2022-10-19', 5553, 15018, 1375, 4142, '1.0000', '33.1388', '33.1388', '39.0000', '39.0000', '48.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15732, '2022-10-19', 5610, 15019, 1375, NULL, '2.0000', '0.0000', '0.0000', '60.5000', '60.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15763, '2022-10-04', 6312, 15046, 1376, 1118, '2.0000', '7.5000', '7.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15762, '2022-10-04', 6197, 15045, 1376, NULL, '5.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15761, '2022-10-04', 6197, 15045, 1376, 3630, '-4.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15760, '2022-10-04', 6125, 15044, 1376, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15759, '2022-10-04', 6076, 15043, 1376, 3024, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1622.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15758, '2022-10-04', 6075, 15042, 1376, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1008.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15757, '2022-10-04', 6053, 15041, 1376, NULL, '3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15756, '2022-10-04', 6053, 15041, 1376, 4131, '-1.0000', '14.9000', '14.9000', '16.3700', '16.3700', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15755, '2022-10-04', 5977, 15040, 1376, 2360, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15754, '2022-10-04', 5975, 15039, 1376, 523, '3.0000', '9.1500', '9.1500', '12.2100', '12.2100', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15753, '2022-10-04', 5969, 15038, 1376, 2023, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '32.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15752, '2022-10-04', 5926, 15037, 1376, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '207.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15751, '2022-10-04', 5898, 15036, 1376, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '152.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15750, '2022-10-04', 5881, 15035, 1376, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '53.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15749, '2022-10-04', 5601, 15034, 1376, 3035, '3.0000', '4.2917', '4.2917', '5.9500', '5.9500', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15764, '2022-10-04', 6383, 15047, 1376, 4117, '2.0000', '8.7203', '8.7203', '8.2000', '8.2000', '93.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15765, '2022-10-19', 6338, 15048, 1377, 4228, '-2.0000', '0.0000', '0.0000', '53.5000', '53.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15766, '2022-10-19', 6338, 15048, 1377, NULL, '5.0000', '0.0000', '0.0000', '53.5000', '53.5000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15767, '2022-10-19', 6677, 15049, 1377, 1274, '10.0000', '10.0000', '10.0000', '10.0000', '10.0000', '244.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15768, '2022-10-19', 6441, 15050, 1377, 3803, '1.0000', '207.6800', '207.6800', '230.8000', '230.8000', '7.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15769, '2022-10-19', 6664, 15051, 1378, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '801.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15770, '2022-10-19', 5600, 15052, 1379, 3051, '3.0000', '2.6233', '2.6233', '3.6000', '3.6000', '865.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15771, '2022-10-19', 5459, 15053, 1379, 1377, '3.0000', '5.9000', '5.9000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15772, '2022-10-19', 6902, 15054, 1379, 4115, '3.0000', '5.8500', '5.8500', '6.5000', '6.5000', '49.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15773, '2022-10-19', 5969, 15055, 1379, 2023, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '29.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15774, '2022-10-19', 6417, 15056, 1379, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '40.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15775, '2022-10-19', 6205, 15057, 1379, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '74.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15776, '2022-10-19', 6663, 15058, 1379, 2328, '4.0000', '2.5000', '2.5000', '2.5000', '2.5000', '112.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15777, '2022-10-19', 5892, 15059, 1379, 4062, '2.0000', '8.5642', '8.5642', '11.7000', '11.7000', '4.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15778, '2022-10-19', 6353, 15060, 1379, 1920, '10.0000', '3.7500', '3.7500', '3.7500', '3.7500', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15779, '2022-10-19', 6755, 15061, 1379, 4116, '3.0000', '5.8525', '5.8525', '6.5000', '6.5000', '170.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15780, '2022-10-19', 6511, 15062, 1379, 3409, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '42.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15781, '2022-10-19', 6202, 15063, 1379, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '356.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15782, '2022-10-19', 6136, 15064, 1379, 1324, '6.0000', '3.8000', '3.8000', '3.8000', '3.8000', '57.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15783, '2022-10-19', 5640, 15065, 1379, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '560.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15784, '2022-10-19', 6075, 15066, 1379, 3025, '3.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1005.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15785, '2022-10-19', 6020, 15067, 1379, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15786, '2022-10-19', 5976, 15068, 1379, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '224.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15787, '2022-10-19', 6162, 15069, 1379, 3656, '3.0000', '6.6000', '6.6000', '7.3000', '7.3000', '86.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15788, '2022-10-19', 5714, 15070, 1379, 2383, '6.0000', '3.3000', '3.3000', '3.3000', '3.3000', '309.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15789, '2022-10-19', 5532, 15071, 1380, 4188, '1.0000', '56.9412', '56.9412', '65.0000', '65.0000', '107.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15790, '2022-10-19', 5640, 15072, 1380, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '558.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15791, '2022-10-19', 6202, 15073, 1380, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '354.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15792, '2022-10-19', 6378, 15074, 1380, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '52.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15793, '2022-10-19', 6744, 15075, 1380, 4216, '2.0000', '10.2184', '10.2184', '12.0000', '12.0000', '54.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15870, '2022-10-19', 6902, 15150, 1381, 4115, '5.0000', '5.8500', '5.8500', '6.5000', '6.5000', '44.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15869, '2022-10-19', 6880, 15149, 1381, 3128, '1.0000', '13.5000', '13.5000', '15.0000', '15.0000', '386.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15868, '2022-10-19', 6860, 15148, 1381, 3738, '3.0000', '15.4923', '15.4923', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15867, '2022-10-19', 6744, 15147, 1381, 4216, '3.0000', '10.2184', '10.2184', '12.0000', '12.0000', '49.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15866, '2022-10-19', 6665, 15146, 1381, 4123, '1.0000', '9.5000', '9.5000', '11.0000', '11.0000', '98.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15865, '2022-10-19', 6663, 15145, 1381, 2328, '3.0000', '2.5000', '2.5000', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15864, '2022-10-19', 6617, 15144, 1381, 557, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '21.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15863, '2022-10-19', 6509, 15143, 1381, 2077, '2.0000', '13.2500', '13.2500', '13.2500', '13.2500', '94.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15862, '2022-10-19', 6434, 15142, 1381, 1895, '3.0000', '5.2000', '5.2000', '5.2000', '5.2000', '99.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15861, '2022-10-19', 6356, 15141, 1381, NULL, '21.0000', '7.2000', '7.2000', '7.2000', '7.2000', '-21.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15860, '2022-10-19', 6356, 15141, 1381, 3555, '-18.0000', '7.2000', '7.2000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15859, '2022-10-19', 6332, 15140, 1381, 1341, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15858, '2022-10-19', 6295, 15139, 1381, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '93.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15857, '2022-10-19', 6258, 15138, 1381, 4202, '3.0000', '9.3060', '9.3060', '10.9000', '10.9000', '86.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15856, '2022-10-19', 6234, 15137, 1381, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '44.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15855, '2022-10-19', 6143, 15136, 1381, 1121, '1.0000', '11.2000', '11.2000', '11.2000', '11.2000', '41.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15854, '2022-10-19', 6142, 15135, 1381, NULL, '1.0000', '9.3000', '9.3000', '9.3000', '9.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15853, '2022-10-19', 6141, 15134, 1381, 1166, '1.0000', '15.9500', '15.9500', '15.9500', '15.9500', '18.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15852, '2022-10-19', 6078, 15133, 1381, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '516.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15851, '2022-10-19', 5989, 15132, 1381, 4083, '1.0000', '27.8449', '27.8449', '29.6000', '29.6000', '25.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15850, '2022-10-19', 5986, 15131, 1381, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '61.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15849, '2022-10-19', 5985, 15130, 1381, 3056, '1.0000', '12.2000', '12.2000', '12.2000', '12.2000', '51.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15848, '2022-10-19', 5983, 15129, 1381, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '134.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15847, '2022-10-19', 5959, 15128, 1381, 4197, '1.0000', '25.7381', '25.7381', '29.8000', '29.8000', '40.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15846, '2022-10-19', 5949, 15127, 1381, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '243.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15845, '2022-10-19', 5948, 15126, 1381, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '174.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15844, '2022-10-19', 5826, 15125, 1381, 921, '4.0000', '7.0000', '7.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15843, '2022-10-19', 5792, 15124, 1381, 4190, '1.0000', '34.1634', '34.1634', '39.7000', '39.7000', '92.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15842, '2022-10-19', 5585, 15123, 1381, 3962, '1.0000', '23.4000', '23.4000', '23.4000', '23.4000', '21.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15841, '2022-10-19', 5535, 15122, 1381, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '957.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15840, '2022-10-19', 5487, 15121, 1381, 3816, '3.0000', '17.1500', '17.1500', '18.9000', '18.9000', '182.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15839, '2022-10-19', 5472, 15120, 1381, 3903, '4.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '363.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15838, '2022-10-19', 5439, 15119, 1381, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '105.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15910, '2022-10-19', 6666, 15188, 1385, 2259, '4.0000', '50.0000', '50.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15828, '2022-10-19', 6664, 15109, 1382, 4122, '10.0000', '0.6197', '0.6197', '1.6000', '1.6000', '791.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15829, '2022-10-19', 5926, 15110, 1382, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '205.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15830, '2022-10-19', 5828, 15111, 1382, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '68.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15831, '2022-10-19', 6165, 15112, 1382, 3659, '1.0000', '5.8901', '5.8901', '6.5000', '6.5000', '83.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15832, '2022-10-19', 6358, 15113, 1382, 3906, '3.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4042.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15833, '2022-10-19', 6901, 15114, 1382, 4108, '3.0000', '4.0100', '4.0100', '4.5000', '4.5000', '107.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15834, '2022-10-19', 5847, 15115, 1382, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '311.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15835, '2022-10-19', 6744, 15116, 1382, 4216, '2.0000', '10.2184', '10.2184', '12.0000', '12.0000', '49.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15836, '2022-10-19', 6218, 15117, 1383, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '23.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15837, '2022-10-19', 6608, 15118, 1384, 3774, '3.0000', '12.9538', '12.9538', '14.3000', '14.3000', '130.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15909, '2022-10-19', 5897, 15187, 1385, 1290, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '12.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15908, '2022-10-19', 5796, 15186, 1385, 2371, '19.0000', '4.4800', '4.4800', '4.4800', '4.4800', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16024, '2022-10-19', 6907, 15299, 1389, NULL, '5.0000', '9.0000', '9.0000', '10.2000', '10.2000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15875, '2022-10-19', 5713, 15154, 1386, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15906, '2022-10-19', 6559, 15184, 1387, 984, '1.0000', '66.2000', '66.2000', '87.8000', '87.8000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15905, '2022-10-19', 6538, 15183, 1387, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15904, '2022-10-19', 6445, 15182, 1387, 3581, '1.0000', '21.8000', '21.8000', '21.6000', '21.6000', '41.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15903, '2022-10-19', 6339, 15181, 1387, 954, '1.0000', '60.3000', '60.3000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15902, '2022-10-19', 6328, 15180, 1387, 3817, '1.0000', '24.4100', '24.4100', '26.9000', '26.9000', '42.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15901, '2022-10-19', 6078, 15179, 1387, 2352, '2.0000', '42.0000', '42.0000', '55.0000', '55.0000', '514.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15900, '2022-10-19', 6076, 15178, 1387, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1610.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15899, '2022-10-19', 6075, 15177, 1387, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '993.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15898, '2022-10-19', 5926, 15176, 1387, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '202.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15897, '2022-10-19', 5589, 15175, 1387, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '119.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15896, '2022-10-19', 5587, 15174, 1387, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '174.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15907, '2022-10-19', 6664, 15185, 1387, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '766.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15888, '2022-10-19', 5553, 15167, 1388, 4142, '5.0000', '33.1388', '33.1388', '39.0000', '39.0000', '43.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15889, '2022-10-19', 5650, 15168, 1388, 1438, '12.0000', '7.9000', '7.9000', '7.9000', '7.9000', '4.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15890, '2022-10-19', 5799, 15169, 1388, 2066, '10.0000', '20.1300', '20.1300', '27.2600', '27.2600', '19.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15891, '2022-10-19', 5983, 15170, 1388, 2333, '5.0000', '5.9000', '5.9000', '5.9000', '5.9000', '129.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15892, '2022-10-19', 6205, 15171, 1388, 3026, '3.0000', '38.5000', '38.5000', '50.5000', '50.5000', '71.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15893, '2022-10-19', 6220, 15172, 1388, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '60.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15894, '2022-10-19', 6860, 15173, 1388, 3738, '8.0000', '15.4923', '15.4923', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15895, '2022-10-19', 6860, 15173, 1388, 1977, '16.0000', '15.4923', '15.4923', '18.5000', '18.5000', '66.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16023, '2022-10-19', 6860, 15298, 1389, 1977, '2.0000', '15.4923', '15.4923', '18.5000', '18.5000', '40.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16022, '2022-10-19', 6812, 15297, 1389, 4218, '1.0000', '26.3790', '26.3790', '34.8000', '34.8000', '17.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16021, '2022-10-19', 6765, 15296, 1389, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16020, '2022-10-19', 6744, 15295, 1389, 4216, '3.0000', '10.2184', '10.2184', '12.0000', '12.0000', '41.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16019, '2022-10-19', 6667, 15294, 1389, 3835, '1.0000', '2.7159', '2.7159', '3.0000', '3.0000', '1025.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16018, '2022-10-19', 6626, 15293, 1389, 1476, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '5.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16017, '2022-10-19', 6510, 15292, 1389, 1378, '9.0000', '3.5000', '3.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16016, '2022-10-19', 6510, 15292, 1389, 2079, '1.0000', '3.5000', '3.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16015, '2022-10-19', 6478, 15291, 1389, NULL, '4.0000', '7.2000', '7.2000', '9.7200', '9.7200', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16014, '2022-10-19', 6456, 15290, 1389, 1896, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16013, '2022-10-19', 6449, 15289, 1389, 1942, '2.0000', '25.5000', '25.5000', '25.5000', '25.5000', '19.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16012, '2022-10-19', 6408, 15288, 1389, 1986, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '169.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16011, '2022-10-19', 6297, 15287, 1389, 4208, '4.0000', '9.8672', '9.8672', '10.4000', '10.4000', '51.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16010, '2022-10-19', 6273, 15286, 1389, 3033, '3.0000', '26.0000', '26.0000', '27.5000', '27.5000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16009, '2022-10-19', 6222, 15285, 1389, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16008, '2022-10-19', 6164, 15284, 1389, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '54.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16007, '2022-10-19', 6136, 15283, 1389, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16006, '2022-10-19', 6074, 15282, 1389, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '477.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16005, '2022-10-19', 6046, 15281, 1389, 3569, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '62.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16004, '2022-10-19', 6020, 15280, 1389, 2302, '1.0000', '16.1378', '16.1378', '20.9000', '20.9000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16003, '2022-10-19', 5955, 15279, 1389, 4194, '2.0000', '20.0648', '20.0648', '25.9000', '25.9000', '28.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16002, '2022-10-19', 5926, 15278, 1389, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '172.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16001, '2022-10-19', 5858, 15277, 1389, 4192, '1.0000', '27.3468', '27.3468', '38.0000', '38.0000', '81.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16000, '2022-10-19', 5827, 15276, 1389, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '69.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15999, '2022-10-19', 5730, 15275, 1389, 3966, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '72.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15998, '2022-10-19', 5634, 15274, 1389, 392, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '31.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15997, '2022-10-19', 5633, 15273, 1389, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15996, '2022-10-19', 5553, 15272, 1389, 4142, '3.0000', '33.1388', '33.1388', '39.0000', '39.0000', '40.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15995, '2022-10-19', 5487, 15271, 1389, 3816, '6.0000', '17.1500', '17.1500', '18.9000', '18.9000', '176.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16025, '2022-10-19', 5977, 15300, 1393, 1124, '6.0000', '7.5000', '7.5000', '7.8000', '7.8000', '26.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15942, '2022-10-19', 6043, 15219, 1390, 1434, '22.0000', '5.4000', '5.4000', '5.4000', '5.4000', '1.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15947, '2022-10-19', 6374, 15224, 1391, 3614, '48.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3927.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (15946, '2022-10-19', 5775, 15223, 1391, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '53.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16194, '2022-10-19', 6860, 15462, 1392, 1977, '24.0000', '15.4923', '15.4923', '18.5000', '18.5000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16193, '2022-10-19', 6744, 15461, 1392, 4216, '5.0000', '10.2184', '10.2184', '12.0000', '12.0000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16192, '2022-10-19', 6670, 15460, 1392, 1463, '6.0000', '9.5000', '9.5000', '9.5000', '9.5000', '32.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16191, '2022-10-19', 6626, 15459, 1392, 1476, '2.0000', '99.3000', '99.3000', '99.3000', '99.3000', '5.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16190, '2022-10-19', 6548, 15458, 1392, 4214, '10.0000', '8.8200', '8.8200', '9.8000', '9.8000', '49.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16189, '2022-10-19', 6496, 15457, 1392, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '138.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16188, '2022-10-19', 6490, 15456, 1392, 2109, '10.0000', '30.0000', '30.0000', '30.0000', '30.0000', '10.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16187, '2022-10-19', 6453, 15455, 1392, 547, '2.0000', '50.6000', '50.6000', '50.6000', '50.6000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16186, '2022-10-19', 6427, 15454, 1392, 1475, '3.0000', '17.5000', '17.5000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16185, '2022-10-19', 6400, 15453, 1392, 4211, '2.0000', '41.4000', '41.4000', '46.0000', '46.0000', '26.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16184, '2022-10-19', 6365, 15452, 1392, 2038, '10.0000', '30.0000', '30.0000', '30.0000', '30.0000', '102.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16183, '2022-10-19', 6354, 15451, 1392, 2344, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '495.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16182, '2022-10-19', 6334, 15450, 1392, 3545, '1.0000', '14.5422', '14.5422', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16181, '2022-10-19', 6301, 15449, 1392, 4292, '5.0000', '11.1902', '11.1902', '10.5000', '10.5000', '145.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16180, '2022-10-19', 6225, 15448, 1392, 2356, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '185.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16179, '2022-10-19', 6214, 15447, 1392, 750, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '121.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16178, '2022-10-19', 6205, 15446, 1392, 3026, '3.0000', '38.5000', '38.5000', '50.5000', '50.5000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16177, '2022-10-19', 6153, 15445, 1392, 3400, '2.0000', '77.0000', '77.0000', '77.0000', '77.0000', '5.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16176, '2022-10-19', 6145, 15444, 1392, 664, '6.0000', '4.5000', '4.5000', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16175, '2022-10-19', 6121, 15443, 1392, 1907, '2.0000', '25.5000', '25.5000', '29.2000', '29.2000', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16174, '2022-10-19', 6098, 15442, 1392, 3081, '20.0000', '5.6000', '5.6000', '5.6000', '5.6000', '842.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16173, '2022-10-19', 5985, 15441, 1392, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '49.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16172, '2022-10-19', 5967, 15440, 1392, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2421.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16171, '2022-10-19', 5949, 15439, 1392, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '233.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16170, '2022-10-19', 5948, 15438, 1392, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '164.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16169, '2022-10-19', 5926, 15437, 1392, 1970, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '142.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16168, '2022-10-19', 5853, 15436, 1392, 3620, '10.0000', '8.8287', '8.8287', '10.5000', '10.5000', '376.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16167, '2022-10-19', 5770, 15435, 1392, 1159, '6.0000', '4.0000', '4.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16166, '2022-10-19', 5677, 15434, 1392, 2351, '10.0000', '13.2000', '13.2000', '15.4000', '15.4000', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16165, '2022-10-19', 5642, 15433, 1392, 3888, '2.0000', '24.4300', '24.4300', '26.9000', '26.9000', '57.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16164, '2022-10-19', 5585, 15432, 1392, 3962, '5.0000', '23.4000', '23.4000', '23.4000', '23.4000', '16.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16163, '2022-10-19', 5453, 15431, 1392, 3652, '10.0000', '8.3000', '8.3000', '9.2000', '9.2000', '82.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16162, '2022-10-19', 5418, 15430, 1392, 1851, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '71.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16300, '2022-10-20', 6376, 15566, 1408, 2364, '10.0000', '1.6000', '1.6000', '1.6000', '1.6000', '2004.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16026, '2022-10-19', 5451, 15301, 1394, 2387, '10.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1056.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16027, '2022-10-19', 6057, 15302, 1394, 1045, '1.0000', '33.2100', '33.2100', '41.5000', '41.5000', '77.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16028, '2022-10-19', 6031, 15303, 1394, 3973, '1.0000', '17.8200', '17.8200', '26.7000', '26.7000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16029, '2022-10-19', 6164, 15304, 1394, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '52.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16030, '2022-10-19', 6152, 15305, 1394, 1883, '10.0000', '1.2000', '1.2000', '1.3000', '1.3000', '889.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16031, '2022-10-19', 6610, 15306, 1394, 2271, '1.0000', '70.0000', '70.0000', '81.5000', '81.5000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16032, '2022-10-19', 5472, 15307, 1394, 3903, '4.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '359.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16033, '2022-10-19', 6834, 15308, 1394, 2034, '2.0000', '5.3000', '5.3000', '5.3000', '5.3000', '71.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16034, '2022-10-19', 5624, 15309, 1395, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '41.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16035, '2022-10-19', 6178, 15310, 1395, 3060, '10.0000', '1.6000', '1.6000', '2.2000', '2.2000', '541.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16036, '2022-10-19', 5451, 15311, 1395, 2387, '8.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1048.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16037, '2022-10-19', 6609, 15312, 1395, 3773, '2.0000', '11.6821', '11.6821', '12.7000', '12.7000', '122.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16038, '2022-10-19', 6608, 15313, 1395, 3774, '2.0000', '12.9538', '12.9538', '14.3000', '14.3000', '128.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16039, '2022-10-19', 5968, 15314, 1395, 4198, '4.0000', '10.7800', '10.7800', '12.0000', '12.0000', '50.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16040, '2022-10-19', 6744, 15315, 1395, 4216, '2.0000', '10.2184', '10.2184', '12.0000', '12.0000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16041, '2022-10-19', 6105, 15316, 1395, 3818, '3.0000', '10.8856', '10.8856', '12.0000', '12.0000', '195.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16042, '2022-10-19', 5967, 15317, 1395, 3132, '5.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2421.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16043, '2022-10-19', 6455, 15318, 1396, 3047, '1.0000', '19.5800', '19.5800', '19.7300', '19.7300', '28.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16044, '2022-10-19', 5886, 15319, 1396, 927, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '119.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16045, '2022-10-19', 5473, 15320, 1396, 3904, '4.0000', '4.5000', '4.5000', '5.0000', '5.0000', '463.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16259, '2022-10-19', 6708, 15525, 1397, 1358, '10.0000', '6.0000', '6.0000', '6.0000', '6.0000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16258, '2022-10-19', 6667, 15524, 1397, 3835, '25.0000', '2.7159', '2.7159', '3.0000', '3.0000', '995.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16257, '2022-10-19', 6581, 15523, 1397, 3805, '10.0000', '10.3500', '10.3500', '11.5000', '11.5000', '30.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16256, '2022-10-19', 6538, 15522, 1397, 3074, '6.0000', '10.3000', '10.3000', '10.3000', '10.3000', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16255, '2022-10-19', 6535, 15521, 1397, 4221, '10.0000', '3.3184', '3.3184', '3.8000', '3.8000', '38.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16254, '2022-10-19', 6514, 15520, 1397, 1897, '5.0000', '6.6000', '6.6000', '9.3100', '9.3100', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16253, '2022-10-19', 6457, 15519, 1397, 4213, '6.0000', '41.4000', '41.4000', '46.5000', '46.5000', '64.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16252, '2022-10-19', 6454, 15518, 1397, 4212, '6.0000', '1.9038', '1.9038', '4.3000', '4.3000', '112.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16251, '2022-10-19', 6421, 15517, 1397, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '56.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16250, '2022-10-19', 6418, 15516, 1397, 2580, '10.0000', '6.3300', '6.3300', '6.3800', '6.3800', '573.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16249, '2022-10-19', 6386, 15515, 1397, 4113, '20.0000', '3.5873', '3.5873', '4.2000', '4.2000', '1565.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16248, '2022-10-19', 6379, 15514, 1397, 3421, '10.0000', '8.7056', '8.7056', '2.1000', '2.1000', '99.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16247, '2022-10-19', 6353, 15513, 1397, 1920, '8.0000', '3.7500', '3.7500', '3.7500', '3.7500', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16246, '2022-10-19', 6344, 15512, 1397, 4260, '2.0000', '257.9900', '257.9900', '292.4000', '292.4000', '12.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16245, '2022-10-19', 6338, 15511, 1397, 4257, '3.0000', '79.7291', '79.7291', '53.5000', '53.5000', '47.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16244, '2022-10-19', 6337, 15510, 1397, 4256, '5.0000', '49.5359', '49.5359', '56.2000', '56.2000', '120.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16243, '2022-10-19', 6316, 15509, 1397, 3757, '3.0000', '54.8358', '54.8358', '74.0000', '74.0000', '53.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16242, '2022-10-19', 6250, 15508, 1397, 4220, '10.0000', '6.0000', '6.0000', '5.5000', '5.5000', '69.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16241, '2022-10-19', 6242, 15507, 1397, 3588, '6.0000', '58.3529', '58.3529', '66.5300', '66.5300', '52.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16240, '2022-10-19', 6232, 15506, 1397, 4278, '10.0000', '7.8356', '7.8356', '9.9000', '9.9000', '110.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16239, '2022-10-19', 6221, 15505, 1397, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16238, '2022-10-19', 6220, 15504, 1397, 2388, '10.0000', '5.0000', '5.0000', '5.0000', '5.0000', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16237, '2022-10-19', 6213, 15503, 1397, 3049, '6.0000', '6.6500', '6.6500', '9.3000', '9.3000', '126.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16236, '2022-10-19', 6207, 15502, 1397, 2375, '1.0000', '38.5000', '38.5000', '38.5000', '38.5000', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16235, '2022-10-19', 6188, 15501, 1397, 3080, '5.0000', '7.0000', '7.0000', '9.8000', '9.8000', '22.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16234, '2022-10-19', 6180, 15500, 1397, 1861, '5.0000', '12.2000', '12.2000', '17.1500', '17.1500', '74.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16233, '2022-10-19', 6115, 15499, 1397, 1156, '6.0000', '7.1000', '7.1000', '7.1000', '7.1000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16232, '2022-10-19', 6095, 15498, 1397, 3893, '20.0000', '8.3200', '8.3200', '9.2000', '9.2000', '359.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16231, '2022-10-19', 6076, 15497, 1397, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1581.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16230, '2022-10-19', 6075, 15496, 1397, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '964.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16229, '2022-10-19', 6074, 15495, 1397, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '457.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16228, '2022-10-19', 5986, 15494, 1397, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '59.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16227, '2022-10-19', 5980, 15493, 1397, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '84.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16226, '2022-10-19', 5975, 15492, 1397, 523, '5.0000', '9.1500', '9.1500', '12.2100', '12.2100', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16225, '2022-10-19', 5958, 15491, 1397, 4196, '6.0000', '15.6532', '15.6532', '21.7000', '21.7000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16224, '2022-10-19', 5956, 15490, 1397, 4195, '6.0000', '19.9535', '19.9535', '24.0000', '24.0000', '34.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16223, '2022-10-19', 5926, 15489, 1397, 1970, '30.0000', '10.9000', '10.9000', '10.9000', '10.9000', '142.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16222, '2022-10-19', 5911, 15488, 1397, NULL, '21.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-21.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16221, '2022-10-19', 5911, 15488, 1397, 2516, '-18.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16220, '2022-10-19', 5848, 15487, 1397, 2369, '3.0000', '8.2800', '8.2800', '8.2800', '8.2800', '28.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16219, '2022-10-19', 5830, 15486, 1397, 4254, '2.0000', '117.4500', '117.4500', '143.3000', '143.3000', '24.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16218, '2022-10-19', 5814, 15485, 1397, 1277, '3.0000', '24.0900', '24.0900', '24.0900', '24.0900', '71.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16217, '2022-10-19', 5795, 15484, 1397, 586, '3.0000', '35.3000', '35.3000', '35.0000', '35.0000', '38.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16216, '2022-10-19', 5775, 15483, 1397, 2376, '2.0000', '22.1000', '22.1000', '22.1000', '22.1000', '51.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16215, '2022-10-19', 5740, 15482, 1397, 2274, '20.0000', '15.5000', '15.5000', '15.5000', '15.5000', '80.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16214, '2022-10-19', 5724, 15481, 1397, 4277, '6.0000', '19.4643', '19.4643', '16.7000', '16.7000', '78.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16213, '2022-10-19', 5656, 15480, 1397, NULL, '12.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16212, '2022-10-19', 5656, 15480, 1397, 3433, '-6.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16211, '2022-10-19', 5640, 15479, 1397, 3897, '10.0000', '11.1000', '11.1000', '12.3000', '12.3000', '548.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16210, '2022-10-19', 5610, 15478, 1397, 4253, '5.0000', '29.2166', '29.2166', '60.5000', '60.5000', '38.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16209, '2022-10-19', 5589, 15477, 1397, 2370, '6.0000', '9.4000', '9.4000', '9.4000', '9.4000', '113.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16208, '2022-10-19', 5576, 15476, 1397, 1108, '6.0000', '8.7000', '8.7000', '8.7000', '8.7000', '36.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16207, '2022-10-19', 5535, 15475, 1397, 2277, '30.0000', '3.9100', '3.9100', '3.9100', '3.9100', '921.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16206, '2022-10-19', 5440, 15474, 1397, 2306, '6.0000', '3.4100', '3.4100', '3.4100', '3.4100', '213.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16205, '2022-10-19', 5427, 15473, 1397, 2365, '6.0000', '13.2000', '13.2000', '13.2000', '13.2000', '94.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16260, '2022-10-19', 6812, 15526, 1397, 4218, '3.0000', '26.3790', '26.3790', '34.8000', '34.8000', '14.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16102, '2022-10-19', 5677, 15375, 1398, 2351, '10.0000', '13.2000', '13.2000', '15.4000', '15.4000', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16103, '2022-10-19', 5724, 15376, 1398, 4252, '-6.0000', '0.0000', '0.0000', '16.7000', '16.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16104, '2022-10-19', 5724, 15376, 1398, NULL, '16.0000', '0.0000', '0.0000', '16.7000', '16.7000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16105, '2022-10-19', 5911, 15377, 1398, 2516, '-17.0000', '28.8750', '28.8750', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16106, '2022-10-19', 5911, 15377, 1398, NULL, '21.0000', '28.8750', '28.8750', '26.0000', '26.0000', '-21.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16107, '2022-10-19', 6010, 15378, 1398, 3621, '5.0000', '15.4888', '15.4888', '16.5000', '16.5000', '270.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16108, '2022-10-19', 6896, 15379, 1398, 3807, '10.0000', '28.8100', '28.8100', '32.1000', '32.1000', '49.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16109, '2022-10-19', 5847, 15380, 1398, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '301.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16110, '2022-10-19', 5799, 15381, 1399, 2066, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '16.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16111, '2022-10-19', 6327, 15382, 1399, 4010, '-12.0000', '28.6000', '28.6000', '33.7000', '33.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16112, '2022-10-19', 6327, 15382, 1399, NULL, '15.0000', '28.6000', '28.6000', '33.7000', '33.7000', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16113, '2022-10-19', 6609, 15383, 1399, 3773, '4.0000', '11.6821', '11.6821', '15.0700', '15.0700', '118.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16114, '2022-10-19', 5654, 15384, 1399, 3062, '10.0000', '2.0000', '2.0000', '2.7000', '2.7000', '56.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16115, '2022-10-19', 6202, 15385, 1400, 3985, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '353.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16116, '2022-10-20', 6216, 15386, 1401, 3617, '20.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2295.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16117, '2022-10-20', 5958, 15387, 1401, 4196, '2.0000', '15.6532', '15.6532', '21.7000', '21.7000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16118, '2022-10-20', 6205, 15388, 1401, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '66.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16119, '2022-10-20', 5827, 15389, 1401, 3651, '6.0000', '5.9947', '5.9947', '6.6000', '6.6000', '63.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16120, '2022-10-20', 5768, 15390, 1401, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '185.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16121, '2022-10-20', 6218, 15391, 1402, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '22.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16122, '2022-10-20', 5947, 15392, 1402, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '224.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16123, '2022-10-20', 5472, 15393, 1402, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '349.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16124, '2022-10-20', 6250, 15394, 1402, 4220, '1.0000', '6.0000', '6.0000', '5.5000', '5.5000', '69.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16125, '2022-10-20', 5915, 15395, 1403, 1040, '1.0000', '127.0000', '127.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16126, '2022-10-20', 5892, 15396, 1403, 4062, '2.0000', '8.5642', '8.5642', '11.7000', '11.7000', '2.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16127, '2022-10-20', 5656, 15397, 1403, 3433, '-11.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16128, '2022-10-20', 5656, 15397, 1403, NULL, '12.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16129, '2022-10-20', 6667, 15398, 1403, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '995.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16130, '2022-10-20', 5970, 15399, 1403, 931, '2.0000', '9.1500', '9.1500', '12.8500', '12.8500', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16131, '2022-10-20', 5975, 15400, 1403, 523, '2.0000', '9.1500', '9.1500', '12.2100', '12.2100', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16132, '2022-10-20', 6652, 15401, 1403, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16133, '2022-10-20', 5749, 15402, 1403, 1302, '3.0000', '8.1400', '8.1400', '8.1400', '8.1400', '63.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16134, '2022-10-20', 5886, 15403, 1403, 927, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '117.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16135, '2022-10-20', 6003, 15404, 1403, 2321, '2.0000', '6.7000', '6.7000', '9.1000', '9.1000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16136, '2022-10-20', 6297, 15405, 1403, 4208, '3.0000', '9.8672', '9.8672', '10.4000', '10.4000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16137, '2022-10-20', 5535, 15406, 1403, 2277, '1.0000', '3.9100', '3.9100', '3.9100', '3.9100', '926.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16138, '2022-10-20', 5451, 15407, 1403, 2387, '8.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1040.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16139, '2022-10-20', 5740, 15408, 1403, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '80.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16140, '2022-10-20', 5731, 15409, 1403, 4291, '2.0000', '18.9100', '18.9100', '17.2000', '17.2000', '1191.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16141, '2022-10-20', 6396, 15410, 1403, 4210, '2.0000', '14.4657', '14.4657', '17.2000', '17.2000', '58.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16142, '2022-10-20', 5983, 15411, 1403, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '128.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16143, '2022-10-20', 5631, 15412, 1403, 1992, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '95.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16144, '2022-10-20', 5632, 15413, 1403, 1991, '1.0000', '8.0000', '8.0000', '8.0000', '8.0000', '102.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16145, '2022-10-20', 5472, 15414, 1403, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '347.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16146, '2022-10-20', 6374, 15415, 1403, 3614, '20.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3907.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16147, '2022-10-20', 5641, 15416, 1403, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '47.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16148, '2022-10-20', 5992, 15417, 1403, 3560, '-14.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16149, '2022-10-20', 5992, 15417, 1403, NULL, '16.0000', '7.0000', '7.0000', '9.5000', '9.5000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16150, '2022-10-20', 6417, 15418, 1403, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '39.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16151, '2022-10-20', 5982, 15419, 1404, 4106, '1.0000', '9.4113', '9.4113', '11.1000', '11.1000', '291.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16152, '2022-10-20', 5988, 15420, 1404, 2033, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '63.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16153, '2022-10-20', 5847, 15421, 1405, 3136, '20.0000', '3.1651', '3.1651', '7.5000', '7.5000', '281.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16154, '2022-10-20', 5472, 15422, 1405, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '337.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16155, '2022-10-20', 5689, 15423, 1405, 1428, '6.0000', '3.3000', '3.3000', '3.3000', '3.3000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16156, '2022-10-20', 6125, 15424, 1405, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '127.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16157, '2022-10-20', 6394, 15425, 1406, 3823, '3.0000', '5.4400', '5.4400', '6.6000', '6.6000', '221.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16158, '2022-10-20', 6075, 15426, 1406, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '964.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16159, '2022-10-20', 6076, 15427, 1406, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1581.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16160, '2022-10-20', 5990, 15428, 1406, 4104, '2.0000', '8.1900', '8.1900', '9.1000', '9.1000', '58.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16360, '2022-10-20', 6860, 15623, 1407, 1977, '2.0000', '15.4923', '15.4923', '18.5000', '18.5000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16299, '2022-10-20', 6162, 15565, 1408, 3656, '4.0000', '6.6000', '6.6000', '7.3000', '7.3000', '82.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16298, '2022-10-20', 6154, 15564, 1408, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '72.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16297, '2022-10-20', 5898, 15563, 1408, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '150.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16296, '2022-10-20', 5774, 15562, 1408, 918, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16295, '2022-10-20', 5677, 15561, 1408, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16294, '2022-10-20', 5535, 15560, 1408, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '921.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16301, '2022-10-20', 6884, 15567, 1408, 3122, '1.0000', '43.2000', '43.2000', '48.0000', '48.0000', '67.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16204, '2022-10-20', 6828, 15472, 1409, 4073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '9.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16261, '2022-10-20', 6359, 15527, 1410, 4069, '5.0000', '1.7604', '1.7604', '2.5000', '2.5000', '134.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16262, '2022-10-20', 5979, 15528, 1410, 4081, '4.0000', '6.0097', '6.0097', '6.8000', '6.8000', '85.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16263, '2022-10-20', 5988, 15529, 1410, 2033, '2.0000', '3.0000', '3.0000', '3.4200', '3.4200', '61.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16264, '2022-10-20', 6817, 15530, 1410, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '47.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16265, '2022-10-20', 5640, 15531, 1410, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '547.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16266, '2022-10-20', 6491, 15532, 1410, 2295, '1.0000', '9.6200', '9.6200', '9.6200', '9.6200', '163.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16267, '2022-10-20', 5677, 15533, 1410, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '59.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16268, '2022-10-20', 6178, 15534, 1410, 3060, '5.0000', '1.6000', '1.6000', '2.2000', '2.2000', '536.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16269, '2022-10-20', 5828, 15535, 1410, 3660, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '67.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16270, '2022-10-20', 5973, 15536, 1410, 4079, '1.0000', '7.9600', '7.9600', '8.9000', '8.9000', '43.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16271, '2022-10-20', 6074, 15537, 1410, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '455.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16272, '2022-10-20', 6225, 15538, 1410, 2356, '1.0000', '2.8000', '2.8000', '2.8000', '2.8000', '184.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16429, '2022-10-20', 6864, 15691, 1411, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4621.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16428, '2022-10-20', 6838, 15690, 1411, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '12.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16427, '2022-10-20', 6813, 15689, 1411, 4247, '1.0000', '12.6220', '12.6220', '14.3000', '14.3000', '119.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16426, '2022-10-20', 6671, 15688, 1411, 1996, '2.0000', '7.1500', '7.1500', '7.8000', '7.8000', '37.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16425, '2022-10-20', 6378, 15687, 1411, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16424, '2022-10-20', 6295, 15686, 1411, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '89.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16423, '2022-10-20', 6285, 15685, 1411, 4145, '3.0000', '9.6868', '9.6868', '10.9800', '10.9800', '71.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16422, '2022-10-20', 6215, 15684, 1411, 2283, '1.0000', '30.6900', '30.6900', '30.6900', '30.6900', '28.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16421, '2022-10-20', 6075, 15683, 1411, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '955.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16420, '2022-10-20', 6010, 15682, 1411, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '265.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16419, '2022-10-20', 5969, 15681, 1411, 2023, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '24.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16418, '2022-10-20', 5858, 15680, 1411, 4192, '2.0000', '27.3468', '27.3468', '38.0000', '38.0000', '79.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16417, '2022-10-20', 5853, 15679, 1411, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '369.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16416, '2022-10-20', 5799, 15678, 1411, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '15.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16415, '2022-10-20', 5640, 15677, 1411, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '545.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16414, '2022-10-20', 5629, 15676, 1411, 4299, '3.0000', '8.9474', '8.9474', '10.5000', '10.5000', '356.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16413, '2022-10-20', 5541, 15675, 1411, 905, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16412, '2022-10-20', 5519, 15674, 1411, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '216.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16411, '2022-10-20', 5477, 15673, 1411, 4187, '1.0000', '22.0699', '22.0699', '27.5000', '27.5000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16410, '2022-10-20', 5471, 15672, 1411, 902, '2.0000', '5.0400', '5.0400', '5.9800', '5.9800', '61.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16430, '2022-10-20', 6895, 15692, 1411, 3786, '4.0000', '9.7900', '9.7900', '10.8000', '10.8000', '67.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16302, '2022-10-20', 5986, 15568, 1408, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '58.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16303, '2022-10-20', 6301, 15569, 1408, 4303, '4.0000', '10.8601', '10.8601', '12.5000', '12.5000', '141.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16304, '2022-10-20', 6234, 15570, 1408, 3801, '2.0000', '34.8921', '34.8921', '40.3000', '40.3000', '42.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16305, '2022-10-20', 6609, 15571, 1408, 3773, '2.0000', '11.6821', '11.6821', '15.0700', '15.0700', '116.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16306, '2022-10-20', 5949, 15572, 1408, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '223.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16307, '2022-10-20', 6295, 15573, 1412, 4141, '1.0000', '36.6868', '36.6868', '39.0000', '39.0000', '91.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16308, '2022-10-20', 5535, 15574, 1412, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '911.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16309, '2022-10-20', 5980, 15575, 1412, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '83.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16310, '2022-10-20', 6074, 15576, 1412, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '453.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16311, '2022-10-20', 5926, 15577, 1412, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '139.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16312, '2022-10-20', 5689, 15578, 1412, 1428, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '42.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16313, '2022-10-20', 5418, 15579, 1412, 1851, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '67.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16314, '2022-10-20', 6895, 15580, 1412, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '67.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16315, '2022-10-20', 6605, 15581, 1412, 4136, '-9.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16316, '2022-10-20', 6605, 15581, 1412, NULL, '14.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16317, '2022-10-20', 5982, 15582, 1412, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '286.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16318, '2022-10-20', 6435, 15583, 1412, 3833, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '80.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16319, '2022-10-20', 6125, 15584, 1412, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '125.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16320, '2022-10-20', 6221, 15585, 1412, 1331, '1.0000', '12.9800', '12.9800', '12.9800', '12.9800', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16321, '2022-10-20', 5632, 15586, 1412, 1991, '2.0000', '8.0000', '8.0000', '8.0000', '8.0000', '100.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16322, '2022-10-20', 5624, 15587, 1412, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '39.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16323, '2022-10-20', 6861, 15588, 1413, 3586, '2.0000', '74.6800', '74.6800', '83.6400', '83.6400', '6.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16324, '2022-10-20', 6744, 15589, 1414, 4216, '5.0000', '10.2184', '10.2184', '12.0000', '12.0000', '34.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16325, '2022-10-20', 6295, 15590, 1414, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '89.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16326, '2022-10-20', 6879, 15591, 1414, 3121, '4.0000', '3.8700', '3.8700', '5.0000', '5.0000', '315.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16327, '2022-10-20', 6076, 15592, 1414, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1571.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16328, '2022-10-20', 5754, 15593, 1414, 4060, '4.0000', '7.2000', '7.2000', '9.2000', '9.2000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16329, '2022-10-20', 6416, 15594, 1414, 962, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '65.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16330, '2022-10-20', 5418, 15595, 1414, 1851, '6.0000', '5.5000', '5.5000', '5.5000', '5.5000', '61.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16331, '2022-10-20', 6010, 15596, 1414, 3621, '4.0000', '15.4888', '15.4888', '16.5000', '16.5000', '265.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16332, '2022-10-20', 5600, 15597, 1414, 3051, '5.0000', '2.6233', '2.6233', '3.6000', '3.6000', '860.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16333, '2022-10-20', 6645, 15598, 1414, 1393, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '132.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16334, '2022-10-20', 5778, 15599, 1414, 3822, '3.0000', '16.3911', '16.3911', '18.0000', '18.0000', '75.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16335, '2022-10-20', 5677, 15600, 1414, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '56.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16336, '2022-10-20', 6003, 15601, 1414, 2321, '4.0000', '6.7000', '6.7000', '9.1000', '9.1000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16337, '2022-10-20', 5977, 15602, 1414, 1124, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '21.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16338, '2022-10-20', 5519, 15603, 1414, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '216.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16339, '2022-10-20', 5749, 15604, 1414, 1302, '4.0000', '8.1400', '8.1400', '8.1400', '8.1400', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16340, '2022-10-20', 6448, 15605, 1414, 2265, '4.0000', '15.0000', '15.0000', '15.0000', '15.0000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16341, '2022-10-20', 5809, 15606, 1414, 390, '3.0000', '15.1000', '15.1000', '15.1000', '15.1000', '37.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16342, '2022-10-20', 5865, 15607, 1414, 3052, '20.0000', '3.5000', '3.5000', '3.5000', '3.5000', '344.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16343, '2022-10-20', 6122, 15608, 1414, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16344, '2022-10-20', 5904, 15609, 1414, 1308, '2.0000', '24.7000', '24.7000', '24.7000', '24.7000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16345, '2022-10-20', 5576, 15610, 1414, 1108, '5.0000', '8.7000', '8.7000', '8.7000', '8.7000', '31.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16354, '2022-10-20', 6368, 15618, 1415, 4148, '-2.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16353, '2022-10-20', 6292, 15617, 1415, 4206, '5.0000', '8.0455', '8.0455', '9.2000', '9.2000', '40.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16352, '2022-10-20', 6122, 15616, 1415, 648, '2.0000', '47.2000', '47.2000', '47.2000', '47.2000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16351, '2022-10-20', 5931, 15615, 1415, 1090, '3.0000', '12.8400', '12.8400', '12.8400', '12.8400', '34.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16355, '2022-10-20', 6368, 15618, 1415, NULL, '5.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16356, '2022-10-20', 6074, 15619, 1416, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '433.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16357, '2022-10-20', 6818, 15620, 1417, 3067, '20.0000', '3.5000', '3.5000', '3.9000', '3.9000', '180.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16358, '2022-10-20', 5827, 15621, 1417, 3651, '20.0000', '5.9947', '5.9947', '6.6000', '6.6000', '43.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16359, '2022-10-20', 6218, 15622, 1417, 3619, '4.0000', '13.6497', '13.6497', '15.0700', '15.0700', '18.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16361, '2022-10-20', 5532, 15624, 1407, 4188, '1.0000', '56.9412', '56.9412', '65.0000', '65.0000', '106.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16362, '2022-10-20', 5968, 15625, 1418, 4198, '5.0000', '10.7800', '10.7800', '12.0000', '12.0000', '45.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16363, '2022-10-20', 6739, 15626, 1418, 3771, '5.0000', '5.9000', '5.9000', '6.7000', '6.7000', '92.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16364, '2022-10-20', 6283, 15627, 1418, 2335, '5.0000', '5.1000', '5.1000', '6.0200', '6.0200', '30.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16365, '2022-10-20', 5453, 15628, 1418, 3652, '6.0000', '8.3000', '8.3000', '9.2000', '9.2000', '76.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16366, '2022-10-20', 6860, 15629, 1418, 1977, '4.0000', '15.4923', '15.4923', '22.3000', '22.3000', '34.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16367, '2022-10-20', 5986, 15630, 1418, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '57.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16368, '2022-10-20', 6201, 15631, 1418, 2315, '5.0000', '6.9000', '6.9000', '8.7000', '8.7000', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16369, '2022-10-20', 5982, 15632, 1418, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '281.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16370, '2022-10-20', 5827, 15633, 1418, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '38.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16371, '2022-10-20', 6088, 15634, 1418, 3759, '2.0000', '24.0714', '24.0714', '26.8000', '26.8000', '32.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16372, '2022-10-20', 5749, 15635, 1418, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '57.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16373, '2022-10-20', 6652, 15636, 1418, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16374, '2022-10-20', 6136, 15637, 1418, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16375, '2022-10-20', 6169, 15638, 1418, 3982, '4.0000', '4.3000', '4.3000', '4.3000', '4.3000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16376, '2022-10-20', 6879, 15639, 1418, 3121, '4.0000', '3.8700', '3.8700', '5.0000', '5.0000', '311.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16377, '2022-10-20', 5926, 15640, 1418, 1970, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '133.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16378, '2022-10-20', 5949, 15641, 1418, 1311, '15.0000', '5.2000', '5.2000', '7.3000', '7.3000', '208.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16379, '2022-10-20', 5948, 15642, 1418, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '160.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16380, '2022-10-20', 6559, 15643, 1418, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '39.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16381, '2022-10-20', 6696, 15644, 1418, 4109, '10.0000', '4.2337', '4.2337', '4.9500', '4.9500', '170.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16382, '2022-10-20', 6171, 15645, 1418, 1327, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16383, '2022-10-20', 6025, 15646, 1418, 3887, '40.0000', '0.7347', '0.7347', '0.8000', '0.8000', '444.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16384, '2022-10-20', 6359, 15647, 1418, 4069, '10.0000', '1.7604', '1.7604', '2.5000', '2.5000', '124.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16385, '2022-10-20', 5976, 15648, 1418, 4105, '10.0000', '7.5312', '7.5312', '8.2000', '8.2000', '214.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16386, '2022-10-20', 6202, 15649, 1418, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '351.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16387, '2022-10-20', 6225, 15650, 1418, 2356, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '174.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16388, '2022-10-20', 5853, 15651, 1418, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '369.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16389, '2022-10-20', 5792, 15652, 1418, 4190, '2.0000', '34.1634', '34.1634', '39.7000', '39.7000', '90.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16390, '2022-10-20', 5911, 15653, 1418, 4314, '2.0000', '18.2490', '18.2490', '28.6000', '28.6000', '23.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16391, '2022-10-20', 5448, 15654, 1418, 2266, '4.0000', '14.5000', '14.5000', '14.5000', '14.5000', '83.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16392, '2022-10-20', 6394, 15655, 1418, 3823, '6.0000', '5.4400', '5.4400', '6.6000', '6.6000', '215.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16393, '2022-10-20', 6250, 15656, 1418, 4220, '4.0000', '6.0000', '6.0000', '5.5000', '5.5000', '65.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16394, '2022-10-20', 6612, 15657, 1418, 3772, '4.0000', '16.5600', '16.5600', '18.4000', '18.4000', '82.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16395, '2022-10-20', 5828, 15658, 1418, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '64.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16396, '2022-10-20', 5601, 15659, 1418, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16397, '2022-10-20', 6332, 15660, 1418, 1341, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16398, '2022-10-20', 6642, 15661, 1418, 3414, '4.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16399, '2022-10-20', 6642, 15661, 1418, NULL, '1.0000', '-10.8972', '-10.8972', '5.9000', '5.9000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16400, '2022-10-20', 5499, 15662, 1418, 2378, '4.0000', '3.8000', '3.8000', '3.8000', '3.8000', '70.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16401, '2022-10-20', 6075, 15663, 1419, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '955.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16402, '2022-10-20', 6076, 15664, 1419, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1566.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16403, '2022-10-20', 5985, 15665, 1419, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16404, '2022-10-20', 5576, 15666, 1419, 1108, '2.0000', '8.7000', '8.7000', '8.7000', '8.7000', '29.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16405, '2022-10-20', 6907, 15667, 1419, 4248, '1.0000', '9.0000', '9.0000', '10.2000', '10.2000', '244.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16406, '2022-10-20', 5967, 15668, 1419, 3132, '2.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2419.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16407, '2022-10-20', 5898, 15669, 1419, 2350, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '149.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16442, '2022-10-20', 6699, 15704, 1420, 1287, '3.0000', '7.0000', '7.0000', '8.4000', '8.4000', '163.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16443, '2022-10-20', 6840, 15705, 1420, 1371, '6.0000', '5.2000', '5.2000', '5.2000', '5.2000', '20.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16431, '2022-10-20', 6243, 15693, 1411, 3582, '1.0000', '59.4000', '59.4000', '34.3000', '34.3000', '11.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16432, '2022-10-20', 6417, 15694, 1411, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16433, '2022-10-20', 5881, 15695, 1421, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '51.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16434, '2022-10-20', 5841, 15696, 1421, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '80.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16435, '2022-10-20', 6075, 15697, 1421, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '945.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16436, '2022-10-20', 6076, 15698, 1421, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1561.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16437, '2022-10-20', 5898, 15699, 1421, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '145.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16438, '2022-10-20', 6906, 15700, 1421, 4140, '2.0000', '10.8000', '10.8000', '12.0000', '12.0000', '74.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16439, '2022-10-20', 6131, 15701, 1421, 3077, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16440, '2022-10-20', 6764, 15702, 1421, 3580, '4.0000', '5.9900', '5.9900', '6.3500', '6.3500', '26.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16441, '2022-10-20', 6828, 15703, 1422, 4073, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '7.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16444, '2022-10-20', 6753, 15706, 1423, 3737, '6.0000', '72.8788', '72.8788', '85.0000', '85.0000', '146.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16445, '2022-10-20', 6197, 15707, 1424, 3630, '-5.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16446, '2022-10-20', 6197, 15707, 1424, NULL, '6.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16447, '2022-10-20', 5949, 15708, 1425, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '206.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16448, '2022-10-20', 6003, 15709, 1425, 2321, '1.0000', '6.7000', '6.7000', '9.1000', '9.1000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16449, '2022-10-20', 6351, 15710, 1425, 1344, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16450, '2022-10-20', 5740, 15711, 1425, 2274, '1.0000', '15.5000', '15.5000', '15.5000', '15.5000', '79.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16451, '2022-10-20', 6900, 15712, 1425, 3908, '1.0000', '6.0000', '6.0000', '6.6000', '6.6000', '189.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16452, '2022-10-20', 5541, 15713, 1425, 905, '2.0000', '5.5000', '5.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16453, '2022-10-20', 6225, 15714, 1425, 2356, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '172.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16454, '2022-10-20', 6117, 15715, 1425, 1320, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '277.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16455, '2022-10-20', 5886, 15716, 1425, 927, '1.0000', '8.6000', '8.6000', '8.6000', '8.6000', '116.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16456, '2022-10-20', 6220, 15717, 1425, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16457, '2022-10-20', 5657, 15718, 1425, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '148.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16458, '2022-10-20', 6248, 15719, 1425, 4201, '1.0000', '9.5390', '9.5390', '10.8000', '10.8000', '179.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16459, '2022-10-20', 6615, 15720, 1425, 2368, '1.0000', '11.0000', '11.0000', '11.0000', '11.0000', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16460, '2022-10-20', 6376, 15721, 1425, 2364, '20.0000', '1.6000', '1.6000', '1.6000', '1.6000', '1984.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16461, '2022-10-20', 5967, 15722, 1425, 3132, '2.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2417.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16462, '2022-10-20', 5988, 15723, 1425, 2033, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '60.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16463, '2022-10-20', 5654, 15724, 1425, 3062, '2.0000', '2.0000', '2.0000', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16464, '2022-10-20', 5640, 15725, 1425, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '544.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16465, '2022-10-20', 5731, 15726, 1426, 4301, '3.0000', '18.2383', '18.2383', '17.2000', '17.2000', '1188.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16466, '2022-10-20', 5535, 15727, 1426, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '906.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16467, '2022-10-20', 5629, 15728, 1426, 4299, '3.0000', '8.9474', '8.9474', '10.5000', '10.5000', '353.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16468, '2022-10-20', 6696, 15729, 1426, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '168.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16469, '2022-10-20', 5886, 15730, 1426, 927, '2.0000', '8.6000', '8.6000', '8.6000', '8.6000', '114.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16470, '2022-10-20', 6260, 15731, 1426, 4144, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '14.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16471, '2022-10-20', 5926, 15732, 1426, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '130.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16472, '2022-10-20', 5991, 15733, 1426, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '72.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16473, '2022-10-20', 6378, 15734, 1426, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '49.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16474, '2022-10-20', 6095, 15735, 1426, 3893, '5.0000', '8.3200', '8.3200', '9.2000', '9.2000', '354.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16475, '2022-10-20', 5451, 15736, 1426, 2387, '2.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1038.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16476, '2022-10-20', 6656, 15737, 1426, 4089, '1.0000', '11.7100', '11.7100', '13.1000', '13.1000', '58.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16477, '2022-10-20', 5898, 15738, 1426, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '143.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16478, '2022-10-20', 6220, 15739, 1426, 2388, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '46.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16479, '2022-10-20', 5657, 15740, 1426, 2382, '2.0000', '4.2000', '4.2000', '4.2000', '4.2000', '146.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16480, '2022-10-20', 6389, 15741, 1426, 4114, '2.0000', '8.7525', '8.7525', '9.7000', '9.7000', '336.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16481, '2022-10-20', 5549, 15742, 1426, 2372, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '277.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16482, '2022-10-20', 5947, 15743, 1427, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '223.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16483, '2022-10-20', 5472, 15744, 1427, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '336.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16484, '2022-10-20', 5947, 15745, 1428, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '221.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16485, '2022-10-20', 5988, 15746, 1429, 2033, '1.0000', '3.0000', '3.0000', '3.4200', '3.4200', '59.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16486, '2022-10-20', 6736, 15747, 1430, 574, '1.0000', '38.2000', '38.2000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16487, '2022-10-20', 5947, 15748, 1431, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '220.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16488, '2022-10-20', 6218, 15749, 1431, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '17.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16489, '2022-10-20', 5641, 15750, 1432, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '46.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16490, '2022-10-20', 6218, 15751, 1433, 3619, '1.0000', '13.6497', '13.6497', '15.0700', '15.0700', '16.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16491, '2022-10-20', 6681, 15752, 1434, 2014, '3.0000', '10.0000', '10.0000', '13.9800', '13.9800', '57.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16492, '2022-10-20', 6304, 15753, 1434, 4304, '2.0000', '14.9059', '14.9059', '16.0000', '16.0000', '198.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16493, '2022-10-20', 6011, 15754, 1434, 3028, '2.0000', '14.2100', '14.2100', '14.5000', '14.5000', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16494, '2022-10-20', 6906, 15755, 1434, 4140, '4.0000', '10.8000', '10.8000', '12.0000', '12.0000', '70.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16495, '2022-10-20', 6383, 15756, 1434, 4117, '3.0000', '8.7203', '8.7203', '9.8000', '9.8000', '90.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16496, '2022-10-20', 6852, 15757, 1434, 4074, '3.0000', '8.4000', '8.4000', '11.8000', '11.8000', '35.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16497, '2022-10-20', 6575, 15758, 1434, 2569, '2.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16498, '2022-10-20', 6148, 15759, 1434, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '6.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16499, '2022-10-20', 6667, 15760, 1434, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '990.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16500, '2022-10-20', 6909, 15761, 1435, 4250, '2.0000', '11.7000', '11.7000', '13.4000', '13.4000', '142.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16501, '2022-10-20', 5729, 15762, 1435, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16502, '2022-10-20', 5983, 15763, 1435, 2333, '2.0000', '5.9000', '5.9000', '5.9000', '5.9000', '126.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16503, '2022-10-21', 5715, 15764, 1436, 3023, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16504, '2022-10-21', 6833, 15765, 1437, 2049, '3.0000', '6.1000', '6.1000', '8.5100', '8.5100', '157.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16505, '2022-10-21', 6822, 15766, 1437, 2345, '3.0000', '10.0000', '10.0000', '10.0000', '10.0000', '313.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16506, '2022-10-21', 6843, 15767, 1437, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '24.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16507, '2022-10-21', 6202, 15768, 1437, 3985, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '349.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16508, '2022-10-21', 5472, 15769, 1438, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '326.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16572, '2022-10-21', 6005, 15829, 1439, 1939, '2.0000', '7.2000', '7.2000', '9.8000', '9.8000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16570, '2022-10-21', 6612, 15827, 1439, 3772, '2.0000', '16.5600', '16.5600', '20.9200', '20.9200', '80.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16569, '2022-10-21', 6608, 15826, 1439, 3774, '2.0000', '12.9538', '12.9538', '16.8800', '16.8800', '126.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16568, '2022-10-21', 6446, 15825, 1439, 1449, '3.0000', '4.9000', '4.9000', '4.9000', '4.9000', '78.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16567, '2022-10-21', 6361, 15824, 1439, 3725, '50.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4204.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16566, '2022-10-21', 6205, 15823, 1439, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '65.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16565, '2022-10-21', 6162, 15822, 1439, 3656, '4.0000', '6.6000', '6.6000', '7.3000', '7.3000', '78.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16564, '2022-10-21', 6096, 15821, 1439, NULL, '9.0000', '4.0000', '4.0000', '4.0000', '4.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16563, '2022-10-21', 6096, 15821, 1439, 4133, '-5.0000', '4.0000', '4.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16562, '2022-10-21', 5969, 15820, 1439, 2023, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '20.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16561, '2022-10-21', 5967, 15819, 1439, 3132, '5.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2412.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16560, '2022-10-21', 5949, 15818, 1439, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '202.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16559, '2022-10-21', 5926, 15817, 1439, 1970, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '126.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16558, '2022-10-21', 5729, 15816, 1439, 1993, '2.0000', '10.5000', '10.5000', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16557, '2022-10-21', 5714, 15815, 1439, 2383, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '304.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16556, '2022-10-21', 5689, 15814, 1439, 1428, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '37.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16555, '2022-10-21', 5674, 15813, 1439, 3549, '20.0000', '1.5000', '1.5000', '2.1000', '2.1000', '377.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16554, '2022-10-21', 5535, 15812, 1439, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '896.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16553, '2022-10-21', 5418, 15811, 1439, 1851, '7.0000', '5.5000', '5.5000', '5.5000', '5.5000', '54.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16571, '2022-10-21', 6640, 15828, 1439, 3413, '6.0000', '4.7000', '4.7000', '4.7000', '4.7000', '28.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16573, '2022-10-21', 5790, 15830, 1442, 518, '1.0000', '149.2800', '149.2800', '178.0000', '178.0000', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16530, '2022-10-21', 6074, 15789, 1440, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '413.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16531, '2022-10-21', 6524, 15790, 1440, 4261, '1.0000', '187.4672', '187.4672', '234.0000', '234.0000', '11.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16552, '2022-10-21', 6923, 15810, 1441, 4338, '10.0000', '3.6000', '3.6000', '4.0000', '4.0000', '490.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16574, '2022-10-21', 5640, 15831, 1443, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '542.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16575, '2022-10-21', 5440, 15832, 1443, 2306, '3.0000', '3.4100', '3.4100', '3.4100', '3.4100', '210.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16576, '2022-10-21', 6007, 15833, 1443, 2391, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '45.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16577, '2022-10-21', 6074, 15834, 1443, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '409.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16578, '2022-10-21', 5970, 15835, 1443, NULL, '1.0000', '9.1500', '9.1500', '12.8500', '12.8500', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16579, '2022-10-21', 6838, 15836, 1443, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '11.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16580, '2022-10-21', 6925, 15837, 1443, 4340, '2.0000', '4.5000', '4.5000', '5.0000', '5.0000', '98.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16581, '2022-10-21', 6201, 15838, 1443, 2315, '1.0000', '6.9000', '6.9000', '9.1000', '9.1000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16582, '2022-10-21', 6603, 15839, 1443, 3768, '1.0000', '6.1900', '6.1900', '8.2900', '8.2900', '42.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16583, '2022-10-21', 5949, 15840, 1443, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '199.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16584, '2022-10-21', 5963, 15841, 1443, 3428, '1.0000', '14.5000', '14.5000', '15.9500', '15.9500', '38.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16585, '2022-10-21', 6900, 15842, 1443, 3908, '2.0000', '6.0000', '6.0000', '6.6000', '6.6000', '187.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16586, '2022-10-21', 6225, 15843, 1443, 2356, '2.0000', '2.8000', '2.8000', '3.0800', '3.0800', '170.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16587, '2022-10-21', 5418, 15844, 1443, 1851, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '50.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16588, '2022-10-21', 6205, 15845, 1444, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '64.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16589, '2022-10-21', 5949, 15846, 1444, 1311, '1.0000', '5.2000', '5.2000', '7.3000', '7.3000', '198.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16590, '2022-10-21', 6417, 15847, 1444, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '37.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16591, '2022-10-21', 5535, 15848, 1445, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '886.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16592, '2022-10-21', 6075, 15849, 1445, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '921.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16593, '2022-10-21', 6608, 15850, 1445, 3774, '5.0000', '12.9538', '12.9538', '16.8800', '16.8800', '121.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16594, '2022-10-21', 6099, 15851, 1445, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '33.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16595, '2022-10-21', 6052, 15852, 1445, 758, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '19.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16596, '2022-10-21', 6744, 15853, 1445, 4216, '5.0000', '10.2184', '10.2184', '12.0000', '12.0000', '29.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16597, '2022-10-21', 5828, 15854, 1445, 3660, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '59.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16598, '2022-10-21', 6823, 15855, 1445, 1488, '6.0000', '10.7800', '10.7800', '10.7800', '10.7800', '43.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16599, '2022-10-21', 6375, 15856, 1445, 2304, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '104.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16600, '2022-10-21', 6774, 15857, 1445, 1419, '1.0000', '32.4000', '32.4000', '40.1100', '40.1100', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16601, '2022-10-21', 6895, 15858, 1445, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '62.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16602, '2022-10-21', 6457, 15859, 1445, 4213, '2.0000', '41.4000', '41.4000', '46.5000', '46.5000', '62.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16603, '2022-10-21', 6460, 15860, 1445, 1078, '3.0000', '6.0000', '6.0000', '6.0000', '6.0000', '50.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16604, '2022-10-21', 5827, 15861, 1445, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '35.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16605, '2022-10-21', 6024, 15862, 1445, 3896, '5.0000', '4.9900', '4.9900', '5.5000', '5.5000', '59.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16606, '2022-10-21', 6696, 15863, 1446, 4109, '3.0000', '4.2337', '4.2337', '4.9500', '4.9500', '165.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16607, '2022-10-21', 5603, 15864, 1446, 3963, '2.0000', '4.4000', '4.4000', '4.4000', '4.4000', '65.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16608, '2022-10-21', 6337, 15865, 1447, 4256, '3.0000', '49.5359', '49.5359', '56.2000', '56.2000', '117.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16609, '2022-10-21', 6753, 15866, 1447, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '145.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16610, '2022-10-21', 6415, 15867, 1447, 2056, '10.0000', '4.6200', '4.6200', '4.6200', '4.6200', '144.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16611, '2022-10-21', 6293, 15868, 1447, 4068, '6.0000', '14.6000', '14.6000', '14.6000', '14.6000', '155.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16612, '2022-10-21', 5991, 15869, 1447, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '71.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16613, '2022-10-21', 6378, 15870, 1447, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '48.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16614, '2022-10-21', 6025, 15871, 1447, 3887, '10.0000', '0.7347', '0.7347', '0.8000', '0.8000', '434.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16615, '2022-10-21', 6026, 15872, 1447, 3886, '10.0000', '2.0143', '2.0143', '2.1000', '2.1000', '107.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16616, '2022-10-21', 6442, 15873, 1447, 3804, '1.0000', '75.1600', '75.1600', '83.6000', '83.6000', '7.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16617, '2022-10-21', 6389, 15874, 1447, 4114, '5.0000', '8.7525', '8.7525', '9.7000', '9.7000', '331.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16618, '2022-10-21', 5731, 15875, 1447, 4301, '5.0000', '18.2383', '18.2383', '17.2000', '17.2000', '1183.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16619, '2022-10-21', 6107, 15876, 1447, 1875, '5.0000', '12.0000', '12.0000', '12.0000', '12.0000', '173.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16620, '2022-10-21', 6901, 15877, 1447, 4108, '20.0000', '4.0100', '4.0100', '4.5000', '4.5000', '87.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16621, '2022-10-21', 5673, 15878, 1447, 3762, '1.0000', '15.8900', '15.8900', '17.7000', '17.7000', '40.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16622, '2022-10-21', 5656, 15879, 1447, 3433, '-12.0000', '9.9000', '9.9000', '9.9000', '9.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16623, '2022-10-21', 5656, 15879, 1447, NULL, '17.0000', '9.9000', '9.9000', '9.9000', '9.9000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16624, '2022-10-21', 5898, 15880, 1447, 2350, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16625, '2022-10-21', 5977, 15881, 1447, 1124, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '16.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16626, '2022-10-21', 5427, 15882, 1447, 2365, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '91.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16627, '2022-10-21', 5958, 15883, 1447, 4196, '2.0000', '15.6532', '15.6532', '21.7000', '21.7000', '37.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16628, '2022-10-21', 6414, 15884, 1448, 763, '2.0000', '9.9000', '9.9000', '9.9000', '9.9000', '26.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16629, '2022-10-21', 6140, 15885, 1448, 1882, '1.0000', '30.8000', '30.8000', '30.8000', '30.8000', '4.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16630, '2022-10-21', 6031, 15886, 1448, 3973, '1.0000', '17.8200', '17.8200', '26.7000', '26.7000', '7.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16631, '2022-10-21', 6243, 15887, 1448, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '10.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16632, '2022-10-21', 6298, 15888, 1448, 4209, '5.0000', '5.5742', '5.5742', '10.8000', '10.8000', '110.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16633, '2022-10-21', 6210, 15889, 1448, 3050, '4.0000', '7.1000', '7.1000', '12.3000', '12.3000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16634, '2022-10-21', 5439, 15890, 1449, 3799, '3.0000', '27.2586', '27.2586', '58.4000', '58.4000', '102.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16635, '2022-10-21', 5440, 15891, 1449, 2306, '5.0000', '3.4100', '3.4100', '3.4100', '3.4100', '205.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16636, '2022-10-21', 5545, 15892, 1449, 4055, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '23.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16637, '2022-10-21', 5633, 15893, 1449, 1033, '1.0000', '226.2100', '226.2100', '226.2100', '226.2100', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16638, '2022-10-21', 5640, 15894, 1449, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '537.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16639, '2022-10-21', 5731, 15895, 1449, 4301, '5.0000', '18.2383', '18.2383', '17.2000', '17.2000', '1178.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16640, '2022-10-21', 5749, 15896, 1449, 1302, '3.0000', '8.1400', '8.1400', '8.1400', '8.1400', '54.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16641, '2022-10-21', 5775, 15897, 1449, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '50.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16642, '2022-10-21', 5797, 15898, 1449, 3739, '5.0000', '17.0048', '17.0048', '18.9000', '18.9000', '86.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16643, '2022-10-21', 5799, 15899, 1449, 2066, '4.0000', '20.1300', '20.1300', '27.2600', '27.2600', '11.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16644, '2022-10-21', 5827, 15900, 1449, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '30.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16645, '2022-10-21', 5967, 15901, 1449, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2402.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16646, '2022-10-21', 5969, 15902, 1449, 2023, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '15.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16647, '2022-10-21', 6010, 15903, 1449, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '263.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16648, '2022-10-21', 6034, 15904, 1449, 1874, '1.0000', '41.8000', '41.8000', '48.0000', '48.0000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16649, '2022-10-21', 6075, 15905, 1449, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '909.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16650, '2022-10-21', 6076, 15906, 1449, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1549.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16651, '2022-10-21', 6078, 15907, 1449, 2352, '2.0000', '42.0000', '42.0000', '55.0000', '55.0000', '512.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16652, '2022-10-21', 6220, 15908, 1449, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16653, '2022-10-21', 6232, 15909, 1449, 4320, '10.0000', '7.6225', '7.6225', '9.9000', '9.9000', '110.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16654, '2022-10-21', 6234, 15910, 1449, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '37.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16655, '2022-10-21', 6265, 15911, 1449, 1863, '1.0000', '11.8000', '11.8000', '11.8000', '11.8000', '13.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16656, '2022-10-21', 6283, 15912, 1449, 2335, '5.0000', '5.1000', '5.1000', '6.0200', '6.0200', '25.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16657, '2022-10-21', 6285, 15913, 1449, 4145, '5.0000', '9.6868', '9.6868', '10.9800', '10.9800', '66.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16658, '2022-10-21', 6293, 15914, 1449, 4068, '4.0000', '14.6000', '14.6000', '14.6000', '14.6000', '151.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16659, '2022-10-21', 6295, 15915, 1449, 4141, '5.0000', '36.6868', '36.6868', '39.0000', '39.0000', '84.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16660, '2022-10-21', 6298, 15916, 1449, 4209, '5.0000', '5.5742', '5.5742', '10.8000', '10.8000', '105.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16661, '2022-10-21', 6316, 15917, 1449, 3757, '2.0000', '54.8358', '54.8358', '74.0000', '74.0000', '51.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16662, '2022-10-21', 6337, 15918, 1449, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '115.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16663, '2022-10-21', 6365, 15919, 1449, 2038, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '100.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16664, '2022-10-21', 6396, 15920, 1449, 4210, '3.0000', '14.4657', '14.4657', '17.2000', '17.2000', '55.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16665, '2022-10-21', 6408, 15921, 1449, 1986, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '164.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16666, '2022-10-21', 6409, 15922, 1449, 1422, '5.0000', '4.6700', '4.6700', '6.0300', '6.0300', '127.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16667, '2022-10-21', 6411, 15923, 1449, 764, '2.0000', '17.6000', '17.6000', '17.6000', '17.6000', '66.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16668, '2022-10-21', 6414, 15924, 1449, 763, '2.0000', '9.9000', '9.9000', '9.9000', '9.9000', '24.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16669, '2022-10-21', 6415, 15925, 1449, 2056, '3.0000', '4.6200', '4.6200', '4.6200', '4.6200', '141.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16670, '2022-10-21', 6496, 15926, 1449, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '128.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16671, '2022-10-21', 6608, 15927, 1449, 3774, '5.0000', '12.9538', '12.9538', '16.8800', '16.8800', '116.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16672, '2022-10-21', 6609, 15928, 1449, 3773, '5.0000', '11.6821', '11.6821', '15.0700', '15.0700', '111.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16673, '2022-10-21', 6615, 15929, 1449, 2368, '3.0000', '11.0000', '11.0000', '11.0000', '11.0000', '34.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16674, '2022-10-21', 6664, 15930, 1449, 4122, '24.0000', '0.6197', '0.6197', '1.6000', '1.6000', '742.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16675, '2022-10-21', 5576, 15931, 1450, 1108, '2.0000', '8.7000', '8.7000', '8.7000', '8.7000', '27.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16676, '2022-10-21', 5624, 15932, 1450, 4120, '2.0000', '18.1800', '18.1800', '20.1000', '20.1000', '37.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16677, '2022-10-21', 5828, 15933, 1450, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '57.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16678, '2022-10-21', 5926, 15934, 1450, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '123.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16679, '2022-10-21', 5967, 15935, 1450, 3132, '4.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2398.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16680, '2022-10-21', 5968, 15936, 1450, 4198, '2.0000', '10.7800', '10.7800', '12.0000', '12.0000', '43.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16681, '2022-10-21', 6074, 15937, 1450, 2303, '7.0000', '8.5000', '8.5000', '8.5000', '8.5000', '402.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16682, '2022-10-21', 6102, 15938, 1450, 2291, '2.0000', '27.8000', '27.8000', '27.8000', '27.8000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16683, '2022-10-21', 6205, 15939, 1450, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '63.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16684, '2022-10-21', 6303, 15940, 1450, 4313, '6.0000', '1.9950', '1.9950', '2.2000', '2.2000', '494.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16685, '2022-10-21', 6417, 15941, 1450, 1990, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '36.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16686, '2022-10-21', 6421, 15942, 1450, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '55.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16687, '2022-10-21', 6744, 15943, 1450, 4216, '2.0000', '10.2184', '10.2184', '12.0000', '12.0000', '27.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16688, '2022-10-21', 5715, 15944, 1451, 3023, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '2.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16689, '2022-10-21', 6294, 15945, 1452, 4207, '1.0000', '24.2015', '24.2015', '30.0000', '30.0000', '54.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16690, '2022-10-21', 6337, 15946, 1452, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '114.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16691, '2022-10-21', 6590, 15947, 1453, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16692, '2022-10-21', 5947, 15948, 1454, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '219.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16693, '2022-10-21', 6363, 15949, 1455, 1411, '1.0000', '14.8000', '14.8000', '22.7800', '22.7800', '140.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16694, '2022-10-21', 5601, 15950, 1455, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '11.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16695, '2022-10-21', 6304, 15951, 1455, 4304, '2.0000', '14.9059', '14.9059', '16.0000', '16.0000', '196.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16696, '2022-10-21', 6273, 15952, 1455, 3033, '2.0000', '26.0000', '26.0000', '27.5000', '27.5000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16697, '2022-10-21', 6418, 15953, 1455, 2580, '2.0000', '6.3300', '6.3300', '6.3800', '6.3800', '571.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16698, '2022-10-21', 5849, 15954, 1455, 2357, '3.0000', '3.1000', '3.1000', '3.1000', '3.1000', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16699, '2022-10-21', 6664, 15955, 1455, 4122, '10.0000', '0.6197', '0.6197', '1.6000', '1.6000', '732.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16700, '2022-10-21', 6895, 15956, 1455, 3786, '3.0000', '9.7900', '9.7900', '10.8000', '10.8000', '59.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16701, '2022-10-21', 5911, 15957, 1455, 4314, '1.0000', '18.2490', '18.2490', '28.6000', '28.6000', '22.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16702, '2022-10-21', 6331, 15958, 1456, 1952, '10.0000', '1.4900', '1.4900', '1.4900', '1.4900', '64.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16703, '2022-10-21', 6220, 15959, 1456, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16704, '2022-10-21', 5418, 15960, 1457, 1851, '10.0000', '5.5000', '5.5000', '5.5000', '5.5000', '40.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16705, '2022-10-21', 5419, 15961, 1457, 3826, '5.0000', '16.1385', '16.1385', '18.9000', '18.9000', '52.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16706, '2022-10-21', 5463, 15962, 1457, 4315, '3.0000', '10.8900', '10.8900', '12.4000', '12.4000', '117.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16707, '2022-10-21', 5595, 15963, 1457, 3516, '-5.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16708, '2022-10-21', 5595, 15963, 1457, NULL, '6.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16709, '2022-10-21', 5610, 15964, 1457, 4253, '3.0000', '29.2166', '29.2166', '60.5000', '60.5000', '35.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16710, '2022-10-21', 5724, 15965, 1457, 4316, '5.0000', '11.5269', '11.5269', '16.7000', '16.7000', '79.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16711, '2022-10-21', 5956, 15966, 1457, 4195, '4.0000', '19.9535', '19.9535', '24.0000', '24.0000', '30.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16712, '2022-10-21', 5979, 15967, 1457, 4081, '5.0000', '6.0097', '6.0097', '6.8000', '6.8000', '80.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16713, '2022-10-21', 6205, 15968, 1457, 3026, '3.0000', '38.5000', '38.5000', '50.5000', '50.5000', '60.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16714, '2022-10-21', 6232, 15969, 1457, 4320, '5.0000', '7.6225', '7.6225', '9.9000', '9.9000', '105.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16715, '2022-10-21', 6337, 15970, 1457, 4256, '5.0000', '49.5359', '49.5359', '56.2000', '56.2000', '109.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16716, '2022-10-21', 6467, 15971, 1457, 4321, '4.0000', '44.6300', '44.6300', '50.6000', '50.6000', '56.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16717, '2022-10-21', 6526, 15972, 1457, 4262, '1.0000', '154.7900', '154.7900', '175.5000', '175.5000', '11.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16718, '2022-10-21', 6725, 15973, 1457, 4326, '1.0000', '62.6900', '62.6900', '71.1000', '71.1000', '23.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16719, '2022-10-21', 6785, 15974, 1457, 4327, '2.0000', '13.0200', '13.0200', '14.8000', '14.8000', '52.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16720, '2022-10-21', 6786, 15975, 1457, 4328, '2.0000', '33.1800', '33.1800', '37.7000', '37.7000', '52.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16721, '2022-10-21', 6906, 15976, 1457, 4140, '3.0000', '10.8000', '10.8000', '12.0000', '12.0000', '67.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16722, '2022-10-21', 6907, 15977, 1457, 4248, '10.0000', '9.0000', '9.0000', '10.2000', '10.2000', '234.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16723, '2022-10-21', 6908, 15978, 1457, 4249, '10.0000', '16.2000', '16.2000', '18.4000', '18.4000', '90.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16724, '2022-10-21', 6910, 15979, 1457, 4251, '2.0000', '11.7000', '11.7000', '13.4000', '13.4000', '58.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16725, '2022-10-21', 6912, 15980, 1457, 4266, '5.0000', '10.3200', '10.3200', '11.7000', '11.7000', '13.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16726, '2022-10-21', 6914, 15981, 1457, 4334, '3.0000', '30.5000', '30.5000', '34.6000', '34.6000', '9.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16727, '2022-10-21', 6917, 15982, 1457, 4337, '2.0000', '14.1100', '14.1100', '16.0000', '16.0000', '28.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16782, '2022-10-21', 6590, 16037, 1458, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16781, '2022-10-21', 6532, 16036, 1458, 3579, '5.0000', '8.0796', '8.0796', '9.3700', '9.3700', '60.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16780, '2022-10-21', 6435, 16035, 1458, 3833, '5.0000', '8.1000', '8.1000', '9.0000', '9.0000', '75.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16779, '2022-10-21', 6396, 16034, 1458, 4210, '4.0000', '14.4657', '14.4657', '17.2000', '17.2000', '51.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16778, '2022-10-21', 6389, 16033, 1458, 4114, '5.0000', '8.7525', '8.7525', '9.7000', '9.7000', '326.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16777, '2022-10-21', 6384, 16032, 1458, 1477, '3.0000', '9.6600', '9.6600', '9.6600', '9.6600', '88.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16776, '2022-10-21', 6383, 16031, 1458, 4117, '3.0000', '8.7203', '8.7203', '9.8000', '9.8000', '87.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16775, '2022-10-21', 6377, 16030, 1458, 1465, '1.0000', '55.0000', '55.0000', '55.0000', '55.0000', '14.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16774, '2022-10-21', 6358, 16029, 1458, 3906, '20.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4022.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16773, '2022-10-21', 6304, 16028, 1458, 4304, '3.0000', '14.9059', '14.9059', '16.0000', '16.0000', '193.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16772, '2022-10-21', 6290, 16027, 1458, 2318, '1.0000', '122.4000', '122.4000', '146.9000', '146.9000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16771, '2022-10-21', 6234, 16026, 1458, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '32.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16770, '2022-10-21', 6225, 16025, 1458, 2356, '6.0000', '2.8000', '2.8000', '3.0800', '3.0800', '164.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16769, '2022-10-21', 6205, 16024, 1458, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '58.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16768, '2022-10-21', 6082, 16023, 1458, 3032, '4.0000', '6.9000', '6.9000', '6.9000', '6.9000', '154.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16767, '2022-10-21', 6010, 16022, 1458, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '261.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16766, '2022-10-21', 5967, 16021, 1458, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2388.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16765, '2022-10-21', 5949, 16020, 1458, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '193.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16764, '2022-10-21', 5948, 16019, 1458, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '150.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16763, '2022-10-21', 5853, 16018, 1458, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '366.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16762, '2022-10-21', 5827, 16017, 1458, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '27.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16761, '2022-10-21', 5654, 16016, 1458, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16760, '2022-10-21', 5624, 16015, 1458, 4120, '5.0000', '18.1800', '18.1800', '20.1000', '20.1000', '32.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16759, '2022-10-21', 5535, 16014, 1458, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '876.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16758, '2022-10-21', 5501, 16013, 1458, 3752, '1.0000', '44.0800', '44.0800', '49.0000', '49.0000', '19.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16757, '2022-10-21', 5447, 16012, 1458, 3851, '2.0000', '24.7066', '24.7066', '28.7000', '28.7000', '199.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16756, '2022-10-21', 5439, 16011, 1458, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '100.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16783, '2022-10-21', 6923, 16038, 1458, 4338, '10.0000', '3.6000', '3.6000', '4.0000', '4.0000', '480.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16784, '2022-10-21', 5640, 16039, 1459, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '532.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16785, '2022-10-21', 5641, 16040, 1459, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '45.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16786, '2022-10-21', 6074, 16041, 1459, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '392.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16787, '2022-10-21', 5898, 16042, 1459, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16788, '2022-10-21', 5677, 16043, 1459, 2351, '13.0000', '13.2000', '13.2000', '15.4000', '15.4000', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16789, '2022-10-21', 6010, 16044, 1459, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '259.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16790, '2022-10-21', 6285, 16045, 1459, 4145, '2.0000', '9.6868', '9.6868', '10.9800', '10.9800', '64.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16791, '2022-10-21', 6408, 16046, 1459, 1986, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '161.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16792, '2022-10-21', 6373, 16047, 1459, 3990, '1.0000', '72.2000', '72.2000', '79.4200', '79.4200', '10.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16793, '2022-10-21', 6374, 16048, 1459, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3857.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16794, '2022-10-21', 6617, 16049, 1459, 557, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '20.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16795, '2022-10-21', 6409, 16050, 1459, 1422, '3.0000', '4.6700', '4.6700', '6.0300', '6.0300', '124.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16796, '2022-10-21', 6621, 16051, 1460, 1852, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '26.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16797, '2022-10-21', 6348, 16052, 1460, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '30.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16798, '2022-10-21', 6900, 16053, 1460, 3908, '1.0000', '6.0000', '6.0000', '6.6000', '6.6000', '186.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16799, '2022-10-21', 6216, 16054, 1460, 3617, '5.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2290.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16800, '2022-10-21', 6007, 16055, 1460, 2391, '1.0000', '11.3800', '11.3800', '11.3800', '11.3800', '44.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16801, '2022-10-21', 6374, 16056, 1460, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3847.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16802, '2022-10-21', 5582, 16057, 1460, 2342, '1.0000', '12.5000', '12.5000', '19.0000', '19.0000', '272.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16803, '2022-10-21', 6141, 16058, 1460, 1166, '1.0000', '15.9500', '15.9500', '15.9500', '15.9500', '17.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16804, '2022-10-21', 5674, 16059, 1460, 3549, '2.0000', '1.5000', '1.5000', '2.1000', '2.1000', '375.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16805, '2022-10-21', 5713, 16060, 1460, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16806, '2022-10-21', 6227, 16061, 1460, 3070, '1.0000', '2.8400', '2.8400', '2.8400', '2.8400', '57.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16807, '2022-10-21', 5714, 16062, 1460, 2383, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '303.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16808, '2022-10-21', 6219, 16063, 1461, 3150, '-181.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16809, '2022-10-21', 6219, 16063, 1461, NULL, '231.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-231.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16810, '2022-10-21', 6665, 16064, 1461, 4123, '1.0000', '9.5000', '9.5000', '11.0000', '11.0000', '97.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16811, '2022-10-21', 5640, 16065, 1461, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '528.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16812, '2022-10-21', 5715, 16066, 1462, 3023, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16813, '2022-10-21', 5926, 16067, 1463, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '118.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16814, '2022-10-21', 6652, 16068, 1463, 1414, '5.0000', '3.8000', '3.8000', '3.7900', '3.7900', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16815, '2022-10-21', 5949, 16069, 1463, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '188.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16816, '2022-10-21', 6220, 16070, 1463, 2388, '3.0000', '5.0000', '5.0000', '5.0000', '5.0000', '37.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16817, '2022-10-21', 6513, 16071, 1463, 578, '2.0000', '14.0000', '14.0000', '22.6800', '22.6800', '12.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16818, '2022-10-21', 6459, 16072, 1463, 966, '2.0000', '20.9000', '20.9000', '20.9000', '20.9000', '34.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16819, '2022-10-21', 6302, 16073, 1463, 2116, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '26.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16820, '2022-10-21', 6301, 16074, 1463, 4303, '1.0000', '10.8601', '10.8601', '13.5000', '13.5000', '140.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16821, '2022-10-21', 6075, 16075, 1463, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '885.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16822, '2022-10-21', 6528, 16076, 1463, 1899, '5.0000', '5.9800', '5.9800', '7.5000', '7.5000', '200.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16823, '2022-10-21', 6328, 16077, 1463, 3817, '1.0000', '24.4100', '24.4100', '26.9000', '26.9000', '41.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16824, '2022-10-21', 5586, 16078, 1463, 3135, '1.0000', '28.9000', '28.9000', '34.6000', '34.6000', '183.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16825, '2022-10-21', 6228, 16079, 1463, NULL, '1.0000', '20.9500', '20.9500', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16941, '2022-10-21', 6908, 16193, 1464, 4249, '5.0000', '16.2000', '16.2000', '18.4000', '18.4000', '85.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16940, '2022-10-21', 6907, 16192, 1464, 4248, '5.0000', '9.0000', '9.0000', '10.2000', '10.2000', '227.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16939, '2022-10-21', 6895, 16191, 1464, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '57.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16938, '2022-10-21', 6860, 16190, 1464, 1977, '12.0000', '15.4923', '15.4923', '22.3000', '22.3000', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16937, '2022-10-21', 6813, 16189, 1464, 4247, '2.0000', '12.6220', '12.6220', '14.3000', '14.3000', '117.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16936, '2022-10-21', 6792, 16188, 1464, 1453, '1.0000', '56.0000', '56.0000', '56.0000', '56.0000', '149.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16935, '2022-10-21', 6778, 16187, 1464, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '126.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16934, '2022-10-21', 6766, 16186, 1464, 1399, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16933, '2022-10-21', 6559, 16185, 1464, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '38.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16932, '2022-10-21', 6543, 16184, 1464, 2062, '2.0000', '11.2000', '11.2000', '13.9200', '13.9200', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16931, '2022-10-21', 6478, 16183, 1464, 4322, '5.0000', '7.8980', '7.8980', '9.7200', '9.7200', '91.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16930, '2022-10-21', 6385, 16182, 1464, 2309, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16929, '2022-10-21', 6383, 16181, 1464, 4117, '3.0000', '8.7203', '8.7203', '9.8000', '9.8000', '84.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16928, '2022-10-21', 6304, 16180, 1464, 4304, '5.0000', '14.9059', '14.9059', '17.0000', '17.0000', '188.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16927, '2022-10-21', 6297, 16179, 1464, 4208, '4.0000', '9.8672', '9.8672', '10.4000', '10.4000', '44.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16926, '2022-10-21', 6257, 16178, 1464, 1887, '1.0000', '6.0000', '6.0000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16925, '2022-10-21', 6205, 16177, 1464, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '56.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16924, '2022-10-21', 6197, 16176, 1464, NULL, '7.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16923, '2022-10-21', 6197, 16176, 1464, 3630, '-6.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16922, '2022-10-21', 6156, 16175, 1464, 4076, '10.0000', '5.0000', '5.0000', '0.5500', '0.5500', '179.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16921, '2022-10-21', 6122, 16174, 1464, 648, '1.0000', '47.2000', '47.2000', '47.2000', '47.2000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16920, '2022-10-21', 6120, 16173, 1464, 1995, '5.0000', '14.8500', '14.8500', '14.8500', '14.8500', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16919, '2022-10-21', 6088, 16172, 1464, 3759, '3.0000', '24.0714', '24.0714', '26.8000', '26.8000', '29.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16918, '2022-10-21', 6082, 16171, 1464, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '152.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16917, '2022-10-21', 6038, 16170, 1464, 526, '3.0000', '8.6400', '8.6400', '9.7000', '9.7000', '136.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16916, '2022-10-21', 6037, 16169, 1464, 1315, '3.0000', '9.1000', '9.1000', '9.1000', '9.1000', '2.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16915, '2022-10-21', 6006, 16168, 1464, 1871, '1.0000', '10.8300', '10.8300', '15.9600', '15.9600', '18.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16914, '2022-10-21', 5983, 16167, 1464, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '125.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16913, '2022-10-21', 5976, 16166, 1464, 4105, '3.0000', '7.5312', '7.5312', '8.2000', '8.2000', '211.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16912, '2022-10-21', 5973, 16165, 1464, 4079, '3.0000', '7.9600', '7.9600', '8.9000', '8.9000', '40.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16911, '2022-10-21', 5959, 16164, 1464, 4197, '2.0000', '25.7381', '25.7381', '29.8000', '29.8000', '38.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16910, '2022-10-21', 5882, 16163, 1464, 4319, '1.0000', '10.6700', '10.6700', '11.0000', '11.0000', '99.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16909, '2022-10-21', 5847, 16162, 1464, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '279.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16908, '2022-10-21', 5757, 16161, 1464, 1115, '2.0000', '40.0000', '40.0000', '42.0000', '42.0000', '91.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16907, '2022-10-21', 5754, 16160, 1464, NULL, '2.0000', '7.2000', '7.2000', '9.2000', '9.2000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16906, '2022-10-21', 5696, 16159, 1464, 514, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '54.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16905, '2022-10-21', 5641, 16158, 1464, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '44.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16904, '2022-10-21', 5585, 16157, 1464, 3962, '1.0000', '23.4000', '23.4000', '28.5000', '28.5000', '15.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16903, '2022-10-21', 5554, 16156, 1464, 3760, '1.0000', '278.7800', '278.7800', '309.8000', '309.8000', '5.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16902, '2022-10-21', 5540, 16155, 1464, 1280, '3.0000', '22.0000', '22.0000', '33.0000', '33.0000', '40.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16901, '2022-10-21', 5535, 16154, 1464, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '866.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16900, '2022-10-21', 5477, 16153, 1464, 4187, '5.0000', '22.0699', '22.0699', '27.5000', '27.5000', '41.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16899, '2022-10-21', 5472, 16152, 1464, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '314.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16898, '2022-10-21', 5463, 16151, 1464, 4315, '3.0000', '10.8900', '10.8900', '12.4000', '12.4000', '114.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16897, '2022-10-21', 5447, 16150, 1464, 3851, '3.0000', '24.7066', '24.7066', '28.7000', '28.7000', '196.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16896, '2022-10-21', 5435, 16149, 1464, 2308, '3.0000', '7.4000', '7.4000', '7.4000', '7.4000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16895, '2022-10-21', 5427, 16148, 1464, 2365, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '87.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16894, '2022-10-21', 5418, 16147, 1464, 1851, '4.0000', '5.5000', '5.5000', '5.5000', '5.5000', '36.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16942, '2022-10-21', 6074, 16194, 1471, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '367.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16875, '2022-10-21', 5677, 16128, 1465, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '41.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16876, '2022-10-21', 6032, 16129, 1465, 3889, '2.0000', '17.2100', '17.2100', '19.0000', '19.0000', '88.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16877, '2022-10-21', 5642, 16130, 1465, 3888, '1.0000', '24.4300', '24.4300', '26.9000', '26.9000', '56.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16878, '2022-10-21', 6232, 16131, 1465, 4320, '3.0000', '7.6225', '7.6225', '9.9000', '9.9000', '102.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16879, '2022-10-21', 6606, 16132, 1465, 1352, '1.0000', '15.5300', '15.5300', '26.1500', '26.1500', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16880, '2022-10-21', 5715, 16133, 1466, 2389, '2.0000', '13.1400', '13.1400', '13.1400', '13.1400', '16.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16881, '2022-10-21', 6890, 16134, 1467, 4124, '3.0000', '3.7809', '3.7809', '6.6000', '6.6000', '959.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16882, '2022-10-21', 5589, 16135, 1467, 2370, '1.0000', '9.4000', '9.4000', '9.4000', '9.4000', '112.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16883, '2022-10-21', 6907, 16136, 1467, 4248, '2.0000', '9.0000', '9.0000', '10.2000', '10.2000', '227.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16884, '2022-10-21', 6832, 16137, 1467, 1381, '1.0000', '2.6000', '2.6000', '2.6000', '2.6000', '282.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16885, '2022-10-21', 5472, 16138, 1468, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '314.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16886, '2022-10-21', 5904, 16139, 1469, 1308, '2.0000', '24.7000', '24.7000', '24.7000', '24.7000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16887, '2022-10-21', 6074, 16140, 1469, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '387.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16888, '2022-10-21', 5805, 16141, 1469, 1305, '3.0000', '9.0000', '9.0000', '10.8000', '10.8000', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16889, '2022-10-21', 6079, 16142, 1469, 939, '1.0000', '19.0000', '19.0000', '19.0000', '19.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16890, '2022-10-21', 6345, 16143, 1470, 1922, '3.0000', '3.6300', '3.6300', '4.4000', '4.4000', '58.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16891, '2022-10-21', 6825, 16144, 1470, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '789.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16892, '2022-10-21', 6378, 16145, 1470, 2255, '1.0000', '26.5000', '26.5000', '26.5000', '26.5000', '47.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16893, '2022-10-21', 5969, 16146, 1470, 2023, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '13.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16943, '2022-10-21', 6304, 16195, 1471, 4304, '5.0000', '14.9059', '14.9059', '17.0000', '17.0000', '183.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16944, '2022-10-21', 6125, 16196, 1471, 3053, '5.0000', '10.5000', '10.5000', '12.5000', '12.5000', '120.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16945, '2022-10-21', 6695, 16197, 1471, 3044, '15.0000', '4.0000', '4.0000', '4.0000', '4.0000', '64.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16946, '2022-10-21', 6666, 16198, 1471, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16947, '2022-10-21', 6078, 16199, 1472, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '511.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16948, '2022-10-21', 6082, 16200, 1473, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '147.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16949, '2022-10-21', 6389, 16201, 1473, 4114, '5.0000', '8.7525', '8.7525', '9.7000', '9.7000', '321.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16950, '2022-10-21', 6908, 16202, 1473, 4249, '5.0000', '16.2000', '16.2000', '18.4000', '18.4000', '80.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16951, '2022-10-21', 6435, 16203, 1473, 3833, '5.0000', '8.1000', '8.1000', '9.0000', '9.0000', '70.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16952, '2022-10-22', 6828, 16204, 1474, 4073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '6.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18083, '2022-10-25', 5535, 17311, 1553, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '823.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18082, '2022-10-25', 5439, 17310, 1553, 3799, '5.0000', '27.2586', '27.2586', '58.4000', '58.4000', '89.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18081, '2022-10-22', 6900, 17309, 1475, 3908, '6.0000', '6.0000', '6.0000', '6.6000', '6.6000', '178.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18080, '2022-10-22', 6669, 17308, 1475, 1848, '5.0000', '6.0000', '6.0000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18079, '2022-10-22', 6569, 17307, 1475, 3995, '6.0000', '15.0000', '15.0000', '16.0000', '16.0000', '16.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18078, '2022-10-22', 6491, 17306, 1475, 2295, '10.0000', '9.6200', '9.6200', '9.6200', '9.6200', '153.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18077, '2022-10-22', 6467, 17305, 1475, 4321, '5.0000', '44.6300', '44.6300', '50.6000', '50.6000', '51.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18076, '2022-10-22', 6453, 17304, 1475, 547, '2.0000', '50.6000', '50.6000', '50.6000', '50.6000', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18075, '2022-10-22', 6442, 17303, 1475, 3804, '2.0000', '75.1600', '75.1600', '83.6000', '83.6000', '5.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18074, '2022-10-22', 6399, 17302, 1475, 2019, '10.0000', '6.1000', '6.1000', '6.1000', '6.1000', '155.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18073, '2022-10-22', 6391, 17301, 1475, 762, '6.0000', '3.3200', '3.3200', '3.7000', '3.7000', '19.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18072, '2022-10-22', 6389, 17300, 1475, 4114, '10.0000', '8.7525', '8.7525', '9.7000', '9.7000', '311.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18071, '2022-10-22', 6368, 17299, 1475, NULL, '12.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18070, '2022-10-22', 6368, 17299, 1475, 4148, '-7.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18069, '2022-10-22', 6366, 17298, 1475, 1418, '3.0000', '55.1000', '55.1000', '85.7800', '85.7800', '4.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18068, '2022-10-22', 6363, 17297, 1475, 1411, '6.0000', '14.8000', '14.8000', '22.7800', '22.7800', '133.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18067, '2022-10-22', 6320, 17296, 1475, 1053, '2.0000', '63.2200', '63.2200', '87.4100', '87.4100', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18066, '2022-10-22', 6314, 17295, 1475, 655, '2.0000', '33.0200', '33.0200', '33.0200', '33.0200', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18065, '2022-10-22', 6304, 17294, 1475, 4304, '6.0000', '14.9059', '14.9059', '17.0000', '17.0000', '177.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18064, '2022-10-22', 6292, 17293, 1475, 4206, '6.0000', '8.0455', '8.0455', '9.2000', '9.2000', '34.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18063, '2022-10-22', 6214, 17292, 1475, 750, '10.0000', '2.8000', '2.8000', '2.8000', '2.8000', '109.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18062, '2022-10-22', 6210, 17291, 1475, 2289, '5.0000', '7.1000', '7.1000', '12.3000', '12.3000', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18061, '2022-10-22', 6202, 17290, 1475, 3985, '5.0000', '9.5000', '9.5000', '10.0000', '10.0000', '331.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18060, '2022-10-22', 6197, 17289, 1475, NULL, '9.0000', '45.5000', '45.5000', '45.5000', '45.5000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18059, '2022-10-22', 6197, 17289, 1475, 3630, '-7.0000', '45.5000', '45.5000', '45.5000', '45.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18058, '2022-10-22', 6194, 17288, 1475, 2261, '5.0000', '5.3000', '5.3000', '7.5000', '7.5000', '88.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18057, '2022-10-22', 6178, 17287, 1475, 3060, '20.0000', '1.6000', '1.6000', '2.2000', '2.2000', '516.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18056, '2022-10-22', 6151, 17286, 1475, 2044, '3.0000', '6.7000', '6.7000', '12.6000', '12.6000', '44.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18055, '2022-10-22', 6082, 17285, 1475, 3032, '10.0000', '6.9000', '6.9000', '6.9000', '6.9000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18054, '2022-10-22', 6078, 17284, 1475, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '506.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18053, '2022-10-22', 6024, 17283, 1475, 3896, '6.0000', '4.9900', '4.9900', '5.5000', '5.5000', '45.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18052, '2022-10-22', 6006, 17282, 1475, 1871, '2.0000', '10.8300', '10.8300', '15.9600', '15.9600', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18051, '2022-10-22', 6000, 17281, 1475, 4085, '5.0000', '11.0487', '11.0487', '11.1000', '11.1000', '43.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18050, '2022-10-22', 5971, 17280, 1475, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '46.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18049, '2022-10-22', 5947, 17279, 1475, 3905, '10.0000', '13.2092', '13.2092', '13.8000', '13.8000', '196.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18048, '2022-10-22', 5882, 17278, 1475, 4319, '6.0000', '10.6700', '10.6700', '11.0000', '11.0000', '93.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18047, '2022-10-22', 5873, 17277, 1475, 1307, '5.0000', '12.0000', '12.0000', '12.0000', '12.0000', '33.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18046, '2022-10-22', 5849, 17276, 1475, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '21.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18045, '2022-10-22', 5676, 17275, 1475, 2018, '3.0000', '30.0000', '30.0000', '34.0000', '34.0000', '58.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18044, '2022-10-22', 5598, 17274, 1475, 3031, '10.0000', '2.6000', '2.6000', '4.3000', '4.3000', '499.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18043, '2022-10-22', 5556, 17273, 1475, 585, '3.0000', '30.0000', '30.0000', '30.0000', '30.0000', '15.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18042, '2022-10-22', 5555, 17272, 1475, 1032, '1.0000', '107.0000', '107.0000', '107.0000', '107.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18041, '2022-10-22', 5507, 17271, 1475, 1379, '5.0000', '4.9900', '4.9900', '4.9900', '4.9900', '5.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18040, '2022-10-22', 5473, 17270, 1475, 3904, '10.0000', '4.5000', '4.5000', '5.0000', '5.0000', '438.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18039, '2022-10-22', 5447, 17269, 1475, 3851, '6.0000', '24.7066', '24.7066', '28.7000', '28.7000', '188.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18084, '2022-10-25', 5731, 17312, 1553, 4301, '10.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1131.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (16999, '2022-10-22', 6888, 16249, 1476, 3127, '1.0000', '38.7000', '38.7000', '43.0000', '43.0000', '20.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17000, '2022-10-22', 6478, 16250, 1476, 4322, '10.0000', '7.8980', '7.8980', '9.7200', '9.7200', '81.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17001, '2022-10-22', 6847, 16251, 1476, 1150, '6.0000', '6.5000', '6.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17002, '2022-10-22', 6849, 16252, 1476, 1149, '6.0000', '6.5000', '6.5000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17003, '2022-10-22', 5499, 16253, 1476, 2378, '6.0000', '3.8000', '3.8000', '3.8000', '3.8000', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17004, '2022-10-22', 6431, 16254, 1476, 3834, '10.0000', '4.3200', '4.3200', '5.3000', '5.3000', '273.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17005, '2022-10-22', 6848, 16255, 1476, 1151, '1.0000', '6.5000', '6.5000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17006, '2022-10-22', 6079, 16256, 1476, 939, '2.0000', '19.0000', '19.0000', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17007, '2022-10-22', 6352, 16257, 1476, 1409, '20.0000', '2.5000', '2.5000', '4.5000', '4.5000', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17008, '2022-10-22', 5892, 16258, 1476, 4062, '2.0000', '8.5642', '8.5642', '11.7000', '11.7000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17009, '2022-10-22', 6446, 16259, 1476, 1449, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '73.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17010, '2022-10-22', 6286, 16260, 1476, 4222, '6.0000', '10.6033', '10.6033', '11.8000', '11.8000', '53.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17011, '2022-10-22', 5799, 16261, 1476, 2066, '5.0000', '20.1300', '20.1300', '27.2600', '27.2600', '6.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17012, '2022-10-22', 6778, 16262, 1476, 2052, '5.0000', '19.3400', '19.3400', '26.1800', '26.1800', '121.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17013, '2022-10-22', 5595, 16263, 1476, 3516, '-6.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17014, '2022-10-22', 5595, 16263, 1476, NULL, '8.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17015, '2022-10-22', 6289, 16264, 1476, 4204, '2.0000', '117.0000', '117.0000', '130.0000', '130.0000', '8.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17016, '2022-10-22', 5726, 16265, 1476, 4318, '6.0000', '17.6400', '17.6400', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17017, '2022-10-22', 6914, 16266, 1476, 4334, '5.0000', '30.5000', '30.5000', '34.6000', '34.6000', '4.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17018, '2022-10-22', 6915, 16267, 1476, 4335, '6.0000', '35.0200', '35.0200', '39.7000', '39.7000', '14.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17019, '2022-10-22', 5463, 16268, 1476, 4315, '6.0000', '10.8900', '10.8900', '12.4000', '12.4000', '108.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17020, '2022-10-22', 6798, 16269, 1476, 4331, '2.0000', '119.5300', '119.5300', '135.5000', '135.5000', '4.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17021, '2022-10-22', 6526, 16270, 1476, 4262, '2.0000', '154.7900', '154.7900', '175.5000', '175.5000', '9.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17022, '2022-10-22', 6911, 16271, 1476, 4265, '2.0000', '97.4600', '97.4600', '107.3000', '107.3000', '30.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17023, '2022-10-22', 6912, 16272, 1476, 4266, '10.0000', '10.3200', '10.3200', '11.7000', '11.7000', '3.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17024, '2022-10-22', 6907, 16273, 1476, 4248, '10.0000', '9.0000', '9.0000', '10.2000', '10.2000', '217.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17025, '2022-10-22', 5657, 16274, 1476, 2382, '10.0000', '4.2000', '4.2000', '4.2000', '4.2000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17026, '2022-10-22', 5586, 16275, 1476, 3135, '6.0000', '28.9000', '28.9000', '34.6000', '34.6000', '177.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17027, '2022-10-22', 6285, 16276, 1476, 4145, '10.0000', '9.6868', '9.6868', '10.9800', '10.9800', '44.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17028, '2022-10-22', 6184, 16277, 1476, 945, '5.0000', '7.8500', '7.8500', '10.9900', '10.9900', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17029, '2022-10-22', 6416, 16278, 1476, 962, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '60.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17030, '2022-10-22', 5886, 16279, 1476, 927, '5.0000', '8.6000', '8.6000', '8.6000', '8.6000', '109.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17031, '2022-10-22', 6929, 16280, 1476, 4349, '6.0000', '47.0000', '47.0000', '52.0000', '52.0000', '114.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17032, '2022-10-22', 6898, 16281, 1476, 3809, '6.0000', '9.0000', '9.0000', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17033, '2022-10-22', 6910, 16282, 1476, 4251, '5.0000', '11.7000', '11.7000', '13.4000', '13.4000', '53.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17034, '2022-10-22', 6927, 16283, 1476, 4342, '5.0000', '8.9000', '8.9000', '9.9000', '9.9000', '139.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17035, '2022-10-22', 6930, 16284, 1476, 4351, '5.0000', '40.0000', '40.0000', '44.0000', '44.0000', '95.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17036, '2022-10-22', 6931, 16285, 1476, 4350, '5.0000', '30.0000', '30.0000', '34.0000', '34.0000', '95.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17037, '2022-10-22', 6893, 16286, 1476, 4347, '3.0000', '49.0000', '49.0000', '55.0000', '55.0000', '177.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17038, '2022-10-22', 6928, 16287, 1476, 4348, '3.0000', '49.0000', '49.0000', '55.0000', '55.0000', '117.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17039, '2022-10-22', 6753, 16288, 1476, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '140.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17040, '2022-10-22', 6852, 16289, 1476, 4074, '6.0000', '8.4000', '8.4000', '12.4000', '12.4000', '29.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17041, '2022-10-22', 5528, 16290, 1476, 3800, '5.0000', '13.2556', '13.2556', '16.6000', '16.6000', '40.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17042, '2022-10-22', 5439, 16291, 1476, 3799, '5.0000', '27.2586', '27.2586', '58.4000', '58.4000', '95.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17043, '2022-10-22', 6234, 16292, 1476, 3801, '5.0000', '34.8921', '34.8921', '40.3000', '40.3000', '27.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17044, '2022-10-22', 6896, 16293, 1476, 3807, '6.0000', '28.8100', '28.8100', '32.1000', '32.1000', '43.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17045, '2022-10-22', 6216, 16294, 1476, 3617, '50.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2240.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17046, '2022-10-22', 6923, 16295, 1476, 4338, '5.0000', '3.6000', '3.6000', '4.0000', '4.0000', '475.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17047, '2022-10-22', 5689, 16296, 1476, 1428, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '27.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17048, '2022-10-22', 6596, 16297, 1476, 1349, '5.0000', '18.9000', '18.9000', '20.9000', '20.9000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17049, '2022-10-22', 6005, 16298, 1476, 1939, '6.0000', '7.2000', '7.2000', '9.8000', '9.8000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17050, '2022-10-22', 6260, 16299, 1476, 4144, '5.0000', '5.7594', '5.7594', '6.4000', '6.4000', '9.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17051, '2022-10-22', 5742, 16300, 1476, 516, '1.0000', '311.6000', '311.6000', '311.6000', '311.6000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17052, '2022-10-22', 6879, 16301, 1476, 3121, '10.0000', '3.8700', '3.8700', '5.0000', '5.0000', '301.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17053, '2022-10-22', 5967, 16302, 1476, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2378.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17054, '2022-10-22', 6496, 16303, 1476, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '118.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17055, '2022-10-22', 6103, 16304, 1476, 2275, '5.0000', '15.2000', '15.2000', '15.2000', '15.2000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17056, '2022-10-22', 6906, 16305, 1476, 4140, '5.0000', '10.8000', '10.8000', '12.0000', '12.0000', '62.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17057, '2022-10-22', 6860, 16306, 1477, 1977, '2.0000', '15.4923', '15.4923', '22.3000', '22.3000', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17058, '2022-10-22', 6074, 16307, 1477, 2303, '6.0000', '8.5000', '8.5000', '8.5000', '8.5000', '361.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17059, '2022-10-22', 5640, 16308, 1477, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '526.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17060, '2022-10-22', 5657, 16309, 1477, 2382, '3.0000', '4.2000', '4.2000', '4.2000', '4.2000', '133.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17061, '2022-10-22', 6007, 16310, 1477, 2391, '2.0000', '11.3800', '11.3800', '11.3800', '11.3800', '42.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17187, '2022-10-22', 6924, 16435, 1478, 4339, '1.0000', '2.7000', '2.7000', '3.0000', '3.0000', '499.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17186, '2022-10-22', 6890, 16434, 1478, 4124, '2.0000', '3.7809', '3.7809', '6.6000', '6.6000', '957.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17185, '2022-10-22', 6608, 16433, 1478, 3774, '1.0000', '12.9538', '12.9538', '16.8800', '16.8800', '115.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17184, '2022-10-22', 6478, 16432, 1478, 4322, '1.0000', '7.8980', '7.8980', '9.7200', '9.7200', '80.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17183, '2022-10-22', 6314, 16431, 1478, 1052, '1.0000', '33.0200', '33.0200', '33.0200', '33.0200', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17182, '2022-10-22', 6301, 16430, 1478, 4303, '1.0000', '10.8601', '10.8601', '13.5000', '13.5000', '137.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17181, '2022-10-22', 6242, 16429, 1478, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '50.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17180, '2022-10-22', 6201, 16428, 1478, 2315, '1.0000', '6.9000', '6.9000', '9.1000', '9.1000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17179, '2022-10-22', 6074, 16427, 1478, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '346.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17178, '2022-10-22', 5898, 16426, 1478, 2350, '1.0000', '13.2000', '13.2000', '13.2000', '13.2000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17177, '2022-10-22', 5853, 16425, 1478, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '364.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17176, '2022-10-22', 5847, 16424, 1478, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '278.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17175, '2022-10-22', 5799, 16423, 1478, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17174, '2022-10-22', 5749, 16422, 1478, 1302, '1.0000', '8.1400', '8.1400', '8.1400', '8.1400', '53.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17173, '2022-10-22', 5677, 16421, 1478, 2351, '1.0000', '13.2000', '13.2000', '15.4000', '15.4000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17172, '2022-10-22', 5676, 16420, 1478, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '60.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17171, '2022-10-22', 5641, 16419, 1478, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '43.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17170, '2022-10-22', 5640, 16418, 1478, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '520.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17169, '2022-10-22', 5586, 16417, 1478, 3135, '1.0000', '28.9000', '28.9000', '34.6000', '34.6000', '176.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17168, '2022-10-22', 5585, 16416, 1478, 3962, '1.0000', '23.4000', '23.4000', '28.5000', '28.5000', '14.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17167, '2022-10-22', 5554, 16415, 1478, 3760, '1.0000', '278.7800', '278.7800', '341.0000', '341.0000', '4.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17166, '2022-10-22', 5472, 16414, 1478, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '313.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17165, '2022-10-22', 5451, 16413, 1478, 2387, '3.0000', '5.8600', '5.8600', '5.8600', '5.8600', '1035.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17229, '2022-10-22', 6083, 16476, 1493, 3061, '3.0000', '2.7000', '2.7000', '2.7000', '2.7000', '312.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17128, '2022-10-22', 6205, 16377, 1479, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17127, '2022-10-22', 6121, 16376, 1479, 1907, '1.0000', '25.5000', '25.5000', '29.2000', '29.2000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17126, '2022-10-22', 5948, 16375, 1479, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '146.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17125, '2022-10-22', 5926, 16374, 1479, 1970, '4.0000', '10.9000', '10.9000', '10.9000', '10.9000', '114.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17124, '2022-10-22', 5677, 16373, 1479, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17123, '2022-10-22', 5629, 16372, 1479, 4299, '1.0000', '8.9474', '8.9474', '10.5000', '10.5000', '352.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17129, '2022-10-22', 6839, 16378, 1479, 3769, '2.0000', '4.9100', '4.9100', '6.4300', '6.4300', '44.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17093, '2022-10-22', 5947, 16342, 1480, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '208.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17094, '2022-10-22', 5715, 16343, 1480, 2389, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17095, '2022-10-22', 6218, 16344, 1480, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '179.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17096, '2022-10-22', 6218, 16345, 1481, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '178.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17097, '2022-10-22', 6590, 16346, 1481, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17098, '2022-10-22', 5715, 16347, 1482, 2389, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '14.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17099, '2022-10-22', 5849, 16348, 1483, 2357, '2.0000', '3.1000', '3.1000', '3.1000', '3.1000', '21.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17100, '2022-10-22', 5598, 16349, 1483, 3031, '3.0000', '2.6000', '2.6000', '4.3000', '4.3000', '499.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17101, '2022-10-22', 6082, 16350, 1483, 3032, '3.0000', '6.9000', '6.9000', '6.9000', '6.9000', '134.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17102, '2022-10-22', 6517, 16351, 1483, 2254, '2.0000', '8.7000', '8.7000', '11.0000', '11.0000', '60.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17103, '2022-10-22', 6408, 16352, 1483, 1986, '2.0000', '4.6700', '4.6700', '6.0300', '6.0300', '159.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17104, '2022-10-22', 5949, 16353, 1483, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '185.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17105, '2022-10-22', 5948, 16354, 1483, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '146.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17106, '2022-10-22', 5967, 16355, 1483, 3132, '3.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2375.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17107, '2022-10-22', 5986, 16356, 1483, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '56.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17108, '2022-10-22', 6348, 16357, 1483, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '28.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17109, '2022-10-22', 6435, 16358, 1483, 3833, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '68.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17110, '2022-10-22', 5715, 16359, 1483, 2389, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '13.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17111, '2022-10-22', 5689, 16360, 1483, 1428, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17112, '2022-10-22', 6221, 16361, 1484, 4363, '1.0000', '15.6990', '15.6990', '17.4000', '17.4000', '159.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17113, '2022-10-22', 5827, 16362, 1484, 3651, '3.0000', '5.9947', '5.9947', '6.6000', '6.6000', '24.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17114, '2022-10-22', 6696, 16363, 1484, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '163.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17115, '2022-10-22', 6379, 16364, 1484, 3421, '2.0000', '8.7056', '8.7056', '2.1000', '2.1000', '97.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17116, '2022-10-22', 6301, 16365, 1485, 4303, '2.0000', '10.8601', '10.8601', '13.5000', '13.5000', '137.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17117, '2022-10-22', 6552, 16366, 1485, 577, '1.0000', '186.8000', '186.8000', '186.9500', '186.9500', '11.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17118, '2022-10-22', 6205, 16367, 1485, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '53.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17119, '2022-10-22', 5991, 16368, 1485, 4084, '2.0000', '42.0960', '42.0960', '43.0000', '43.0000', '69.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17120, '2022-10-22', 5677, 16369, 1485, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '36.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17121, '2022-10-22', 6665, 16370, 1485, 4123, '1.0000', '9.5000', '9.5000', '11.0000', '11.0000', '96.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17122, '2022-10-22', 5898, 16371, 1485, 2350, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17153, '2022-10-22', 6753, 16401, 1486, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '135.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17152, '2022-10-22', 6685, 16400, 1486, 3998, '100.0000', '0.5000', '0.5000', '0.6000', '0.6000', '444.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17151, '2022-10-22', 6220, 16399, 1486, 4360, '10.0000', '5.3412', '5.3412', '6.0000', '6.0000', '390.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17150, '2022-10-22', 5487, 16398, 1486, 3816, '10.0000', '17.1500', '17.1500', '18.9000', '18.9000', '166.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17154, '2022-10-22', 6925, 16402, 1486, 4340, '20.0000', '4.5000', '4.5000', '5.0000', '5.0000', '78.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17135, '2022-10-22', 5947, 16384, 1487, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '207.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17136, '2022-10-22', 6218, 16385, 1487, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '177.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17137, '2022-10-22', 5969, 16386, 1488, 2023, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '11.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17138, '2022-10-22', 6595, 16387, 1488, 2565, '1.0000', '7.9000', '7.9000', '9.2000', '9.2000', '58.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17139, '2022-10-22', 5967, 16388, 1488, 3132, '2.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2373.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17140, '2022-10-22', 6216, 16389, 1489, 3617, '100.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2140.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17141, '2022-10-22', 6374, 16390, 1489, 3614, '100.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3747.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17142, '2022-10-22', 6117, 16391, 1489, 1320, '10.0000', '6.6000', '6.6000', '6.6000', '6.6000', '267.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17143, '2022-10-22', 6816, 16392, 1489, 3390, '3.0000', '375476536.5811', '375476536.5811', '11.9000', '11.9000', '51.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17144, '2022-10-22', 5947, 16393, 1489, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '205.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17145, '2022-10-22', 6817, 16394, 1489, 2024, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '45.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17146, '2022-10-22', 6825, 16395, 1489, 3670, '100.0000', '46.2800', '46.2800', '1.0000', '1.0000', '689.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17147, '2022-10-22', 5610, 16396, 1489, 4253, '1.0000', '29.2166', '29.2166', '60.5000', '60.5000', '34.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17148, '2022-10-22', 5997, 16397, 1489, 4184, '-5.0000', '0.0000', '0.0000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17149, '2022-10-22', 5997, 16397, 1489, NULL, '6.0000', '0.0000', '0.0000', '6.6000', '6.6000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17155, '2022-10-22', 6075, 16403, 1490, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '880.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17156, '2022-10-22', 5640, 16404, 1490, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '520.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17157, '2022-10-22', 6074, 16405, 1491, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '346.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17158, '2022-10-22', 5553, 16406, 1491, 4142, '2.0000', '33.1388', '33.1388', '39.0000', '39.0000', '38.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17159, '2022-10-22', 6295, 16407, 1491, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '82.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17160, '2022-10-22', 6242, 16408, 1491, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '50.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17161, '2022-10-22', 5926, 16409, 1491, 1970, '5.0000', '10.9000', '10.9000', '10.9000', '10.9000', '109.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17162, '2022-10-22', 5949, 16410, 1491, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '180.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17163, '2022-10-22', 5967, 16411, 1491, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2363.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17164, '2022-10-22', 6590, 16412, 1492, 2281, '2.0000', '25.3000', '25.3000', '25.3000', '25.3000', '7.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17228, '2022-10-22', 6309, 16475, 1493, 3422, '4.0000', '7.5000', '7.5000', '8.4000', '8.4000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17227, '2022-10-22', 6738, 16474, 1493, 1905, '4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17226, '2022-10-22', 6603, 16473, 1493, 3768, '2.0000', '6.1900', '6.1900', '8.2900', '8.2900', '40.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17225, '2022-10-22', 6592, 16472, 1493, 2373, '5.0000', '3.1800', '3.1800', '3.1800', '3.1800', '73.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17224, '2022-10-22', 6376, 16471, 1493, 2364, '20.0000', '1.6000', '1.6000', '1.9200', '1.9200', '1964.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17223, '2022-10-22', 6358, 16470, 1493, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4012.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17222, '2022-10-22', 6222, 16469, 1493, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17221, '2022-10-22', 6088, 16468, 1493, 3759, '1.0000', '24.0714', '24.0714', '26.8000', '26.8000', '28.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17220, '2022-10-22', 6007, 16467, 1493, 4364, '20.0000', '1.4788', '1.4788', '1.5000', '1.5000', '376.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17219, '2022-10-22', 5640, 16466, 1493, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '516.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17218, '2022-10-22', 5451, 16465, 1493, 2387, '2.0000', '5.8600', '5.8600', '7.3200', '7.3200', '1033.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17230, '2022-10-22', 5947, 16477, 1498, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '201.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17201, '2022-10-22', 5757, 16448, 1494, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '90.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17202, '2022-10-22', 6923, 16449, 1494, 4338, '3.0000', '3.6000', '3.6000', '4.0000', '4.0000', '472.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17203, '2022-10-22', 6922, 16450, 1494, 4312, '2.0000', '7.3800', '7.3800', '8.2000', '8.2000', '48.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17204, '2022-10-22', 6612, 16451, 1494, 3772, '3.0000', '16.5600', '16.5600', '20.9200', '20.9200', '77.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17205, '2022-10-22', 6933, 16452, 1494, 4358, '20.0000', '1.0500', '1.0500', '1.2000', '1.2000', '480.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17206, '2022-10-22', 6378, 16453, 1494, 2255, '2.0000', '26.5000', '26.5000', '26.5000', '26.5000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17207, '2022-10-22', 6253, 16454, 1495, 582, '1.0000', '168.6000', '168.6000', '168.6000', '168.6000', '6.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17208, '2022-10-22', 5947, 16455, 1496, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '203.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17209, '2022-10-22', 6036, 16456, 1497, 3894, '4.0000', '4.4300', '4.4300', '5.4000', '5.4000', '30.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17210, '2022-10-22', 5730, 16457, 1497, 4300, '2.0000', '6.4114', '6.4114', '8.8000', '8.8000', '148.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17211, '2022-10-22', 5828, 16458, 1497, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '55.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17212, '2022-10-22', 5731, 16459, 1497, 4301, '4.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1174.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17213, '2022-10-22', 6813, 16460, 1497, 4247, '2.0000', '12.6220', '12.6220', '14.3000', '14.3000', '115.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17214, '2022-10-22', 5968, 16461, 1497, 4198, '4.0000', '10.7800', '10.7800', '12.0000', '12.0000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17215, '2022-10-22', 6075, 16462, 1497, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '870.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17216, '2022-10-22', 5949, 16463, 1497, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '174.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17217, '2022-10-22', 5948, 16464, 1497, 2075, '4.0000', '6.0000', '6.0000', '9.0000', '9.0000', '142.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17231, '2022-10-22', 5715, 16478, 1498, 2389, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17232, '2022-10-22', 5472, 16479, 1499, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '303.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17233, '2022-10-22', 5640, 16480, 1499, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '515.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17234, '2022-10-22', 6379, 16481, 1499, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '94.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17235, '2022-10-22', 5947, 16482, 1500, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '199.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17236, '2022-10-24', 5947, 16483, 1501, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '198.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17237, '2022-10-24', 5677, 16484, 1502, 2351, '3.0000', '13.2000', '13.2000', '15.4000', '15.4000', '33.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17238, '2022-10-24', 6383, 16485, 1502, 4117, '5.0000', '8.7203', '8.7203', '9.8000', '9.8000', '79.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17239, '2022-10-24', 6390, 16486, 1502, 3909, '-2.0000', '29.4500', '29.4500', '29.4500', '29.4500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17240, '2022-10-24', 6390, 16486, 1502, NULL, '3.0000', '29.4500', '29.4500', '29.4500', '29.4500', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17241, '2022-10-24', 6074, 16487, 1502, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '342.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17242, '2022-10-24', 6345, 16488, 1502, 1922, '6.0000', '3.6300', '3.6300', '4.4000', '4.4000', '52.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17243, '2022-10-24', 6664, 16489, 1502, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '707.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17244, '2022-10-24', 6890, 16490, 1502, 4124, '10.0000', '3.7809', '3.7809', '6.6000', '6.6000', '947.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17245, '2022-10-24', 6214, 16491, 1503, 750, '2.0000', '2.8000', '2.8000', '2.8000', '2.8000', '109.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17246, '2022-10-24', 5778, 16492, 1503, 3822, '1.0000', '16.3911', '16.3911', '18.0000', '18.0000', '74.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17247, '2022-10-24', 5847, 16493, 1503, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '276.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17248, '2022-10-24', 5926, 16494, 1503, 1970, '2.0000', '10.9000', '10.9000', '10.9000', '10.9000', '107.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17249, '2022-10-24', 5949, 16495, 1503, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '172.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17250, '2022-10-24', 6744, 16496, 1503, 4216, '1.0000', '10.2184', '10.2184', '12.0000', '12.0000', '26.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17251, '2022-10-24', 6391, 16497, 1503, 762, '3.0000', '3.3200', '3.3200', '3.7000', '3.7000', '23.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17252, '2022-10-24', 5497, 16498, 1503, 2288, '1.0000', '5.6000', '5.6000', '8.3000', '8.3000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17253, '2022-10-24', 5641, 16499, 1504, 3890, '2.0000', '31.1000', '31.1000', '34.2100', '34.2100', '41.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17254, '2022-10-24', 5991, 16500, 1504, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '68.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17255, '2022-10-24', 5451, 16501, 1504, 2387, '15.0000', '5.8600', '5.8600', '7.3200', '7.3200', '1018.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17256, '2022-10-24', 6125, 16502, 1504, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '117.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17257, '2022-10-24', 6297, 16503, 1504, 4208, '3.0000', '9.8672', '9.8672', '10.4000', '10.4000', '41.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17258, '2022-10-24', 6681, 16504, 1504, 2014, '3.0000', '10.0000', '10.0000', '13.9800', '13.9800', '54.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17259, '2022-10-24', 6373, 16505, 1504, 3990, '1.0000', '72.2000', '72.2000', '79.4200', '79.4200', '9.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17260, '2022-10-24', 6371, 16506, 1504, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '13.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17261, '2022-10-24', 6074, 16507, 1504, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '332.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17262, '2022-10-24', 5674, 16508, 1504, 3549, '20.0000', '1.5000', '1.5000', '2.1000', '2.1000', '355.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17263, '2022-10-24', 6205, 16509, 1504, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '52.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17264, '2022-10-24', 6573, 16510, 1504, 4134, '-3.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17265, '2022-10-24', 6573, 16510, 1504, NULL, '4.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17266, '2022-10-24', 6420, 16511, 1504, 2557, '1.0000', '15.6000', '15.6000', '15.6000', '15.6000', '47.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17267, '2022-10-24', 5757, 16512, 1504, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '89.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17268, '2022-10-24', 6843, 16513, 1504, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '23.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17269, '2022-10-24', 6592, 16514, 1504, 2373, '6.0000', '3.1800', '3.1800', '3.1800', '3.1800', '67.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17270, '2022-10-24', 6375, 16515, 1504, 2304, '6.0000', '3.5200', '3.5200', '3.5200', '3.5200', '98.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17271, '2022-10-24', 6381, 16516, 1504, 4355, '6.0000', '4.8000', '4.8000', '5.3000', '5.3000', '594.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17272, '2022-10-24', 6211, 16517, 1504, 2067, '6.0000', '4.0000', '4.0000', '7.3000', '7.3000', '28.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17273, '2022-10-24', 6206, 16518, 1504, 2029, '2.0000', '7.8400', '7.8400', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17274, '2022-10-24', 6354, 16519, 1504, 2344, '10.0000', '2.3000', '2.3000', '4.0000', '4.0000', '485.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17275, '2022-10-24', 6348, 16520, 1504, 3418, '2.0000', '64.8559', '64.8559', '10.5000', '10.5000', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17276, '2022-10-24', 5650, 16521, 1504, 1438, '2.0000', '7.9000', '7.9000', '7.9000', '7.9000', '2.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17277, '2022-10-24', 6774, 16522, 1504, 1419, '1.0000', '32.4000', '32.4000', '40.1100', '40.1100', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17278, '2022-10-24', 5792, 16523, 1504, 4190, '2.0000', '34.1634', '34.1634', '39.7000', '39.7000', '88.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17279, '2022-10-24', 5974, 16524, 1504, 4080, '4.0000', '8.4900', '8.4900', '9.5000', '9.5000', '212.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17280, '2022-10-24', 6220, 16525, 1504, 4360, '10.0000', '5.3412', '5.3412', '6.0000', '6.0000', '380.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17281, '2022-10-24', 6603, 16526, 1504, 3768, '5.0000', '6.1900', '6.1900', '8.2900', '8.2900', '35.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17282, '2022-10-24', 5447, 16527, 1504, 3851, '2.0000', '24.7066', '24.7066', '28.7000', '28.7000', '188.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17283, '2022-10-24', 6337, 16528, 1504, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '108.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17284, '2022-10-24', 6235, 16529, 1504, 949, '6.0000', '4.9800', '4.9800', '5.9800', '5.9800', '15.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17285, '2022-10-24', 6217, 16530, 1504, 4353, '6.0000', '3.0402', '3.0402', '3.5000', '3.5000', '893.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17286, '2022-10-24', 6148, 16531, 1504, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '5.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17287, '2022-10-24', 5740, 16532, 1504, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '76.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17288, '2022-10-24', 5731, 16533, 1504, 4301, '2.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1172.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17289, '2022-10-24', 5995, 16534, 1504, 3071, '5.0000', '6.0000', '6.0000', '7.6000', '7.6000', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17290, '2022-10-24', 6225, 16535, 1504, 2356, '8.0000', '2.8000', '2.8000', '3.0800', '3.0800', '156.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17291, '2022-10-24', 5976, 16536, 1504, 4105, '4.0000', '7.5312', '7.5312', '8.2000', '8.2000', '207.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17292, '2022-10-24', 5886, 16537, 1504, 927, '4.0000', '8.6000', '8.6000', '8.6000', '8.6000', '105.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17293, '2022-10-24', 5956, 16538, 1504, 4195, '2.0000', '19.9535', '19.9535', '24.0000', '24.0000', '28.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17294, '2022-10-24', 5958, 16539, 1504, 4196, '2.0000', '15.6532', '15.6532', '21.7000', '21.7000', '35.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17295, '2022-10-24', 5979, 16540, 1504, 4081, '2.0000', '6.0097', '6.0097', '6.8000', '6.8000', '78.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17296, '2022-10-24', 5651, 16541, 1504, 2386, '10.0000', '6.1700', '6.1700', '6.1700', '6.1700', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17297, '2022-10-24', 5967, 16542, 1504, 3132, '4.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2359.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17298, '2022-10-24', 6496, 16543, 1504, 3758, '10.0000', '5.0500', '5.0500', '5.7000', '5.7000', '108.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17299, '2022-10-24', 6147, 16544, 1504, 3038, '1.0000', '35.2000', '35.2000', '42.2400', '42.2400', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17300, '2022-10-24', 6374, 16545, 1504, 3614, '30.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3717.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17301, '2022-10-24', 5906, 16546, 1504, 2046, '3.0000', '15.8200', '15.8200', '15.8200', '15.8200', '3.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17302, '2022-10-24', 5441, 16547, 1504, 3767, '30.0000', '1.9000', '1.9000', '2.2000', '2.2000', '1370.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17303, '2022-10-24', 6007, 16548, 1504, 4364, '30.0000', '1.4788', '1.4788', '1.5000', '1.5000', '346.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17304, '2022-10-24', 6378, 16549, 1504, 2255, '3.0000', '26.5000', '26.5000', '26.5000', '26.5000', '42.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17305, '2022-10-24', 6162, 16550, 1504, 3656, '6.0000', '6.6000', '6.6000', '7.3000', '7.3000', '72.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17306, '2022-10-24', 5584, 16551, 1504, 4361, '1.0000', '23.0000', '23.0000', '25.3000', '25.3000', '224.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17307, '2022-10-24', 5418, 16552, 1504, 1851, '4.0000', '5.5000', '5.5000', '6.5000', '6.5000', '32.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17308, '2022-10-24', 5689, 16553, 1504, 1428, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '21.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17309, '2022-10-24', 6848, 16554, 1504, 1151, '3.0000', '6.5000', '6.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17310, '2022-10-24', 6555, 16555, 1504, 3736, '10.0000', '2.9700', '2.9700', '4.0000', '4.0000', '72.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17311, '2022-10-24', 5587, 16556, 1504, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '172.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17312, '2022-10-24', 6753, 16557, 1504, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '134.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17313, '2022-10-24', 6936, 16558, 1504, 4366, '2.0000', '17.8783', '17.8783', '22.3000', '22.3000', '141.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17314, '2022-10-24', 6930, 16559, 1505, 4351, '1.0000', '40.0000', '40.0000', '44.0000', '44.0000', '94.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17315, '2022-10-24', 6893, 16560, 1505, 4347, '1.0000', '49.0000', '49.0000', '55.0000', '55.0000', '176.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17898, '2022-10-24', 6699, 17131, 1506, 1287, '4.0000', '7.0000', '7.0000', '8.4000', '8.4000', '159.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17897, '2022-10-24', 6295, 17130, 1506, 4141, '4.0000', '36.6868', '36.6868', '39.0000', '39.0000', '74.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17896, '2022-10-24', 6078, 17129, 1506, 2352, '2.0000', '42.0000', '42.0000', '55.0000', '55.0000', '506.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17895, '2022-10-24', 6010, 17128, 1506, 3621, '6.0000', '15.4888', '15.4888', '16.5000', '16.5000', '245.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17894, '2022-10-24', 5749, 17127, 1506, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '51.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17893, '2022-10-24', 5689, 17126, 1506, 1428, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '11.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17892, '2022-10-24', 5654, 17125, 1506, 3062, '10.0000', '2.0000', '2.0000', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17891, '2022-10-24', 5589, 17124, 1506, 2370, '3.0000', '9.4000', '9.4000', '9.4000', '9.4000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17890, '2022-10-24', 5535, 17123, 1506, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '833.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17397, '2022-10-24', 6664, 16640, 1507, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '657.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17396, '2022-10-24', 6572, 16639, 1507, 3996, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '67.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17395, '2022-10-24', 6455, 16638, 1507, 3047, '2.0000', '19.5800', '19.5800', '21.7000', '21.7000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17394, '2022-10-24', 6295, 16637, 1507, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '76.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17393, '2022-10-24', 6234, 16636, 1507, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '26.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17392, '2022-10-24', 5982, 16635, 1507, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '276.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17391, '2022-10-24', 5974, 16634, 1507, 4080, '2.0000', '8.4900', '8.4900', '9.5000', '9.5000', '210.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17390, '2022-10-24', 5967, 16633, 1507, 3132, '7.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2352.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17389, '2022-10-24', 5799, 16632, 1507, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '3.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17388, '2022-10-24', 5740, 16631, 1507, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17387, '2022-10-24', 5731, 16630, 1507, 4301, '3.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1159.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17386, '2022-10-24', 5515, 16629, 1507, 3508, '4.0000', '4.6800', '4.6800', '5.5000', '5.5000', '98.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17398, '2022-10-24', 6778, 16641, 1507, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '119.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17338, '2022-10-24', 5949, 16583, 1508, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '169.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17339, '2022-10-24', 6381, 16584, 1508, 4355, '2.0000', '4.8000', '4.8000', '5.3000', '5.3000', '592.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17340, '2022-10-24', 6348, 16585, 1508, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '25.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17341, '2022-10-24', 6297, 16586, 1508, 4208, '2.0000', '9.8672', '9.8672', '10.4000', '10.4000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17342, '2022-10-24', 6901, 16587, 1508, 4108, '3.0000', '4.0100', '4.0100', '4.5000', '4.5000', '84.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17343, '2022-10-24', 6671, 16588, 1508, 1996, '2.0000', '7.1500', '7.1500', '7.8000', '7.8000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17344, '2022-10-24', 5948, 16589, 1508, 2075, '2.0000', '6.0000', '6.0000', '9.0000', '9.0000', '140.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17345, '2022-10-24', 6556, 16590, 1508, 3119, '3.0000', '3.4022', '3.4022', '4.0000', '4.0000', '101.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17346, '2022-10-24', 5535, 16591, 1508, 2277, '3.0000', '3.9100', '3.9100', '3.9100', '3.9100', '853.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17359, '2022-10-24', 6298, 16604, 1509, 4209, '3.0000', '5.5742', '5.5742', '10.8000', '10.8000', '102.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17348, '2022-10-24', 6753, 16593, 1510, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '132.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17349, '2022-10-24', 5610, 16594, 1510, 4253, '3.0000', '29.2166', '29.2166', '60.5000', '60.5000', '31.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17467, '2022-10-24', 6552, 16709, 1511, 577, '2.0000', '186.8000', '186.8000', '186.9500', '186.9500', '9.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17466, '2022-10-24', 6437, 16708, 1511, 1275, '3.0000', '18.1000', '18.1000', '18.1000', '18.1000', '6.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17465, '2022-10-24', 5926, 16707, 1511, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '77.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17464, '2022-10-24', 5740, 16706, 1511, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '68.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17463, '2022-10-24', 5731, 16705, 1511, 4301, '10.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1154.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17462, '2022-10-24', 5586, 16704, 1511, 3135, '2.0000', '28.9000', '28.9000', '34.6000', '34.6000', '174.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17461, '2022-10-24', 5532, 16703, 1511, 4188, '2.0000', '56.9412', '56.9412', '65.0000', '65.0000', '104.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17460, '2022-10-24', 5477, 16702, 1511, 4187, '2.0000', '22.0699', '22.0699', '27.5000', '27.5000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17468, '2022-10-24', 6895, 16710, 1511, 3786, '3.0000', '9.7900', '9.7900', '10.8000', '10.8000', '54.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17360, '2022-10-24', 6219, 16605, 1509, 3150, '-231.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17361, '2022-10-24', 6219, 16605, 1509, NULL, '241.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-241.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17362, '2022-10-24', 6902, 16606, 1509, 4115, '2.0000', '5.8500', '5.8500', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17363, '2022-10-24', 5439, 16607, 1512, 3799, '1.0000', '27.2586', '27.2586', '58.4000', '58.4000', '94.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17364, '2022-10-24', 5610, 16608, 1512, 4253, '1.0000', '29.2166', '29.2166', '60.5000', '60.5000', '30.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17365, '2022-10-24', 5640, 16609, 1512, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '512.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17366, '2022-10-24', 5642, 16610, 1512, 3888, '1.0000', '24.4300', '24.4300', '26.9000', '26.9000', '55.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17367, '2022-10-24', 5729, 16611, 1512, 1993, '2.0000', '10.5000', '10.5000', '13.8000', '13.8000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17368, '2022-10-24', 5827, 16612, 1512, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '22.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17369, '2022-10-24', 5906, 16613, 1512, 2046, '3.0000', '15.8200', '15.8200', '15.8200', '15.8200', '0.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17370, '2022-10-24', 5906, 16613, 1512, NULL, '2.0000', '15.8200', '15.8200', '15.8200', '15.8200', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17371, '2022-10-24', 5971, 16614, 1512, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '46.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17372, '2022-10-24', 6010, 16615, 1512, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '252.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17373, '2022-10-24', 6024, 16616, 1512, 3896, '2.0000', '4.9900', '4.9900', '5.5000', '5.5000', '51.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17374, '2022-10-24', 6037, 16617, 1512, 1315, '2.0000', '9.1000', '9.1000', '9.1000', '9.1000', '0.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17375, '2022-10-24', 6074, 16618, 1512, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '329.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17376, '2022-10-24', 6077, 16619, 1512, 4065, '2.0000', '3.9894', '3.9894', '4.0000', '4.0000', '50.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17377, '2022-10-24', 6176, 16620, 1512, 2323, '2.0000', '4.1000', '4.1000', '5.7400', '5.7400', '273.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17378, '2022-10-24', 6240, 16621, 1512, 4200, '2.0000', '10.6200', '10.6200', '11.9500', '11.9500', '58.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17379, '2022-10-24', 6332, 16622, 1512, 1341, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17380, '2022-10-24', 6363, 16623, 1512, 1411, '1.0000', '14.8000', '14.8000', '22.7800', '22.7800', '133.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17381, '2022-10-24', 6383, 16624, 1512, 4117, '2.0000', '8.7203', '8.7203', '9.8000', '9.8000', '77.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17382, '2022-10-24', 6501, 16625, 1512, 3662, '2.0000', '9.0000', '9.0000', '10.6000', '10.6000', '23.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17383, '2022-10-24', 6664, 16626, 1512, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '657.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17384, '2022-10-24', 6864, 16627, 1512, 3082, '3.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4618.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17385, '2022-10-24', 6609, 16628, 1512, 3773, '1.0000', '11.6821', '11.6821', '15.0700', '15.0700', '110.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17399, '2022-10-24', 6845, 16642, 1507, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17400, '2022-10-24', 6688, 16643, 1513, 1354, '1.0000', '80.8000', '80.8000', '80.8000', '80.8000', '9.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17401, '2022-10-24', 6053, 16644, 1513, 4131, '-3.0000', '14.9000', '14.9000', '16.3700', '16.3700', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17402, '2022-10-24', 6053, 16644, 1513, NULL, '5.0000', '14.9000', '14.9000', '16.3700', '16.3700', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17403, '2022-10-24', 6454, 16645, 1513, 4212, '3.0000', '1.9038', '1.9038', '4.3000', '4.3000', '109.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17404, '2022-10-24', 5676, 16646, 1513, 2018, '2.0000', '30.0000', '30.0000', '34.0000', '34.0000', '58.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17405, '2022-10-24', 6812, 16647, 1513, 4218, '3.0000', '26.3790', '26.3790', '34.8000', '34.8000', '11.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17406, '2022-10-24', 5889, 16648, 1513, 4193, '2.0000', '44.8200', '44.8200', '49.8000', '49.8000', '18.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17407, '2022-10-24', 5854, 16649, 1513, 4191, '5.0000', '8.8462', '8.8462', '10.8000', '10.8000', '81.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17408, '2022-10-24', 6010, 16650, 1513, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '251.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17409, '2022-10-24', 5792, 16651, 1513, 4190, '2.0000', '34.1634', '34.1634', '39.7000', '39.7000', '86.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17410, '2022-10-24', 6666, 16652, 1513, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17411, '2022-10-24', 6929, 16653, 1513, 4349, '2.0000', '47.0000', '47.0000', '52.0000', '52.0000', '112.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17412, '2022-10-24', 6910, 16654, 1513, 4251, '1.0000', '11.7000', '11.7000', '13.4000', '13.4000', '52.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17413, '2022-10-24', 6338, 16655, 1513, 4257, '2.0000', '79.7291', '79.7291', '53.5000', '53.5000', '45.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17414, '2022-10-24', 5956, 16656, 1513, 4195, '3.0000', '19.9535', '19.9535', '24.0000', '24.0000', '25.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17415, '2022-10-24', 5778, 16657, 1513, 3822, '3.0000', '16.3911', '16.3911', '18.0000', '18.0000', '71.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17416, '2022-10-24', 5696, 16658, 1513, 514, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '52.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17417, '2022-10-24', 6814, 16659, 1513, 4264, '1.0000', '66.6139', '66.6139', '81.9000', '81.9000', '35.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17418, '2022-10-24', 5969, 16660, 1513, 2023, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '8.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17419, '2022-10-24', 5926, 16661, 1513, 1970, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '77.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17420, '2022-10-24', 6112, 16662, 1513, 3820, '5.0000', '12.7000', '12.7000', '14.0000', '14.0000', '188.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17421, '2022-10-24', 6074, 16663, 1513, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '309.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17422, '2022-10-24', 6316, 16664, 1513, 3757, '2.0000', '54.8358', '54.8358', '74.0000', '74.0000', '49.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17423, '2022-10-24', 6258, 16665, 1513, 4202, '5.0000', '9.3060', '9.3060', '10.9000', '10.9000', '81.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17424, '2022-10-24', 5731, 16666, 1513, 4301, '5.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1154.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17425, '2022-10-24', 6691, 16667, 1513, 4077, '5.0000', '6.5000', '6.5000', '8.8000', '8.8000', '211.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17426, '2022-10-24', 6246, 16668, 1513, 535, '1.0000', '99.3000', '99.3000', '99.3000', '99.3000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17427, '2022-10-24', 5790, 16669, 1513, 518, '1.0000', '149.2800', '149.2800', '178.0000', '178.0000', '15.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17428, '2022-10-24', 6457, 16670, 1513, 4213, '1.0000', '41.4000', '41.4000', '46.5000', '46.5000', '61.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17429, '2022-10-24', 6320, 16671, 1513, 1053, '1.0000', '63.2200', '63.2200', '87.4100', '87.4100', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17430, '2022-10-24', 5657, 16672, 1513, 4354, '5.0000', '5.0048', '5.0048', '6.3000', '6.3000', '395.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17431, '2022-10-24', 6337, 16673, 1513, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '106.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17432, '2022-10-24', 5828, 16674, 1513, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '52.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17433, '2022-10-24', 6391, 16675, 1513, 762, '4.0000', '3.3200', '3.3200', '3.7000', '3.7000', '19.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17434, '2022-10-24', 5460, 16676, 1513, 505, '1.0000', '235.7300', '235.7300', '283.3000', '283.3000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17435, '2022-10-24', 6604, 16677, 1513, 766, '5.0000', '5.5000', '5.5000', '5.5000', '5.5000', '420.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17436, '2022-10-24', 6295, 16678, 1513, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '74.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17437, '2022-10-24', 5553, 16679, 1513, 4142, '2.0000', '33.1388', '33.1388', '39.0000', '39.0000', '36.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17438, '2022-10-24', 5840, 16680, 1513, 2348, '3.0000', '27.5000', '27.5000', '27.5000', '27.5000', '24.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17439, '2022-10-24', 6243, 16681, 1513, 3582, '1.0000', '59.4000', '59.4000', '68.5000', '68.5000', '9.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17440, '2022-10-24', 5805, 16682, 1513, 1305, '2.0000', '9.0000', '9.0000', '10.8000', '10.8000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17441, '2022-10-24', 6930, 16683, 1513, 4351, '2.0000', '40.0000', '40.0000', '44.0000', '44.0000', '92.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17442, '2022-10-24', 6931, 16684, 1513, 4350, '3.0000', '30.0000', '30.0000', '34.0000', '34.0000', '92.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17443, '2022-10-24', 6102, 16685, 1513, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17444, '2022-10-24', 5734, 16686, 1513, 3968, '1.0000', '19.4000', '19.4000', '27.0000', '27.0000', '17.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17445, '2022-10-24', 5733, 16687, 1513, 3967, '1.0000', '20.0000', '20.0000', '22.0000', '22.0000', '41.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17446, '2022-10-24', 6233, 16688, 1513, 1276, '8.0000', '6.0000', '6.0000', '7.2000', '7.2000', '1.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17447, '2022-10-24', 6599, 16689, 1513, 3742, '2.0000', '17.0015', '17.0015', '18.9000', '18.9000', '38.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17448, '2022-10-24', 6598, 16690, 1513, 3741, '2.0000', '17.0100', '17.0100', '18.9000', '18.9000', '84.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17449, '2022-10-24', 6597, 16691, 1513, 3740, '2.0000', '17.0100', '17.0100', '18.9000', '18.9000', '47.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17450, '2022-10-24', 6645, 16692, 1513, 1393, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '131.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17451, '2022-10-24', 6579, 16693, 1513, 666, '1.0000', '35.5400', '35.5400', '35.5400', '35.5400', '12.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17452, '2022-10-24', 6079, 16694, 1513, 939, '2.0000', '19.0000', '19.0000', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17453, '2022-10-24', 6459, 16695, 1513, 966, '3.0000', '20.9000', '20.9000', '20.9000', '20.9000', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17454, '2022-10-24', 6260, 16696, 1513, 4144, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '7.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17455, '2022-10-24', 5858, 16697, 1513, 4192, '2.0000', '27.3468', '27.3468', '38.0000', '38.0000', '77.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17456, '2022-10-24', 6765, 16698, 1513, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '31.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17457, '2022-10-24', 5977, 16699, 1513, 1124, '4.0000', '7.5000', '7.5000', '7.8000', '7.8000', '12.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17458, '2022-10-24', 6828, 16700, 1514, 4073, '1.0000', '13.1400', '13.1400', '15.8000', '15.8000', '5.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17459, '2022-10-24', 5472, 16701, 1514, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '302.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17469, '2022-10-24', 6158, 16711, 1511, 3653, '5.0000', '9.8000', '9.8000', '10.8000', '10.8000', '16.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17470, '2022-10-24', 5973, 16712, 1511, 4079, '2.0000', '7.9600', '7.9600', '8.9000', '8.9000', '38.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17471, '2022-10-24', 5573, 16713, 1511, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '985.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17472, '2022-10-24', 6205, 16714, 1511, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '51.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17473, '2022-10-24', 6333, 16715, 1511, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '79.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17474, '2022-10-24', 6278, 16716, 1511, 1334, '2.0000', '27.5000', '27.5000', '27.5000', '27.5000', '1.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17475, '2022-10-24', 6302, 16717, 1515, 2116, '3.0000', '23.0000', '23.0000', '30.0000', '30.0000', '23.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17476, '2022-10-24', 6293, 16718, 1515, 4068, '4.0000', '14.6000', '14.6000', '14.6000', '14.6000', '147.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17477, '2022-10-24', 5535, 16719, 1515, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '843.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17478, '2022-10-24', 6327, 16720, 1515, 4010, '-15.0000', '28.6000', '28.6000', '33.7000', '33.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17479, '2022-10-24', 6327, 16720, 1515, NULL, '16.0000', '28.6000', '28.6000', '33.7000', '33.7000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17480, '2022-10-24', 5731, 16721, 1515, 4301, '10.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1144.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17481, '2022-10-24', 6107, 16722, 1515, 1875, '10.0000', '12.0000', '12.0000', '12.0000', '12.0000', '163.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17482, '2022-10-24', 5720, 16723, 1515, 914, '2.0000', '23.0000', '23.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17483, '2022-10-24', 6937, 16724, 1515, 4368, '5.0000', '15.0000', '15.0000', '16.5000', '16.5000', '19.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17484, '2022-10-24', 6938, 16725, 1515, 4367, '3.0000', '15.0000', '15.0000', '16.5000', '16.5000', '21.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17485, '2022-10-24', 5637, 16726, 1515, 4189, '2.0000', '55.3629', '55.3629', '54.2000', '54.2000', '24.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17486, '2022-10-24', 6288, 16727, 1515, 1416, '5.0000', '56.0000', '56.0000', '66.5200', '66.5200', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17487, '2022-10-24', 6273, 16728, 1515, 3033, '5.0000', '26.0000', '26.0000', '27.5000', '27.5000', '12.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17488, '2022-10-24', 5962, 16729, 1515, 522, '5.0000', '6.9900', '6.9900', '10.8000', '10.8000', '45.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17489, '2022-10-24', 6232, 16730, 1515, 4320, '5.0000', '7.6225', '7.6225', '9.9000', '9.9000', '97.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17490, '2022-10-24', 6925, 16731, 1515, 4340, '6.0000', '4.5000', '4.5000', '5.0000', '5.0000', '72.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17491, '2022-10-24', 6394, 16732, 1515, 3823, '10.0000', '5.4400', '5.4400', '6.6000', '6.6000', '205.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17492, '2022-10-24', 6478, 16733, 1515, 4322, '5.0000', '7.8980', '7.8980', '9.7200', '9.7200', '75.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17493, '2022-10-24', 5473, 16734, 1515, 3904, '5.0000', '4.5000', '4.5000', '5.0000', '5.0000', '448.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17494, '2022-10-24', 6082, 16735, 1515, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '129.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17495, '2022-10-24', 6893, 16736, 1515, 4347, '3.0000', '49.0000', '49.0000', '55.0000', '55.0000', '173.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17496, '2022-10-24', 6930, 16737, 1515, 4351, '3.0000', '40.0000', '40.0000', '44.0000', '44.0000', '89.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17497, '2022-10-24', 6929, 16738, 1515, 4349, '2.0000', '47.0000', '47.0000', '52.0000', '52.0000', '110.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17498, '2022-10-24', 5926, 16739, 1515, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '67.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17499, '2022-10-24', 5948, 16740, 1515, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '130.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17500, '2022-10-24', 5949, 16741, 1515, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '159.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17501, '2022-10-24', 6097, 16742, 1515, 3045, '10.0000', '7.2000', '7.2000', '7.2000', '7.2000', '72.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17502, '2022-10-24', 6260, 16743, 1515, 4144, '5.0000', '5.7594', '5.7594', '6.4000', '6.4000', '2.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17503, '2022-10-24', 6652, 16744, 1515, 1414, '10.0000', '3.8000', '3.8000', '3.7900', '3.7900', '17.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17504, '2022-10-24', 6078, 16745, 1515, 2352, '2.0000', '42.0000', '42.0000', '55.0000', '55.0000', '505.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17505, '2022-10-24', 5585, 16746, 1515, 3962, '3.0000', '23.4000', '23.4000', '28.5000', '28.5000', '11.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17506, '2022-10-24', 5586, 16747, 1515, 3135, '3.0000', '28.9000', '28.9000', '34.6000', '34.6000', '171.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17507, '2022-10-24', 6301, 16748, 1515, 4303, '5.0000', '10.8601', '10.8601', '13.5000', '13.5000', '132.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17508, '2022-10-24', 5629, 16749, 1515, 4299, '5.0000', '8.9474', '8.9474', '10.5000', '10.5000', '347.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17509, '2022-10-24', 5600, 16750, 1515, 3051, '5.0000', '2.6233', '2.6233', '3.6000', '3.6000', '855.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17510, '2022-10-24', 5601, 16751, 1515, 3035, '5.0000', '4.2917', '4.2917', '5.9500', '5.9500', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17511, '2022-10-24', 5853, 16752, 1515, 3620, '10.0000', '8.8287', '8.8287', '10.5000', '10.5000', '354.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17512, '2022-10-24', 6220, 16753, 1515, 4360, '5.0000', '5.3412', '5.3412', '6.0000', '6.0000', '375.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17513, '2022-10-24', 6379, 16754, 1515, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '89.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17514, '2022-10-24', 5828, 16755, 1515, 3660, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '47.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17515, '2022-10-24', 5967, 16756, 1515, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2342.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17516, '2022-10-24', 6098, 16757, 1515, 3081, '10.0000', '5.6000', '5.6000', '5.6000', '5.6000', '832.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17517, '2022-10-24', 6250, 16758, 1515, 4220, '5.0000', '6.0000', '6.0000', '5.5000', '5.5000', '60.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17518, '2022-10-24', 6131, 16759, 1515, 3077, '4.0000', '18.0000', '18.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17519, '2022-10-24', 6131, 16759, 1515, 769, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '17.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17520, '2022-10-24', 6565, 16760, 1516, 2007, '1.0000', '64.7800', '64.7800', '97.5000', '97.5000', '2.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17521, '2022-10-24', 5587, 16761, 1517, 3076, '5.0000', '8.8000', '8.8000', '8.8000', '8.8000', '167.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17522, '2022-10-24', 5729, 16762, 1517, 1993, '2.0000', '10.5000', '10.5000', '13.8000', '13.8000', '10.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17523, '2022-10-24', 6010, 16763, 1517, 3621, '6.0000', '15.4888', '15.4888', '16.5000', '16.5000', '245.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17524, '2022-10-24', 6612, 16764, 1517, 3772, '3.0000', '16.5600', '16.5600', '20.9200', '20.9200', '74.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17525, '2022-10-24', 6843, 16765, 1517, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '22.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17526, '2022-10-24', 6929, 16766, 1517, 4349, '2.0000', '47.0000', '47.0000', '52.0000', '52.0000', '108.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17527, '2022-10-24', 5757, 16767, 1517, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '88.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17528, '2022-10-24', 6753, 16768, 1518, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '131.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17529, '2022-10-24', 6254, 16769, 1518, 952, '1.0000', '36.8000', '36.8000', '36.8000', '36.8000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17530, '2022-10-24', 6316, 16770, 1519, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '48.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17531, '2022-10-24', 6074, 16771, 1519, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '306.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17550, '2022-10-24', 6928, 16790, 1520, 4348, '2.0000', '49.0000', '49.0000', '55.0000', '55.0000', '115.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17549, '2022-10-24', 6893, 16789, 1520, 4347, '2.0000', '49.0000', '49.0000', '55.0000', '55.0000', '171.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17548, '2022-10-24', 6409, 16788, 1520, 1422, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '114.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17547, '2022-10-24', 6408, 16787, 1520, 1986, '10.0000', '4.6700', '4.6700', '6.0300', '6.0300', '149.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17546, '2022-10-24', 6283, 16786, 1520, 2335, '10.0000', '5.1000', '5.1000', '7.5000', '7.5000', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17545, '2022-10-24', 6248, 16785, 1520, 4201, '20.0000', '9.5390', '9.5390', '10.8000', '10.8000', '159.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17544, '2022-10-24', 5515, 16784, 1520, 3508, '20.0000', '4.6800', '4.6800', '5.5000', '5.5000', '78.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17543, '2022-10-24', 5477, 16783, 1520, 4187, '10.0000', '22.0699', '22.0699', '27.5000', '27.5000', '29.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17542, '2022-10-24', 5472, 16782, 1520, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '292.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17551, '2022-10-24', 6933, 16791, 1520, 4358, '50.0000', '1.0500', '1.0500', '1.2000', '1.2000', '430.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17552, '2022-10-24', 6739, 16792, 1520, 3771, '5.0000', '5.9000', '5.9000', '7.5000', '7.5000', '87.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17553, '2022-10-24', 6842, 16793, 1520, 1373, '5.0000', '4.4000', '4.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17554, '2022-10-24', 5632, 16794, 1521, 1991, '1.0000', '8.0000', '8.0000', '11.8000', '11.8000', '99.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17555, '2022-10-24', 5677, 16795, 1521, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '31.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17556, '2022-10-24', 5898, 16796, 1521, 2350, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '130.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17557, '2022-10-24', 6154, 16797, 1521, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '71.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17558, '2022-10-24', 6555, 16798, 1521, 3736, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '70.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17559, '2022-10-24', 6556, 16799, 1521, 3119, '2.0000', '3.4022', '3.4022', '4.0000', '4.0000', '99.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17560, '2022-10-24', 6592, 16800, 1521, 2373, '2.0000', '3.1800', '3.1800', '3.1800', '3.1800', '65.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17561, '2022-10-24', 6848, 16801, 1521, 1151, '1.0000', '6.5000', '6.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17562, '2022-10-24', 6902, 16802, 1521, 4115, '2.0000', '5.8500', '5.8500', '6.5000', '6.5000', '40.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17563, '2022-10-24', 5714, 16803, 1521, 2383, '3.0000', '3.3000', '3.3000', '3.9600', '3.9600', '300.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17564, '2022-10-24', 6218, 16804, 1521, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '176.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17565, '2022-10-24', 5657, 16805, 1521, 4354, '2.0000', '5.0048', '5.0048', '6.3000', '6.3000', '393.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17566, '2022-10-24', 6191, 16806, 1521, 3984, '2.0000', '5.5000', '5.5000', '7.7000', '7.7000', '89.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17567, '2022-10-24', 6501, 16807, 1522, 3662, '20.0000', '9.0000', '9.0000', '10.6000', '10.6000', '3.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17568, '2022-10-24', 6007, 16808, 1523, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '336.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17569, '2022-10-24', 5986, 16809, 1523, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '55.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17570, '2022-10-24', 6218, 16810, 1524, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '175.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17576, '2022-10-24', 6190, 16816, 1525, 2126, '1.0000', '6.5000', '6.5000', '9.1000', '9.1000', '45.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17577, '2022-10-24', 6191, 16817, 1525, 3984, '3.0000', '5.5000', '5.5000', '7.7000', '7.7000', '86.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17573, '2022-10-24', 6840, 16813, 1526, 1371, '1.0000', '5.2000', '5.2000', '5.2000', '5.2000', '19.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17578, '2022-10-24', 6075, 16818, 1527, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '860.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17579, '2022-10-24', 6075, 16819, 1528, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '836.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17580, '2022-10-24', 6076, 16820, 1528, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1525.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17940, '2022-10-24', 6938, 17173, 1529, 4367, '3.0000', '15.0000', '15.0000', '16.5000', '16.5000', '18.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17939, '2022-10-24', 6937, 17172, 1529, 4368, '4.0000', '15.0000', '15.0000', '16.5000', '16.5000', '13.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17938, '2022-10-24', 6927, 17171, 1529, 4342, '10.0000', '8.9000', '8.9000', '9.9000', '9.9000', '129.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17937, '2022-10-24', 6908, 17170, 1529, 4249, '4.0000', '16.2000', '16.2000', '18.4000', '18.4000', '76.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17936, '2022-10-24', 6907, 17169, 1529, 4248, '3.0000', '9.0000', '9.0000', '10.2000', '10.2000', '203.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17935, '2022-10-24', 6906, 17168, 1529, 4140, '4.0000', '10.8000', '10.8000', '12.0000', '12.0000', '58.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17934, '2022-10-24', 6903, 17167, 1529, 4121, '4.0000', '22.5000', '22.5000', '25.0000', '25.0000', '15.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17933, '2022-10-24', 6873, 17166, 1529, 3484, '10.0000', '1.7189', '1.7189', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17932, '2022-10-24', 6861, 17165, 1529, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '5.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17931, '2022-10-24', 6857, 17164, 1529, 1021, '5.0000', '11.8000', '11.8000', '11.8000', '11.8000', '20.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17930, '2022-10-24', 6667, 17163, 1529, 3835, '25.0000', '2.7159', '2.7159', '3.0000', '3.0000', '965.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17929, '2022-10-24', 6612, 17162, 1529, 3772, '5.0000', '16.5600', '16.5600', '20.9200', '20.9200', '69.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17928, '2022-10-24', 6611, 17161, 1529, 3770, '5.0000', '9.0906', '9.0906', '11.5300', '11.5300', '115.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17927, '2022-10-24', 6501, 17160, 1529, 3662, '3.0000', '9.0000', '9.0000', '10.6000', '10.6000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17926, '2022-10-24', 6496, 17159, 1529, 3758, '4.0000', '5.0500', '5.0500', '5.7000', '5.7000', '104.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17925, '2022-10-24', 6458, 17158, 1529, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '93.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17924, '2022-10-24', 6455, 17157, 1529, 3047, '2.0000', '19.5800', '19.5800', '21.7000', '21.7000', '24.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17923, '2022-10-24', 6429, 17156, 1529, 545, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17922, '2022-10-24', 6374, 17155, 1529, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3667.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17921, '2022-10-24', 6296, 17154, 1529, 3815, '2.0000', '25.4000', '25.4000', '28.5000', '28.5000', '173.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17920, '2022-10-24', 6283, 17153, 1529, 2335, '4.0000', '5.1000', '5.1000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17919, '2022-10-24', 6275, 17152, 1529, 2032, '6.0000', '4.7000', '4.7000', '4.7000', '4.7000', '285.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17918, '2022-10-24', 6166, 17151, 1529, 3658, '4.0000', '6.5087', '6.5087', '7.5000', '7.5000', '80.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17917, '2022-10-24', 6165, 17150, 1529, 3659, '4.0000', '5.8901', '5.8901', '6.5000', '6.5000', '79.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17916, '2022-10-24', 6158, 17149, 1529, 3653, '10.0000', '9.8000', '9.8000', '10.8000', '10.8000', '6.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17915, '2022-10-24', 6138, 17148, 1529, 772, '2.0000', '17.5000', '17.5000', '17.5000', '17.5000', '26.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17914, '2022-10-24', 6126, 17147, 1529, 1473, '4.0000', '11.7000', '11.7000', '23.3000', '23.3000', '34.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17913, '2022-10-24', 6111, 17146, 1529, 1319, '3.0000', '14.5000', '14.5000', '14.5000', '14.5000', '43.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17912, '2022-10-24', 6088, 17145, 1529, 3759, '3.0000', '24.0714', '24.0714', '26.8000', '26.8000', '25.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17911, '2022-10-24', 6076, 17144, 1529, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1487.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17910, '2022-10-24', 6075, 17143, 1529, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '774.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17909, '2022-10-24', 6026, 17142, 1529, 3886, '25.0000', '2.0143', '2.0143', '2.1000', '2.1000', '82.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17908, '2022-10-24', 6025, 17141, 1529, 3887, '40.0000', '0.7347', '0.7347', '0.8000', '0.8000', '394.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17907, '2022-10-24', 5985, 17140, 1529, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '45.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17906, '2022-10-24', 5974, 17139, 1529, 4080, '6.0000', '8.4900', '8.4900', '9.5000', '9.5000', '204.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17905, '2022-10-24', 5854, 17138, 1529, 4191, '5.0000', '8.8462', '8.8462', '10.8000', '10.8000', '76.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17904, '2022-10-24', 5853, 17137, 1529, 3620, '6.0000', '8.8287', '8.8287', '10.5000', '10.5000', '348.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17903, '2022-10-24', 5841, 17136, 1529, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '78.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17902, '2022-10-24', 5834, 17135, 1529, 1989, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17901, '2022-10-24', 5535, 17134, 1529, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '833.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17900, '2022-10-24', 5427, 17133, 1529, 2365, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '82.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17941, '2022-10-24', 5715, 17174, 1544, 2389, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '7.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17797, '2022-10-24', 6937, 17032, 1530, 4368, '2.0000', '15.0000', '15.0000', '16.5000', '16.5000', '13.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17796, '2022-10-24', 6928, 17031, 1530, 4348, '2.0000', '49.0000', '49.0000', '55.0000', '55.0000', '113.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17795, '2022-10-24', 6907, 17030, 1530, 4248, '10.0000', '9.0000', '9.0000', '10.2000', '10.2000', '204.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17794, '2022-10-24', 6896, 17029, 1530, 3807, '1.0000', '28.8100', '28.8100', '32.1000', '32.1000', '42.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17793, '2022-10-24', 6895, 17028, 1530, 3786, '4.0000', '9.7900', '9.7900', '10.8000', '10.8000', '48.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17792, '2022-10-24', 6893, 17027, 1530, 4347, '2.0000', '49.0000', '49.0000', '55.0000', '55.0000', '169.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17791, '2022-10-24', 6737, 17026, 1530, 654, '1.0000', '40.5000', '40.5000', '40.5000', '40.5000', '0.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17790, '2022-10-24', 6736, 17025, 1530, 574, '1.0000', '38.2000', '38.2000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17789, '2022-10-24', 6691, 17024, 1530, 4077, '5.0000', '6.5000', '6.5000', '8.8000', '8.8000', '206.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17788, '2022-10-24', 6559, 17023, 1530, 4263, '2.0000', '71.2908', '71.2908', '87.8000', '87.8000', '36.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17787, '2022-10-24', 6459, 17022, 1530, 966, '2.0000', '20.9000', '20.9000', '20.9000', '20.9000', '29.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17786, '2022-10-24', 6458, 17021, 1530, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '93.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17785, '2022-10-24', 6411, 17020, 1530, 764, '2.0000', '17.6000', '17.6000', '17.6000', '17.6000', '64.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17784, '2022-10-24', 6409, 17019, 1530, 1422, '4.0000', '4.6700', '4.6700', '7.9800', '7.9800', '110.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17783, '2022-10-24', 6408, 17018, 1530, 1986, '1.0000', '4.6700', '4.6700', '7.9800', '7.9800', '148.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17782, '2022-10-24', 6289, 17017, 1530, 4204, '1.0000', '117.0000', '117.0000', '148.0000', '148.0000', '7.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17781, '2022-10-24', 6260, 17016, 1530, 4143, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '70.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17780, '2022-10-24', 6260, 17016, 1530, 4144, '2.0000', '5.7594', '5.7594', '6.4000', '6.4000', '0.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17779, '2022-10-24', 6205, 17015, 1530, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '49.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17778, '2022-10-24', 6122, 17014, 1530, 648, '1.0000', '47.2000', '47.2000', '47.2000', '47.2000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17777, '2022-10-24', 6099, 17013, 1530, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '32.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17776, '2022-10-24', 6042, 17012, 1530, 938, '2.0000', '25.9500', '25.9500', '25.9500', '25.9500', '45.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17775, '2022-10-24', 5977, 17011, 1530, 1124, '5.0000', '7.5000', '7.5000', '7.8000', '7.8000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17774, '2022-10-24', 5969, 17010, 1530, 2023, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17773, '2022-10-24', 5955, 17009, 1530, 4194, '3.0000', '20.0648', '20.0648', '25.9000', '25.9000', '25.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17772, '2022-10-24', 5885, 17008, 1530, 1103, '5.0000', '8.4000', '8.4000', '8.4000', '8.4000', '64.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17771, '2022-10-24', 5788, 17007, 1530, 919, '2.0000', '60.0000', '60.0000', '60.0000', '60.0000', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17770, '2022-10-24', 5779, 17006, 1530, 3821, '5.0000', '14.6863', '14.6863', '16.0000', '16.0000', '70.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17769, '2022-10-24', 5617, 17005, 1530, 1843, '3.0000', '39.3000', '39.3000', '43.8400', '43.8400', '30.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17768, '2022-10-24', 5586, 17004, 1530, 3135, '2.0000', '28.9000', '28.9000', '34.6000', '34.6000', '169.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17767, '2022-10-24', 5573, 17003, 1530, 2299, '5.0000', '18.0000', '18.0000', '18.0000', '18.0000', '980.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17766, '2022-10-24', 5532, 17002, 1530, 4188, '3.0000', '56.9412', '56.9412', '65.0000', '65.0000', '101.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17798, '2022-10-24', 6074, 17033, 1537, 2303, '8.0000', '8.5000', '8.5000', '8.5000', '8.5000', '288.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17656, '2022-10-24', 6202, 16895, 1531, 3985, '13.0000', '9.5000', '9.5000', '10.0000', '10.0000', '331.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17657, '2022-10-24', 5984, 16896, 1531, 3483, '8.0000', '19.5300', '19.5300', '24.1100', '24.1100', '57.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17658, '2022-10-24', 6075, 16897, 1531, 3025, '26.0000', '2.3000', '2.3000', '2.3000', '2.3000', '798.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17659, '2022-10-24', 6076, 16898, 1531, 3024, '26.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1487.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17660, '2022-10-24', 6613, 16899, 1531, 2300, '4.0000', '45.6000', '45.6000', '52.8000', '52.8000', '115.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17661, '2022-10-24', 6705, 16900, 1531, 1071, '3.0000', '15.8000', '15.8000', '15.8000', '15.8000', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17662, '2022-10-24', 5715, 16901, 1532, 2389, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17961, '2022-10-24', 6933, 17193, 1533, 4358, '50.0000', '1.0500', '1.0500', '1.2000', '1.2000', '380.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17960, '2022-10-24', 6925, 17192, 1533, 4340, '3.0000', '4.5000', '4.5000', '5.0000', '5.0000', '69.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17959, '2022-10-24', 6895, 17191, 1533, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '48.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17958, '2022-10-24', 6845, 17190, 1533, 1101, '1.0000', '34.1000', '34.1000', '34.1000', '34.1000', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17957, '2022-10-24', 6696, 17189, 1533, 4109, '5.0000', '4.2337', '4.2337', '4.9500', '4.9500', '158.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17956, '2022-10-24', 6645, 17188, 1533, 1393, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '129.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17955, '2022-10-24', 6556, 17187, 1533, 3119, '5.0000', '3.4022', '3.4022', '4.0000', '4.0000', '94.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17954, '2022-10-24', 6375, 17186, 1533, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '90.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17953, '2022-10-24', 6368, 17185, 1533, NULL, '12.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17952, '2022-10-24', 6368, 17185, 1533, 4148, '-10.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17951, '2022-10-24', 6218, 17184, 1533, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '174.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17950, '2022-10-24', 6074, 17183, 1533, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '285.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17949, '2022-10-24', 6038, 17182, 1533, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '134.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17948, '2022-10-24', 5969, 17181, 1533, 2023, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17947, '2022-10-24', 5775, 17180, 1533, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17946, '2022-10-24', 5731, 17179, 1533, 4301, '3.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1141.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17945, '2022-10-24', 5631, 17178, 1533, 1992, '3.0000', '6.5000', '6.5000', '8.8000', '8.8000', '92.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17944, '2022-10-24', 5629, 17177, 1533, 4299, '2.0000', '8.9474', '8.9474', '10.5000', '10.5000', '345.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17943, '2022-10-24', 5553, 17176, 1533, 4142, '1.0000', '33.1388', '33.1388', '39.0000', '39.0000', '35.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17942, '2022-10-24', 5515, 17175, 1533, 3508, '3.0000', '4.6800', '4.6800', '5.5000', '5.5000', '75.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17962, '2022-10-24', 5714, 17194, 1533, 2383, '2.0000', '3.3000', '3.3000', '3.9600', '3.9600', '292.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17684, '2022-10-24', 6610, 16922, 1534, 2271, '1.0000', '70.0000', '70.0000', '81.5000', '81.5000', '26.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17685, '2022-10-24', 6024, 16923, 1534, 3896, '5.0000', '4.9900', '4.9900', '5.5000', '5.5000', '46.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17686, '2022-10-24', 6263, 16924, 1534, NULL, '10.0000', '0.0000', '0.0000', '5.9800', '5.9800', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17687, '2022-10-24', 5792, 16925, 1534, 4190, '2.0000', '34.1634', '34.1634', '39.7000', '39.7000', '84.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17688, '2022-10-24', 5949, 16926, 1534, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '149.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17689, '2022-10-24', 6939, 16927, 1534, 4369, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '23.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17690, '2022-10-24', 5519, 16928, 1534, 3663, '10.0000', '3.3000', '3.3000', '3.3000', '3.3000', '206.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17799, '2022-10-24', 6517, 17034, 1537, 2254, '2.0000', '8.7000', '8.7000', '11.0000', '11.0000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17725, '2022-10-24', 6934, 16962, 1535, 4359, '20.0000', '3.3300', '3.3300', '3.7000', '3.7000', '280.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17726, '2022-10-24', 6860, 16963, 1536, 1977, '3.0000', '15.4923', '15.4923', '22.3000', '22.3000', '17.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17727, '2022-10-24', 6205, 16964, 1536, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '49.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17728, '2022-10-24', 6328, 16965, 1536, 3817, '3.0000', '24.4100', '24.4100', '26.9000', '26.9000', '38.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17729, '2022-10-24', 6240, 16966, 1536, 4200, '5.0000', '10.6200', '10.6200', '11.9500', '11.9500', '53.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17730, '2022-10-24', 6664, 16967, 1536, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '632.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17731, '2022-10-24', 6074, 16968, 1536, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '296.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17732, '2022-10-24', 5640, 16969, 1536, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '510.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17800, '2022-10-24', 6778, 17035, 1537, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '118.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17876, '2022-10-24', 6907, 17109, 1538, 4248, '1.0000', '9.0000', '9.0000', '10.2000', '10.2000', '203.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17875, '2022-10-24', 6408, 17108, 1538, 1986, '2.0000', '4.6700', '4.6700', '7.9800', '7.9800', '146.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17877, '2022-10-24', 6394, 17110, 1538, 3823, '4.0000', '5.4400', '5.4400', '6.6000', '6.6000', '201.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17870, '2022-10-24', 6834, 17103, 1539, 2034, '3.0000', '5.3000', '5.3000', '7.4300', '7.4300', '68.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17869, '2022-10-24', 6819, 17102, 1539, NULL, '3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '-3.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17868, '2022-10-24', 6819, 17102, 1539, 4185, '-2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17867, '2022-10-24', 6590, 17101, 1539, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '6.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17866, '2022-10-24', 6375, 17100, 1539, 2304, '3.0000', '3.5200', '3.5200', '3.5200', '3.5200', '90.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17865, '2022-10-24', 6361, 17099, 1539, 3725, '10.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4194.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17864, '2022-10-24', 6358, 17098, 1539, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '4002.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17863, '2022-10-24', 6333, 17097, 1539, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '76.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17862, '2022-10-24', 6273, 17096, 1539, 3033, '2.0000', '26.0000', '26.0000', '27.5000', '27.5000', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17861, '2022-10-24', 6164, 17095, 1539, 3657, '2.0000', '14.6000', '14.6000', '16.0600', '16.0600', '50.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17860, '2022-10-24', 6130, 17094, 1539, 3979, '5.0000', '6.4000', '6.4000', '7.4000', '7.4000', '25.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17859, '2022-10-24', 6129, 17093, 1539, 3399, '10.0000', '3.4000', '3.4000', '3.4000', '3.4000', '47.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17858, '2022-10-24', 6075, 17092, 1539, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '774.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17857, '2022-10-24', 6074, 17091, 1539, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '285.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17856, '2022-10-24', 5986, 17090, 1539, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '54.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17855, '2022-10-24', 5982, 17089, 1539, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '271.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17854, '2022-10-24', 5828, 17088, 1539, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '45.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17853, '2022-10-24', 5827, 17087, 1539, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '20.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17852, '2022-10-24', 5716, 17086, 1539, 515, '10.0000', '3.6000', '3.6000', '4.3200', '4.3200', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17851, '2022-10-24', 5714, 17085, 1539, 2383, '3.0000', '3.3000', '3.3000', '3.9600', '3.9600', '294.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17850, '2022-10-24', 5705, 17084, 1539, 912, '4.0000', '7.0000', '7.0000', '7.0000', '7.0000', '46.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17849, '2022-10-24', 5640, 17083, 1539, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '509.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17848, '2022-10-24', 5473, 17082, 1539, 3904, '10.0000', '4.5000', '4.5000', '5.0000', '5.0000', '438.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17871, '2022-10-24', 6934, 17104, 1539, 4359, '2.0000', '3.3300', '3.3300', '3.7000', '3.7000', '278.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17828, '2022-10-24', 5991, 17062, 1540, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '67.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17829, '2022-10-24', 5472, 17063, 1540, 3903, '4.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '288.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17830, '2022-10-24', 5976, 17064, 1540, 4105, '5.0000', '7.5312', '7.5312', '8.2000', '8.2000', '202.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17831, '2022-10-24', 6225, 17065, 1540, 2356, '4.0000', '2.8000', '2.8000', '3.0800', '3.0800', '152.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17832, '2022-10-24', 6223, 17066, 1540, 3551, '20.0000', '0.6000', '0.6000', '0.7200', '0.7200', '310.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17833, '2022-10-24', 6838, 17067, 1540, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '9.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17834, '2022-10-24', 5714, 17068, 1540, 2383, '3.0000', '3.3000', '3.3000', '3.9600', '3.9600', '294.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17835, '2022-10-24', 6379, 17069, 1540, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '86.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17836, '2022-10-24', 6132, 17070, 1540, 1879, '4.0000', '4.3500', '4.3500', '4.3500', '4.3500', '87.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17837, '2022-10-24', 6431, 17071, 1540, 3834, '2.0000', '4.3200', '4.3200', '5.3000', '5.3000', '271.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17838, '2022-10-24', 6024, 17072, 1540, 3896, '1.0000', '4.9900', '4.9900', '5.5000', '5.5000', '45.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17839, '2022-10-24', 6900, 17073, 1540, 3908, '2.0000', '6.0000', '6.0000', '6.6000', '6.6000', '178.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17840, '2022-10-24', 6813, 17074, 1540, 4247, '1.0000', '12.6220', '12.6220', '14.3000', '14.3000', '114.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17841, '2022-10-24', 6136, 17075, 1540, 1324, '2.0000', '3.8000', '3.8000', '3.8000', '3.8000', '35.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17842, '2022-10-24', 6222, 17076, 1541, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '33.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17843, '2022-10-24', 5775, 17077, 1541, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '48.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17844, '2022-10-24', 6628, 17078, 1541, 994, '2.0000', '5.4000', '5.4000', '6.1000', '6.1000', '39.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17845, '2022-10-24', 6285, 17079, 1541, 4145, '1.0000', '9.6868', '9.6868', '11.8000', '11.8000', '43.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17846, '2022-10-24', 6220, 17080, 1541, 4360, '4.0000', '5.3412', '5.3412', '6.0000', '6.0000', '371.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17847, '2022-10-24', 5657, 17081, 1541, 4354, '2.0000', '5.0048', '5.0048', '6.3000', '6.3000', '391.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17872, '2022-10-24', 5947, 17105, 1542, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '196.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17873, '2022-10-24', 5549, 17106, 1543, 2372, '12.0000', '8.2000', '8.2000', '8.2000', '8.2000', '265.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17874, '2022-10-24', 6860, 17107, 1543, 1977, '6.0000', '15.4923', '15.4923', '22.3000', '22.3000', '11.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17889, '2022-10-24', 5418, 17122, 1506, 1851, '3.0000', '5.5000', '5.5000', '6.5000', '6.5000', '29.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17899, '2022-10-24', 6940, 17132, 1506, 4370, '4.0000', '4.0000', '4.0000', '4.5000', '4.5000', '246.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17963, '2022-10-24', 6026, 17195, 1545, 3886, '2.0000', '2.0143', '2.0143', '2.1000', '2.1000', '80.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17964, '2022-10-24', 6376, 17196, 1545, 2364, '3.0000', '1.6000', '1.6000', '1.9200', '1.9200', '1961.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17965, '2022-10-24', 6820, 17197, 1546, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '419.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17966, '2022-10-24', 6152, 17198, 1546, 1883, '5.0000', '1.2000', '1.2000', '1.2000', '1.2000', '884.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17967, '2022-10-24', 6223, 17199, 1547, 3551, '50.0000', '0.6000', '0.6000', '0.7200', '0.7200', '260.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17968, '2022-10-24', 6933, 17200, 1547, 4358, '50.0000', '1.0500', '1.0500', '1.2000', '1.2000', '330.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17969, '2022-10-24', 6374, 17201, 1547, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3617.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17970, '2022-10-24', 6162, 17202, 1547, 3656, '2.0000', '6.6000', '6.6000', '7.3000', '7.3000', '70.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19361, '2022-10-24', 6932, 18558, 1548, 4352, '1.0000', '34.0000', '34.0000', '50.0000', '50.0000', '99.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19360, '2022-10-24', 6928, 18557, 1548, 4348, '1.0000', '49.0000', '49.0000', '55.0000', '55.0000', '104.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19359, '2022-10-24', 6920, 18556, 1548, 4307, '2.0000', '10.3500', '10.3500', '16.5000', '16.5000', '36.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19358, '2022-10-24', 6812, 18555, 1548, 4218, '2.0000', '26.3790', '26.3790', '34.8000', '34.8000', '7.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17977, '2022-10-24', 6154, 17209, 1549, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '70.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17978, '2022-10-24', 5986, 17210, 1549, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '52.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17979, '2022-10-24', 6573, 17211, 1549, 4134, '-4.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17980, '2022-10-24', 6573, 17211, 1549, NULL, '5.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17981, '2022-10-24', 5949, 17212, 1549, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '145.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17982, '2022-10-24', 5569, 17213, 1549, 1436, '1.0000', '21.6000', '21.6000', '21.6000', '21.6000', '4.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17983, '2022-10-24', 5827, 17214, 1549, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '18.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17984, '2022-10-24', 6220, 17215, 1549, 4360, '4.0000', '5.3412', '5.3412', '6.0000', '6.0000', '367.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17985, '2022-10-24', 5969, 17216, 1549, 2023, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17986, '2022-10-24', 5969, 17216, 1549, 1312, '1.0000', '8.8000', '8.8000', '10.7000', '10.7000', '76.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17987, '2022-10-24', 5451, 17217, 1549, 2387, '4.0000', '5.8600', '5.8600', '7.3200', '7.3200', '1014.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17988, '2022-10-24', 5601, 17218, 1549, 3035, '3.0000', '4.2917', '4.2917', '5.9500', '5.9500', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17989, '2022-10-24', 6074, 17219, 1549, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '242.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17990, '2022-10-24', 6112, 17220, 1549, 3820, '1.0000', '12.7000', '12.7000', '14.0000', '14.0000', '187.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17991, '2022-10-24', 6506, 17221, 1549, 1846, '2.0000', '3.8800', '3.8800', '3.8800', '3.8800', '16.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17992, '2022-10-24', 6218, 17222, 1549, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '173.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (17993, '2022-10-24', 5757, 17223, 1549, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '87.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19357, '2022-10-24', 6718, 18554, 1548, 1972, '2.0000', '12.9000', '12.9000', '12.9000', '12.9000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19356, '2022-10-24', 6659, 18553, 1548, 998, '2.0000', '63.0000', '63.0000', '63.0000', '63.0000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19355, '2022-10-24', 6563, 18552, 1548, 3763, '1.0000', '61.1590', '61.1590', '81.0000', '81.0000', '5.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19354, '2022-10-24', 6528, 18551, 1548, 1899, '20.0000', '5.9800', '5.9800', '7.5000', '7.5000', '165.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19353, '2022-10-24', 6484, 18550, 1548, 969, '2.0000', '59.8000', '59.8000', '59.8000', '59.8000', '8.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19352, '2022-10-24', 6076, 18549, 1548, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1404.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19351, '2022-10-24', 6075, 18548, 1548, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '607.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19350, '2022-10-24', 6074, 18547, 1548, 2303, '40.0000', '8.5000', '8.5000', '8.5000', '8.5000', '159.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18012, '2022-10-24', 6813, 17242, 1550, 4247, '6.0000', '12.6220', '12.6220', '14.3000', '14.3000', '108.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19540, '2022-10-28', 6870, 18731, 1682, 3585, '3.0000', '36.4852', '36.4852', '40.1400', '40.1400', '37.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18035, '2022-10-24', 6617, 17265, 1551, 557, '4.0000', '9.5000', '9.5000', '9.5000', '9.5000', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18034, '2022-10-24', 6213, 17264, 1551, 3049, '2.0000', '6.6500', '6.6500', '9.3000', '9.3000', '124.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18033, '2022-10-24', 6212, 17263, 1551, 3048, '2.0000', '6.6500', '6.6500', '9.3000', '9.3000', '90.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18036, '2022-10-24', 6936, 17266, 1551, 4366, '2.0000', '17.8783', '17.8783', '22.3000', '22.3000', '139.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18037, '2022-10-24', 6937, 17267, 1552, 4368, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '12.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18038, '2022-10-24', 6938, 17268, 1552, 4367, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '17.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18085, '2022-10-25', 5740, 17313, 1553, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '58.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18086, '2022-10-25', 5830, 17314, 1553, 4254, '2.0000', '117.4500', '117.4500', '143.3000', '143.3000', '22.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18087, '2022-10-25', 5858, 17315, 1553, 4192, '5.0000', '27.3468', '27.3468', '38.0000', '38.0000', '72.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18088, '2022-10-25', 5959, 17316, 1553, 4197, '5.0000', '25.7381', '25.7381', '29.8000', '29.8000', '33.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18089, '2022-10-25', 5967, 17317, 1553, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2332.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18090, '2022-10-25', 5969, 17318, 1553, 1312, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '66.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18091, '2022-10-25', 6082, 17319, 1553, 3032, '5.0000', '6.9000', '6.9000', '6.9000', '6.9000', '124.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18092, '2022-10-25', 6095, 17320, 1553, 3893, '10.0000', '8.3200', '8.3200', '9.2000', '9.2000', '344.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18093, '2022-10-25', 6158, 17321, 1553, 3653, '5.0000', '9.8000', '9.8000', '10.8000', '10.8000', '1.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18094, '2022-10-25', 6213, 17322, 1553, 3049, '5.0000', '6.6500', '6.6500', '9.3000', '9.3000', '119.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18095, '2022-10-25', 6234, 17323, 1553, 3801, '7.0000', '34.8921', '34.8921', '40.3000', '40.3000', '19.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18096, '2022-10-25', 6242, 17324, 1553, 3588, '3.0000', '58.3529', '58.3529', '66.5300', '66.5300', '47.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18097, '2022-10-25', 6250, 17325, 1553, 4220, '5.0000', '6.0000', '6.0000', '5.5000', '5.5000', '55.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18098, '2022-10-25', 6260, 17326, 1553, 4143, '5.0000', '5.7594', '5.7594', '6.4000', '6.4000', '65.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18099, '2022-10-25', 6285, 17327, 1553, 4145, '5.0000', '9.6868', '9.6868', '11.8000', '11.8000', '48.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18100, '2022-10-25', 6286, 17328, 1553, 4222, '5.0000', '10.6033', '10.6033', '11.8000', '11.8000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18101, '2022-10-25', 6389, 17329, 1553, 4114, '10.0000', '8.7525', '8.7525', '9.7000', '9.7000', '301.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18102, '2022-10-25', 6418, 17330, 1553, 2580, '5.0000', '6.3300', '6.3300', '6.3800', '6.3800', '566.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18103, '2022-10-25', 6435, 17331, 1553, 3833, '5.0000', '8.1000', '8.1000', '9.0000', '9.0000', '63.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18104, '2022-10-25', 6446, 17332, 1553, 1449, '6.0000', '4.9000', '4.9000', '4.9000', '4.9000', '67.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18105, '2022-10-25', 6453, 17333, 1553, 547, '1.0000', '50.6000', '50.6000', '60.8000', '60.8000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18106, '2022-10-25', 6455, 17334, 1553, 3047, '5.0000', '19.5800', '19.5800', '21.7000', '21.7000', '19.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18107, '2022-10-25', 6514, 17335, 1553, 1897, '6.0000', '6.6000', '6.6000', '9.3100', '9.3100', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18108, '2022-10-25', 6581, 17336, 1553, 3805, '5.0000', '10.3500', '10.3500', '11.5000', '11.5000', '25.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18109, '2022-10-25', 6744, 17337, 1553, 4216, '5.0000', '10.2184', '10.2184', '12.0000', '12.0000', '21.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18110, '2022-10-25', 6812, 17338, 1553, 4218, '2.0000', '26.3790', '26.3790', '34.8000', '34.8000', '7.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18111, '2022-10-25', 6849, 17339, 1553, 1149, '5.0000', '6.5000', '6.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18112, '2022-10-25', 6879, 17340, 1553, 3121, '10.0000', '3.8700', '3.8700', '5.0000', '5.0000', '291.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18113, '2022-10-25', 6893, 17341, 1553, 4347, '3.0000', '49.0000', '49.0000', '55.0000', '55.0000', '166.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18114, '2022-10-25', 6928, 17342, 1553, 4348, '3.0000', '49.0000', '49.0000', '55.0000', '55.0000', '109.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18115, '2022-10-25', 6929, 17343, 1553, 4349, '5.0000', '47.0000', '47.0000', '52.0000', '52.0000', '103.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18116, '2022-10-25', 6930, 17344, 1553, 4351, '5.0000', '40.0000', '40.0000', '44.0000', '44.0000', '84.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18117, '2022-10-25', 6931, 17345, 1553, 4350, '5.0000', '30.0000', '30.0000', '34.0000', '34.0000', '87.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18118, '2022-10-25', 6860, 17346, 1553, 1977, '11.0000', '15.4923', '15.4923', '22.3000', '22.3000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18119, '2022-10-25', 6860, 17346, 1553, NULL, '1.0000', '15.4923', '15.4923', '22.3000', '22.3000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18120, '2022-10-25', 5947, 17347, 1554, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '195.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18121, '2022-10-25', 6218, 17348, 1554, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '172.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18122, '2022-10-25', 6232, 17349, 1554, 4320, '1.0000', '7.6225', '7.6225', '9.9000', '9.9000', '96.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18123, '2022-10-25', 5947, 17350, 1555, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '193.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18483, '2022-10-25', 6940, 17702, 1556, 4370, '5.0000', '4.0000', '4.0000', '4.5000', '4.5000', '237.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18482, '2022-10-25', 6824, 17701, 1556, 561, '1.0000', '18.4800', '18.4800', '18.4800', '18.4800', '5.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18481, '2022-10-25', 6674, 17700, 1556, 1923, '5.0000', '4.4500', '4.4500', '4.4500', '4.4500', '254.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18480, '2022-10-25', 6645, 17699, 1556, 1393, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '124.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18479, '2022-10-25', 6630, 17698, 1556, 1402, '5.0000', '7.0000', '7.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18478, '2022-10-25', 6612, 17697, 1556, 3772, '2.0000', '16.5600', '16.5600', '20.9200', '20.9200', '67.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18477, '2022-10-25', 6446, 17696, 1556, 1449, '2.0000', '4.9000', '4.9000', '4.9000', '4.9000', '65.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18476, '2022-10-25', 6408, 17695, 1556, 1986, '5.0000', '4.6700', '4.6700', '7.9800', '7.9800', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18475, '2022-10-25', 6357, 17694, 1556, 2278, '1.0000', '13.0000', '13.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18474, '2022-10-25', 6297, 17693, 1556, 4208, '4.0000', '9.8672', '9.8672', '10.4000', '10.4000', '35.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18473, '2022-10-25', 6260, 17692, 1556, 4143, '4.0000', '5.7594', '5.7594', '6.4000', '6.4000', '61.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18472, '2022-10-25', 6234, 17691, 1556, 3801, '1.0000', '34.8921', '34.8921', '40.3000', '40.3000', '18.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18471, '2022-10-25', 6204, 17690, 1556, 2312, '1.0000', '15.8000', '15.8000', '18.6000', '18.6000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18470, '2022-10-25', 6143, 17689, 1556, 1121, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '39.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18469, '2022-10-25', 6083, 17688, 1556, 3061, '11.0000', '2.7000', '2.7000', '2.7000', '2.7000', '301.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18468, '2022-10-25', 5986, 17687, 1556, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '51.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18467, '2022-10-25', 5853, 17686, 1556, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '334.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18466, '2022-10-25', 5768, 17685, 1556, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '184.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18465, '2022-10-25', 5640, 17684, 1556, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '496.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18464, '2022-10-25', 5589, 17683, 1556, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '107.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18463, '2022-10-25', 5515, 17682, 1556, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '70.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18484, '2022-10-25', 6691, 17703, 1578, 4077, '6.0000', '6.5000', '6.5000', '8.8000', '8.8000', '200.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18421, '2022-10-25', 6864, 17641, 1557, 3082, '10.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4608.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18420, '2022-10-25', 6837, 17640, 1557, 1847, '1.0000', '87.4000', '87.4000', '87.4000', '87.4000', '8.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18419, '2022-10-25', 6753, 17639, 1557, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '127.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18418, '2022-10-25', 6574, 17638, 1557, 988, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18417, '2022-10-25', 6076, 17637, 1557, 3024, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1451.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18416, '2022-10-25', 5456, 17636, 1557, 2330, '3.0000', '10.6000', '10.6000', '10.6000', '10.6000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18152, '2022-10-25', 5947, 17379, 1558, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '192.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18153, '2022-10-25', 6218, 17380, 1558, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '171.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18154, '2022-10-25', 6926, 17381, 1559, 4341, '3.0000', '3.6000', '3.6000', '4.0000', '4.0000', '197.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18155, '2022-10-25', 6684, 17382, 1559, 2129, '1.0000', '29.7000', '29.7000', '32.7000', '32.7000', '20.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18156, '2022-10-25', 6137, 17383, 1559, 2276, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '122.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18157, '2022-10-25', 6907, 17384, 1559, 4248, '3.0000', '9.0000', '9.0000', '10.2000', '10.2000', '200.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18158, '2022-10-25', 5535, 17385, 1559, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '813.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18159, '2022-10-25', 6817, 17386, 1559, 2024, '1.0000', '13.8000', '13.8000', '13.8000', '13.8000', '44.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18160, '2022-10-25', 6609, 17387, 1559, 3773, '1.0000', '11.6821', '11.6821', '15.0700', '15.0700', '109.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18161, '2022-10-25', 6332, 17388, 1559, 1341, '1.0000', '16.5000', '16.5000', '16.5000', '16.5000', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18162, '2022-10-25', 5595, 17389, 1560, 3516, '-8.0000', '158.6000', '158.6000', '158.6000', '158.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18163, '2022-10-25', 5595, 17389, 1560, NULL, '9.0000', '158.6000', '158.6000', '158.6000', '158.6000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18164, '2022-10-25', 5610, 17390, 1560, 4253, '1.0000', '29.2166', '29.2166', '60.5000', '60.5000', '29.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18165, '2022-10-25', 5677, 17391, 1560, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '29.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18166, '2022-10-25', 5714, 17392, 1560, 2383, '5.0000', '3.3000', '3.3000', '3.9600', '3.9600', '287.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18167, '2022-10-25', 5731, 17393, 1560, 4301, '5.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1126.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18168, '2022-10-25', 5799, 17394, 1560, 2066, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18169, '2022-10-25', 6225, 17395, 1560, 2356, '5.0000', '2.8000', '2.8000', '3.0800', '3.0800', '147.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18170, '2022-10-25', 6250, 17396, 1560, 4220, '2.0000', '6.0000', '6.0000', '5.5000', '5.5000', '53.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18171, '2022-10-25', 6258, 17397, 1560, 4202, '3.0000', '9.3060', '9.3060', '10.9000', '10.9000', '78.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18172, '2022-10-25', 6293, 17398, 1560, 4068, '2.0000', '14.6000', '14.6000', '19.9800', '19.9800', '145.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18173, '2022-10-25', 6296, 17399, 1560, 3815, '4.0000', '25.4000', '25.4000', '28.5000', '28.5000', '169.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18174, '2022-10-25', 6384, 17400, 1560, 1477, '6.0000', '9.6600', '9.6600', '9.6600', '9.6600', '82.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18175, '2022-10-25', 6391, 17401, 1560, 762, '2.0000', '3.3200', '3.3200', '3.7000', '3.7000', '17.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18176, '2022-10-25', 6408, 17402, 1560, 1986, '3.0000', '4.6700', '4.6700', '7.9800', '7.9800', '138.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18177, '2022-10-25', 6409, 17403, 1560, 1422, '2.0000', '4.6700', '4.6700', '7.9800', '7.9800', '108.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18178, '2022-10-25', 6455, 17404, 1560, 3047, '1.0000', '19.5800', '19.5800', '21.7000', '21.7000', '18.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18179, '2022-10-25', 6509, 17405, 1560, 2077, '1.0000', '13.2500', '13.2500', '13.2500', '13.2500', '93.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18180, '2022-10-25', 6609, 17406, 1560, 3773, '4.0000', '11.6821', '11.6821', '15.0700', '15.0700', '105.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18181, '2022-10-25', 6678, 17407, 1560, 1461, '6.0000', '14.3000', '14.3000', '14.3000', '14.3000', '9.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18182, '2022-10-25', 6778, 17408, 1560, 2052, '2.0000', '19.3400', '19.3400', '26.1800', '26.1800', '116.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18183, '2022-10-25', 6907, 17409, 1560, 4248, '2.0000', '9.0000', '9.0000', '10.2000', '10.2000', '198.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18184, '2022-10-25', 6337, 17410, 1561, 4256, '4.0000', '49.5359', '49.5359', '56.2000', '56.2000', '102.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18185, '2022-10-25', 5731, 17411, 1561, 4301, '10.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1116.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18186, '2022-10-25', 5926, 17412, 1561, 1970, '20.0000', '10.9000', '10.9000', '10.9000', '10.9000', '47.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18187, '2022-10-25', 6205, 17413, 1561, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '47.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18188, '2022-10-25', 6201, 17414, 1561, 2315, '4.0000', '6.9000', '6.9000', '9.1000', '9.1000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18189, '2022-10-25', 6201, 17414, 1561, 1982, '3.0000', '6.9000', '6.9000', '9.1000', '9.1000', '117.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18190, '2022-10-25', 5696, 17415, 1561, 514, '4.0000', '14.0000', '14.0000', '14.0000', '14.0000', '48.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18191, '2022-10-25', 6137, 17416, 1561, 2276, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '119.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18192, '2022-10-25', 6394, 17417, 1561, 3823, '10.0000', '5.4400', '5.4400', '6.6000', '6.6000', '191.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18193, '2022-10-25', 6592, 17418, 1561, 2373, '5.0000', '3.1800', '3.1800', '3.1800', '3.1800', '60.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18194, '2022-10-25', 5532, 17419, 1561, 4188, '3.0000', '56.9412', '56.9412', '65.0000', '65.0000', '98.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18195, '2022-10-25', 6895, 17420, 1561, 3786, '6.0000', '9.7900', '9.7900', '10.8000', '10.8000', '42.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18196, '2022-10-25', 5762, 17421, 1561, 1034, '2.0000', '20.7400', '20.7400', '28.5400', '28.5400', '16.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18197, '2022-10-25', 6219, 17422, 1561, 3150, '-241.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18198, '2022-10-25', 6219, 17422, 1561, NULL, '291.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-291.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18199, '2022-10-25', 5969, 17423, 1561, 1312, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '61.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18200, '2022-10-25', 5629, 17424, 1561, 4299, '6.0000', '8.9474', '8.9474', '10.5000', '10.5000', '339.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18201, '2022-10-25', 6144, 17425, 1561, 1864, '1.0000', '88.9000', '88.9000', '88.9000', '88.9000', '7.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18202, '2022-10-25', 6605, 17426, 1561, 4136, '-14.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18203, '2022-10-25', 6605, 17426, 1561, NULL, '24.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-24.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18204, '2022-10-25', 6283, 17427, 1561, 2335, '8.0000', '5.1000', '5.1000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18205, '2022-10-25', 5730, 17428, 1561, 4300, '6.0000', '6.4114', '6.4114', '8.8000', '8.8000', '142.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18206, '2022-10-25', 6183, 17429, 1561, 749, '6.0000', '5.7500', '5.7500', '5.7500', '5.7500', '178.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18207, '2022-10-25', 6393, 17430, 1561, 2082, '5.0000', '15.0000', '15.0000', '16.0000', '16.0000', '39.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18208, '2022-10-25', 5974, 17431, 1561, 4080, '5.0000', '8.4900', '8.4900', '9.5000', '9.5000', '199.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18209, '2022-10-25', 6232, 17432, 1561, 4320, '10.0000', '7.6225', '7.6225', '9.9000', '9.9000', '86.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18210, '2022-10-25', 5991, 17433, 1561, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '66.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18211, '2022-10-25', 5967, 17434, 1561, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2322.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18212, '2022-10-25', 6408, 17435, 1561, 1986, '10.0000', '4.6700', '4.6700', '7.9800', '7.9800', '128.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18213, '2022-10-25', 6248, 17436, 1561, 4201, '6.0000', '9.5390', '9.5390', '12.8000', '12.8000', '153.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18214, '2022-10-25', 5958, 17437, 1561, 4196, '4.0000', '15.6532', '15.6532', '21.7000', '21.7000', '31.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18215, '2022-10-25', 5956, 17438, 1561, 4195, '4.0000', '19.9535', '19.9535', '24.0000', '24.0000', '21.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18216, '2022-10-25', 6667, 17439, 1561, 3835, '25.0000', '2.7159', '2.7159', '3.0000', '3.0000', '940.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18217, '2022-10-25', 5640, 17440, 1561, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '501.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18218, '2022-10-25', 6378, 17441, 1561, 2255, '1.0000', '26.5000', '26.5000', '31.8000', '31.8000', '41.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18219, '2022-10-25', 5849, 17442, 1561, 2357, '6.0000', '3.1000', '3.1000', '3.1000', '3.1000', '15.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18220, '2022-10-25', 6222, 17443, 1561, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '32.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18456, '2022-10-25', 6663, 17675, 1562, 2328, '10.0000', '2.5000', '2.5000', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18455, '2022-10-25', 6617, 17674, 1562, 557, '5.0000', '9.5000', '9.5000', '9.5000', '9.5000', '11.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18454, '2022-10-25', 6431, 17673, 1562, 3834, '5.0000', '4.3200', '4.3200', '5.3000', '5.3000', '266.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18453, '2022-10-25', 6427, 17672, 1562, 1475, '3.0000', '17.5000', '17.5000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18452, '2022-10-25', 6408, 17671, 1562, 1986, '10.0000', '4.6700', '4.6700', '7.9800', '7.9800', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18451, '2022-10-25', 6074, 17670, 1562, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '222.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18450, '2022-10-25', 5969, 17669, 1562, 1312, '10.0000', '8.8000', '8.8000', '10.7000', '10.7000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18449, '2022-10-25', 5968, 17668, 1562, 4198, '5.0000', '10.7800', '10.7800', '12.0000', '12.0000', '32.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18448, '2022-10-25', 5827, 17667, 1562, 3651, '5.0000', '5.9947', '5.9947', '6.6000', '6.6000', '3.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18447, '2022-10-25', 5797, 17666, 1562, 3739, '2.0000', '17.0048', '17.0048', '18.9000', '18.9000', '84.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18446, '2022-10-25', 5729, 17665, 1562, 1993, '5.0000', '10.5000', '10.5000', '13.8000', '13.8000', '5.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18445, '2022-10-25', 5640, 17664, 1562, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '496.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18457, '2022-10-25', 6074, 17676, 1577, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '202.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18399, '2022-10-25', 6940, 17619, 1563, 4370, '4.0000', '4.0000', '4.0000', '4.5000', '4.5000', '237.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18398, '2022-10-25', 6929, 17618, 1563, 4349, '1.0000', '47.0000', '47.0000', '52.0000', '52.0000', '102.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18397, '2022-10-25', 6627, 17617, 1563, 2336, '1.0000', '79.1500', '79.1500', '97.0000', '97.0000', '21.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18396, '2022-10-25', 6559, 17616, 1563, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '35.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18395, '2022-10-25', 6538, 17615, 1563, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '10.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18394, '2022-10-25', 6524, 17614, 1563, 4261, '1.0000', '187.4672', '187.4672', '234.0000', '234.0000', '10.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18393, '2022-10-25', 6478, 17613, 1563, 4322, '5.0000', '7.8980', '7.8980', '9.7200', '9.7200', '70.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18392, '2022-10-25', 6467, 17612, 1563, 4321, '2.0000', '44.6300', '44.6300', '50.6000', '50.6000', '49.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18391, '2022-10-25', 6459, 17611, 1563, 966, '2.0000', '20.9000', '20.9000', '20.9000', '20.9000', '27.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18390, '2022-10-25', 6411, 17610, 1563, 764, '2.0000', '17.6000', '17.6000', '17.6000', '17.6000', '62.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18389, '2022-10-25', 6408, 17609, 1563, 1986, '7.0000', '4.6700', '4.6700', '7.9800', '7.9800', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18388, '2022-10-25', 6391, 17608, 1563, 762, '3.0000', '3.3200', '3.3200', '3.7000', '3.7000', '14.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18387, '2022-10-25', 6339, 17607, 1563, 4258, '1.0000', '70.5200', '70.5200', '80.0000', '80.0000', '39.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18386, '2022-10-25', 6337, 17606, 1563, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '96.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18385, '2022-10-25', 6302, 17605, 1563, 2116, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '22.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18384, '2022-10-25', 6301, 17604, 1563, 4303, '3.0000', '10.8601', '10.8601', '13.5000', '13.5000', '129.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18383, '2022-10-25', 6293, 17603, 1563, 4068, '2.0000', '14.6000', '14.6000', '19.9800', '19.9800', '143.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18382, '2022-10-25', 6289, 17602, 1563, 4204, '1.0000', '117.0000', '117.0000', '148.0000', '148.0000', '6.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18381, '2022-10-25', 6258, 17601, 1563, 4202, '1.0000', '9.3060', '9.3060', '10.9000', '10.9000', '72.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18380, '2022-10-25', 6242, 17600, 1563, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '46.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18379, '2022-10-25', 6232, 17599, 1563, 4320, '3.0000', '7.6225', '7.6225', '9.9000', '9.9000', '83.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18378, '2022-10-25', 6205, 17598, 1563, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18377, '2022-10-25', 6131, 17597, 1563, 769, '2.0000', '18.0000', '18.0000', '18.0000', '18.0000', '15.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18376, '2022-10-25', 6024, 17596, 1563, 3896, '2.0000', '4.9900', '4.9900', '5.5000', '5.5000', '43.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18375, '2022-10-25', 6009, 17595, 1563, 2262, '1.0000', '35.9000', '35.9000', '35.9000', '35.9000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18374, '2022-10-25', 5968, 17594, 1563, 4198, '2.0000', '10.7800', '10.7800', '12.0000', '12.0000', '32.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18373, '2022-10-25', 5956, 17593, 1563, 4195, '3.0000', '19.9535', '19.9535', '24.0000', '24.0000', '18.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18372, '2022-10-25', 5898, 17592, 1563, 2350, '2.0000', '13.2000', '13.2000', '20.2000', '20.2000', '123.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18371, '2022-10-25', 5853, 17591, 1563, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '334.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18370, '2022-10-25', 5779, 17590, 1563, 3821, '2.0000', '14.6863', '14.6863', '16.0000', '16.0000', '68.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18369, '2022-10-25', 5725, 17589, 1563, 4317, '3.0000', '12.2814', '12.2814', '19.2000', '19.2000', '57.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18368, '2022-10-25', 5689, 17588, 1563, 1428, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '7.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18367, '2022-10-25', 5676, 17587, 1563, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '57.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18366, '2022-10-25', 5588, 17586, 1563, 3075, '4.0000', '14.9600', '14.9600', '14.9600', '14.9600', '80.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18365, '2022-10-25', 5587, 17585, 1563, 3076, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '164.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18364, '2022-10-25', 5586, 17584, 1563, 3135, '2.0000', '28.9000', '28.9000', '34.6000', '34.6000', '167.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18363, '2022-10-25', 5557, 17583, 1563, 565, '1.0000', '175.6100', '175.6100', '175.6100', '175.6100', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18362, '2022-10-25', 5556, 17582, 1563, 585, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '14.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18361, '2022-10-25', 5501, 17581, 1563, 3752, '1.0000', '44.0800', '44.0800', '49.0000', '49.0000', '18.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18360, '2022-10-25', 5463, 17580, 1563, 4315, '2.0000', '10.8900', '10.8900', '12.4000', '12.4000', '106.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18359, '2022-10-25', 5439, 17579, 1563, 3799, '2.0000', '27.2586', '27.2586', '58.4000', '58.4000', '87.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18358, '2022-10-25', 5418, 17578, 1563, 1851, '4.0000', '5.5000', '5.5000', '6.5000', '6.5000', '25.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18401, '2022-10-25', 6455, 17621, 1565, 3047, '1.0000', '19.5800', '19.5800', '21.7000', '21.7000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18277, '2022-10-25', 6408, 17500, 1564, 1986, '3.0000', '4.6700', '4.6700', '7.9800', '7.9800', '108.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18278, '2022-10-25', 6285, 17501, 1564, 4145, '3.0000', '9.6868', '9.6868', '11.8000', '11.8000', '45.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18279, '2022-10-25', 5712, 17502, 1564, 2298, '4.0000', '4.5000', '4.5000', '4.5000', '4.5000', '1140.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18280, '2022-10-25', 6664, 17503, 1564, 4122, '5.0000', '0.6197', '0.6197', '1.6000', '1.6000', '627.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18281, '2022-10-25', 6012, 17504, 1564, 2012, '1.0000', '16.6600', '16.6600', '16.6600', '16.6600', '13.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18400, '2022-10-25', 6936, 17620, 1565, 4366, '6.0000', '17.8783', '17.8783', '22.3000', '22.3000', '133.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18283, '2022-10-25', 6304, 17506, 1566, 4304, '1.0000', '14.9059', '14.9059', '17.0000', '17.0000', '176.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18284, '2022-10-25', 6286, 17507, 1566, 4222, '1.0000', '10.6033', '10.6033', '13.9800', '13.9800', '47.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18443, '2022-10-25', 6682, 17662, 1567, 1919, '10.0000', '10.0000', '10.0000', '15.9800', '15.9800', '47.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18442, '2022-10-25', 6400, 17661, 1567, 4211, '1.0000', '41.4000', '41.4000', '58.0000', '58.0000', '25.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18441, '2022-10-25', 6349, 17660, 1567, 1342, '3.0000', '6.0000', '6.0000', '6.3000', '6.3000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18440, '2022-10-25', 6333, 17659, 1567, 2361, '5.0000', '7.7000', '7.7000', '7.7000', '7.7000', '71.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18439, '2022-10-25', 6246, 17658, 1567, 535, '1.0000', '99.3000', '99.3000', '156.6000', '156.6000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18438, '2022-10-25', 6205, 17657, 1567, 3026, '2.0000', '38.5000', '38.5000', '50.5000', '50.5000', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18437, '2022-10-25', 6202, 17656, 1567, 3985, '3.0000', '9.5000', '9.5000', '10.0000', '10.0000', '328.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18436, '2022-10-25', 6020, 17655, 1567, 2302, '2.0000', '16.1378', '16.1378', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18435, '2022-10-25', 5995, 17654, 1567, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '27.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18434, '2022-10-25', 5984, 17653, 1567, 3483, '2.0000', '19.5300', '19.5300', '24.1100', '24.1100', '55.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18433, '2022-10-25', 5799, 17652, 1567, 1987, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18432, '2022-10-25', 5799, 17652, 1567, 2066, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18444, '2022-10-25', 6394, 17663, 1567, 3823, '8.0000', '5.4400', '5.4400', '6.6000', '6.6000', '183.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18298, '2022-10-25', 6649, 17520, 1568, 996, '2.0000', '8.4000', '8.4000', '11.8000', '11.8000', '56.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18299, '2022-10-25', 5601, 17521, 1568, 3035, '2.0000', '4.2917', '4.2917', '5.9500', '5.9500', '1.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18300, '2022-10-25', 5631, 17522, 1568, 1992, '2.0000', '6.5000', '6.5000', '8.8000', '8.8000', '90.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18301, '2022-10-25', 5657, 17523, 1568, 4354, '3.0000', '5.0048', '5.0048', '6.3000', '6.3000', '388.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18302, '2022-10-25', 5535, 17524, 1568, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '803.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18303, '2022-10-25', 6285, 17525, 1568, 4145, '2.0000', '9.6868', '9.6868', '11.8000', '11.8000', '43.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18304, '2022-10-25', 5873, 17526, 1568, 1307, '1.0000', '12.0000', '12.0000', '12.0000', '12.0000', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18305, '2022-10-25', 5988, 17527, 1568, 2033, '3.0000', '3.0000', '3.0000', '3.6000', '3.6000', '56.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18306, '2022-10-25', 5969, 17528, 1568, 1312, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '49.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18307, '2022-10-25', 6078, 17529, 1568, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '505.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18308, '2022-10-25', 6075, 17530, 1568, 3025, '4.0000', '2.3000', '2.3000', '2.3000', '2.3000', '758.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18309, '2022-10-25', 6607, 17531, 1568, 2583, '1.0000', '16.0000', '16.0000', '17.7100', '17.7100', '44.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18310, '2022-10-25', 6606, 17532, 1568, 1352, '1.0000', '15.5300', '15.5300', '26.1500', '26.1500', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18311, '2022-10-25', 6396, 17533, 1568, 4210, '2.0000', '14.4657', '14.4657', '17.2000', '17.2000', '49.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18312, '2022-10-25', 6379, 17534, 1568, 3421, '4.0000', '8.7056', '8.7056', '2.1000', '2.1000', '82.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18563, '2022-10-25', 6708, 17781, 1580, 1358, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '61.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18562, '2022-10-25', 6699, 17780, 1569, 1287, '6.0000', '7.0000', '7.0000', '8.4000', '8.4000', '153.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18561, '2022-10-25', 6913, 17779, 1569, 4333, '4.0000', '19.6600', '19.6600', '22.3000', '22.3000', '8.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18560, '2022-10-25', 6906, 17778, 1569, 4140, '3.0000', '10.8000', '10.8000', '12.0000', '12.0000', '55.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18559, '2022-10-25', 6895, 17777, 1569, 3786, '5.0000', '9.7900', '9.7900', '10.8000', '10.8000', '37.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18558, '2022-10-25', 6890, 17776, 1569, 4124, '50.0000', '3.7809', '3.7809', '6.6000', '6.6000', '897.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18557, '2022-10-25', 6843, 17775, 1569, 3785, '1.0000', '22.9200', '22.9200', '22.0000', '22.0000', '21.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18556, '2022-10-25', 6813, 17774, 1569, 4247, '5.0000', '12.6220', '12.6220', '14.3000', '14.3000', '103.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18555, '2022-10-25', 6666, 17773, 1569, 2259, '2.0000', '50.0000', '50.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18554, '2022-10-25', 6609, 17772, 1569, 3773, '5.0000', '11.6821', '11.6821', '15.0700', '15.0700', '100.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18553, '2022-10-25', 6442, 17771, 1569, 3804, '1.0000', '75.1600', '75.1600', '83.6000', '83.6000', '4.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18552, '2022-10-25', 6396, 17770, 1569, 4210, '4.0000', '14.4657', '14.4657', '17.2000', '17.2000', '45.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18551, '2022-10-25', 6393, 17769, 1569, 2082, '5.0000', '15.0000', '15.0000', '16.0000', '16.0000', '34.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18550, '2022-10-25', 6385, 17768, 1569, 2309, '5.0000', '7.4000', '7.4000', '7.4000', '7.4000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18549, '2022-10-25', 6383, 17767, 1569, 4117, '5.0000', '8.7203', '8.7203', '9.8000', '9.8000', '72.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18548, '2022-10-25', 6375, 17766, 1569, 2304, '5.0000', '3.5200', '3.5200', '3.5200', '3.5200', '85.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18547, '2022-10-25', 6371, 17765, 1569, 2268, '2.0000', '27.5000', '27.5000', '27.5000', '27.5000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18546, '2022-10-25', 6368, 17764, 1569, NULL, '17.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18545, '2022-10-25', 6368, 17764, 1569, 4148, '-12.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18544, '2022-10-25', 6328, 17763, 1569, 3817, '4.0000', '24.4100', '24.4100', '26.9000', '26.9000', '34.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18543, '2022-10-25', 6290, 17762, 1569, 2318, '1.0000', '122.4000', '122.4000', '168.0000', '168.0000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18542, '2022-10-25', 6258, 17761, 1569, 4202, '5.0000', '9.3060', '9.3060', '10.9000', '10.9000', '72.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18541, '2022-10-25', 6218, 17760, 1569, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '170.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18540, '2022-10-25', 6151, 17759, 1569, 2044, '5.0000', '6.7000', '6.7000', '12.6000', '12.6000', '39.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18539, '2022-10-25', 6099, 17758, 1569, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '31.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18538, '2022-10-25', 6078, 17757, 1569, 2352, '3.0000', '42.0000', '42.0000', '55.0000', '55.0000', '502.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18537, '2022-10-25', 6008, 17756, 1569, 4063, '5.0000', '4.9000', '4.9000', '4.9000', '4.9000', '80.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18536, '2022-10-25', 5949, 17755, 1569, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '135.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18535, '2022-10-25', 5948, 17754, 1569, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '120.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18534, '2022-10-25', 5946, 17753, 1569, 4255, '2.0000', '68.1943', '68.1943', '90.2000', '90.2000', '30.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18533, '2022-10-25', 5926, 17752, 1569, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '37.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18532, '2022-10-25', 5898, 17751, 1569, 2350, '5.0000', '13.2000', '13.2000', '20.2000', '20.2000', '118.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18531, '2022-10-25', 5853, 17750, 1569, 3620, '6.0000', '8.8287', '8.8287', '10.5000', '10.5000', '334.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18530, '2022-10-25', 5847, 17749, 1569, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '266.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18529, '2022-10-25', 5775, 17748, 1569, 2376, '1.0000', '22.1000', '22.1000', '22.1000', '22.1000', '47.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18528, '2022-10-25', 5677, 17747, 1569, 2351, '4.0000', '13.2000', '13.2000', '15.4000', '15.4000', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18527, '2022-10-25', 5576, 17746, 1569, 1108, '5.0000', '8.7000', '8.7000', '8.7000', '8.7000', '22.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18526, '2022-10-25', 5555, 17745, 1569, 1032, '1.0000', '107.0000', '107.0000', '107.0000', '107.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18525, '2022-10-25', 5472, 17744, 1569, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '278.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18524, '2022-10-25', 5451, 17743, 1569, 2387, '15.0000', '5.8600', '5.8600', '7.3200', '7.3200', '998.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18523, '2022-10-25', 5448, 17742, 1569, 2266, '5.0000', '14.5000', '14.5000', '14.5000', '14.5000', '78.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18522, '2022-10-25', 5447, 17741, 1569, 3851, '5.0000', '24.7066', '24.7066', '28.7000', '28.7000', '183.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18564, '2022-10-25', 6839, 17782, 1580, 3769, '4.0000', '4.9100', '4.9100', '6.4300', '6.4300', '40.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18356, '2022-10-25', 6753, 17576, 1570, 3737, '3.0000', '72.8788', '72.8788', '85.0000', '85.0000', '128.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18357, '2022-10-25', 6337, 17577, 1571, 4256, '4.0000', '49.5359', '49.5359', '56.2000', '56.2000', '96.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18402, '2022-10-25', 5799, 17622, 1572, 1987, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18403, '2022-10-25', 6936, 17623, 1572, 4366, '1.0000', '17.8783', '17.8783', '22.3000', '22.3000', '132.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18404, '2022-10-25', 6930, 17624, 1573, 4351, '1.0000', '40.0000', '40.0000', '44.0000', '44.0000', '83.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18405, '2022-10-25', 6590, 17625, 1574, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18406, '2022-10-25', 5451, 17626, 1574, 2387, '1.0000', '5.8600', '5.8600', '7.3200', '7.3200', '998.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18407, '2022-10-25', 6007, 17627, 1574, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '326.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18408, '2022-10-25', 6379, 17628, 1574, 3421, '1.0000', '8.7056', '8.7056', '2.1000', '2.1000', '81.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18422, '2022-10-25', 5969, 17642, 1575, 1312, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '47.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18423, '2022-10-25', 5976, 17643, 1575, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '200.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18424, '2022-10-25', 5705, 17644, 1575, 912, '1.0000', '7.0000', '7.0000', '7.0000', '7.0000', '45.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18425, '2022-10-25', 5713, 17645, 1575, 3069, '1.0000', '6.6500', '6.6500', '6.6500', '6.6500', '20.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18426, '2022-10-25', 5487, 17646, 1576, 3816, '10.0000', '17.1500', '17.1500', '18.9000', '18.9000', '156.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18427, '2022-10-25', 5827, 17647, 1576, 3651, '10.0000', '5.9947', '5.9947', '6.6000', '6.6000', '3.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18428, '2022-10-25', 6205, 17648, 1576, 3026, '5.0000', '38.5000', '38.5000', '50.5000', '50.5000', '38.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18429, '2022-10-25', 6273, 17649, 1576, 3033, '10.0000', '26.0000', '26.0000', '27.5000', '27.5000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18430, '2022-10-25', 6936, 17650, 1576, 4366, '24.0000', '17.8783', '17.8783', '22.3000', '22.3000', '108.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18431, '2022-10-25', 6232, 17651, 1576, 4320, '20.0000', '7.6225', '7.6225', '9.9000', '9.9000', '63.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18458, '2022-10-25', 6936, 17677, 1577, 4366, '4.0000', '17.8783', '17.8783', '22.3000', '22.3000', '104.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18459, '2022-10-25', 6004, 17678, 1577, 1935, '1.0000', '12.0000', '12.0000', '12.5400', '12.5400', '38.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18460, '2022-10-25', 6765, 17679, 1577, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '30.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18461, '2022-10-25', 5724, 17680, 1577, 4316, '2.0000', '11.5269', '11.5269', '16.7000', '16.7000', '77.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18462, '2022-10-25', 6711, 17681, 1577, 1270, '2.0000', '6.9000', '6.9000', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18485, '2022-10-25', 6920, 17704, 1578, 4307, '2.0000', '10.3500', '10.3500', '16.5000', '16.5000', '36.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18486, '2022-10-25', 6644, 17705, 1578, 4215, '10.0000', '4.6428', '4.6428', '5.2000', '5.2000', '50.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18487, '2022-10-25', 6617, 17706, 1578, 557, '2.0000', '9.5000', '9.5000', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18488, '2022-10-25', 6548, 17707, 1578, 4214, '3.0000', '8.8200', '8.8200', '9.8000', '9.8000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18489, '2022-10-25', 5545, 17708, 1578, 4055, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '21.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18490, '2022-10-25', 5792, 17709, 1578, 4190, '2.0000', '34.1634', '34.1634', '50.4000', '50.4000', '82.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18491, '2022-10-25', 6765, 17710, 1578, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '28.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18492, '2022-10-25', 6909, 17711, 1578, 4250, '2.0000', '11.7000', '11.7000', '13.4000', '13.4000', '140.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18493, '2022-10-25', 6824, 17712, 1578, 561, '1.0000', '18.4800', '18.4800', '18.4800', '18.4800', '4.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18494, '2022-10-25', 5508, 17713, 1578, 904, '2.0000', '77.9100', '77.9100', '77.9100', '77.9100', '6.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18495, '2022-10-25', 6880, 17714, 1578, 3128, '5.0000', '13.5000', '13.5000', '15.0000', '15.0000', '381.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18496, '2022-10-25', 6580, 17715, 1578, 552, '1.0000', '328.9000', '328.9000', '328.9000', '328.9000', '6.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18497, '2022-10-25', 6116, 17716, 1578, 3824, '1.0000', '362.2400', '362.2400', '399.3000', '399.3000', '4.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18498, '2022-10-25', 6885, 17717, 1578, 3125, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '18.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18499, '2022-10-25', 6015, 17718, 1578, 568, '1.0000', '43.7000', '43.7000', '72.8000', '72.8000', '37.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18500, '2022-10-25', 6300, 17719, 1578, 4302, '2.0000', '17.5500', '17.5500', '19.7000', '19.7000', '118.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18501, '2022-10-25', 6598, 17720, 1578, 3741, '4.0000', '17.0100', '17.0100', '18.9000', '18.9000', '80.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18502, '2022-10-25', 6784, 17721, 1578, 323, '1.0000', '58.0000', '58.0000', '58.0000', '58.0000', '17.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18503, '2022-10-25', 5897, 17722, 1578, 1290, '1.0000', '23.0000', '23.0000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18504, '2022-10-25', 5898, 17723, 1579, 2350, '5.0000', '13.2000', '13.2000', '20.2000', '20.2000', '118.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18505, '2022-10-25', 6900, 17724, 1579, 3908, '3.0000', '6.0000', '6.0000', '6.6000', '6.6000', '175.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18506, '2022-10-25', 5610, 17725, 1579, 4253, '2.0000', '29.2166', '29.2166', '60.5000', '60.5000', '27.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18507, '2022-10-25', 6075, 17726, 1579, 3025, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '746.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18508, '2022-10-25', 6076, 17727, 1579, 3024, '12.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1439.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18509, '2022-10-25', 5991, 17728, 1579, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '65.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18510, '2022-10-25', 6421, 17729, 1579, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '54.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18511, '2022-10-25', 5980, 17730, 1579, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '82.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18512, '2022-10-25', 6414, 17731, 1579, 763, '1.0000', '9.9000', '9.9000', '9.9000', '9.9000', '23.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18513, '2022-10-25', 6411, 17732, 1579, 764, '1.0000', '17.6000', '17.6000', '17.6000', '17.6000', '61.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18514, '2022-10-25', 6864, 17733, 1579, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4603.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18515, '2022-10-25', 6077, 17734, 1579, 4065, '5.0000', '3.9894', '3.9894', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18516, '2022-10-25', 5418, 17735, 1579, 1851, '6.0000', '5.5000', '5.5000', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18517, '2022-10-25', 5731, 17736, 1579, 4301, '3.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1113.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18518, '2022-10-25', 5740, 17737, 1579, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '55.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18519, '2022-10-25', 5677, 17738, 1579, 2351, '2.0000', '13.2000', '13.2000', '15.4000', '15.4000', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18520, '2022-10-25', 6176, 17739, 1579, 2323, '2.0000', '4.1000', '4.1000', '5.7400', '5.7400', '271.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18521, '2022-10-25', 6177, 17740, 1579, 3565, '2.0000', '293935099227180.0000', '293935099227180.0000', '4.9000', '4.9000', '178.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18565, '2022-10-25', 5976, 17783, 1580, 4105, '3.0000', '7.5312', '7.5312', '8.2000', '8.2000', '197.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18566, '2022-10-25', 5641, 17784, 1580, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '40.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18567, '2022-10-25', 5640, 17785, 1580, 3897, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '494.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18568, '2022-10-25', 5535, 17786, 1580, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '793.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18569, '2022-10-25', 5584, 17787, 1580, 4361, '1.0000', '23.0000', '23.0000', '25.3000', '25.3000', '223.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18570, '2022-10-25', 6881, 17788, 1580, 3131, '1.0000', '49.5000', '49.5000', '55.0000', '55.0000', '23.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18571, '2022-10-25', 6663, 17789, 1580, 2328, '4.0000', '2.5000', '2.5000', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18572, '2022-10-25', 6478, 17790, 1580, 4322, '3.0000', '7.8980', '7.8980', '9.7200', '9.7200', '67.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18573, '2022-10-25', 6394, 17791, 1580, 3823, '5.0000', '5.4400', '5.4400', '6.6000', '6.6000', '178.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18574, '2022-10-25', 6304, 17792, 1580, 4304, '3.0000', '14.9059', '14.9059', '17.0000', '17.0000', '173.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18575, '2022-10-25', 6568, 17793, 1580, 3827, '2.0000', '13.6100', '13.6100', '15.0000', '15.0000', '38.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18576, '2022-10-25', 6300, 17794, 1580, 4302, '2.0000', '17.5500', '17.5500', '19.7000', '19.7000', '116.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18577, '2022-10-25', 5427, 17795, 1580, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '80.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18578, '2022-10-25', 6746, 17796, 1580, 560, '2.0000', '10.5600', '10.5600', '14.0000', '14.0000', '14.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18579, '2022-10-25', 6673, 17797, 1580, 1395, '3.0000', '4.9500', '4.9500', '7.9400', '7.9400', '67.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18580, '2022-10-25', 5841, 17798, 1580, 3429, '2.0000', '18.0000', '18.0000', '19.8000', '19.8000', '76.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18581, '2022-10-25', 6496, 17799, 1580, 3758, '12.0000', '5.0500', '5.0500', '5.7000', '5.7000', '92.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18582, '2022-10-25', 5882, 17800, 1580, 4319, '3.0000', '10.6700', '10.6700', '11.0000', '11.0000', '90.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18583, '2022-10-25', 5586, 17801, 1580, 3135, '2.0000', '28.9000', '28.9000', '34.6000', '34.6000', '165.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18584, '2022-10-25', 5585, 17802, 1580, 3962, '3.0000', '23.4000', '23.4000', '28.5000', '28.5000', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18585, '2022-10-25', 5898, 17803, 1580, 2350, '2.0000', '13.2000', '13.2000', '20.2000', '20.2000', '116.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18586, '2022-10-25', 5853, 17804, 1580, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '332.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18587, '2022-10-25', 6538, 17805, 1580, 3074, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '8.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18588, '2022-10-25', 6010, 17806, 1580, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '244.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18589, '2022-10-25', 5947, 17807, 1581, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '190.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18590, '2022-10-25', 5926, 17808, 1582, 1970, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18591, '2022-10-25', 5715, 17809, 1583, 2389, '3.0000', '13.1400', '13.1400', '15.8000', '15.8000', '4.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18592, '2022-10-25', 6929, 17810, 1584, 4349, '1.0000', '47.0000', '47.0000', '52.0000', '52.0000', '101.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18593, '2022-10-25', 5472, 17811, 1585, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '268.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18594, '2022-10-25', 6570, 17812, 1586, 3812, '1.0000', '7.2600', '7.2600', '4.5000', '4.5000', '44.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18595, '2022-10-25', 6408, 17813, 1587, 1986, '1.0000', '4.6700', '4.6700', '7.9800', '7.9800', '107.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18596, '2022-10-26', 5898, 17814, 1588, 2350, '1.0000', '13.2000', '13.2000', '20.2000', '20.2000', '115.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18597, '2022-10-26', 6218, 17815, 1589, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '169.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18598, '2022-10-26', 5715, 17816, 1590, 2389, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18599, '2022-10-26', 6303, 17817, 1591, 4313, '10.0000', '1.9950', '1.9950', '2.2000', '2.2000', '484.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18600, '2022-10-26', 5949, 17818, 1591, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '133.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18601, '2022-10-26', 5947, 17819, 1591, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '189.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18602, '2022-10-26', 6303, 17820, 1592, 4313, '3.0000', '1.9950', '1.9950', '2.2000', '2.2000', '481.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18657, '2022-10-26', 6848, 17873, 1593, NULL, '2.0000', '6.5000', '6.5000', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18656, '2022-10-26', 6744, 17872, 1593, 4216, '2.0000', '10.2184', '10.2184', '14.8000', '14.8000', '19.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18655, '2022-10-26', 6619, 17871, 1593, 3412, '5.0000', '3.5000', '3.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18654, '2022-10-26', 6510, 17870, 1593, 4305, '6.0000', '3.7773', '3.7773', '4.7000', '4.7000', '94.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18653, '2022-10-26', 6506, 17869, 1593, 1846, '5.0000', '3.8800', '3.8800', '3.8800', '3.8800', '11.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18652, '2022-10-26', 6435, 17868, 1593, 3833, '6.0000', '8.1000', '8.1000', '9.0000', '9.0000', '57.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18651, '2022-10-26', 6375, 17867, 1593, 2304, '10.0000', '3.5200', '3.5200', '3.5200', '3.5200', '75.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18650, '2022-10-26', 6223, 17866, 1593, 3551, '20.0000', '0.6000', '0.6000', '0.7200', '0.7200', '240.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18649, '2022-10-26', 6219, 17865, 1593, NULL, '311.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-311.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18648, '2022-10-26', 6219, 17865, 1593, 3150, '-291.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18647, '2022-10-26', 6143, 17864, 1593, 1121, '2.0000', '11.2000', '11.2000', '11.2000', '11.2000', '37.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18646, '2022-10-26', 6136, 17863, 1593, 1324, '10.0000', '3.8000', '3.8000', '3.8000', '3.8000', '25.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18645, '2022-10-26', 5949, 17862, 1593, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '127.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18644, '2022-10-26', 5926, 17861, 1593, 1970, '6.0000', '10.9000', '10.9000', '10.9000', '10.9000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18643, '2022-10-26', 5801, 17860, 1593, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '64.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18642, '2022-10-26', 5724, 17859, 1593, 4316, '2.0000', '11.5269', '11.5269', '16.7000', '16.7000', '75.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18641, '2022-10-26', 5535, 17858, 1593, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '783.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18640, '2022-10-26', 5471, 17857, 1593, 902, '4.0000', '5.0400', '5.0400', '7.4000', '7.4000', '57.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18639, '2022-10-26', 5440, 17856, 1593, 2306, '6.0000', '3.4100', '3.4100', '4.9200', '4.9200', '199.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18658, '2022-10-26', 6491, 17874, 1593, 4377, '30.0000', '1.8260', '1.8260', '1.3000', '1.3000', '3147.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18623, '2022-10-26', 6930, 17840, 1594, 4351, '5.0000', '40.0000', '40.0000', '44.0000', '44.0000', '78.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18624, '2022-10-26', 6931, 17841, 1594, 4350, '5.0000', '30.0000', '30.0000', '34.0000', '34.0000', '82.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18625, '2022-10-26', 6893, 17842, 1594, 4347, '5.0000', '49.0000', '49.0000', '55.0000', '55.0000', '161.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18626, '2022-10-26', 6928, 17843, 1594, 4348, '5.0000', '49.0000', '49.0000', '55.0000', '55.0000', '104.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18627, '2022-10-26', 6295, 17844, 1594, 4141, '2.0000', '36.6868', '36.6868', '39.0000', '39.0000', '72.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18628, '2022-10-26', 5553, 17845, 1594, 4142, '2.0000', '33.1388', '33.1388', '39.0000', '39.0000', '33.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18629, '2022-10-26', 6753, 17846, 1594, 3737, '5.0000', '72.8788', '72.8788', '85.0000', '85.0000', '122.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18630, '2022-10-26', 6907, 17847, 1594, 4248, '5.0000', '9.0000', '9.0000', '10.2000', '10.2000', '193.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18631, '2022-10-26', 5740, 17848, 1594, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '50.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18632, '2022-10-26', 5731, 17849, 1594, 4301, '5.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1108.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18633, '2022-10-26', 6830, 17850, 1594, 2562, '2.0000', '29.7000', '29.7000', '29.7000', '29.7000', '39.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18634, '2022-10-26', 6020, 17851, 1594, 2302, '1.0000', '16.1378', '16.1378', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18635, '2022-10-26', 6258, 17852, 1594, 4202, '5.0000', '9.3060', '9.3060', '10.9000', '10.9000', '67.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18636, '2022-10-26', 5926, 17853, 1594, 1970, '10.0000', '10.9000', '10.9000', '10.9000', '10.9000', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18637, '2022-10-26', 6337, 17854, 1594, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '94.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18638, '2022-10-26', 5451, 17855, 1595, 2387, '5.0000', '5.8600', '5.8600', '7.3200', '7.3200', '993.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18659, '2022-10-26', 6075, 17875, 1596, 3025, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '736.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18660, '2022-10-26', 5926, 17876, 1596, 1970, '3.0000', '10.9000', '10.9000', '10.9000', '10.9000', '12.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18661, '2022-10-26', 6838, 17877, 1596, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '8.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18662, '2022-10-26', 6220, 17878, 1596, 4360, '3.0000', '5.3412', '5.3412', '6.0000', '6.0000', '364.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18663, '2022-10-26', 6202, 17879, 1596, 3985, '2.0000', '9.5000', '9.5000', '10.0000', '10.0000', '326.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18664, '2022-10-26', 5471, 17880, 1596, 902, '2.0000', '5.0400', '5.0400', '7.4000', '7.4000', '55.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18665, '2022-10-26', 6590, 17881, 1596, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '4.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18666, '2022-10-26', 6205, 17882, 1596, 3026, '1.0000', '38.5000', '38.5000', '50.5000', '50.5000', '37.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18667, '2022-10-26', 6232, 17883, 1596, 4320, '1.0000', '7.6225', '7.6225', '9.9000', '9.9000', '62.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18668, '2022-10-26', 6528, 17884, 1596, 1899, '4.0000', '5.9800', '5.9800', '7.5000', '7.5000', '176.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18669, '2022-10-26', 6666, 17885, 1597, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18670, '2022-10-26', 5898, 17886, 1598, 2350, '1.0000', '13.2000', '13.2000', '20.2000', '20.2000', '114.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18671, '2022-10-26', 6898, 17887, 1599, 3809, '2.0000', '9.0000', '9.0000', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18672, '2022-10-26', 6925, 17888, 1599, 4340, '1.0000', '4.5000', '4.5000', '5.0000', '5.0000', '68.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18673, '2022-10-26', 5969, 17889, 1599, 1312, '4.0000', '8.8000', '8.8000', '10.7000', '10.7000', '43.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18674, '2022-10-26', 6902, 17890, 1599, 4115, '4.0000', '5.8500', '5.8500', '8.9000', '8.9000', '36.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18675, '2022-10-26', 5986, 17891, 1599, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '50.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18676, '2022-10-26', 6074, 17892, 1599, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '200.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18677, '2022-10-26', 6082, 17893, 1599, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '122.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18678, '2022-10-26', 5997, 17894, 1599, 4184, '-6.0000', '0.0000', '0.0000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18679, '2022-10-26', 5997, 17894, 1599, NULL, '8.0000', '0.0000', '0.0000', '6.6000', '6.6000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18680, '2022-10-26', 5440, 17895, 1599, 2306, '5.0000', '3.4100', '3.4100', '4.9200', '4.9200', '194.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18681, '2022-10-26', 6834, 17896, 1599, 2034, '5.0000', '5.3000', '5.3000', '7.4300', '7.4300', '63.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18682, '2022-10-26', 5451, 17897, 1599, 2387, '6.0000', '5.8600', '5.8600', '7.3200', '7.3200', '987.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18683, '2022-10-26', 6225, 17898, 1599, 2356, '5.0000', '2.8000', '2.8000', '3.0800', '3.0800', '142.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18684, '2022-10-26', 6927, 17899, 1599, 4342, '2.0000', '8.9000', '8.9000', '9.9000', '9.9000', '127.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18685, '2022-10-26', 6220, 17900, 1599, 4360, '3.0000', '5.3412', '5.3412', '6.0000', '6.0000', '361.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18686, '2022-10-26', 5657, 17901, 1599, 4354, '3.0000', '5.0048', '5.0048', '6.3000', '6.3000', '385.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18687, '2022-10-26', 6006, 17902, 1599, 1871, '1.0000', '10.8300', '10.8300', '15.9600', '15.9600', '15.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18688, '2022-10-26', 5976, 17903, 1599, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '195.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18689, '2022-10-26', 5983, 17904, 1599, 2333, '1.0000', '5.9000', '5.9000', '5.9000', '5.9000', '124.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18690, '2022-10-26', 6212, 17905, 1599, 3048, '1.0000', '6.6500', '6.6500', '9.3000', '9.3000', '89.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18691, '2022-10-26', 6213, 17906, 1599, 3049, '1.0000', '6.6500', '6.6500', '9.3000', '9.3000', '118.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18692, '2022-10-26', 5573, 17907, 1599, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '979.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18693, '2022-10-26', 6593, 17908, 1599, 3618, '3.0000', '1.6500', '1.6500', '2.0000', '2.0000', '589.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18722, '2022-10-26', 6825, 17937, 1600, 3670, '5.0000', '46.2800', '46.2800', '1.0000', '1.0000', '684.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18721, '2022-10-26', 6685, 17936, 1600, 3998, '10.0000', '0.5000', '0.5000', '0.6000', '0.6000', '419.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18720, '2022-10-26', 6379, 17935, 1600, 3421, '5.0000', '8.7056', '8.7056', '2.1000', '2.1000', '76.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18719, '2022-10-26', 6374, 17934, 1600, 3614, '5.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3612.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18718, '2022-10-26', 6216, 17933, 1600, 3617, '5.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2135.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18717, '2022-10-26', 6117, 17932, 1600, 1320, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '264.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18716, '2022-10-26', 5640, 17931, 1600, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '493.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18723, '2022-10-26', 6696, 17938, 1600, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '156.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18702, '2022-10-26', 6555, 17917, 1601, 3736, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '68.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18703, '2022-10-26', 6074, 17918, 1602, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '190.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18704, '2022-10-26', 5581, 17919, 1602, 2343, '3.0000', '11.3000', '11.3000', '16.0000', '16.0000', '139.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18705, '2022-10-26', 6528, 17920, 1602, 1899, '4.0000', '5.9800', '5.9800', '7.5000', '7.5000', '172.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18706, '2022-10-26', 6304, 17921, 1602, 4304, '3.0000', '14.9059', '14.9059', '17.0000', '17.0000', '170.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18707, '2022-10-26', 6156, 17922, 1602, 4076, '100.0000', '5.0000', '5.0000', '0.5500', '0.5500', '79.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18708, '2022-10-26', 5969, 17923, 1602, 1312, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '40.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18709, '2022-10-26', 6902, 17924, 1602, 4115, '4.0000', '5.8500', '5.8500', '8.9000', '8.9000', '32.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18710, '2022-10-26', 6671, 17925, 1602, 1996, '3.0000', '7.1500', '7.1500', '9.0000', '9.0000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18711, '2022-10-26', 6572, 17926, 1602, 3996, '2.0000', '17.0000', '17.0000', '17.0000', '17.0000', '65.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18712, '2022-10-26', 5453, 17927, 1602, 3652, '4.0000', '8.3000', '8.3000', '9.2000', '9.2000', '72.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18713, '2022-10-26', 6685, 17928, 1602, 3998, '15.0000', '0.5000', '0.5000', '0.6000', '0.6000', '419.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18714, '2022-10-26', 6615, 17929, 1602, 2368, '2.0000', '11.0000', '11.0000', '11.0000', '11.0000', '32.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18715, '2022-10-26', 6593, 17930, 1602, 3618, '1.0000', '1.6500', '1.6500', '2.0000', '2.0000', '588.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18724, '2022-10-26', 6765, 17939, 1603, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '27.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18725, '2022-10-26', 5640, 17940, 1603, 3897, '6.0000', '11.1000', '11.1000', '12.3000', '12.3000', '487.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18726, '2022-10-26', 6664, 17941, 1603, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '602.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18727, '2022-10-26', 6202, 17942, 1603, 3985, '4.0000', '9.5000', '9.5000', '10.0000', '10.0000', '322.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18728, '2022-10-26', 6448, 17943, 1603, 2265, '3.0000', '15.0000', '15.0000', '15.0000', '15.0000', '36.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18729, '2022-10-26', 6101, 17944, 1603, 3978, '2.0000', '28.5000', '28.5000', '28.5000', '28.5000', '1.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18730, '2022-10-26', 5976, 17945, 1603, 4105, '5.0000', '7.5312', '7.5312', '8.2000', '8.2000', '190.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18731, '2022-10-26', 5828, 17946, 1603, 3660, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '40.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18732, '2022-10-26', 6377, 17947, 1603, 1465, '1.0000', '55.0000', '55.0000', '66.0000', '66.0000', '13.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18733, '2022-10-26', 6242, 17948, 1603, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '45.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18734, '2022-10-26', 6178, 17949, 1603, 3060, '20.0000', '1.6000', '1.6000', '2.2000', '2.2000', '496.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18735, '2022-10-26', 6280, 17950, 1603, 2576, '1.0000', '40.0000', '40.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18736, '2022-10-26', 5716, 17951, 1603, 515, '5.0000', '3.6000', '3.6000', '4.3200', '4.3200', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18737, '2022-10-26', 5716, 17951, 1603, NULL, '10.0000', '3.6000', '3.6000', '4.3200', '4.3200', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18738, '2022-10-26', 6936, 17952, 1604, 4366, '1.0000', '17.8783', '17.8783', '22.3000', '22.3000', '103.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18739, '2022-10-26', 5587, 17953, 1604, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '162.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18740, '2022-10-26', 5589, 17954, 1604, 2370, '2.0000', '9.4000', '9.4000', '9.4000', '9.4000', '105.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18741, '2022-10-26', 5463, 17955, 1605, 4315, '3.0000', '10.8900', '10.8900', '12.4000', '12.4000', '103.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18742, '2022-10-26', 5554, 17956, 1605, 3760, '1.0000', '278.7800', '278.7800', '341.0000', '341.0000', '3.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18743, '2022-10-26', 5619, 17957, 1605, 3509, '5.0000', '6.6300', '6.6300', '7.8000', '7.8000', '69.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18744, '2022-10-26', 5655, 17958, 1605, 4310, '2.0000', '30.6356', '30.6356', '34.0000', '34.0000', '57.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18745, '2022-10-26', 5841, 17959, 1605, 3429, '5.0000', '18.0000', '18.0000', '19.8000', '19.8000', '71.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18746, '2022-10-26', 5881, 17960, 1605, 3427, '5.0000', '13.5000', '13.5000', '14.8500', '14.8500', '46.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18747, '2022-10-26', 6113, 17961, 1605, 2086, '5.0000', '9.8000', '9.8000', '9.8000', '9.8000', '23.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18748, '2022-10-26', 6131, 17962, 1605, 769, '5.0000', '18.0000', '18.0000', '18.0000', '18.0000', '10.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18749, '2022-10-26', 6273, 17963, 1605, 2065, '5.0000', '26.0000', '26.0000', '27.5000', '27.5000', '24.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18750, '2022-10-26', 6337, 17964, 1605, 4256, '5.0000', '49.5359', '49.5359', '56.2000', '56.2000', '89.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18751, '2022-10-26', 6472, 17965, 1605, 756, '5.0000', '28.0000', '28.0000', '28.0000', '28.0000', '13.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18752, '2022-10-26', 6538, 17966, 1605, 3074, '5.0000', '10.3000', '10.3000', '10.3000', '10.3000', '3.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18753, '2022-10-26', 6640, 17967, 1605, 3413, '10.0000', '4.7000', '4.7000', '7.8000', '7.8000', '18.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18754, '2022-10-26', 6674, 17968, 1605, 1923, '5.0000', '4.4500', '4.4500', '4.4500', '4.4500', '249.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18755, '2022-10-26', 6694, 17969, 1605, 1003, '3.0000', '52.8000', '52.8000', '52.8000', '52.8000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18756, '2022-10-26', 6910, 17970, 1605, 4251, '5.0000', '11.7000', '11.7000', '16.0000', '16.0000', '47.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18757, '2022-10-26', 5830, 17971, 1605, 4254, '1.0000', '117.4500', '117.4500', '143.3000', '143.3000', '21.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18758, '2022-10-26', 6503, 17972, 1606, 1059, '2.0000', '50.0000', '50.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18759, '2022-10-26', 6078, 17973, 1607, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '501.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18760, '2022-10-26', 6907, 17974, 1607, 4248, '1.0000', '9.0000', '9.0000', '12.5000', '12.5000', '192.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18761, '2022-10-26', 6394, 17975, 1607, 3823, '2.0000', '5.4400', '5.4400', '6.6000', '6.6000', '176.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18762, '2022-10-26', 6074, 17976, 1607, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '188.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18763, '2022-10-26', 6075, 17977, 1607, 3025, '6.0000', '2.3000', '2.3000', '2.3000', '2.3000', '730.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18764, '2022-10-26', 6240, 17978, 1608, 4200, '3.0000', '10.6200', '10.6200', '11.9500', '11.9500', '50.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18807, '2022-10-26', 6778, 18021, 1609, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '115.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18806, '2022-10-26', 6685, 18020, 1609, 3998, '20.0000', '0.5000', '0.5000', '0.6000', '0.6000', '399.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18805, '2022-10-26', 6621, 18019, 1609, 1852, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '23.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18804, '2022-10-26', 6543, 18018, 1609, 2062, '2.0000', '11.2000', '11.2000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18803, '2022-10-26', 6333, 18017, 1609, 2361, '3.0000', '7.7000', '7.7000', '7.7000', '7.7000', '68.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18802, '2022-10-26', 6332, 18016, 1609, 1341, '2.0000', '16.5000', '16.5000', '16.5000', '16.5000', '14.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18801, '2022-10-26', 6202, 18015, 1609, 3985, '2.0000', '9.5000', '9.5000', '10.0000', '10.0000', '320.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18800, '2022-10-26', 6010, 18014, 1609, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '242.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18799, '2022-10-26', 5974, 18013, 1609, 4080, '2.0000', '8.4900', '8.4900', '9.5000', '9.5000', '197.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18798, '2022-10-26', 5967, 18012, 1609, 3132, '5.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2317.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18797, '2022-10-26', 5965, 18011, 1609, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '102.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18796, '2022-10-26', 5949, 18010, 1609, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '123.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18795, '2022-10-26', 5853, 18009, 1609, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '329.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18794, '2022-10-26', 5799, 18008, 1609, 1987, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '44.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18793, '2022-10-26', 5677, 18007, 1609, 2351, '1.0000', '13.2000', '13.2000', '15.4000', '15.4000', '22.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18792, '2022-10-26', 5640, 18006, 1609, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '482.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18791, '2022-10-26', 5619, 18005, 1609, 3509, '2.0000', '6.6300', '6.6300', '7.8000', '7.8000', '67.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18790, '2022-10-26', 5618, 18004, 1609, 3510, '2.0000', '7.4800', '7.4800', '8.8000', '8.8000', '86.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18789, '2022-10-26', 5535, 18003, 1609, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '773.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18788, '2022-10-26', 5472, 18002, 1609, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '266.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18787, '2022-10-26', 5418, 18001, 1609, 1851, '5.0000', '5.5000', '5.5000', '6.7600', '6.7600', '14.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18808, '2022-10-26', 6940, 18022, 1609, 4370, '5.0000', '4.0000', '4.0000', '4.5000', '4.5000', '232.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18809, '2022-10-26', 6007, 18023, 1609, 4364, '20.0000', '1.4788', '1.4788', '1.5000', '1.5000', '306.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18810, '2022-10-26', 5631, 18024, 1610, 1992, '1.0000', '6.5000', '6.5000', '8.8000', '8.8000', '89.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18811, '2022-10-26', 6154, 18025, 1610, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '69.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18812, '2022-10-26', 6378, 18026, 1610, 2255, '1.0000', '26.5000', '26.5000', '31.8000', '31.8000', '40.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18813, '2022-10-26', 6609, 18027, 1610, 3773, '1.0000', '11.6821', '11.6821', '16.3000', '16.3000', '99.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18814, '2022-10-26', 6598, 18028, 1610, 3741, '1.0000', '17.0100', '17.0100', '18.9000', '18.9000', '79.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18815, '2022-10-26', 5828, 18029, 1610, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '38.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18816, '2022-10-26', 6285, 18030, 1610, 4145, '2.0000', '9.6868', '9.6868', '11.8000', '11.8000', '41.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18817, '2022-10-26', 5472, 18031, 1610, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '265.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18818, '2022-10-26', 5640, 18032, 1610, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '479.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18937, '2022-10-26', 6258, 18147, 1611, 4202, '5.0000', '9.3060', '9.3060', '10.9000', '10.9000', '60.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18936, '2022-10-26', 6075, 18146, 1611, 3025, '48.0000', '2.3000', '2.3000', '2.3000', '2.3000', '634.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18935, '2022-10-26', 5799, 18145, 1611, 1987, '10.0000', '20.1300', '20.1300', '27.2600', '27.2600', '31.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18934, '2022-10-26', 5795, 18144, 1611, 586, '10.0000', '35.3000', '35.3000', '35.0000', '35.0000', '28.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18933, '2022-10-26', 5556, 18143, 1611, 585, '10.0000', '30.0000', '30.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18938, '2022-10-26', 6295, 18148, 1611, 4141, '10.0000', '36.6868', '36.6868', '59.8000', '59.8000', '62.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18833, '2022-10-26', 6373, 18046, 1612, 3990, '1.0000', '72.2000', '72.2000', '79.4200', '79.4200', '8.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18834, '2022-10-26', 6074, 18047, 1612, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '185.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18835, '2022-10-26', 6293, 18048, 1612, 4068, '2.0000', '14.6000', '14.6000', '19.9800', '19.9800', '141.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18836, '2022-10-26', 5827, 18049, 1612, 3651, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '1.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18837, '2022-10-26', 6905, 18050, 1612, 4139, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '67.0000', 1, 0, NULL, 101, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18838, '2022-10-26', 5418, 18051, 1612, 4387, '3.0000', '6.0344', '6.0344', '6.7600', '6.7600', '477.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18839, '2022-10-26', 5898, 18052, 1612, 2350, '2.0000', '13.2000', '13.2000', '20.2000', '20.2000', '112.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18840, '2022-10-26', 6377, 18053, 1612, 1465, '1.0000', '55.0000', '55.0000', '66.0000', '66.0000', '12.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18841, '2022-10-26', 5847, 18054, 1612, 3136, '2.0000', '3.1651', '3.1651', '7.5000', '7.5000', '264.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19484, '2022-10-26', 5792, 18676, 1613, 4190, '3.0000', '34.1634', '34.1634', '50.4000', '50.4000', '75.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19483, '2022-10-26', 6936, 18675, 1613, 4366, '3.0000', '17.8783', '17.8783', '22.3000', '22.3000', '94.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19482, '2022-10-26', 6925, 18674, 1613, 4340, '5.0000', '4.5000', '4.5000', '5.0000', '5.0000', '58.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19481, '2022-10-26', 6861, 18673, 1613, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '3.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19480, '2022-10-26', 6768, 18672, 1613, 1365, '5.0000', '5.8000', '5.8000', '9.0000', '9.0000', '24.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19479, '2022-10-26', 6765, 18671, 1613, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19478, '2022-10-26', 6565, 18670, 1613, 2007, '1.0000', '64.7800', '64.7800', '88.0800', '88.0800', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19477, '2022-10-26', 6538, 18669, 1613, 3074, '3.0000', '10.3000', '10.3000', '10.3000', '10.3000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19476, '2022-10-26', 6491, 18668, 1613, 4377, '100.0000', '1.8260', '1.8260', '1.3000', '1.3000', '3017.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19475, '2022-10-26', 6442, 18667, 1613, 3804, '1.0000', '75.1600', '75.1600', '83.6000', '83.6000', '3.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19474, '2022-10-26', 6379, 18666, 1613, 3421, '3.0000', '8.7056', '8.7056', '2.1000', '2.1000', '63.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19473, '2022-10-26', 6337, 18665, 1613, 4256, '15.0000', '49.5359', '49.5359', '56.2000', '56.2000', '65.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19472, '2022-10-26', 6327, 18664, 1613, NULL, '18.0000', '28.6000', '28.6000', '33.7000', '33.7000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19471, '2022-10-26', 6327, 18664, 1613, 4010, '-17.0000', '28.6000', '28.6000', '33.7000', '33.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19470, '2022-10-26', 6294, 18663, 1613, 4207, '2.0000', '24.2015', '24.2015', '30.0000', '30.0000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19469, '2022-10-26', 6285, 18662, 1613, 4145, '3.0000', '9.6868', '9.6868', '11.8000', '11.8000', '22.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19468, '2022-10-26', 6283, 18661, 1613, 2335, '3.0000', '5.1000', '5.1000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19467, '2022-10-26', 6265, 18660, 1613, 1863, '1.0000', '11.8000', '11.8000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19466, '2022-10-26', 6258, 18659, 1613, 4202, '2.0000', '9.3060', '9.3060', '10.9000', '10.9000', '60.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19465, '2022-10-26', 6254, 18658, 1613, 952, '1.0000', '36.8000', '36.8000', '36.8000', '36.8000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19464, '2022-10-26', 6248, 18657, 1613, 4201, '2.0000', '9.5390', '9.5390', '12.8000', '12.8000', '151.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19463, '2022-10-26', 6173, 18656, 1613, 753, '4.0000', '3.1500', '3.1500', '4.4100', '4.4100', '10.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19462, '2022-10-26', 6134, 18655, 1613, 1120, '3.0000', '5.8000', '5.8000', '5.8000', '5.8000', '108.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19461, '2022-10-26', 6132, 18654, 1613, 1879, '3.0000', '4.3500', '4.3500', '4.3500', '4.3500', '84.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19460, '2022-10-26', 6107, 18653, 1613, 1875, '3.0000', '12.0000', '12.0000', '12.0000', '12.0000', '160.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19459, '2022-10-26', 6089, 18652, 1613, 1047, '1.0000', '73.5000', '73.5000', '73.5000', '73.5000', '28.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19458, '2022-10-26', 6005, 18651, 1613, 4401, '2.0000', '8.4000', '8.4000', '9.8000', '9.8000', '38.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19457, '2022-10-26', 5965, 18650, 1613, 3787, '3.0000', '12.5145', '12.5145', '13.5000', '13.5000', '92.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19456, '2022-10-26', 5963, 18649, 1613, 3428, '1.0000', '14.5000', '14.5000', '15.9500', '15.9500', '37.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19455, '2022-10-26', 5911, 18648, 1613, 4314, '3.0000', '18.2490', '18.2490', '28.6000', '28.6000', '19.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19454, '2022-10-26', 5858, 18647, 1613, 4192, '1.0000', '27.3468', '27.3468', '38.0000', '38.0000', '69.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19453, '2022-10-26', 5853, 18646, 1613, 3620, '4.0000', '8.8287', '8.8287', '10.5000', '10.5000', '323.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19452, '2022-10-26', 5724, 18645, 1613, 4316, '5.0000', '11.5269', '11.5269', '16.7000', '16.7000', '62.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19451, '2022-10-26', 5610, 18644, 1613, 4253, '3.0000', '29.2166', '29.2166', '60.5000', '60.5000', '22.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19450, '2022-10-26', 5549, 18643, 1613, 2372, '3.0000', '8.2000', '8.2000', '8.2000', '8.2000', '262.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19449, '2022-10-26', 5463, 18642, 1613, 4315, '2.0000', '10.8900', '10.8900', '12.4000', '12.4000', '98.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19485, '2022-10-26', 6075, 18677, 1613, 3025, '29.0000', '2.3000', '2.3000', '2.3000', '2.3000', '602.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18879, '2022-10-26', 5655, 18091, 1614, 4310, '2.0000', '30.6356', '30.6356', '34.0000', '34.0000', '55.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18880, '2022-10-26', 6922, 18092, 1614, 4312, '20.0000', '7.3800', '7.3800', '8.2000', '8.2000', '28.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18881, '2022-10-26', 6918, 18093, 1614, 4308, '10.0000', '8.3700', '8.3700', '9.3000', '9.3000', '50.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18882, '2022-10-26', 6919, 18094, 1614, 4309, '10.0000', '13.0500', '13.0500', '14.5000', '14.5000', '50.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18883, '2022-10-26', 6942, 18095, 1614, 4381, '10.0000', '5.4600', '5.4600', '6.7000', '6.7000', '310.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18884, '2022-10-26', 6921, 18096, 1615, 4311, '10.0000', '8.7800', '8.7800', '9.7500', '9.7500', '40.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18885, '2022-10-26', 6831, 18097, 1616, 3391, '25.0000', '1.6000', '1.6000', '2.1000', '2.1000', '650.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18886, '2022-10-26', 5640, 18098, 1616, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '478.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18887, '2022-10-26', 6696, 18099, 1616, 4109, '4.0000', '4.2337', '4.2337', '4.9500', '4.9500', '152.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18888, '2022-10-26', 6030, 18100, 1616, 3895, '3.0000', '4.4300', '4.4300', '4.9000', '4.9000', '142.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18889, '2022-10-26', 6348, 18101, 1616, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '24.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18890, '2022-10-26', 5439, 18102, 1617, 3799, '2.0000', '27.2586', '27.2586', '71.0000', '71.0000', '85.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18891, '2022-10-26', 5632, 18103, 1617, 1991, '5.0000', '8.0000', '8.0000', '11.8000', '11.8000', '94.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18892, '2022-10-26', 6457, 18104, 1617, 4213, '2.0000', '41.4000', '41.4000', '46.5000', '46.5000', '59.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18893, '2022-10-26', 6458, 18105, 1617, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '91.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18894, '2022-10-26', 5587, 18106, 1617, 3076, '3.0000', '8.8000', '8.8000', '8.8000', '8.8000', '159.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18895, '2022-10-26', 5619, 18107, 1617, 3509, '4.0000', '6.6300', '6.6300', '7.8000', '7.8000', '63.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18896, '2022-10-26', 6674, 18108, 1617, 1923, '6.0000', '4.4500', '4.4500', '4.4500', '4.4500', '243.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18897, '2022-10-26', 6573, 18109, 1617, 4134, '-5.0000', '21.4000', '21.4000', '21.4000', '21.4000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18898, '2022-10-26', 6573, 18109, 1617, NULL, '6.0000', '21.4000', '21.4000', '21.4000', '21.4000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18899, '2022-10-26', 5799, 18110, 1617, 1987, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '16.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18900, '2022-10-26', 6316, 18111, 1617, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '47.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18901, '2022-10-26', 6242, 18112, 1617, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '44.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18902, '2022-10-26', 6408, 18113, 1617, 1986, '5.0000', '4.6700', '4.6700', '7.9800', '7.9800', '102.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18903, '2022-10-26', 6930, 18114, 1617, 4351, '1.0000', '40.0000', '40.0000', '44.0000', '44.0000', '77.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18904, '2022-10-26', 6893, 18115, 1617, 4347, '1.0000', '49.0000', '49.0000', '55.0000', '55.0000', '160.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18905, '2022-10-26', 5641, 18116, 1617, 3890, '1.0000', '31.1000', '31.1000', '34.2100', '34.2100', '39.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18906, '2022-10-26', 6345, 18117, 1617, 1922, '5.0000', '3.6300', '3.6300', '4.4000', '4.4000', '47.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18907, '2022-10-26', 6346, 18118, 1617, 1921, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '220.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18908, '2022-10-26', 5573, 18119, 1617, 2299, '1.0000', '18.0000', '18.0000', '18.0000', '18.0000', '978.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18909, '2022-10-26', 6664, 18120, 1617, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '577.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18910, '2022-10-26', 6749, 18121, 1617, 1945, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18911, '2022-10-26', 5757, 18122, 1617, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '86.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18912, '2022-10-26', 6446, 18123, 1617, 1449, '4.0000', '4.9000', '4.9000', '8.4000', '8.4000', '61.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18913, '2022-10-26', 6337, 18124, 1617, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '72.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18914, '2022-10-26', 5986, 18125, 1617, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '49.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18915, '2022-10-26', 5677, 18126, 1618, 4388, '2.0000', '13.7556', '13.7556', '15.4000', '15.4000', '248.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18916, '2022-10-26', 5986, 18127, 1618, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '48.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18917, '2022-10-26', 6020, 18128, 1618, 2302, '1.0000', '16.1378', '16.1378', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18918, '2022-10-26', 6074, 18129, 1618, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '183.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18919, '2022-10-26', 6293, 18130, 1618, 4068, '1.0000', '14.6000', '14.6000', '19.9800', '19.9800', '140.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18920, '2022-10-26', 6528, 18131, 1618, 1899, '2.0000', '5.9800', '5.9800', '7.5000', '7.5000', '170.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18921, '2022-10-26', 6696, 18132, 1618, 4109, '3.0000', '4.2337', '4.2337', '4.9500', '4.9500', '149.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18922, '2022-10-26', 6754, 18133, 1618, 1906, '3.0000', '4.5000', '4.5000', '4.5000', '4.5000', '351.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18923, '2022-10-26', 6839, 18134, 1618, 3769, '2.0000', '4.9100', '4.9100', '6.4300', '6.4300', '38.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18924, '2022-10-26', 5705, 18135, 1619, 4383, '2.0000', '8.0933', '8.0933', '9.6000', '9.6000', '88.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18925, '2022-10-26', 5828, 18136, 1619, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '36.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18926, '2022-10-26', 6151, 18137, 1619, 2044, '2.0000', '6.7000', '6.7000', '12.6000', '12.6000', '37.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18927, '2022-10-26', 5640, 18138, 1620, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '473.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18928, '2022-10-26', 6075, 18139, 1620, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '634.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18929, '2022-10-26', 6820, 18140, 1621, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '418.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18930, '2022-10-26', 5519, 18141, 1621, 3663, '1.0000', '3.3000', '3.3000', '3.3000', '3.3000', '205.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18931, '2022-10-26', 6106, 18142, 1621, 3814, '-23.0000', '1.5000', '1.5000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18932, '2022-10-26', 6106, 18142, 1621, NULL, '30.0000', '1.5000', '1.5000', '1.5000', '1.5000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18939, '2022-10-26', 5715, 18149, 1622, 2389, '1.0000', '13.1400', '13.1400', '15.8000', '15.8000', '1.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18940, '2022-10-26', 5536, 18150, 1623, 510, '1.0000', '52.2000', '52.2000', '87.0000', '87.0000', '13.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18941, '2022-10-26', 5633, 18151, 1623, 1033, '1.0000', '226.2100', '226.2100', '377.0200', '377.0200', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18942, '2022-10-26', 5948, 18152, 1623, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '115.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18943, '2022-10-26', 5949, 18153, 1623, 1311, '5.0000', '5.2000', '5.2000', '7.3000', '7.3000', '118.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18944, '2022-10-26', 6074, 18154, 1623, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '173.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18945, '2022-10-26', 6664, 18155, 1623, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '552.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18946, '2022-10-26', 6930, 18156, 1623, 4351, '2.0000', '40.0000', '40.0000', '44.0000', '44.0000', '75.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18947, '2022-10-26', 6931, 18157, 1623, 4350, '2.0000', '30.0000', '30.0000', '34.0000', '34.0000', '80.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18948, '2022-10-26', 5418, 18158, 1624, 4387, '4.0000', '6.0344', '6.0344', '6.7600', '6.7600', '473.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18949, '2022-10-26', 6091, 18159, 1624, NULL, '10.0000', '0.0000', '0.0000', '6.9000', '6.9000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18954, '2022-10-26', 6652, 18164, 1625, 1414, '1.0000', '3.8000', '3.8000', '3.7900', '3.7900', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18953, '2022-10-26', 6542, 18163, 1625, 2047, '1.0000', '7.8000', '7.8000', '9.9000', '9.9000', '28.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18955, '2022-10-26', 6076, 18165, 1626, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1429.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18956, '2022-10-26', 6696, 18166, 1626, 4109, '5.0000', '4.2337', '4.2337', '4.9500', '4.9500', '144.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18957, '2022-10-26', 6102, 18167, 1626, 2291, '1.0000', '27.8000', '27.8000', '27.8000', '27.8000', '24.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18958, '2022-10-26', 6917, 18168, 1626, 4337, '1.0000', '14.1100', '14.1100', '16.0000', '16.0000', '27.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18959, '2022-10-26', 6191, 18169, 1626, 3984, '5.0000', '5.5000', '5.5000', '7.7000', '7.7000', '81.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18960, '2022-10-26', 6384, 18170, 1626, 1477, '2.0000', '9.6600', '9.6600', '9.6600', '9.6600', '80.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18961, '2022-10-26', 5640, 18171, 1626, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '472.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18962, '2022-10-26', 6590, 18172, 1627, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18963, '2022-10-26', 6427, 18173, 1628, 1475, '1.0000', '17.5000', '17.5000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18964, '2022-10-26', 5965, 18174, 1628, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '97.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18965, '2022-10-26', 6572, 18175, 1628, 3996, '3.0000', '17.0000', '17.0000', '17.0000', '17.0000', '62.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18966, '2022-10-26', 5740, 18176, 1628, 2274, '5.0000', '15.5000', '15.5000', '15.5000', '15.5000', '45.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18967, '2022-10-26', 5535, 18177, 1628, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '763.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18968, '2022-10-26', 6205, 18178, 1628, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '36.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18969, '2022-10-26', 5724, 18179, 1628, 4316, '4.0000', '11.5269', '11.5269', '16.7000', '16.7000', '66.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18970, '2022-10-26', 5882, 18180, 1628, 4319, '3.0000', '10.6700', '10.6700', '17.8000', '17.8000', '87.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18971, '2022-10-26', 5633, 18181, 1628, 1033, '1.0000', '226.2100', '226.2100', '377.0200', '377.0200', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18972, '2022-10-26', 6365, 18182, 1628, 2038, '2.0000', '30.0000', '30.0000', '42.8000', '42.8000', '98.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18973, '2022-10-26', 6293, 18183, 1628, 4068, '3.0000', '14.6000', '14.6000', '19.9800', '19.9800', '137.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18974, '2022-10-26', 5629, 18184, 1628, 4299, '3.0000', '8.9474', '8.9474', '10.5000', '10.5000', '336.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18975, '2022-10-26', 6260, 18185, 1628, 4143, '3.0000', '5.7594', '5.7594', '6.4000', '6.4000', '58.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18976, '2022-10-26', 5801, 18186, 1628, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '63.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18977, '2022-10-26', 6923, 18187, 1628, 4338, '4.0000', '3.6000', '3.6000', '4.0000', '4.0000', '468.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18978, '2022-10-26', 5677, 18188, 1629, 4388, '2.0000', '13.7556', '13.7556', '15.4000', '15.4000', '246.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18979, '2022-10-26', 6408, 18189, 1629, 1986, '4.0000', '4.6700', '4.6700', '7.9800', '7.9800', '98.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18980, '2022-10-26', 5969, 18190, 1629, 1312, '2.0000', '8.8000', '8.8000', '10.7000', '10.7000', '38.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18981, '2022-10-26', 6385, 18191, 1629, 2309, '2.0000', '7.4000', '7.4000', '13.5000', '13.5000', '71.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18982, '2022-10-26', 6383, 18192, 1629, 4117, '2.0000', '8.7203', '8.7203', '13.5000', '13.5000', '70.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18983, '2022-10-26', 5799, 18193, 1629, 1987, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '30.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18984, '2022-10-26', 6128, 18194, 1629, 4382, '2.0000', '8.1429', '8.1429', '9.8000', '9.8000', '118.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18985, '2022-10-26', 5853, 18195, 1629, 3620, '2.0000', '8.8287', '8.8287', '10.5000', '10.5000', '323.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18986, '2022-10-26', 6348, 18196, 1629, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '23.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18987, '2022-10-26', 6074, 18197, 1629, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '171.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18988, '2022-10-26', 6316, 18198, 1629, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '46.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18989, '2022-10-26', 6744, 18199, 1630, 4216, '4.0000', '10.2184', '10.2184', '14.8000', '14.8000', '15.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18990, '2022-10-26', 5689, 18200, 1630, 1428, '4.0000', '3.3000', '3.3000', '3.3000', '3.3000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18991, '2022-10-26', 6337, 18201, 1630, 4256, '2.0000', '49.5359', '49.5359', '56.2000', '56.2000', '70.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18992, '2022-10-26', 6205, 18202, 1630, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '35.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18993, '2022-10-26', 6890, 18203, 1630, 4124, '5.0000', '3.7809', '3.7809', '6.6000', '6.6000', '892.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18994, '2022-10-26', 5834, 18204, 1631, 923, '1.0000', '41.5800', '41.5800', '41.5800', '41.5800', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18995, '2022-10-26', 5835, 18205, 1631, 924, '1.0000', '33.9800', '33.9800', '43.7000', '43.7000', '3.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18996, '2022-10-26', 6340, 18206, 1631, 955, '1.0000', '60.3000', '60.3000', '87.8000', '87.8000', '1.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18997, '2022-10-26', 5988, 18207, 1631, 2033, '4.0000', '3.0000', '3.0000', '3.6000', '3.6000', '52.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18998, '2022-10-26', 6517, 18208, 1631, 2254, '4.0000', '8.7000', '8.7000', '11.0000', '11.0000', '54.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (18999, '2022-10-26', 6819, 18209, 1631, 4185, '-3.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19000, '2022-10-26', 6819, 18209, 1631, NULL, '4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '-4.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19001, '2022-10-26', 6609, 18210, 1631, 3773, '2.0000', '11.6821', '11.6821', '16.3000', '16.3000', '97.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19002, '2022-10-26', 5611, 18211, 1631, 1858, '5.0000', '6.0000', '6.0000', '7.8000', '7.8000', '7.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19003, '2022-10-26', 5858, 18212, 1632, 4192, '1.0000', '27.3468', '27.3468', '38.0000', '38.0000', '70.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19004, '2022-10-26', 6593, 18213, 1632, 3618, '1.0000', '1.6500', '1.6500', '2.8000', '2.8000', '587.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19005, '2022-10-26', 6285, 18214, 1632, 4145, '1.0000', '9.6868', '9.6868', '11.8000', '11.8000', '37.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19006, '2022-10-26', 6937, 18215, 1633, 4368, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '11.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19007, '2022-10-26', 6939, 18216, 1633, 4369, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '22.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19008, '2022-10-26', 5947, 18217, 1634, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '187.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19009, '2022-10-26', 6247, 18218, 1635, 2326, '1.0000', '78.0000', '78.0000', '103.0000', '103.0000', '11.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19010, '2022-10-27', 6117, 18219, 1636, 1320, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '261.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19011, '2022-10-27', 5640, 18220, 1636, 3897, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '471.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19012, '2022-10-27', 6696, 18221, 1636, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '142.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19013, '2022-10-27', 5711, 18222, 1637, 2009, '1.0000', '44.8000', '44.8000', '49.3000', '49.3000', '5.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19014, '2022-10-27', 6936, 18223, 1637, 4366, '1.0000', '17.8783', '17.8783', '22.3000', '22.3000', '99.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19015, '2022-10-27', 6220, 18224, 1637, 4360, '1.0000', '5.3412', '5.3412', '6.0000', '6.0000', '360.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19016, '2022-10-27', 6218, 18225, 1638, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '168.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19017, '2022-10-27', 5947, 18226, 1638, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '185.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19539, '2022-10-28', 6677, 18730, 1682, 1274, '2.0000', '10.0000', '10.0000', '10.5000', '10.5000', '242.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19538, '2022-10-28', 6605, 18729, 1682, NULL, '39.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-39.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19537, '2022-10-28', 6605, 18729, 1682, 4136, '-34.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19536, '2022-10-28', 6595, 18728, 1682, 2565, '2.0000', '7.9000', '7.9000', '9.2000', '9.2000', '56.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19535, '2022-10-28', 6532, 18727, 1682, 3579, '5.0000', '8.0796', '8.0796', '11.0000', '11.0000', '55.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19534, '2022-10-28', 6408, 18726, 1682, 1986, '5.0000', '4.6700', '4.6700', '7.9800', '7.9800', '85.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19533, '2022-10-28', 6396, 18725, 1682, 4210, '4.0000', '14.4657', '14.4657', '17.2000', '17.2000', '39.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19532, '2022-10-28', 6383, 18724, 1682, 4117, '4.0000', '8.7203', '8.7203', '13.5000', '13.5000', '64.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19531, '2022-10-28', 6358, 18723, 1682, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3967.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19530, '2022-10-28', 6340, 18722, 1682, 955, '1.0000', '60.3000', '60.3000', '87.8000', '87.8000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19529, '2022-10-28', 6304, 18721, 1682, 4304, '3.0000', '14.9059', '14.9059', '17.0000', '17.0000', '163.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19528, '2022-10-28', 6301, 18720, 1682, 4303, '3.0000', '10.8601', '10.8601', '13.5000', '13.5000', '126.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19527, '2022-10-28', 6298, 18719, 1682, 4209, '3.0000', '5.5742', '5.5742', '12.8000', '12.8000', '99.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19526, '2022-10-28', 6297, 18718, 1682, 4208, '3.0000', '9.8672', '9.8672', '11.8000', '11.8000', '30.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19525, '2022-10-28', 6294, 18717, 1682, 4207, '3.0000', '24.2015', '24.2015', '30.0000', '30.0000', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19524, '2022-10-28', 6290, 18716, 1682, 2318, '1.0000', '122.4000', '122.4000', '168.0000', '168.0000', '3.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19349, '2022-10-28', 5947, 18546, 1681, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '183.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19348, '2022-10-28', 5472, 18545, 1680, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '255.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19346, '2022-10-27', 6811, 18543, 1679, 652, '3.0000', '23.0000', '23.0000', '23.0000', '23.0000', '26.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19345, '2022-10-27', 6765, 18542, 1679, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '23.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19344, '2022-10-27', 6599, 18541, 1679, 3742, '4.0000', '17.0015', '17.0015', '18.9000', '18.9000', '29.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19343, '2022-10-27', 6358, 18540, 1679, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3977.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19347, '2022-10-27', 6904, 18544, 1679, 4219, '4.0000', '16.7400', '16.7400', '18.6000', '18.6000', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19523, '2022-10-28', 6285, 18715, 1682, 4145, '7.0000', '9.6868', '9.6868', '11.8000', '11.8000', '22.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19042, '2022-10-27', 5792, 18251, 1640, 4190, '2.0000', '34.1634', '34.1634', '50.4000', '50.4000', '78.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19043, '2022-10-27', 6283, 18252, 1640, 2054, '2.0000', '5.1000', '5.1000', '7.5000', '7.5000', '188.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19044, '2022-10-27', 6408, 18253, 1640, 1986, '2.0000', '4.6700', '4.6700', '7.9800', '7.9800', '94.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19045, '2022-10-27', 6205, 18254, 1640, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '33.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19046, '2022-10-27', 6838, 18255, 1640, 2120, '1.0000', '17.7100', '17.7100', '17.7100', '17.7100', '6.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19047, '2022-10-27', 6359, 18256, 1640, 4069, '5.0000', '1.7604', '1.7604', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19048, '2022-10-27', 6358, 18257, 1640, 3906, '5.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3992.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19049, '2022-10-27', 5640, 18258, 1640, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '465.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19050, '2022-10-27', 5642, 18259, 1640, 3888, '5.0000', '24.4300', '24.4300', '26.9000', '26.9000', '45.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19051, '2022-10-27', 5641, 18260, 1640, 3890, '5.0000', '31.1000', '31.1000', '34.2100', '34.2100', '29.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19052, '2022-10-27', 6528, 18261, 1640, 1899, '5.0000', '5.9800', '5.9800', '7.5000', '7.5000', '160.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19053, '2022-10-27', 5976, 18262, 1640, 4105, '3.0000', '7.5312', '7.5312', '8.2000', '8.2000', '184.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19054, '2022-10-27', 6201, 18263, 1640, 1982, '2.0000', '6.9000', '6.9000', '9.1000', '9.1000', '113.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19055, '2022-10-27', 5977, 18264, 1640, 1124, '2.0000', '7.5000', '7.5000', '7.8000', '7.8000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19056, '2022-10-27', 6640, 18265, 1640, 3413, '2.0000', '4.7000', '4.7000', '7.8000', '7.8000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19057, '2022-10-27', 6418, 18266, 1640, 2580, '3.0000', '6.3300', '6.3300', '6.3800', '6.3800', '560.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19058, '2022-10-27', 6232, 18267, 1640, 4320, '3.0000', '7.6225', '7.6225', '9.9000', '9.9000', '56.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19059, '2022-10-27', 6478, 18268, 1640, 4322, '5.0000', '7.8980', '7.8980', '9.7200', '9.7200', '57.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19060, '2022-10-27', 5585, 18269, 1640, 3962, '1.0000', '23.4000', '23.4000', '28.5000', '28.5000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19061, '2022-10-27', 6893, 18270, 1640, 4347, '1.0000', '49.0000', '49.0000', '55.0000', '55.0000', '158.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19062, '2022-10-27', 5969, 18271, 1640, 1312, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '32.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19063, '2022-10-27', 5453, 18272, 1640, 3652, '2.0000', '8.3000', '8.3000', '9.2000', '9.2000', '68.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19064, '2022-10-27', 6136, 18273, 1640, 1324, '5.0000', '3.8000', '3.8000', '3.8000', '3.8000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19065, '2022-10-27', 6075, 18274, 1640, 3025, '13.0000', '2.3000', '2.3000', '2.3000', '2.3000', '608.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19066, '2022-10-27', 6590, 18275, 1641, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19067, '2022-10-27', 6590, 18276, 1642, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '1.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19068, '2022-10-27', 5949, 18277, 1642, 1311, '3.0000', '5.2000', '5.2000', '7.3000', '7.3000', '115.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19069, '2022-10-27', 6873, 18278, 1642, 3484, '10.0000', '1.7189', '1.7189', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19070, '2022-10-27', 6025, 18279, 1642, 3887, '10.0000', '0.7347', '0.7347', '0.8000', '0.8000', '384.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19071, '2022-10-27', 6383, 18280, 1642, 4117, '2.0000', '8.7203', '8.7203', '13.5000', '13.5000', '68.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19072, '2022-10-27', 6385, 18281, 1642, 2309, '2.0000', '7.4000', '7.4000', '13.5000', '13.5000', '69.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19073, '2022-10-27', 6744, 18282, 1642, 4216, '2.0000', '10.2184', '10.2184', '14.8000', '14.8000', '13.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19074, '2022-10-27', 6455, 18283, 1642, 3047, '1.0000', '19.5800', '19.5800', '21.7000', '21.7000', '16.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19075, '2022-10-27', 6543, 18284, 1642, 2062, '2.0000', '11.2000', '11.2000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19076, '2022-10-27', 6120, 18285, 1642, 4384, '1.0000', '16.1686', '16.1686', '18.6000', '18.6000', '29.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19077, '2022-10-27', 5956, 18286, 1642, 4195, '1.0000', '19.9535', '19.9535', '24.0000', '24.0000', '17.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19078, '2022-10-27', 6210, 18287, 1642, 2289, '2.0000', '7.1000', '7.1000', '13.5300', '13.5300', '65.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19079, '2022-10-27', 5677, 18288, 1643, 4388, '1.0000', '13.7556', '13.7556', '15.4000', '15.4000', '245.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19080, '2022-10-27', 6391, 18289, 1644, 762, '5.0000', '3.3200', '3.3200', '3.7000', '3.7000', '9.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19081, '2022-10-27', 6024, 18290, 1644, 3896, '2.0000', '4.9900', '4.9900', '5.5000', '5.5000', '41.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19082, '2022-10-27', 5705, 18291, 1644, 4383, '1.0000', '8.0933', '8.0933', '9.6000', '9.6000', '87.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19083, '2022-10-27', 6679, 18292, 1645, 3546, '1.0000', '9.9900', '9.9900', '9.9900', '9.9900', '1.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19084, '2022-10-27', 5519, 18293, 1646, 3663, '2.0000', '3.3000', '3.3000', '3.3000', '3.3000', '203.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19085, '2022-10-27', 6828, 18294, 1647, 4073, '1.0000', '13.1400', '13.1400', '15.8000', '15.8000', '4.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19086, '2022-10-27', 6218, 18295, 1647, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '167.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19087, '2022-10-27', 6753, 18296, 1648, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '120.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19088, '2022-10-27', 6158, 18297, 1649, 3653, '1.0000', '9.8000', '9.8000', '10.8000', '10.8000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19089, '2022-10-27', 5453, 18298, 1649, 3652, '2.0000', '8.3000', '8.3000', '9.2000', '9.2000', '66.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19090, '2022-10-27', 5997, 18299, 1649, 4184, '-8.0000', '0.0000', '0.0000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19091, '2022-10-27', 5997, 18299, 1649, NULL, '11.0000', '0.0000', '0.0000', '6.6000', '6.6000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19092, '2022-10-27', 6217, 18300, 1649, 4353, '5.0000', '3.0402', '3.0402', '3.5000', '3.5000', '888.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19093, '2022-10-27', 6285, 18301, 1649, 4145, '5.0000', '9.6868', '9.6868', '11.8000', '11.8000', '32.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19094, '2022-10-27', 6538, 18302, 1649, 770, '2.0000', '10.3000', '10.3000', '10.3000', '10.3000', '33.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19095, '2022-10-27', 5587, 18303, 1649, 3076, '2.0000', '8.8000', '8.8000', '8.8000', '8.8000', '157.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19096, '2022-10-27', 5847, 18304, 1649, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '261.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19097, '2022-10-27', 5585, 18305, 1649, 3962, '2.0000', '23.4000', '23.4000', '28.5000', '28.5000', '4.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19098, '2022-10-27', 5447, 18306, 1649, 3851, '2.0000', '24.7066', '24.7066', '28.7000', '28.7000', '181.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19099, '2022-10-27', 5970, 18307, 1649, 4402, '3.0000', '11.5903', '11.5903', '12.8500', '12.8500', '116.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19100, '2022-10-27', 5487, 18308, 1649, 3816, '2.0000', '17.1500', '17.1500', '27.0000', '27.0000', '154.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19101, '2022-10-27', 5828, 18309, 1649, 3660, '2.0000', '11.1000', '11.1000', '12.3000', '12.3000', '34.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19102, '2022-10-27', 5657, 18310, 1649, 4354, '4.0000', '5.0048', '5.0048', '6.3000', '6.3000', '381.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19103, '2022-10-27', 6256, 18311, 1649, 4224, '-4.0000', '0.0000', '0.0000', '7.9000', '7.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19104, '2022-10-27', 6256, 18311, 1649, NULL, '6.0000', '0.0000', '0.0000', '7.9000', '7.9000', '-6.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19105, '2022-10-27', 6936, 18312, 1649, 4366, '3.0000', '17.8783', '17.8783', '22.3000', '22.3000', '96.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19106, '2022-10-27', 6914, 18313, 1649, 4334, '1.0000', '30.5000', '30.5000', '34.6000', '34.6000', '3.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19107, '2022-10-27', 5882, 18314, 1649, 4319, '4.0000', '10.6700', '10.6700', '17.8000', '17.8000', '83.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19108, '2022-10-27', 6467, 18315, 1649, 4321, '1.0000', '44.6300', '44.6300', '50.6000', '50.6000', '48.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19109, '2022-10-27', 5799, 18316, 1649, 1987, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '28.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19110, '2022-10-27', 6389, 18317, 1649, 4114, '3.0000', '8.7525', '8.7525', '13.4000', '13.4000', '298.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19111, '2022-10-27', 5969, 18318, 1649, 1312, '6.0000', '8.8000', '8.8000', '10.7000', '10.7000', '26.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19112, '2022-10-27', 6162, 18319, 1649, 3656, '3.0000', '6.6000', '6.6000', '7.3000', '7.3000', '67.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19113, '2022-10-27', 6225, 18320, 1649, 2356, '6.0000', '2.8000', '2.8000', '3.0800', '3.0800', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19114, '2022-10-27', 5976, 18321, 1649, 4105, '4.0000', '7.5312', '7.5312', '8.2000', '8.2000', '180.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19115, '2022-10-27', 6297, 18322, 1649, 4208, '2.0000', '9.8672', '9.8672', '11.8000', '11.8000', '33.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19116, '2022-10-27', 6304, 18323, 1649, 4304, '2.0000', '14.9059', '14.9059', '17.0000', '17.0000', '168.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19117, '2022-10-27', 6895, 18324, 1649, 3786, '3.0000', '9.7900', '9.7900', '10.8000', '10.8000', '34.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19118, '2022-10-27', 6419, 18325, 1649, 4086, '2.0000', '4.1457', '4.1457', '6.1000', '6.1000', '190.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19119, '2022-10-27', 6294, 18326, 1649, 4207, '1.0000', '24.2015', '24.2015', '30.0000', '30.0000', '51.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19120, '2022-10-27', 6396, 18327, 1649, 4210, '2.0000', '14.4657', '14.4657', '17.2000', '17.2000', '43.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19121, '2022-10-27', 5677, 18328, 1649, 4388, '3.0000', '13.7556', '13.7556', '15.4000', '15.4000', '242.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19122, '2022-10-27', 5640, 18329, 1649, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '460.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19123, '2022-10-27', 6010, 18330, 1649, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '241.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19124, '2022-10-27', 6095, 18331, 1649, 3893, '6.0000', '8.3200', '8.3200', '9.2000', '9.2000', '338.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19125, '2022-10-27', 5451, 18332, 1649, 2387, '10.0000', '5.8600', '5.8600', '7.3200', '7.3200', '977.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19126, '2022-10-27', 6509, 18333, 1649, 2077, '2.0000', '13.2500', '13.2500', '13.2500', '13.2500', '91.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19127, '2022-10-27', 5724, 18334, 1649, 4316, '4.0000', '11.5269', '11.5269', '16.7000', '16.7000', '62.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19128, '2022-10-27', 6327, 18335, 1649, 4010, '-17.0000', '28.6000', '28.6000', '33.7000', '33.7000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19129, '2022-10-27', 6327, 18335, 1649, NULL, '18.0000', '28.6000', '28.6000', '33.7000', '33.7000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19130, '2022-10-27', 6112, 18336, 1649, 3820, '2.0000', '12.7000', '12.7000', '18.0000', '18.0000', '185.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19131, '2022-10-27', 5983, 18337, 1649, 2333, '2.0000', '5.9000', '5.9000', '6.9000', '6.9000', '122.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19132, '2022-10-27', 6156, 18338, 1649, 4076, '20.0000', '5.0000', '5.0000', '0.5500', '0.5500', '59.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19133, '2022-10-27', 5904, 18339, 1649, 1308, '1.0000', '24.7000', '24.7000', '24.7000', '24.7000', '12.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19134, '2022-10-27', 5797, 18340, 1649, 3739, '2.0000', '17.0048', '17.0048', '18.9000', '18.9000', '82.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19135, '2022-10-27', 6864, 18341, 1649, 3082, '7.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4596.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19136, '2022-10-27', 6074, 18342, 1649, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '161.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19137, '2022-10-27', 6908, 18343, 1649, 4249, '2.0000', '16.2000', '16.2000', '22.0000', '22.0000', '74.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19138, '2022-10-27', 6725, 18344, 1649, 4326, '1.0000', '62.6900', '62.6900', '71.1000', '71.1000', '22.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19139, '2022-10-27', 6626, 18345, 1649, 1476, '1.0000', '99.3000', '99.3000', '171.2200', '171.2200', '4.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19140, '2022-10-27', 6805, 18346, 1649, 2559, '4.0000', '3.4000', '3.4000', '4.3000', '4.3000', '19.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19141, '2022-10-27', 6295, 18347, 1650, 4141, '1.0000', '36.6868', '36.6868', '59.8000', '59.8000', '61.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19142, '2022-10-27', 5640, 18348, 1650, 3897, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '456.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19143, '2022-10-27', 5986, 18349, 1650, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '46.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19144, '2022-10-27', 5677, 18350, 1650, 4388, '3.0000', '13.7556', '13.7556', '15.4000', '15.4000', '239.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19145, '2022-10-27', 5828, 18351, 1650, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '31.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19146, '2022-10-27', 6409, 18352, 1650, 1422, '4.0000', '4.6700', '4.6700', '7.9800', '7.9800', '104.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19147, '2022-10-27', 6358, 18353, 1650, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3982.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19148, '2022-10-27', 5418, 18354, 1650, 4387, '5.0000', '6.0344', '6.0344', '6.7600', '6.7600', '468.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19149, '2022-10-27', 6379, 18355, 1650, 3421, '10.0000', '8.7056', '8.7056', '2.1000', '2.1000', '63.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19150, '2022-10-27', 6389, 18356, 1650, 4114, '4.0000', '8.7525', '8.7525', '13.4000', '13.4000', '294.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19151, '2022-10-27', 5603, 18357, 1651, 3963, '4.0000', '4.4000', '4.4000', '4.4000', '4.4000', '61.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19152, '2022-10-27', 6590, 18358, 1651, 2281, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19153, '2022-10-27', 6218, 18359, 1651, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '166.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19154, '2022-10-27', 6828, 18360, 1652, 4073, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '2.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19155, '2022-10-27', 6838, 18361, 1653, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '4.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19156, '2022-10-27', 6491, 18362, 1653, 4377, '10.0000', '1.8260', '1.8260', '1.3000', '1.3000', '3037.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19157, '2022-10-27', 5988, 18363, 1653, 2033, '1.0000', '3.0000', '3.0000', '3.6000', '3.6000', '51.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19158, '2022-10-27', 6599, 18364, 1654, 3742, '5.0000', '17.0015', '17.0015', '18.9000', '18.9000', '33.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19159, '2022-10-27', 6446, 18365, 1654, 1449, '5.0000', '4.9000', '4.9000', '8.4000', '8.4000', '56.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19160, '2022-10-27', 6457, 18366, 1654, 4213, '2.0000', '41.4000', '41.4000', '46.5000', '46.5000', '57.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19161, '2022-10-27', 6466, 18367, 1654, 1088, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19162, '2022-10-27', 6923, 18368, 1654, 4338, '3.0000', '3.6000', '3.6000', '4.0000', '4.0000', '465.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19163, '2022-10-27', 6925, 18369, 1654, 4340, '5.0000', '4.5000', '4.5000', '5.0000', '5.0000', '58.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19164, '2022-10-27', 6753, 18370, 1654, 3737, '2.0000', '72.8788', '72.8788', '85.0000', '85.0000', '118.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19165, '2022-10-27', 6234, 18371, 1654, 3801, '3.0000', '34.8921', '34.8921', '49.0000', '49.0000', '15.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19166, '2022-10-27', 5439, 18372, 1654, 3799, '3.0000', '27.2586', '27.2586', '71.0000', '71.0000', '82.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19167, '2022-10-27', 6100, 18373, 1654, 940, '3.0000', '18.0000', '18.0000', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19168, '2022-10-27', 6010, 18374, 1654, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '239.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19169, '2022-10-27', 5427, 18375, 1654, 2365, '2.0000', '13.2000', '13.2000', '13.2000', '13.2000', '78.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19170, '2022-10-27', 6337, 18376, 1654, 4256, '3.0000', '49.5359', '49.5359', '56.2000', '56.2000', '67.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19171, '2022-10-27', 5958, 18377, 1654, 4196, '3.0000', '15.6532', '15.6532', '21.7000', '21.7000', '28.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19172, '2022-10-27', 5975, 18378, 1654, 4400, '3.0000', '11.5382', '11.5382', '12.9000', '12.9000', '147.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19173, '2022-10-27', 5970, 18379, 1654, 4402, '3.0000', '11.5903', '11.5903', '12.8500', '12.8500', '113.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19174, '2022-10-27', 6210, 18380, 1654, 2289, '3.0000', '7.1000', '7.1000', '13.5300', '13.5300', '62.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19175, '2022-10-27', 6605, 18381, 1654, 4136, '-24.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19176, '2022-10-27', 6605, 18381, 1654, NULL, '34.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-34.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19177, '2022-10-27', 6265, 18382, 1654, 1863, '1.0000', '11.8000', '11.8000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19178, '2022-10-27', 5610, 18383, 1654, 4253, '2.0000', '29.2166', '29.2166', '60.5000', '60.5000', '22.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19179, '2022-10-27', 5501, 18384, 1654, 3752, '2.0000', '44.0800', '44.0800', '49.0000', '49.0000', '16.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19180, '2022-10-27', 6205, 18385, 1654, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '32.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19181, '2022-10-27', 5720, 18386, 1654, 914, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19182, '2022-10-27', 5586, 18387, 1654, 3135, '4.0000', '28.9000', '28.9000', '34.6000', '34.6000', '161.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19183, '2022-10-27', 5676, 18388, 1654, 2018, '3.0000', '30.0000', '30.0000', '34.0000', '34.0000', '54.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19184, '2022-10-27', 5447, 18389, 1654, 3851, '2.0000', '24.7066', '24.7066', '28.7000', '28.7000', '179.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19185, '2022-10-27', 6559, 18390, 1654, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '34.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19186, '2022-10-27', 6344, 18391, 1654, 4260, '1.0000', '257.9900', '257.9900', '292.4000', '292.4000', '11.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19187, '2022-10-27', 5696, 18392, 1654, 514, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '46.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19188, '2022-10-27', 5749, 18393, 1654, 1302, '2.0000', '8.1400', '8.1400', '8.1400', '8.1400', '49.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19189, '2022-10-27', 6645, 18394, 1654, 1393, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '119.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19190, '2022-10-27', 6102, 18395, 1654, 2291, '2.0000', '27.8000', '27.8000', '27.8000', '27.8000', '22.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19191, '2022-10-27', 6389, 18396, 1654, 4114, '4.0000', '8.7525', '8.7525', '13.4000', '13.4000', '290.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19192, '2022-10-27', 6694, 18397, 1654, 1003, '1.0000', '52.8000', '52.8000', '52.8000', '52.8000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19193, '2022-10-27', 5965, 18398, 1654, 3787, '2.0000', '12.5145', '12.5145', '13.5000', '13.5000', '95.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19194, '2022-10-27', 5799, 18399, 1654, 1987, '2.0000', '20.1300', '20.1300', '27.2600', '27.2600', '26.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19195, '2022-10-27', 5926, 18400, 1654, 1970, '12.0000', '10.9000', '10.9000', '14.7000', '14.7000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19196, '2022-10-27', 5926, 18400, 1654, 1309, '8.0000', '10.9000', '10.9000', '14.7000', '14.7000', '90.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19197, '2022-10-27', 6467, 18401, 1654, 4321, '2.0000', '44.6300', '44.6300', '50.6000', '50.6000', '46.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19198, '2022-10-27', 6907, 18402, 1654, 4248, '5.0000', '9.0000', '9.0000', '12.5000', '12.5000', '187.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19199, '2022-10-27', 6217, 18403, 1654, 4353, '5.0000', '3.0402', '3.0402', '3.5000', '3.5000', '883.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19200, '2022-10-27', 6590, 18404, 1655, 1900, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '9.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19201, '2022-10-27', 5731, 18405, 1656, 4301, '1.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1107.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19202, '2022-10-27', 5587, 18406, 1656, 3076, '1.0000', '8.8000', '8.8000', '8.8000', '8.8000', '156.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19203, '2022-10-27', 6225, 18407, 1656, 2356, '2.0000', '2.8000', '2.8000', '3.0800', '3.0800', '134.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19204, '2022-10-27', 5926, 18408, 1656, 1309, '1.0000', '10.9000', '10.9000', '14.7000', '14.7000', '89.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19205, '2022-10-27', 6361, 18409, 1656, 3725, '4.0000', '49.5000', '49.5000', '1.0000', '1.0000', '4190.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19206, '2022-10-27', 6910, 18410, 1656, 4251, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '46.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19207, '2022-10-27', 6440, 18411, 1657, 318, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '4.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19208, '2022-10-27', 6524, 18412, 1657, 4261, '1.0000', '187.4672', '187.4672', '234.0000', '234.0000', '9.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19209, '2022-10-27', 6765, 18413, 1657, 1011, '2.0000', '59.0000', '59.0000', '59.0000', '59.0000', '24.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19210, '2022-10-27', 6559, 18414, 1657, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '33.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19211, '2022-10-27', 6691, 18415, 1657, 4077, '10.0000', '6.5000', '6.5000', '8.8000', '8.8000', '190.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19212, '2022-10-27', 5451, 18416, 1657, 2387, '15.0000', '5.8600', '5.8600', '7.3200', '7.3200', '962.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19213, '2022-10-27', 6177, 18417, 1657, 3565, '6.0000', '293935099227180.0000', '293935099227180.0000', '4.9000', '4.9000', '172.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19214, '2022-10-27', 6555, 18418, 1658, 3736, '5.0000', '2.9700', '2.9700', '4.0000', '4.0000', '63.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19215, '2022-10-27', 5801, 18419, 1658, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '62.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19216, '2022-10-27', 5986, 18420, 1658, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '44.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19217, '2022-10-27', 5677, 18421, 1658, 4388, '3.0000', '13.7556', '13.7556', '15.4000', '15.4000', '236.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19218, '2022-10-27', 6076, 18422, 1658, 3024, '10.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1419.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19219, '2022-10-27', 5971, 18423, 1658, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '45.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19220, '2022-10-27', 6217, 18424, 1658, 4353, '1.0000', '3.0402', '3.0402', '3.5000', '3.5000', '882.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19509, '2022-10-27', 5801, 18701, 1659, 3123, '3.0000', '5.8500', '5.8500', '6.5000', '6.5000', '58.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19508, '2022-10-27', 6813, 18700, 1659, 4247, '1.0000', '12.6220', '12.6220', '17.5000', '17.5000', '102.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19507, '2022-10-27', 6337, 18699, 1659, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '65.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19506, '2022-10-27', 6316, 18698, 1659, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '45.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19505, '2022-10-27', 6215, 18697, 1659, 2283, '1.0000', '30.6900', '30.6900', '36.9000', '36.9000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19504, '2022-10-27', 5828, 18696, 1659, 3660, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '30.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19503, '2022-10-27', 5827, 18695, 1659, 3651, '1.0000', '5.9947', '5.9947', '6.6000', '6.6000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19502, '2022-10-27', 5792, 18694, 1659, 4190, '1.0000', '34.1634', '34.1634', '50.4000', '50.4000', '75.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19501, '2022-10-27', 5640, 18693, 1659, 3897, '8.0000', '11.1000', '11.1000', '12.3000', '12.3000', '376.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19500, '2022-10-27', 5487, 18692, 1659, 3816, '1.0000', '17.1500', '17.1500', '27.0000', '27.0000', '152.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19542, '2022-10-28', 6605, 18733, 1691, 4136, '-39.0000', '5.8000', '5.8000', '5.8000', '5.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19232, '2022-10-27', 5463, 18436, 1660, 4315, '2.0000', '10.8900', '10.8900', '12.4000', '12.4000', '99.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19233, '2022-10-27', 6120, 18437, 1661, 4384, '2.0000', '16.1686', '16.1686', '18.6000', '18.6000', '27.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19234, '2022-10-27', 6128, 18438, 1661, 4382, '4.0000', '8.1429', '8.1429', '9.8000', '9.8000', '114.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19235, '2022-10-27', 5740, 18439, 1661, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19236, '2022-10-27', 5775, 18440, 1661, 2376, '1.0000', '22.1000', '22.1000', '36.0000', '36.0000', '46.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19237, '2022-10-27', 5965, 18441, 1661, 3787, '3.0000', '12.5145', '12.5145', '13.5000', '13.5000', '92.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19238, '2022-10-27', 6568, 18442, 1661, 3827, '1.0000', '13.6100', '13.6100', '15.0000', '15.0000', '37.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19239, '2022-10-27', 6386, 18443, 1661, 4113, '10.0000', '3.5873', '3.5873', '4.2000', '4.2000', '1555.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19240, '2022-10-27', 5978, 18444, 1661, 3068, '1.0000', '21.3000', '21.3000', '23.1000', '23.1000', '13.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19241, '2022-10-27', 5847, 18445, 1661, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '258.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19242, '2022-10-27', 5792, 18446, 1662, 4190, '1.0000', '34.1634', '34.1634', '50.4000', '50.4000', '76.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19243, '2022-10-27', 5651, 18447, 1662, 2386, '2.0000', '6.1700', '6.1700', '6.1700', '6.1700', '27.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19244, '2022-10-27', 5849, 18448, 1663, 2357, '4.0000', '3.1000', '3.1000', '3.3000', '3.3000', '11.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19302, '2022-10-27', 6817, 18503, 1664, 2024, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '42.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19301, '2022-10-27', 6679, 18502, 1664, 3546, '1.0000', '9.9900', '9.9900', '9.9900', '9.9900', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19300, '2022-10-27', 6348, 18501, 1664, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '22.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19299, '2022-10-27', 6312, 18500, 1664, 1118, '1.0000', '7.5000', '7.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19298, '2022-10-27', 6286, 18499, 1664, 4222, '1.0000', '10.6033', '10.6033', '13.9800', '13.9800', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19297, '2022-10-27', 6225, 18498, 1664, 2356, '2.0000', '2.8000', '2.8000', '3.0800', '3.0800', '132.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19296, '2022-10-27', 6219, 18497, 1664, NULL, '321.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-321.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19295, '2022-10-27', 6219, 18497, 1664, 3150, '-311.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19294, '2022-10-27', 6218, 18496, 1664, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '165.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19293, '2022-10-27', 6095, 18495, 1664, 3893, '2.0000', '8.3200', '8.3200', '9.2000', '9.2000', '336.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19292, '2022-10-27', 6074, 18494, 1664, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '159.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19291, '2022-10-27', 6007, 18493, 1664, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '296.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19290, '2022-10-27', 5986, 18492, 1664, 4107, '1.0000', '13.6040', '13.6040', '15.0000', '15.0000', '43.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19289, '2022-10-27', 5980, 18491, 1664, 4082, '1.0000', '6.8688', '6.8688', '13.1000', '13.1000', '81.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19288, '2022-10-27', 5976, 18490, 1664, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '178.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19287, '2022-10-27', 5740, 18489, 1664, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19286, '2022-10-27', 5584, 18488, 1664, 4361, '1.0000', '23.0000', '23.0000', '25.3000', '25.3000', '222.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19285, '2022-10-27', 5418, 18487, 1664, 4387, '2.0000', '6.0344', '6.0344', '6.7600', '6.7600', '466.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19303, '2022-10-27', 6926, 18504, 1664, 4341, '3.0000', '3.6000', '3.6000', '4.0000', '4.0000', '194.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19264, '2022-10-27', 5740, 18467, 1665, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19265, '2022-10-27', 6075, 18468, 1665, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '603.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19266, '2022-10-27', 6828, 18469, 1666, 4073, '2.0000', '13.1400', '13.1400', '15.8000', '15.8000', '0.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19267, '2022-10-27', 6828, 18469, 1666, NULL, '10.0000', '13.1400', '13.1400', '15.8000', '15.8000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19268, '2022-10-27', 6559, 18470, 1667, 4263, '1.0000', '71.2908', '71.2908', '87.8000', '87.8000', '32.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19269, '2022-10-27', 6213, 18471, 1668, 3049, '1.0000', '6.6500', '6.6500', '9.3000', '9.3000', '117.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19270, '2022-10-27', 6930, 18472, 1669, 4351, '1.0000', '40.0000', '40.0000', '44.0000', '44.0000', '74.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19271, '2022-10-27', 6250, 18473, 1670, 4220, '1.0000', '6.0000', '6.0000', '5.5000', '5.5000', '52.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19272, '2022-10-27', 5947, 18474, 1671, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '184.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19273, '2022-10-27', 5640, 18475, 1672, 3897, '30.0000', '11.1000', '11.1000', '12.3000', '12.3000', '422.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19274, '2022-10-27', 5640, 18476, 1673, 3897, '20.0000', '11.1000', '11.1000', '12.3000', '12.3000', '402.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19275, '2022-10-27', 5487, 18477, 1673, 3816, '1.0000', '17.1500', '17.1500', '27.0000', '27.0000', '152.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19276, '2022-10-27', 6351, 18478, 1673, 1344, '2.0000', '6.0000', '6.0000', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19277, '2022-10-27', 6349, 18479, 1673, 1342, '2.0000', '6.0000', '6.0000', '6.3000', '6.3000', '16.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19278, '2022-10-27', 6232, 18480, 1673, 4320, '2.0000', '7.6225', '7.6225', '9.9000', '9.9000', '54.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19279, '2022-10-27', 5926, 18481, 1673, 1309, '5.0000', '10.9000', '10.9000', '14.7000', '14.7000', '84.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19280, '2022-10-27', 6099, 18482, 1673, 1162, '1.0000', '29.5000', '29.5000', '29.5000', '29.5000', '30.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19281, '2022-10-27', 5969, 18483, 1673, 1312, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '23.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19282, '2022-10-27', 6337, 18484, 1674, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '65.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19283, '2022-10-27', 5854, 18485, 1674, 4191, '5.0000', '8.8462', '8.8462', '14.8000', '14.8000', '71.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19284, '2022-10-27', 6861, 18486, 1675, 3586, '1.0000', '74.6800', '74.6800', '83.6400', '83.6400', '3.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19304, '2022-10-27', 5586, 18505, 1676, 3135, '10.0000', '28.9000', '28.9000', '34.6000', '34.6000', '151.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19305, '2022-10-27', 5640, 18506, 1676, 3897, '5.0000', '11.1000', '11.1000', '12.3000', '12.3000', '397.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19306, '2022-10-27', 6864, 18507, 1677, 3082, '6.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4590.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19307, '2022-10-27', 6075, 18508, 1677, 3025, '9.0000', '2.3000', '2.3000', '2.3000', '2.3000', '594.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19308, '2022-10-27', 6076, 18509, 1677, 3024, '15.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1404.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19335, '2022-10-27', 6491, 18532, 1678, 4377, '20.0000', '1.8260', '1.8260', '1.3000', '1.3000', '3017.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19334, '2022-10-27', 6374, 18531, 1678, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3562.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19333, '2022-10-27', 6219, 18530, 1678, NULL, '371.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-371.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19332, '2022-10-27', 6219, 18530, 1678, 3150, '-321.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19331, '2022-10-27', 6216, 18529, 1678, 3617, '5.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2130.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19330, '2022-10-27', 6205, 18528, 1678, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '31.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19329, '2022-10-27', 6007, 18527, 1678, 4364, '50.0000', '1.4788', '1.4788', '1.5000', '1.5000', '246.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19328, '2022-10-27', 5999, 18526, 1678, 1870, '1.0000', '25.7000', '25.7000', '25.7000', '25.7000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19327, '2022-10-27', 5906, 18525, 1678, NULL, '7.0000', '15.8200', '15.8200', '15.8200', '15.8200', '-7.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19326, '2022-10-27', 5906, 18525, 1678, 4371, '-2.0000', '15.8200', '15.8200', '15.8200', '15.8200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19325, '2022-10-27', 5775, 18524, 1678, 2376, '1.0000', '22.1000', '22.1000', '36.0000', '36.0000', '45.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19324, '2022-10-27', 5768, 18523, 1678, 3616, '1.0000', '26.1800', '26.1800', '28.8000', '28.8000', '183.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19323, '2022-10-27', 5624, 18522, 1678, 4120, '1.0000', '18.1800', '18.1800', '20.1000', '20.1000', '31.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19336, '2022-10-27', 6517, 18533, 1678, 2254, '3.0000', '8.7000', '8.7000', '11.0000', '11.0000', '51.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19337, '2022-10-27', 5991, 18534, 1678, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '64.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19522, '2022-10-28', 6205, 18714, 1682, 3026, '2.0000', '38.5000', '38.5000', '55.0000', '55.0000', '30.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19521, '2022-10-28', 6204, 18713, 1682, 2312, '1.0000', '15.8000', '15.8000', '18.6000', '18.6000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19520, '2022-10-28', 6110, 18712, 1682, 1116, '1.0000', '34.1000', '34.1000', '39.5000', '39.5000', '9.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19519, '2022-10-28', 6084, 18711, 1682, 661, '1.0000', '72.8000', '72.8000', '91.8900', '91.8900', '8.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19518, '2022-10-28', 5976, 18710, 1682, 4105, '7.0000', '7.5312', '7.5312', '8.2000', '8.2000', '172.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19517, '2022-10-28', 5949, 18709, 1682, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '101.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19516, '2022-10-28', 5948, 18708, 1682, 2075, '10.0000', '6.0000', '6.0000', '9.0000', '9.0000', '105.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19515, '2022-10-28', 5926, 18707, 1682, 1309, '10.0000', '10.9000', '10.9000', '14.7000', '14.7000', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19514, '2022-10-28', 5886, 18706, 1682, 927, '3.0000', '8.6000', '8.6000', '11.8000', '11.8000', '102.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19513, '2022-10-28', 5801, 18705, 1682, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '58.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19512, '2022-10-28', 5799, 18704, 1682, 1987, '3.0000', '20.1300', '20.1300', '27.2600', '27.2600', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19511, '2022-10-28', 5650, 18703, 1682, 1438, '2.0000', '7.9000', '7.9000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19510, '2022-10-28', 5532, 18702, 1682, 4188, '2.0000', '56.9412', '56.9412', '65.0000', '65.0000', '96.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19541, '2022-10-28', 6930, 18732, 1691, 4351, '1.0000', '40.0000', '40.0000', '44.0000', '44.0000', '73.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19394, '2022-10-28', 6320, 18589, 1683, 1053, '2.0000', '63.2200', '63.2200', '117.6000', '117.6000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19395, '2022-10-28', 5995, 18590, 1684, 3071, '4.0000', '6.0000', '6.0000', '7.6000', '7.6000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19396, '2022-10-28', 5958, 18591, 1684, 4196, '2.0000', '15.6532', '15.6532', '21.7000', '21.7000', '26.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19397, '2022-10-28', 5959, 18592, 1684, 4197, '2.0000', '25.7381', '25.7381', '29.8000', '29.8000', '31.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19398, '2022-10-28', 5977, 18593, 1684, 1124, '4.0000', '7.5000', '7.5000', '7.8000', '7.8000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19399, '2022-10-28', 5967, 18594, 1684, 3132, '5.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2312.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19400, '2022-10-28', 5926, 18595, 1684, 1309, '10.0000', '10.9000', '10.9000', '14.7000', '14.7000', '64.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19401, '2022-10-28', 6752, 18596, 1684, 3842, '5.0000', '22.0000', '22.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19402, '2022-10-28', 6752, 18596, 1684, 1073, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19403, '2022-10-28', 6232, 18597, 1685, 4320, '5.0000', '7.6225', '7.6225', '9.9000', '9.9000', '52.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19404, '2022-10-28', 6273, 18598, 1685, 2065, '3.0000', '26.0000', '26.0000', '27.5000', '27.5000', '21.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19405, '2022-10-28', 6753, 18599, 1685, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '117.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19406, '2022-10-28', 6753, 18600, 1686, 3737, '1.0000', '72.8788', '72.8788', '85.0000', '85.0000', '116.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19407, '2022-10-28', 5624, 18601, 1687, 4120, '5.0000', '18.1800', '18.1800', '20.1000', '20.1000', '26.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19408, '2022-10-28', 6907, 18602, 1687, 4248, '1.0000', '9.0000', '9.0000', '12.5000', '12.5000', '186.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19409, '2022-10-28', 5676, 18603, 1688, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '53.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19410, '2022-10-28', 5716, 18604, 1688, 4378, '-10.0000', '3.6000', '3.6000', '7.5500', '7.5500', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19411, '2022-10-28', 5716, 18604, 1688, NULL, '15.0000', '3.6000', '3.6000', '7.5500', '7.5500', '-15.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19412, '2022-10-28', 5740, 18605, 1688, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '29.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19413, '2022-10-28', 5827, 18606, 1688, 2055, '2.0000', '5.9947', '5.9947', '6.6000', '6.6000', '17.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19414, '2022-10-28', 5847, 18607, 1688, 3136, '4.0000', '3.1651', '3.1651', '7.5000', '7.5000', '254.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19415, '2022-10-28', 5949, 18608, 1688, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '101.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19416, '2022-10-28', 5976, 18609, 1688, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '172.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19417, '2022-10-28', 5983, 18610, 1688, 2333, '2.0000', '5.9000', '5.9000', '6.9000', '6.9000', '120.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19418, '2022-10-28', 6074, 18611, 1688, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '156.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19419, '2022-10-28', 6191, 18612, 1688, 3984, '2.0000', '5.5000', '5.5000', '7.7000', '7.7000', '79.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19420, '2022-10-28', 6225, 18613, 1688, 2356, '4.0000', '2.8000', '2.8000', '3.0800', '3.0800', '128.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19421, '2022-10-28', 6285, 18614, 1688, 4145, '3.0000', '9.6868', '9.6868', '11.8000', '11.8000', '22.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19422, '2022-10-28', 6304, 18615, 1688, 4304, '2.0000', '14.9059', '14.9059', '17.0000', '17.0000', '163.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19423, '2022-10-28', 6333, 18616, 1688, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '66.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19424, '2022-10-28', 6348, 18617, 1688, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '21.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19425, '2022-10-28', 6408, 18618, 1688, 1986, '4.0000', '4.6700', '4.6700', '7.9800', '7.9800', '87.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19426, '2022-10-28', 6421, 18619, 1688, 4087, '1.0000', '15.4200', '15.4200', '13.1000', '13.1000', '53.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19427, '2022-10-28', 6496, 18620, 1688, 3758, '3.0000', '5.0500', '5.0500', '5.7000', '5.7000', '89.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19428, '2022-10-28', 6607, 18621, 1688, 2583, '1.0000', '16.0000', '16.0000', '17.7100', '17.7100', '43.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19429, '2022-10-28', 6617, 18622, 1688, 557, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19430, '2022-10-28', 6649, 18623, 1688, 996, '2.0000', '8.4000', '8.4000', '11.8000', '11.8000', '54.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19431, '2022-10-28', 6691, 18624, 1688, 4077, '5.0000', '6.5000', '6.5000', '8.8000', '8.8000', '185.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19432, '2022-10-28', 6830, 18625, 1688, 2562, '1.0000', '29.7000', '29.7000', '29.7000', '29.7000', '38.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19433, '2022-10-28', 6864, 18626, 1688, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4585.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19434, '2022-10-28', 6927, 18627, 1688, 4342, '3.0000', '8.9000', '8.9000', '9.9000', '9.9000', '124.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19435, '2022-10-28', 6936, 18628, 1688, 4366, '2.0000', '17.8783', '17.8783', '22.3000', '22.3000', '94.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19436, '2022-10-28', 6148, 18629, 1688, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '4.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19437, '2022-10-28', 5463, 18630, 1688, 4315, '1.0000', '10.8900', '10.8900', '12.4000', '12.4000', '98.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19438, '2022-10-28', 5799, 18631, 1688, 1987, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '22.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19439, '2022-10-28', 6778, 18632, 1688, 2052, '1.0000', '19.3400', '19.3400', '26.1800', '26.1800', '114.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19440, '2022-10-28', 6111, 18633, 1688, 1319, '2.0000', '14.5000', '14.5000', '14.5000', '14.5000', '41.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19441, '2022-10-28', 6120, 18634, 1688, 4384, '2.0000', '16.1686', '16.1686', '18.6000', '18.6000', '25.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19442, '2022-10-28', 6188, 18635, 1688, 3080, '1.0000', '7.0000', '7.0000', '9.8000', '9.8000', '21.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19443, '2022-10-28', 5858, 18636, 1688, 4192, '1.0000', '27.3468', '27.3468', '38.0000', '38.0000', '69.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19444, '2022-10-28', 5730, 18637, 1688, 4300, '2.0000', '6.4114', '6.4114', '8.8000', '8.8000', '140.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19445, '2022-10-28', 6765, 18638, 1688, 1011, '1.0000', '59.0000', '59.0000', '59.0000', '59.0000', '22.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19446, '2022-10-28', 6338, 18639, 1688, 4257, '1.0000', '79.7291', '79.7291', '53.5000', '53.5000', '44.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19447, '2022-10-28', 6374, 18640, 1689, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3552.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19448, '2022-10-28', 6303, 18641, 1689, 4313, '10.0000', '1.9950', '1.9950', '2.2000', '2.2000', '471.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19486, '2022-10-28', 5640, 18678, 1690, 3897, '20.0000', '11.1000', '11.1000', '12.3000', '12.3000', '380.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19487, '2022-10-28', 5898, 18679, 1690, 2350, '3.0000', '13.2000', '13.2000', '20.2000', '20.2000', '109.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19488, '2022-10-28', 6154, 18680, 1690, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '68.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19489, '2022-10-28', 6220, 18681, 1690, 4360, '3.0000', '5.3412', '5.3412', '6.0000', '6.0000', '357.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19490, '2022-10-28', 6075, 18682, 1690, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '597.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19491, '2022-10-28', 5988, 18683, 1690, 2033, '5.0000', '3.0000', '3.0000', '3.6000', '3.6000', '46.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19492, '2022-10-28', 5965, 18684, 1690, 3787, '1.0000', '12.5145', '12.5145', '13.5000', '13.5000', '91.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19493, '2022-10-28', 6572, 18685, 1690, 3996, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '61.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19494, '2022-10-28', 5974, 18686, 1690, 4080, '1.0000', '8.4900', '8.4900', '9.5000', '9.5000', '196.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19495, '2022-10-28', 5440, 18687, 1690, 2306, '3.0000', '3.4100', '3.4100', '4.9200', '4.9200', '191.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19496, '2022-10-28', 5654, 18688, 1690, 3062, '5.0000', '2.0000', '2.0000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19497, '2022-10-28', 6607, 18689, 1690, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '41.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19498, '2022-10-28', 6408, 18690, 1690, 1986, '2.0000', '4.6700', '4.6700', '7.9800', '7.9800', '85.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19499, '2022-10-28', 5847, 18691, 1690, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '253.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19543, '2022-10-28', 6605, 18733, 1691, NULL, '44.0000', '5.8000', '5.8000', '5.8000', '5.8000', '-44.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19544, '2022-10-28', 6924, 18734, 1691, 4339, '5.0000', '2.7000', '2.7000', '3.0000', '3.0000', '494.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19545, '2022-10-28', 6555, 18735, 1692, 3736, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '61.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19546, '2022-10-28', 6670, 18736, 1692, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '31.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19547, '2022-10-28', 6010, 18737, 1693, 3621, '1.0000', '15.4888', '15.4888', '16.5000', '16.5000', '238.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19548, '2022-10-28', 6316, 18738, 1694, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '44.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19549, '2022-10-28', 6337, 18739, 1694, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '64.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19550, '2022-10-28', 5624, 18740, 1694, 4120, '1.0000', '18.1800', '18.1800', '20.1000', '20.1000', '25.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19551, '2022-10-28', 5472, 18741, 1694, 3903, '2.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '253.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19552, '2022-10-28', 5677, 18742, 1695, 4388, '3.0000', '13.7556', '13.7556', '15.4000', '15.4000', '233.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19553, '2022-10-28', 6825, 18743, 1695, 3670, '20.0000', '46.2800', '46.2800', '1.0000', '1.0000', '664.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19554, '2022-10-28', 6603, 18744, 1695, 3768, '1.0000', '6.1900', '6.1900', '8.9000', '8.9000', '34.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19555, '2022-10-28', 6083, 18745, 1695, 3061, '3.0000', '2.7000', '2.7000', '2.7000', '2.7000', '298.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19556, '2022-10-28', 5988, 18746, 1695, 2033, '2.0000', '3.0000', '3.0000', '3.6000', '3.6000', '44.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19557, '2022-10-28', 6178, 18747, 1695, 3060, '4.0000', '1.6000', '1.6000', '2.2000', '2.2000', '492.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19558, '2022-10-28', 6074, 18748, 1695, 2303, '5.0000', '8.5000', '8.5000', '8.5000', '8.5000', '151.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19559, '2022-10-28', 6358, 18749, 1695, 3906, '1.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3966.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19560, '2022-10-28', 6003, 18750, 1695, 2321, '2.0000', '6.7000', '6.7000', '9.5800', '9.5800', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19561, '2022-10-28', 6371, 18751, 1695, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '10.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19562, '2022-10-28', 5853, 18752, 1695, 3620, '5.0000', '8.8287', '8.8287', '10.5000', '10.5000', '318.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19563, '2022-10-28', 5714, 18753, 1695, 2383, '4.0000', '3.3000', '3.3000', '3.9600', '3.9600', '283.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19564, '2022-10-28', 5640, 18754, 1695, 3897, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '373.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19565, '2022-10-28', 5740, 18755, 1695, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '27.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19566, '2022-10-28', 5586, 18756, 1695, 3135, '1.0000', '28.9000', '28.9000', '34.6000', '34.6000', '150.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19567, '2022-10-28', 5926, 18757, 1695, 1309, '2.0000', '10.9000', '10.9000', '14.7000', '14.7000', '62.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19568, '2022-10-28', 6075, 18758, 1695, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '592.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19569, '2022-10-28', 6333, 18759, 1695, 2361, '2.0000', '7.7000', '7.7000', '7.7000', '7.7000', '64.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19570, '2022-10-28', 5440, 18760, 1695, 2306, '2.0000', '3.4100', '3.4100', '4.9200', '4.9200', '189.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19571, '2022-10-28', 5657, 18761, 1695, 4354, '1.0000', '5.0048', '5.0048', '6.3000', '6.3000', '380.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19589, '2022-10-28', 6555, 18778, 1696, 3736, '5.0000', '2.9700', '2.9700', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19588, '2022-10-28', 6459, 18777, 1696, 966, '1.0000', '20.9000', '20.9000', '20.9000', '20.9000', '26.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19587, '2022-10-28', 5586, 18776, 1696, 3135, '1.0000', '28.9000', '28.9000', '34.6000', '34.6000', '149.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19590, '2022-10-28', 6557, 18779, 1696, 3735, '2.0000', '8.0659', '8.0659', '9.6000', '9.6000', '102.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19600, '2022-10-28', 6825, 18789, 1697, 3670, '100.0000', '46.2800', '46.2800', '1.0000', '1.0000', '564.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19599, '2022-10-28', 6817, 18788, 1697, 2024, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '40.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19598, '2022-10-28', 6223, 18787, 1697, 3551, '50.0000', '0.6000', '0.6000', '0.7200', '0.7200', '190.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19597, '2022-10-28', 6218, 18786, 1697, 4356, '2.0000', '15.3740', '15.3740', '17.8000', '17.8000', '163.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19596, '2022-10-28', 6216, 18785, 1697, 3617, '100.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2030.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19595, '2022-10-28', 6117, 18784, 1697, 1320, '10.0000', '6.6000', '6.6000', '6.6000', '6.6000', '251.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19594, '2022-10-28', 5983, 18783, 1697, 2333, '5.0000', '5.9000', '5.9000', '6.9000', '6.9000', '115.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19593, '2022-10-28', 5472, 18782, 1697, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '243.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19601, '2022-10-28', 6809, 18790, 1701, 1299, '2.0000', '13.8000', '13.8000', '13.8000', '13.8000', '54.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19586, '2022-10-28', 6380, 18775, 1698, 3073, '1.0000', '13.1400', '13.1400', '13.1400', '13.1400', '6.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19591, '2022-10-28', 5967, 18780, 1699, 3132, '10.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2302.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19592, '2022-10-28', 5947, 18781, 1700, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '182.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19602, '2022-10-28', 6232, 18791, 1702, 4320, '3.0000', '7.6225', '7.6225', '9.9000', '9.9000', '49.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19603, '2022-10-28', 6148, 18792, 1702, 391, '1.0000', '24.3000', '24.3000', '24.3000', '24.3000', '3.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19604, '2022-10-28', 5801, 18793, 1702, 3123, '1.0000', '5.8500', '5.8500', '6.5000', '6.5000', '57.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19605, '2022-10-28', 6779, 18794, 1703, 1074, '3.0000', '46.0000', '46.0000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19606, '2022-10-28', 6074, 18795, 1704, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '148.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19607, '2022-10-28', 5799, 18796, 1704, 1987, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '21.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19608, '2022-10-28', 6337, 18797, 1705, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '63.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19609, '2022-10-28', 5447, 18798, 1705, 3851, '1.0000', '24.7066', '24.7066', '28.7000', '28.7000', '178.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19610, '2022-10-28', 5926, 18799, 1705, 1309, '2.0000', '10.9000', '10.9000', '14.7000', '14.7000', '60.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19611, '2022-10-28', 5949, 18800, 1705, 1311, '2.0000', '5.2000', '5.2000', '7.3000', '7.3000', '99.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19612, '2022-10-28', 6345, 18801, 1705, 1922, '2.0000', '3.6300', '3.6300', '4.4000', '4.4000', '45.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19613, '2022-10-28', 6191, 18802, 1705, 3984, '3.0000', '5.5000', '5.5000', '7.7000', '7.7000', '76.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19614, '2022-10-28', 6007, 18803, 1705, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '236.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19615, '2022-10-28', 6590, 18804, 1705, 1900, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19616, '2022-10-28', 6219, 18805, 1706, 3150, '-371.0000', '2.6900', '2.6900', '2.6900', '2.6900', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19617, '2022-10-28', 6219, 18805, 1706, NULL, '374.0000', '2.6900', '2.6900', '2.6900', '2.6900', '-374.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19618, '2022-10-28', 6220, 18806, 1707, 4360, '1.0000', '5.3412', '5.3412', '6.0000', '6.0000', '356.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19619, '2022-10-28', 6818, 18807, 1707, 3067, '1.0000', '3.5000', '3.5000', '3.9000', '3.9000', '179.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19620, '2022-10-28', 6555, 18808, 1708, 3736, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '54.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19621, '2022-10-28', 6818, 18809, 1708, 3067, '2.0000', '3.5000', '3.5000', '3.9000', '3.9000', '177.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19622, '2022-10-28', 6604, 18810, 1709, 766, '14.0000', '5.5000', '5.5000', '8.0000', '8.0000', '406.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19623, '2022-10-28', 5947, 18811, 1710, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '180.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19624, '2022-10-28', 5947, 18812, 1711, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '178.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19625, '2022-10-28', 5640, 18813, 1712, 3897, '2.0000', '11.1000', '11.1000', '18.9000', '18.9000', '371.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19626, '2022-10-28', 5982, 18814, 1712, 4106, '3.0000', '9.4113', '9.4113', '11.1000', '11.1000', '268.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19627, '2022-10-28', 6834, 18815, 1712, 2034, '3.0000', '5.3000', '5.3000', '7.4300', '7.4300', '60.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19628, '2022-10-28', 6007, 18816, 1712, 4364, '100.0000', '1.4788', '1.4788', '1.5000', '1.5000', '136.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19629, '2022-10-28', 6115, 18817, 1712, 1156, '2.0000', '7.1000', '7.1000', '7.1000', '7.1000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19630, '2022-10-28', 6220, 18818, 1712, 4360, '5.0000', '5.3412', '5.3412', '6.0000', '6.0000', '351.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19631, '2022-10-28', 6303, 18819, 1712, 4313, '20.0000', '1.9950', '1.9950', '2.2000', '2.2000', '451.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19632, '2022-10-28', 6378, 18820, 1712, 2255, '1.0000', '26.5000', '26.5000', '31.8000', '31.8000', '39.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19633, '2022-10-28', 5847, 18821, 1712, 3136, '1.0000', '3.1651', '3.1651', '7.5000', '7.5000', '252.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19634, '2022-10-28', 6655, 18822, 1712, 4088, '1.0000', '8.7000', '8.7000', '9.8000', '9.8000', '23.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19635, '2022-10-28', 5973, 18823, 1712, 4079, '1.0000', '7.9600', '7.9600', '8.9000', '8.9000', '37.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19636, '2022-10-28', 6393, 18824, 1713, 2082, '5.0000', '15.0000', '15.0000', '20.0000', '20.0000', '29.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19637, '2022-10-28', 5738, 18825, 1713, 916, '3.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19638, '2022-10-28', 5739, 18826, 1713, 2349, '5.0000', '15.0000', '15.0000', '20.0000', '20.0000', '23.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19639, '2022-10-28', 5949, 18827, 1714, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '95.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19640, '2022-10-28', 5731, 18828, 1714, 4301, '2.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1105.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19641, '2022-10-28', 5740, 18829, 1714, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '25.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19642, '2022-10-28', 6408, 18830, 1714, 1986, '3.0000', '4.6700', '4.6700', '7.9800', '7.9800', '82.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19643, '2022-10-28', 5545, 18831, 1714, 4055, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '19.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19644, '2022-10-28', 6417, 18832, 1714, 1990, '1.0000', '30.0000', '30.0000', '48.0000', '48.0000', '35.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19645, '2022-10-28', 6528, 18833, 1714, 1899, '2.0000', '5.9800', '5.9800', '7.5000', '7.5000', '163.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19646, '2022-10-28', 6424, 18834, 1714, 2380, '2.0000', '7.9300', '7.9300', '8.5500', '8.5500', '19.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19647, '2022-10-28', 5588, 18835, 1714, 3075, '1.0000', '14.9600', '14.9600', '14.9600', '14.9600', '79.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19648, '2022-10-28', 5581, 18836, 1714, 2343, '1.0000', '11.3000', '11.3000', '16.0000', '16.0000', '138.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19649, '2022-10-28', 5881, 18837, 1714, 3427, '1.0000', '13.5000', '13.5000', '14.8500', '14.8500', '45.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19650, '2022-10-28', 5472, 18838, 1715, 3903, '10.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '233.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19651, '2022-10-28', 5898, 18839, 1716, 2350, '4.0000', '13.2000', '13.2000', '20.2000', '20.2000', '105.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19652, '2022-10-28', 5949, 18840, 1716, 1311, '10.0000', '5.2000', '5.2000', '7.3000', '7.3000', '85.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19653, '2022-10-28', 5465, 18841, 1716, 3776, '-9.0000', '0.0000', '0.0000', '130.7200', '130.7200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19654, '2022-10-28', 5465, 18841, 1716, NULL, '10.0000', '0.0000', '0.0000', '130.7200', '130.7200', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19655, '2022-10-28', 6337, 18842, 1716, 4256, '4.0000', '49.5359', '49.5359', '56.2000', '56.2000', '59.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19656, '2022-10-28', 6273, 18843, 1716, 2065, '4.0000', '26.0000', '26.0000', '27.5000', '27.5000', '17.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19657, '2022-10-28', 6137, 18844, 1716, 2276, '2.0000', '15.0000', '15.0000', '15.0000', '15.0000', '117.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19658, '2022-10-28', 6078, 18845, 1716, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '500.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19659, '2022-10-28', 5720, 18846, 1716, 914, '2.0000', '23.0000', '23.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19660, '2022-10-28', 5926, 18847, 1716, 1309, '10.0000', '10.9000', '10.9000', '14.7000', '14.7000', '50.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19661, '2022-10-28', 5975, 18848, 1716, 4400, '4.0000', '11.5382', '11.5382', '12.9000', '12.9000', '143.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19662, '2022-10-28', 5828, 18849, 1716, 3660, '4.0000', '11.1000', '11.1000', '12.3000', '12.3000', '26.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19663, '2022-10-28', 5419, 18850, 1716, 3826, '2.0000', '16.1385', '16.1385', '22.0000', '22.0000', '50.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19664, '2022-10-28', 5580, 18851, 1716, 3511, '5.0000', '7.2414', '7.2414', '8.4000', '8.4000', '72.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19665, '2022-10-28', 5629, 18852, 1716, 4299, '10.0000', '8.9474', '8.9474', '10.5000', '10.5000', '326.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19666, '2022-10-28', 5805, 18853, 1716, 1305, '4.0000', '9.0000', '9.0000', '10.8000', '10.8000', '15.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19667, '2022-10-28', 5947, 18854, 1717, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '176.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19668, '2022-10-28', 6890, 18855, 1718, 4124, '3.0000', '3.7809', '3.7809', '6.6000', '6.6000', '889.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19669, '2022-10-28', 5853, 18856, 1719, 3620, '1.0000', '8.8287', '8.8287', '10.5000', '10.5000', '317.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19670, '2022-10-28', 5799, 18857, 1720, 1987, '1.0000', '20.1300', '20.1300', '27.2600', '27.2600', '20.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19671, '2022-10-28', 6075, 18858, 1721, 3025, '24.0000', '2.3000', '2.3000', '2.3000', '2.3000', '568.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19672, '2022-10-28', 5657, 18859, 1722, 4354, '1.0000', '5.0048', '5.0048', '6.3000', '6.3000', '379.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19673, '2022-10-28', 5447, 18860, 1723, 3851, '1.0000', '24.7066', '24.7066', '28.7000', '28.7000', '177.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19715, '2022-10-29', 6818, 18899, 1724, 3067, '3.0000', '3.5000', '3.5000', '3.9000', '3.9000', '174.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19714, '2022-10-29', 6747, 18898, 1724, 3389, '2.0000', '12.9800', '12.9800', '12.9800', '12.9800', '3.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19713, '2022-10-29', 6677, 18897, 1724, 1274, '2.0000', '10.0000', '10.0000', '10.5000', '10.5000', '240.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19712, '2022-10-29', 6670, 18896, 1724, 1463, '1.0000', '9.5000', '9.5000', '9.5000', '9.5000', '30.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19711, '2022-10-29', 6657, 18895, 1724, 1152, '2.0000', '5.4000', '5.4000', '5.4000', '5.4000', '13.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19710, '2022-10-29', 6652, 18894, 1724, 1414, '3.0000', '3.8000', '3.8000', '3.8000', '3.8000', '13.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19709, '2022-10-29', 6542, 18893, 1724, 2047, '2.0000', '7.8000', '7.8000', '9.9000', '9.9000', '26.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19708, '2022-10-29', 6532, 18892, 1724, 3579, '2.0000', '8.0796', '8.0796', '11.0000', '11.0000', '53.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19707, '2022-10-29', 6354, 18891, 1724, 2344, '5.0000', '2.3000', '2.3000', '4.2000', '4.2000', '480.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19706, '2022-10-29', 6275, 18890, 1724, 2032, '2.0000', '4.7000', '4.7000', '4.7000', '4.7000', '283.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19705, '2022-10-29', 6223, 18889, 1724, 3551, '10.0000', '0.6000', '0.6000', '0.7200', '0.7200', '180.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19704, '2022-10-29', 6193, 18888, 1724, NULL, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19703, '2022-10-29', 6193, 18888, 1724, 2115, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19702, '2022-10-29', 6074, 18887, 1724, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '146.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19701, '2022-10-29', 6010, 18886, 1724, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '236.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19700, '2022-10-29', 5971, 18885, 1724, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '43.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19716, '2022-10-29', 6209, 18900, 1724, 1957, '1.0000', '4.5000', '4.5000', '8.3000', '8.3000', '32.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19691, '2022-10-29', 6352, 18877, 1725, 1409, '1.0000', '2.5000', '2.5000', '4.5000', '4.5000', '75.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19692, '2022-10-29', 6374, 18878, 1725, 3614, '10.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3542.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19693, '2022-10-29', 6007, 18879, 1725, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '126.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19694, '2022-10-29', 6216, 18880, 1725, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2020.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19695, '2022-10-29', 6820, 18881, 1725, 3615, '1.0000', '5.2982', '5.2982', '5.9000', '5.9000', '417.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19696, '2022-10-29', 5906, 18882, 1725, 4371, '-7.0000', '15.8200', '15.8200', '15.8200', '15.8200', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19697, '2022-10-29', 5906, 18882, 1725, NULL, '8.0000', '15.8200', '15.8200', '15.8200', '15.8200', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19698, '2022-10-29', 6218, 18883, 1726, 4356, '2.0000', '15.3740', '15.3740', '17.8000', '17.8000', '161.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19699, '2022-10-29', 5947, 18884, 1726, 3905, '2.0000', '13.2092', '13.2092', '13.8000', '13.8000', '174.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19717, '2022-10-29', 6394, 18901, 1727, 3823, '5.0000', '5.4400', '5.4400', '7.0000', '7.0000', '171.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19718, '2022-10-29', 6599, 18902, 1727, 3742, '1.0000', '17.0015', '17.0015', '18.9000', '18.9000', '28.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19719, '2022-10-29', 6746, 18903, 1727, 560, '2.0000', '10.5600', '10.5600', '14.0000', '14.0000', '12.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19720, '2022-10-29', 6590, 18904, 1727, 1900, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19721, '2022-10-29', 6819, 18905, 1727, 4185, '-4.0000', '13.2000', '13.2000', '13.2000', '13.2000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19722, '2022-10-29', 6819, 18905, 1727, NULL, '5.0000', '13.2000', '13.2000', '13.2000', '13.2000', '-5.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19723, '2022-10-29', 6910, 18906, 1727, 4251, '2.0000', '11.7000', '11.7000', '16.0000', '16.0000', '44.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19724, '2022-10-29', 5624, 18907, 1727, 4407, '1.0000', '20.9320', '20.9320', '24.1000', '24.1000', '119.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19725, '2022-10-29', 6125, 18908, 1727, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '115.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19726, '2022-10-29', 6597, 18909, 1727, 3740, '1.0000', '17.0100', '17.0100', '18.9000', '18.9000', '46.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19727, '2022-10-29', 5640, 18910, 1727, 3897, '1.0000', '11.1000', '11.1000', '18.9000', '18.9000', '370.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19728, '2022-10-29', 6363, 18911, 1727, 1411, '1.0000', '14.8000', '14.8000', '22.7800', '22.7800', '132.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19729, '2022-10-29', 5968, 18912, 1727, 4198, '1.0000', '10.7800', '10.7800', '13.8000', '13.8000', '31.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19730, '2022-10-29', 5926, 18913, 1727, 1309, '2.0000', '10.9000', '10.9000', '14.7000', '14.7000', '48.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19731, '2022-10-29', 6448, 18914, 1727, 2265, '1.0000', '15.0000', '15.0000', '15.0000', '15.0000', '35.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19732, '2022-10-29', 6685, 18915, 1727, 3998, '100.0000', '0.5000', '0.5000', '0.6000', '0.6000', '299.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19733, '2022-10-29', 6074, 18916, 1727, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '143.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19746, '2022-10-29', 5949, 18929, 1728, 1311, '4.0000', '5.2000', '5.2000', '7.3000', '7.3000', '81.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19745, '2022-10-29', 5749, 18928, 1728, 1302, '5.0000', '8.1400', '8.1400', '8.1400', '8.1400', '44.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19744, '2022-10-29', 5696, 18927, 1728, 514, '2.0000', '14.0000', '14.0000', '14.0000', '14.0000', '44.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19743, '2022-10-29', 5641, 18926, 1728, 3890, '1.0000', '31.1000', '31.1000', '52.8000', '52.8000', '33.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19742, '2022-10-29', 5640, 18925, 1728, 3897, '1.0000', '11.1000', '11.1000', '18.9000', '18.9000', '369.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19741, '2022-10-29', 5624, 18924, 1728, 4407, '1.0000', '20.9320', '20.9320', '24.1000', '24.1000', '118.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19747, '2022-10-29', 6019, 18930, 1728, 1947, '7.0000', '2.5300', '2.5300', '2.5300', '2.5300', '208.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19748, '2022-10-29', 6359, 18931, 1728, 4069, '4.0000', '1.7604', '1.7604', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19749, '2022-10-29', 5847, 18932, 1728, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '249.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19750, '2022-10-29', 6337, 18933, 1729, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '58.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19751, '2022-10-29', 6348, 18934, 1729, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19771, '2022-10-29', 6685, 18954, 1730, 3998, '10.0000', '0.5000', '0.5000', '0.6000', '0.6000', '289.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19770, '2022-10-29', 6225, 18953, 1730, 2356, '2.0000', '2.8000', '2.8000', '3.0800', '3.0800', '126.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19769, '2022-10-29', 6074, 18952, 1730, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '139.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19772, '2022-10-29', 6823, 18955, 1730, 1488, '4.0000', '10.7800', '10.7800', '15.8000', '15.8000', '39.0000', 1, 0, NULL, 32, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19760, '2022-10-29', 5472, 18943, 1731, 3903, '1.0000', '1385.1086', '1385.1086', '4.5000', '4.5000', '232.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19761, '2022-10-29', 6359, 18944, 1731, 4069, '10.0000', '1.7604', '1.7604', '2.5000', '2.5000', '105.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19762, '2022-10-29', 6218, 18945, 1732, 4356, '2.0000', '15.3740', '15.3740', '17.8000', '17.8000', '159.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19763, '2022-10-29', 5715, 18946, 1732, 2389, '1.0000', '13.1400', '13.1400', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19764, '2022-10-29', 6898, 18947, 1733, 3809, '1.0000', '9.0000', '9.0000', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19773, '2022-10-29', 5881, 18956, 1734, 3427, '2.0000', '13.5000', '13.5000', '14.8500', '14.8500', '43.0000', 1, 0, NULL, 49, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19774, '2022-10-29', 5418, 18957, 1734, 4387, '7.0000', '6.0344', '6.0344', '6.7600', '6.7600', '459.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19775, '2022-10-29', 5676, 18958, 1735, 2018, '1.0000', '30.0000', '30.0000', '34.0000', '34.0000', '52.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19776, '2022-10-29', 6555, 18959, 1736, 3736, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19777, '2022-10-29', 6240, 18960, 1736, 4200, '2.0000', '10.6200', '10.6200', '11.9500', '11.9500', '48.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19915, '2022-10-29', 6893, 19094, 1737, 4347, '2.0000', '49.0000', '49.0000', '55.0000', '55.0000', '157.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19914, '2022-10-29', 6409, 19093, 1737, 1422, '17.0000', '4.6700', '4.6700', '7.9800', '7.9800', '87.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19913, '2022-10-29', 6408, 19092, 1737, 1986, '13.0000', '4.6700', '4.6700', '7.9800', '7.9800', '69.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19912, '2022-10-29', 6232, 19091, 1737, 4320, '20.0000', '7.6225', '7.6225', '9.9000', '9.9000', '29.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19911, '2022-10-29', 6220, 19090, 1737, 4360, '20.0000', '5.3412', '5.3412', '6.0000', '6.0000', '325.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19910, '2022-10-29', 5983, 19089, 1737, 2333, '9.0000', '5.9000', '5.9000', '6.9000', '6.9000', '106.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19909, '2022-10-29', 5975, 19088, 1737, 4400, '20.0000', '11.5382', '11.5382', '12.9000', '12.9000', '123.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19908, '2022-10-29', 5847, 19087, 1737, 3136, '10.0000', '3.1651', '3.1651', '7.5000', '7.5000', '239.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19916, '2022-10-29', 6936, 19095, 1737, 4366, '12.0000', '17.8783', '17.8783', '22.3000', '22.3000', '82.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19796, '2022-10-29', 6228, 18979, 1738, 4362, '2.0000', '25.5271', '25.5271', '28.0000', '28.0000', '33.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19797, '2022-10-29', 5775, 18980, 1738, 2376, '2.0000', '22.1000', '22.1000', '36.0000', '36.0000', '43.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19798, '2022-10-29', 6923, 18981, 1739, 4338, '5.0000', '3.6000', '3.6000', '4.0000', '4.0000', '460.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19799, '2022-10-29', 5974, 18982, 1739, 4080, '3.0000', '8.4900', '8.4900', '9.5000', '9.5000', '193.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19800, '2022-10-29', 5808, 18983, 1739, 4392, '1.0000', '21.1537', '21.1537', '23.9000', '23.9000', '79.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19801, '2022-10-29', 6020, 18984, 1739, 4393, '1.0000', '18.3553', '18.3553', '22.0000', '22.0000', '65.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19802, '2022-10-29', 5828, 18985, 1739, 3660, '10.0000', '11.1000', '11.1000', '12.3000', '12.3000', '16.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19803, '2022-10-29', 6162, 18986, 1739, 3656, '5.0000', '6.6000', '6.6000', '7.3000', '7.3000', '62.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19804, '2022-10-29', 5632, 18987, 1739, 1991, '3.0000', '8.0000', '8.0000', '11.8000', '11.8000', '91.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19805, '2022-10-29', 5631, 18988, 1739, 1992, '3.0000', '6.5000', '6.5000', '8.8000', '8.8000', '86.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19806, '2022-10-29', 5581, 18989, 1739, 2343, '2.0000', '11.3000', '11.3000', '16.0000', '16.0000', '136.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19807, '2022-10-29', 5582, 18990, 1739, 2342, '2.0000', '12.5000', '12.5000', '19.0000', '19.0000', '270.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19808, '2022-10-29', 6376, 18991, 1739, 2364, '30.0000', '1.6000', '1.6000', '1.9200', '1.9200', '1931.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19809, '2022-10-29', 5996, 18992, 1739, 933, '20.0000', '2.0000', '2.0000', '2.0000', '2.0000', '644.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19810, '2022-10-29', 5740, 18993, 1739, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '21.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19811, '2022-10-29', 5451, 18994, 1739, 2387, '15.0000', '5.8600', '5.8600', '7.3200', '7.3200', '947.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19812, '2022-10-29', 5729, 18995, 1739, 1993, '3.0000', '10.5000', '10.5000', '13.8000', '13.8000', '2.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19813, '2022-10-29', 5985, 18996, 1739, 3056, '2.0000', '12.2000', '12.2000', '12.2000', '12.2000', '43.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19814, '2022-10-29', 5573, 18997, 1739, 2299, '1.0000', '18.0000', '18.0000', '23.0000', '23.0000', '977.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19815, '2022-10-29', 6303, 18998, 1739, 4313, '20.0000', '1.9950', '1.9950', '2.2000', '2.2000', '431.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19816, '2022-10-29', 6940, 18999, 1739, 4370, '5.0000', '4.0000', '4.0000', '4.5000', '4.5000', '227.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19817, '2022-10-29', 5898, 19000, 1739, 2350, '4.0000', '13.2000', '13.2000', '20.2000', '20.2000', '101.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19818, '2022-10-29', 5677, 19001, 1739, 4388, '4.0000', '13.7556', '13.7556', '15.4000', '15.4000', '229.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19819, '2022-10-29', 5853, 19002, 1739, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '314.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19820, '2022-10-29', 6381, 19003, 1739, 4355, '6.0000', '4.8000', '4.8000', '5.3000', '5.3000', '586.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19821, '2022-10-29', 6297, 19004, 1739, 4208, '4.0000', '9.8672', '9.8672', '11.8000', '11.8000', '26.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19822, '2022-10-29', 5949, 19005, 1739, 1311, '6.0000', '5.2000', '5.2000', '7.3000', '7.3000', '75.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19823, '2022-10-29', 6026, 19006, 1739, 3886, '10.0000', '2.0143', '2.0143', '3.2000', '3.2000', '70.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19824, '2022-10-29', 5995, 19007, 1739, 3071, '6.0000', '6.0000', '6.0000', '7.6000', '7.6000', '17.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19825, '2022-10-29', 5971, 19008, 1739, 3756, '1.0000', '20.4300', '20.4300', '25.0000', '25.0000', '42.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19826, '2022-10-29', 5948, 19009, 1739, 2075, '5.0000', '6.0000', '6.0000', '9.0000', '9.0000', '100.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19827, '2022-10-29', 6025, 19010, 1739, 3887, '10.0000', '0.7347', '0.7347', '1.3000', '1.3000', '374.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19828, '2022-10-29', 5971, 19011, 1740, 3756, '2.0000', '20.4300', '20.4300', '25.0000', '25.0000', '40.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19829, '2022-10-29', 6358, 19012, 1740, 3906, '20.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3946.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19830, '2022-10-29', 5640, 19013, 1741, 3897, '1.0000', '11.1000', '11.1000', '18.9000', '18.9000', '368.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19831, '2022-10-29', 6825, 19014, 1741, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '554.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19832, '2022-10-29', 6696, 19015, 1741, 4109, '2.0000', '4.2337', '4.2337', '4.9500', '4.9500', '140.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19833, '2022-10-29', 6117, 19016, 1741, 1320, '1.0000', '6.6000', '6.6000', '6.6000', '6.6000', '250.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19834, '2022-10-29', 5640, 19017, 1742, 3897, '1.0000', '11.1000', '11.1000', '18.9000', '18.9000', '367.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19835, '2022-10-29', 6752, 19018, 1743, 1073, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19836, '2022-10-29', 6752, 19018, 1743, 3840, '4.0000', '22.0000', '22.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19837, '2022-10-29', 6752, 19018, 1743, NULL, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20080, '2022-10-29', 6868, 19254, 1744, 1028, '2.0000', '3.4000', '3.4000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20079, '2022-10-29', 6838, 19253, 1744, 2120, '2.0000', '17.7100', '17.7100', '17.7100', '17.7100', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20078, '2022-10-29', 6836, 19252, 1744, 3392, '3.0000', '5.2300', '5.2300', '5.2300', '5.2300', '23.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20077, '2022-10-29', 6825, 19251, 1744, 3670, '10.0000', '46.2800', '46.2800', '1.0000', '1.0000', '544.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20076, '2022-10-29', 6699, 19250, 1744, 1287, '3.0000', '7.0000', '7.0000', '8.4000', '8.4000', '150.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20075, '2022-10-29', 6455, 19249, 1744, 3047, '1.0000', '19.5800', '19.5800', '21.7000', '21.7000', '15.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20074, '2022-10-29', 6399, 19248, 1744, 2019, '6.0000', '6.1000', '6.1000', '6.1000', '6.1000', '149.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20073, '2022-10-29', 6378, 19247, 1744, 2255, '1.0000', '26.5000', '26.5000', '31.8000', '31.8000', '38.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20072, '2022-10-29', 6375, 19246, 1744, 2304, '3.0000', '3.5200', '3.5200', '5.1000', '5.1000', '72.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20071, '2022-10-29', 6371, 19245, 1744, 2268, '1.0000', '27.5000', '27.5000', '27.5000', '27.5000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20070, '2022-10-29', 6348, 19244, 1744, 3418, '1.0000', '64.8559', '64.8559', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20069, '2022-10-29', 6347, 19243, 1744, 2269, '3.0000', '8.5000', '8.5000', '15.0000', '15.0000', '34.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20068, '2022-10-29', 6250, 19242, 1744, 4220, '4.0000', '6.0000', '6.0000', '5.5000', '5.5000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20067, '2022-10-29', 6235, 19241, 1744, 949, '3.0000', '4.9800', '4.9800', '7.4000', '7.4000', '12.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20066, '2022-10-29', 6216, 19240, 1744, 3617, '10.0000', '1.6700', '1.6700', '1.9000', '1.9000', '2010.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20065, '2022-10-29', 6209, 19239, 1744, 1957, '3.0000', '4.5000', '4.5000', '8.3000', '8.3000', '29.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20064, '2022-10-29', 6154, 19238, 1744, 3027, '1.0000', '39.1000', '39.1000', '45.0000', '45.0000', '67.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20063, '2022-10-29', 6151, 19237, 1744, 2044, '2.0000', '6.7000', '6.7000', '12.6000', '12.6000', '35.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20062, '2022-10-29', 6117, 19236, 1744, 1320, '3.0000', '6.6000', '6.6000', '6.6000', '6.6000', '247.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20061, '2022-10-29', 6077, 19235, 1744, 4065, '4.0000', '3.9894', '3.9894', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20060, '2022-10-29', 6076, 19234, 1744, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1394.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20059, '2022-10-29', 6075, 19233, 1744, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '558.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20058, '2022-10-29', 6074, 19232, 1744, 2303, '4.0000', '8.5000', '8.5000', '8.5000', '8.5000', '105.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20057, '2022-10-29', 6026, 19231, 1744, 3886, '6.0000', '2.0143', '2.0143', '3.2000', '3.2000', '64.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20056, '2022-10-29', 6025, 19230, 1744, 3887, '6.0000', '0.7347', '0.7347', '1.3000', '1.3000', '368.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20055, '2022-10-29', 6007, 19229, 1744, 4364, '10.0000', '1.4788', '1.4788', '1.5000', '1.5000', '116.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20054, '2022-10-29', 6006, 19228, 1744, 1871, '1.0000', '10.8300', '10.8300', '15.9600', '15.9600', '14.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20053, '2022-10-29', 5988, 19227, 1744, 2033, '4.0000', '3.0000', '3.0000', '3.6000', '3.6000', '35.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20052, '2022-10-29', 5826, 19226, 1744, 4409, '3.0000', '5.7800', '5.7800', '7.0000', '7.0000', '357.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20051, '2022-10-29', 5809, 19225, 1744, 390, '2.0000', '15.1000', '15.1000', '15.1000', '15.1000', '35.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20050, '2022-10-29', 5729, 19224, 1744, 1993, '2.0000', '10.5000', '10.5000', '13.8000', '13.8000', '0.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20049, '2022-10-29', 5717, 19223, 1744, 2381, '4.0000', '2.4000', '2.4000', '2.8800', '2.8800', '268.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20048, '2022-10-29', 5673, 19222, 1744, 3762, '2.0000', '15.8900', '15.8900', '17.7000', '17.7000', '38.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20047, '2022-10-29', 5640, 19221, 1744, 3897, '3.0000', '11.1000', '11.1000', '18.9000', '18.9000', '358.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20046, '2022-10-29', 5582, 19220, 1744, 2342, '1.0000', '12.5000', '12.5000', '19.0000', '19.0000', '267.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20045, '2022-10-29', 5581, 19219, 1744, 2343, '1.0000', '11.3000', '11.3000', '16.0000', '16.0000', '134.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20044, '2022-10-29', 5535, 19218, 1744, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '748.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20043, '2022-10-29', 5448, 19217, 1744, 2266, '2.0000', '14.5000', '14.5000', '14.5000', '14.5000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20042, '2022-10-29', 5440, 19216, 1744, 2306, '3.0000', '3.4100', '3.4100', '4.9200', '4.9200', '186.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20081, '2022-10-29', 6907, 19255, 1744, 4248, '5.0000', '9.0000', '9.0000', '12.5000', '12.5000', '181.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19878, '2022-10-29', 5967, 19059, 1745, 3132, '6.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2296.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19879, '2022-10-29', 5629, 19060, 1745, 4299, '2.0000', '8.9474', '8.9474', '10.5000', '10.5000', '324.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19880, '2022-10-29', 5601, 19061, 1745, 3035, '1.0000', '4.2917', '4.2917', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19881, '2022-10-29', 5601, 19061, 1745, 3063, '3.0000', '4.2917', '4.2917', '6.0000', '6.0000', '618.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19882, '2022-10-29', 6839, 19062, 1745, 3769, '4.0000', '4.9100', '4.9100', '6.4300', '6.4300', '34.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19883, '2022-10-29', 5949, 19063, 1745, 1311, '8.0000', '5.2000', '5.2000', '7.3000', '7.3000', '67.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19884, '2022-10-29', 5657, 19064, 1745, 4354, '6.0000', '5.0048', '5.0048', '6.3000', '6.3000', '373.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19885, '2022-10-29', 6220, 19065, 1745, 4360, '6.0000', '5.3412', '5.3412', '6.0000', '6.0000', '325.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19886, '2022-10-29', 6221, 19066, 1745, 4363, '1.0000', '15.6990', '15.6990', '17.4000', '17.4000', '158.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19887, '2022-10-29', 6222, 19067, 1745, 2279, '1.0000', '17.0000', '17.0000', '17.0000', '17.0000', '31.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19888, '2022-10-29', 5991, 19068, 1745, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '63.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19889, '2022-10-29', 5828, 19069, 1746, 3660, '1.0000', '11.1000', '11.1000', '12.3000', '12.3000', '15.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19890, '2022-10-29', 6665, 19070, 1746, 4123, '1.0000', '9.5000', '9.5000', '11.0000', '11.0000', '95.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19891, '2022-10-29', 5473, 19071, 1746, 3904, '1.0000', '4.5000', '4.5000', '5.0000', '5.0000', '437.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19892, '2022-10-29', 6227, 19072, 1746, 3070, '2.0000', '2.8400', '2.8400', '3.4000', '3.4000', '55.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19893, '2022-10-29', 6923, 19073, 1746, 4338, '3.0000', '3.6000', '3.6000', '4.0000', '4.0000', '457.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19894, '2022-10-29', 6169, 19074, 1746, 3982, '2.0000', '4.3000', '4.3000', '7.4000', '7.4000', '6.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19895, '2022-10-29', 6000, 19075, 1746, 4085, '1.0000', '11.0487', '11.0487', '11.1000', '11.1000', '42.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19896, '2022-10-29', 6446, 19076, 1746, 1449, '1.0000', '4.9000', '4.9000', '8.4000', '8.4000', '55.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19897, '2022-10-29', 6635, 19077, 1746, 2051, '1.0000', '11.8000', '11.8000', '13.1000', '13.1000', '0.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19898, '2022-10-29', 6635, 19077, 1746, NULL, '1.0000', '11.8000', '11.8000', '13.1000', '13.1000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19899, '2022-10-29', 5654, 19078, 1746, 3062, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19900, '2022-10-29', 6083, 19079, 1746, 3061, '2.0000', '2.7000', '2.7000', '2.7000', '2.7000', '296.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19901, '2022-10-29', 6621, 19080, 1746, 1852, '3.0000', '9.5000', '9.5000', '9.5000', '9.5000', '20.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19902, '2022-10-29', 6129, 19081, 1746, 3399, '3.0000', '3.4000', '3.4000', '3.4000', '3.4000', '44.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19903, '2022-10-29', 5705, 19082, 1746, 4383, '1.0000', '8.0933', '8.0933', '9.6000', '9.6000', '86.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19904, '2022-10-29', 6671, 19083, 1746, 4408, '2.0000', '8.0110', '8.0110', '9.0000', '9.0000', '118.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19905, '2022-10-29', 6847, 19084, 1746, 1150, '2.0000', '6.5000', '6.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19906, '2022-10-29', 5640, 19085, 1746, 3897, '1.0000', '11.1000', '11.1000', '18.9000', '18.9000', '363.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19907, '2022-10-29', 6394, 19086, 1746, 3823, '2.0000', '5.4400', '5.4400', '7.0000', '7.0000', '169.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19917, '2022-10-29', 6909, 19096, 1737, 4250, '5.0000', '11.7000', '11.7000', '13.4000', '13.4000', '135.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19918, '2022-10-29', 6374, 19097, 1747, 3614, '50.0000', '1.6200', '1.6200', '1.8000', '1.8000', '3492.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19919, '2022-10-29', 6074, 19098, 1748, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '125.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19920, '2022-10-29', 6612, 19099, 1748, 3772, '5.0000', '16.5600', '16.5600', '20.9200', '20.9200', '62.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19921, '2022-10-29', 6555, 19100, 1748, 3736, '4.0000', '2.9700', '2.9700', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19922, '2022-10-29', 6258, 19101, 1748, 4202, '4.0000', '9.3060', '9.3060', '10.9000', '10.9000', '56.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19923, '2022-10-29', 6557, 19102, 1748, 3735, '5.0000', '8.0659', '8.0659', '9.6000', '9.6000', '97.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19924, '2022-10-29', 6645, 19103, 1748, 1393, '6.0000', '3.3000', '3.3000', '3.3000', '3.3000', '113.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19925, '2022-10-29', 6680, 19104, 1748, 1904, '1.0000', '8.3200', '8.3200', '14.3000', '14.3000', '3.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19926, '2022-10-29', 5926, 19105, 1748, 1309, '5.0000', '10.9000', '10.9000', '14.7000', '14.7000', '43.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19927, '2022-10-29', 6879, 19106, 1748, 3121, '5.0000', '3.8700', '3.8700', '5.0000', '5.0000', '286.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19928, '2022-10-29', 6458, 19107, 1748, 765, '2.0000', '22.9000', '22.9000', '22.9000', '22.9000', '89.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19929, '2022-10-29', 6328, 19108, 1748, 3817, '1.0000', '24.4100', '24.4100', '30.0000', '30.0000', '33.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19930, '2022-10-29', 6256, 19109, 1748, 4224, '-6.0000', '0.0000', '0.0000', '7.9000', '7.9000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19931, '2022-10-29', 6256, 19109, 1748, NULL, '10.0000', '0.0000', '0.0000', '7.9000', '7.9000', '-10.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19932, '2022-10-29', 5448, 19110, 1748, 2266, '3.0000', '14.5000', '14.5000', '14.5000', '14.5000', '73.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19933, '2022-10-29', 6234, 19111, 1748, 3801, '3.0000', '34.8921', '34.8921', '49.0000', '49.0000', '12.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19934, '2022-10-29', 6607, 19112, 1748, 2583, '2.0000', '16.0000', '16.0000', '17.7100', '17.7100', '39.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19935, '2022-10-29', 6304, 19113, 1748, 4304, '2.0000', '14.9059', '14.9059', '17.0000', '17.0000', '161.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19936, '2022-10-29', 6125, 19114, 1748, 3053, '3.0000', '10.5000', '10.5000', '12.5000', '12.5000', '112.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19937, '2022-10-29', 5418, 19115, 1748, 4387, '3.0000', '6.0344', '6.0344', '6.7600', '6.7600', '456.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19938, '2022-10-29', 6205, 19116, 1748, 3026, '2.0000', '38.5000', '38.5000', '55.0000', '55.0000', '28.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19939, '2022-10-29', 5931, 19117, 1748, 1090, '1.0000', '12.8400', '12.8400', '12.8400', '12.8400', '33.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19940, '2022-10-29', 6368, 19118, 1748, 4148, '-17.0000', '12.8400', '12.8400', '12.8400', '12.8400', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19941, '2022-10-29', 6368, 19118, 1748, NULL, '18.0000', '12.8400', '12.8400', '12.8400', '12.8400', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19942, '2022-10-29', 6250, 19119, 1748, 4220, '2.0000', '6.0000', '6.0000', '5.5000', '5.5000', '46.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19943, '2022-10-29', 6828, 19120, 1749, 4404, '-10.0000', '13.1400', '13.1400', '15.8000', '15.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19944, '2022-10-29', 6828, 19120, 1749, NULL, '11.0000', '13.1400', '13.1400', '15.8000', '15.8000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19945, '2022-10-29', 6220, 19121, 1750, 4360, '5.0000', '5.3412', '5.3412', '6.0000', '6.0000', '320.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19946, '2022-10-29', 6667, 19122, 1750, 3835, '5.0000', '2.7159', '2.7159', '3.0000', '3.0000', '935.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19947, '2022-10-29', 6345, 19123, 1750, 1922, '5.0000', '3.6300', '3.6300', '4.4000', '4.4000', '40.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19948, '2022-10-29', 5674, 19124, 1750, 3549, '5.0000', '1.5000', '1.5000', '2.1500', '2.1500', '350.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19949, '2022-10-29', 6136, 19125, 1750, 4410, '5.0000', '3.5778', '3.5778', '3.8000', '3.8000', '245.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19950, '2022-10-29', 5519, 19126, 1750, 3663, '5.0000', '3.3000', '3.3000', '3.3000', '3.3000', '198.0000', 1, 0, NULL, 62, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19951, '2022-10-29', 5995, 19127, 1750, 3071, '3.0000', '6.0000', '6.0000', '7.6000', '7.6000', '14.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (19952, '2022-10-29', 6754, 19128, 1751, 1906, '5.0000', '4.5000', '4.5000', '4.5000', '4.5000', '346.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20264, '2022-10-29', 6895, 19433, 1752, 3786, '2.0000', '9.7900', '9.7900', '10.8000', '10.8000', '32.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20263, '2022-10-29', 6890, 19432, 1752, 4124, '25.0000', '3.7809', '3.7809', '6.6000', '6.6000', '839.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20262, '2022-10-29', 6864, 19431, 1752, 3082, '5.0000', '14.4690', '14.4690', '4.0000', '4.0000', '4580.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20261, '2022-10-29', 6852, 19430, 1752, 4074, '2.0000', '8.4000', '8.4000', '12.4000', '12.4000', '27.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20260, '2022-10-29', 6787, 19429, 1752, 4329, '2.0000', '44.6400', '44.6400', '50.6000', '50.6000', '28.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20259, '2022-10-29', 6664, 19428, 1752, 4122, '25.0000', '0.6197', '0.6197', '1.6000', '1.6000', '527.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20258, '2022-10-29', 6597, 19427, 1752, 3740, '2.0000', '17.0100', '17.0100', '18.9000', '18.9000', '44.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20257, '2022-10-29', 6570, 19426, 1752, 3812, '10.0000', '7.2600', '7.2600', '4.5000', '4.5000', '34.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20256, '2022-10-29', 6568, 19425, 1752, 3827, '2.0000', '13.6100', '13.6100', '15.0000', '15.0000', '35.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20255, '2022-10-29', 6528, 19424, 1752, 1899, '3.0000', '5.9800', '5.9800', '7.5000', '7.5000', '160.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20254, '2022-10-29', 6496, 19423, 1752, 3758, '4.0000', '5.0500', '5.0500', '5.7000', '5.7000', '80.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20253, '2022-10-29', 6454, 19422, 1752, 4212, '5.0000', '1.9038', '1.9038', '5.2000', '5.2000', '104.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20252, '2022-10-29', 6438, 19421, 1752, 546, '1.0000', '34.0000', '34.0000', '56.6300', '56.6300', '36.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20251, '2022-10-29', 6431, 19420, 1752, 3834, '5.0000', '4.3200', '4.3200', '5.3000', '5.3000', '261.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20250, '2022-10-29', 6389, 19419, 1752, 4114, '2.0000', '8.7525', '8.7525', '13.4000', '13.4000', '288.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20249, '2022-10-29', 6385, 19418, 1752, 2309, '2.0000', '7.4000', '7.4000', '13.5000', '13.5000', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20248, '2022-10-29', 6366, 19417, 1752, 1418, '1.0000', '55.1000', '55.1000', '116.8000', '116.8000', '3.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20247, '2022-10-29', 6365, 19416, 1752, 2038, '3.0000', '30.0000', '30.0000', '42.8000', '42.8000', '95.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20246, '2022-10-29', 6363, 19415, 1752, 1411, '2.0000', '14.8000', '14.8000', '22.7800', '22.7800', '130.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20245, '2022-10-29', 6337, 19414, 1752, 4256, '3.0000', '49.5359', '49.5359', '56.2000', '56.2000', '54.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20244, '2022-10-29', 6304, 19413, 1752, 4304, '2.0000', '14.9059', '14.9059', '17.0000', '17.0000', '159.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20243, '2022-10-29', 6298, 19412, 1752, 4209, '5.0000', '5.5742', '5.5742', '12.8000', '12.8000', '94.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20242, '2022-10-29', 6292, 19411, 1752, 4206, '2.0000', '8.0455', '8.0455', '11.0000', '11.0000', '32.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20241, '2022-10-29', 6285, 19410, 1752, 4145, '2.0000', '9.6868', '9.6868', '11.8000', '11.8000', '17.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20240, '2022-10-29', 6273, 19409, 1752, 2065, '1.0000', '26.0000', '26.0000', '27.5000', '27.5000', '14.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20239, '2022-10-29', 6264, 19408, 1752, 3404, '3.0000', '6.0000', '6.0000', '7.9800', '7.9800', '52.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20238, '2022-10-29', 6242, 19407, 1752, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '42.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20237, '2022-10-29', 6234, 19406, 1752, 3801, '3.0000', '34.8921', '34.8921', '49.0000', '49.0000', '5.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20236, '2022-10-29', 6205, 19405, 1752, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20235, '2022-10-29', 6125, 19404, 1752, 3053, '2.0000', '10.5000', '10.5000', '12.5000', '12.5000', '106.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20234, '2022-10-29', 6100, 19403, 1752, 940, '2.0000', '18.0000', '18.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20233, '2022-10-29', 6082, 19402, 1752, 3032, '2.0000', '6.9000', '6.9000', '6.9000', '6.9000', '120.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20232, '2022-10-29', 6076, 19401, 1752, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1389.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20231, '2022-10-29', 6075, 19400, 1752, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '553.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20230, '2022-10-29', 6074, 19399, 1752, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '102.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20229, '2022-10-29', 6038, 19398, 1752, 526, '2.0000', '8.6400', '8.6400', '9.7000', '9.7000', '132.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20228, '2022-10-29', 6010, 19397, 1752, 3621, '2.0000', '15.4888', '15.4888', '16.5000', '16.5000', '234.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20227, '2022-10-29', 6009, 19396, 1752, 2262, '1.0000', '35.9000', '35.9000', '35.9000', '35.9000', '9.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20226, '2022-10-29', 6002, 19395, 1752, 4390, '2.0000', '8.1000', '8.1000', '9.0000', '9.0000', '118.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20225, '2022-10-29', 5997, 19394, 1752, NULL, '14.0000', '0.0000', '0.0000', '6.6000', '6.6000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20224, '2022-10-29', 5997, 19394, 1752, 4184, '-11.0000', '0.0000', '0.0000', '6.6000', '6.6000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20223, '2022-10-29', 5986, 19393, 1752, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '39.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20222, '2022-10-29', 5977, 19392, 1752, 932, '1.0000', '7.5000', '7.5000', '7.8000', '7.8000', '54.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20221, '2022-10-29', 5977, 19392, 1752, 1124, '1.0000', '7.5000', '7.5000', '7.8000', '7.8000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20220, '2022-10-29', 5976, 19391, 1752, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '168.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20219, '2022-10-29', 5970, 19390, 1752, 4402, '3.0000', '11.5903', '11.5903', '12.8500', '12.8500', '110.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20218, '2022-10-29', 5969, 19389, 1752, 1312, '3.0000', '8.8000', '8.8000', '10.7000', '10.7000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20217, '2022-10-29', 5967, 19388, 1752, 3132, '5.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2288.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20216, '2022-10-29', 5958, 19387, 1752, 4196, '3.0000', '15.6532', '15.6532', '21.7000', '21.7000', '23.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20215, '2022-10-29', 5949, 19386, 1752, 1311, '7.0000', '5.2000', '5.2000', '9.3000', '9.3000', '60.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20214, '2022-10-29', 5948, 19385, 1752, 2075, '3.0000', '6.0000', '6.0000', '10.3000', '10.3000', '97.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20213, '2022-10-29', 5926, 19384, 1752, 1309, '10.0000', '10.9000', '10.9000', '14.7000', '14.7000', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20212, '2022-10-29', 5854, 19383, 1752, 4191, '3.0000', '8.8462', '8.8462', '14.8000', '14.8000', '68.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20211, '2022-10-29', 5853, 19382, 1752, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '308.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20210, '2022-10-29', 5849, 19381, 1752, 2357, '5.0000', '3.1000', '3.1000', '3.6000', '3.6000', '6.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20209, '2022-10-29', 5847, 19380, 1752, 3136, '3.0000', '3.1651', '3.1651', '7.5000', '7.5000', '236.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20208, '2022-10-29', 5828, 19379, 1752, 3660, '3.0000', '11.1000', '11.1000', '12.3000', '12.3000', '12.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20207, '2022-10-29', 5808, 19378, 1752, 4392, '1.0000', '21.1537', '21.1537', '23.9000', '23.9000', '78.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20206, '2022-10-29', 5757, 19377, 1752, 1115, '1.0000', '40.0000', '40.0000', '42.0000', '42.0000', '85.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20205, '2022-10-29', 5751, 19376, 1752, 1112, '4.0000', '10.8000', '10.8000', '12.8000', '12.8000', '101.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20204, '2022-10-29', 5740, 19375, 1752, 2274, '4.0000', '15.5000', '15.5000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20203, '2022-10-29', 5731, 19374, 1752, 4301, '7.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1088.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20202, '2022-10-29', 5705, 19373, 1752, 4383, '2.0000', '8.0933', '8.0933', '9.6000', '9.6000', '84.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20201, '2022-10-29', 5677, 19372, 1752, 4388, '2.0000', '13.7556', '13.7556', '15.4000', '15.4000', '227.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20200, '2022-10-29', 5640, 19371, 1752, 3897, '5.0000', '11.1000', '11.1000', '18.9000', '18.9000', '354.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20199, '2022-10-29', 5632, 19370, 1752, 1991, '2.0000', '8.0000', '8.0000', '11.8000', '11.8000', '89.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20198, '2022-10-29', 5624, 19369, 1752, 4407, '2.0000', '20.9320', '20.9320', '24.1000', '24.1000', '116.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20197, '2022-10-29', 5582, 19368, 1752, 2342, '2.0000', '12.5000', '12.5000', '19.0000', '19.0000', '267.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20196, '2022-10-29', 5581, 19367, 1752, 2343, '1.0000', '11.3000', '11.3000', '16.0000', '16.0000', '134.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20195, '2022-10-29', 5535, 19366, 1752, 2277, '10.0000', '3.9100', '3.9100', '3.9100', '3.9100', '743.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20194, '2022-10-29', 5532, 19365, 1752, 4188, '2.0000', '56.9412', '56.9412', '65.0000', '65.0000', '94.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20193, '2022-10-29', 5453, 19364, 1752, 3652, '4.0000', '8.3000', '8.3000', '9.2000', '9.2000', '62.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20192, '2022-10-29', 5439, 19363, 1752, 3799, '1.0000', '27.2586', '27.2586', '71.0000', '71.0000', '80.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20265, '2022-10-29', 6940, 19434, 1765, 4370, '6.0000', '4.0000', '4.0000', '4.5000', '4.5000', '221.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20095, '2022-10-29', 6890, 19269, 1753, 4124, '25.0000', '3.7809', '3.7809', '6.6000', '6.6000', '839.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20094, '2022-10-29', 6445, 19268, 1753, 3581, '2.0000', '21.8000', '21.8000', '29.5000', '29.5000', '39.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20093, '2022-10-29', 6418, 19267, 1753, 2580, '2.0000', '6.3300', '6.3300', '6.3800', '6.3800', '556.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20092, '2022-10-29', 6333, 19266, 1753, 2361, '4.0000', '7.7000', '7.7000', '7.7000', '7.7000', '60.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20091, '2022-10-29', 6273, 19265, 1753, 2065, '2.0000', '26.0000', '26.0000', '27.5000', '27.5000', '14.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20090, '2022-10-29', 6234, 19264, 1753, 3801, '2.0000', '34.8921', '34.8921', '49.0000', '49.0000', '7.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20089, '2022-10-29', 6205, 19263, 1753, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '26.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20088, '2022-10-29', 6125, 19262, 1753, 3053, '4.0000', '10.5000', '10.5000', '12.5000', '12.5000', '106.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20087, '2022-10-29', 5988, 19261, 1753, 2033, '5.0000', '3.0000', '3.0000', '3.6000', '3.6000', '35.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20086, '2022-10-29', 5986, 19260, 1753, 4107, '2.0000', '13.6040', '13.6040', '15.0000', '15.0000', '39.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20085, '2022-10-29', 5731, 19259, 1753, 4301, '10.0000', '18.2383', '18.2383', '24.0000', '24.0000', '1088.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20084, '2022-10-29', 5674, 19258, 1753, 3549, '20.0000', '1.5000', '1.5000', '2.1500', '2.1500', '330.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20083, '2022-10-29', 5589, 19257, 1753, 2370, '4.0000', '9.4000', '9.4000', '9.4000', '9.4000', '101.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20082, '2022-10-29', 5585, 19256, 1753, 3962, '1.0000', '23.4000', '23.4000', '28.5000', '28.5000', '4.0000', 1, 0, NULL, 44, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20096, '2022-10-29', 6925, 19270, 1753, 4340, '4.0000', '4.5000', '4.5000', '5.0000', '5.0000', '54.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20097, '2022-10-29', 6936, 19271, 1753, 4366, '3.0000', '17.8783', '17.8783', '22.3000', '22.3000', '79.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20098, '2022-10-29', 5515, 19272, 1754, 3508, '5.0000', '4.6800', '4.6800', '5.5000', '5.5000', '65.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20099, '2022-10-29', 5657, 19273, 1754, 4354, '5.0000', '5.0048', '5.0048', '6.3000', '6.3000', '368.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20100, '2022-10-29', 6316, 19274, 1754, 3757, '1.0000', '54.8358', '54.8358', '74.0000', '74.0000', '43.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20101, '2022-10-29', 5826, 19275, 1754, 4409, '5.0000', '5.7800', '5.7800', '7.0000', '7.0000', '352.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20102, '2022-10-29', 6242, 19276, 1754, 3588, '1.0000', '58.3529', '58.3529', '66.5300', '66.5300', '42.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20103, '2022-10-29', 6386, 19277, 1754, 4113, '10.0000', '3.5873', '3.5873', '4.2000', '4.2000', '1545.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20104, '2022-10-29', 6509, 19278, 1754, 2077, '3.0000', '13.2500', '13.2500', '13.2500', '13.2500', '88.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20105, '2022-10-29', 6832, 19279, 1754, 1381, '10.0000', '2.6000', '2.6000', '2.6000', '2.6000', '272.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20106, '2022-10-29', 5586, 19280, 1754, 3135, '2.0000', '28.9000', '28.9000', '34.6000', '34.6000', '147.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20107, '2022-10-29', 5676, 19281, 1754, 2018, '2.0000', '30.0000', '30.0000', '34.0000', '34.0000', '50.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20108, '2022-10-29', 6204, 19282, 1754, 2312, '1.0000', '15.8000', '15.8000', '18.6000', '18.6000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20109, '2022-10-29', 6929, 19283, 1755, 4349, '1.0000', '47.0000', '47.0000', '52.0000', '52.0000', '100.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20110, '2022-10-29', 5947, 19284, 1756, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '173.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20111, '2022-10-29', 6828, 19285, 1756, 4404, '-11.0000', '13.1400', '13.1400', '15.8000', '15.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20112, '2022-10-29', 6828, 19285, 1756, NULL, '12.0000', '13.1400', '13.1400', '15.8000', '15.8000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20296, '2022-10-29', 6611, 19464, 1757, 3770, '2.0000', '9.0906', '9.0906', '11.5300', '11.5300', '113.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20295, '2022-10-29', 6496, 19463, 1757, 3758, '5.0000', '5.0500', '5.0500', '5.7000', '5.7000', '80.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20294, '2022-10-29', 6478, 19462, 1757, 4322, '3.0000', '7.8980', '7.8980', '9.7200', '9.7200', '59.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20293, '2022-10-29', 6375, 19461, 1757, 2304, '5.0000', '3.5200', '3.5200', '5.1000', '5.1000', '67.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20292, '2022-10-29', 6312, 19460, 1757, 1118, '3.0000', '7.5000', '7.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20291, '2022-10-29', 6234, 19459, 1757, 3801, '2.0000', '34.8921', '34.8921', '49.0000', '49.0000', '5.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20290, '2022-10-29', 6201, 19458, 1757, 1982, '5.0000', '6.9000', '6.9000', '9.1000', '9.1000', '110.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20289, '2022-10-29', 6121, 19457, 1757, 4379, '1.0000', '30.4986', '30.4986', '34.1000', '34.1000', '71.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20288, '2022-10-29', 6083, 19456, 1757, 3061, '3.0000', '2.7000', '2.7000', '2.7000', '2.7000', '293.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20287, '2022-10-29', 6020, 19455, 1757, 4393, '1.0000', '18.3553', '18.3553', '22.0000', '22.0000', '64.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20286, '2022-10-29', 5982, 19454, 1757, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '258.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20285, '2022-10-29', 5969, 19453, 1757, 1312, '5.0000', '8.8000', '8.8000', '10.7000', '10.7000', '18.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20284, '2022-10-29', 5886, 19452, 1757, 927, '3.0000', '8.6000', '8.6000', '11.8000', '11.8000', '99.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20283, '2022-10-29', 5853, 19451, 1757, 3620, '3.0000', '8.8287', '8.8287', '10.5000', '10.5000', '308.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20282, '2022-10-29', 5740, 19450, 1757, 2274, '10.0000', '15.5000', '15.5000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20281, '2022-10-29', 5440, 19449, 1757, 2306, '5.0000', '3.4100', '3.4100', '4.9200', '4.9200', '181.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20280, '2022-10-29', 5439, 19448, 1757, 3799, '1.0000', '27.2586', '27.2586', '71.0000', '71.0000', '80.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20297, '2022-10-29', 6612, 19465, 1757, 3772, '2.0000', '16.5600', '16.5600', '20.9200', '20.9200', '60.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20131, '2022-10-29', 5947, 19304, 1758, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '172.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20132, '2022-10-29', 6828, 19305, 1758, 4404, '-12.0000', '13.1400', '13.1400', '15.8000', '15.8000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20133, '2022-10-29', 6828, 19305, 1758, NULL, '13.0000', '13.1400', '13.1400', '15.8000', '15.8000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20175, '2022-10-29', 6606, 19347, 1759, 1352, '1.0000', '15.5300', '15.5300', '28.2000', '28.2000', '30.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20174, '2022-10-29', 6446, 19346, 1759, 1449, '2.0000', '4.9000', '4.9000', '8.4000', '8.4000', '53.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20173, '2022-10-29', 6337, 19345, 1759, 4256, '1.0000', '49.5359', '49.5359', '56.2000', '56.2000', '54.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20172, '2022-10-29', 6285, 19344, 1759, 4145, '3.0000', '9.6868', '9.6868', '11.8000', '11.8000', '17.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20171, '2022-10-29', 6220, 19343, 1759, 4360, '3.0000', '5.3412', '5.3412', '6.0000', '6.0000', '317.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20170, '2022-10-29', 6092, 19342, 1759, 528, '1.0000', '14.9000', '14.9000', '23.0000', '23.0000', '31.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20169, '2022-10-29', 5696, 19341, 1759, 514, '1.0000', '14.0000', '14.0000', '14.0000', '14.0000', '43.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20168, '2022-10-29', 5629, 19340, 1759, 4299, '2.0000', '8.9474', '8.9474', '10.5000', '10.5000', '320.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20167, '2022-10-29', 5453, 19339, 1759, 3652, '2.0000', '8.3000', '8.3000', '9.2000', '9.2000', '62.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20176, '2022-10-29', 6609, 19348, 1759, 3773, '2.0000', '11.6821', '11.6821', '16.3000', '16.3000', '95.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20144, '2022-10-29', 5740, 19316, 1760, 2274, '2.0000', '15.5000', '15.5000', '15.5000', '15.5000', '5.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20145, '2022-10-29', 5586, 19317, 1760, 3135, '1.0000', '28.9000', '28.9000', '34.6000', '34.6000', '146.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20146, '2022-10-29', 6924, 19318, 1760, 4339, '1.0000', '2.7000', '2.7000', '3.0000', '3.0000', '493.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20147, '2022-10-29', 6925, 19319, 1760, 4340, '1.0000', '4.5000', '4.5000', '5.0000', '5.0000', '53.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20148, '2022-10-29', 5654, 19320, 1760, 3062, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20149, '2022-10-29', 5991, 19321, 1760, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '62.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20150, '2022-10-29', 5640, 19322, 1760, 3897, '2.0000', '11.1000', '11.1000', '18.9000', '18.9000', '356.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20151, '2022-10-29', 6358, 19323, 1760, 3906, '10.0000', '3.0100', '3.0100', '3.4000', '3.4000', '3936.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20152, '2022-10-29', 5926, 19324, 1760, 1309, '2.0000', '10.9000', '10.9000', '14.7000', '14.7000', '31.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20153, '2022-10-29', 6590, 19325, 1760, 1900, '1.0000', '25.3000', '25.3000', '25.3000', '25.3000', '6.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20154, '2022-10-29', 5629, 19326, 1760, 4299, '2.0000', '8.9474', '8.9474', '10.5000', '10.5000', '320.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20155, '2022-10-29', 6074, 19327, 1760, 2303, '3.0000', '8.5000', '8.5000', '8.5000', '8.5000', '102.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20156, '2022-10-29', 6003, 19328, 1760, 2321, '1.0000', '6.7000', '6.7000', '9.5800', '9.5800', '30.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20157, '2022-10-29', 5976, 19329, 1760, 4105, '2.0000', '7.5312', '7.5312', '8.2000', '8.2000', '168.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20158, '2022-10-29', 6075, 19330, 1760, 3025, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '553.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20159, '2022-10-29', 6076, 19331, 1760, 3024, '5.0000', '2.3000', '2.3000', '2.3000', '2.3000', '1389.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20160, '2022-10-29', 6225, 19332, 1760, 2356, '2.0000', '2.8000', '2.8000', '3.0800', '3.0800', '124.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20161, '2022-10-29', 6078, 19333, 1760, 2352, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '499.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20162, '2022-10-29', 5965, 19334, 1760, 3787, '1.0000', '12.5145', '12.5145', '13.5000', '13.5000', '90.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20163, '2022-10-29', 5418, 19335, 1761, 4387, '5.0000', '6.0344', '6.0344', '6.7600', '6.7600', '451.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20164, '2022-10-29', 6691, 19336, 1762, 4077, '2.0000', '6.5000', '6.5000', '8.8000', '8.8000', '183.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20165, '2022-10-29', 5740, 19337, 1762, 2274, '3.0000', '15.5000', '15.5000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20166, '2022-10-29', 6359, 19338, 1762, 4069, '5.0000', '1.7604', '1.7604', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20177, '2022-10-29', 5959, 19349, 1759, 4197, '1.0000', '25.7381', '25.7381', '29.8000', '29.8000', '30.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20178, '2022-10-29', 6668, 19350, 1759, 1067, '1.0000', '8.9000', '8.9000', '8.9000', '8.9000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20179, '2022-10-29', 6668, 19350, 1759, NULL, '1.0000', '8.9000', '8.9000', '8.9000', '8.9000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20180, '2022-10-29', 5598, 19351, 1759, 3031, '3.0000', '2.6000', '2.6000', '4.3000', '4.3000', '496.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20181, '2022-10-29', 5967, 19352, 1759, 3132, '3.0000', '3.6596', '3.6596', '4.9000', '4.9000', '2288.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20182, '2022-10-29', 6932, 19353, 1759, 4352, '1.0000', '34.0000', '34.0000', '50.0000', '50.0000', '98.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20183, '2022-10-29', 5982, 19354, 1763, 4106, '5.0000', '9.4113', '9.4113', '11.1000', '11.1000', '258.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20184, '2022-10-29', 5898, 19355, 1763, 2350, '1.0000', '13.2000', '13.2000', '20.2000', '20.2000', '100.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20185, '2022-10-29', 5535, 19356, 1763, 2277, '5.0000', '3.9100', '3.9100', '3.9100', '3.9100', '743.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20186, '2022-10-29', 6435, 19357, 1763, 3833, '3.0000', '8.1000', '8.1000', '9.0000', '9.0000', '54.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20187, '2022-10-29', 5640, 19358, 1763, 3897, '2.0000', '11.1000', '11.1000', '18.9000', '18.9000', '354.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20188, '2022-10-29', 6220, 19359, 1763, 4360, '5.0000', '5.3412', '5.3412', '6.0000', '6.0000', '312.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20189, '2022-10-29', 5657, 19360, 1763, 4354, '5.0000', '5.0048', '5.0048', '6.3000', '6.3000', '363.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20190, '2022-10-29', 6218, 19361, 1764, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '158.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20191, '2022-10-29', 5947, 19362, 1764, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '171.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20266, '2022-10-29', 5418, 19435, 1765, 4387, '5.0000', '6.0344', '6.0344', '6.7600', '6.7600', '446.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20267, '2022-10-29', 6205, 19436, 1765, 3026, '1.0000', '38.5000', '38.5000', '55.0000', '55.0000', '25.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20268, '2022-10-29', 5991, 19437, 1765, 4084, '1.0000', '42.0960', '42.0960', '43.0000', '43.0000', '61.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20269, '2022-10-29', 6543, 19438, 1765, 2062, '1.0000', '11.2000', '11.2000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20270, '2022-10-29', 6543, 19438, 1765, 1347, '1.0000', '11.2000', '11.2000', '17.0000', '17.0000', '59.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20271, '2022-10-29', 5948, 19439, 1765, 2075, '5.0000', '6.0000', '6.0000', '10.3000', '10.3000', '92.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20272, '2022-10-29', 6082, 19440, 1765, 3032, '4.0000', '6.9000', '6.9000', '6.9000', '6.9000', '116.0000', 1, 0, NULL, 45, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20273, '2022-10-29', 6609, 19441, 1765, 3773, '2.0000', '11.6821', '11.6821', '16.3000', '16.3000', '93.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20274, '2022-10-29', 5792, 19442, 1765, 4190, '1.0000', '34.1634', '34.1634', '50.4000', '50.4000', '74.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20275, '2022-10-29', 6744, 19443, 1765, 4216, '2.0000', '10.2184', '10.2184', '14.8000', '14.8000', '11.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20276, '2022-10-29', 6286, 19444, 1765, 4222, '3.0000', '10.6033', '10.6033', '13.9800', '13.9800', '43.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20277, '2022-10-29', 6666, 19445, 1766, 2259, '1.0000', '50.0000', '50.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20298, '2022-10-29', 6074, 19466, 1767, 2303, '20.0000', '8.5000', '8.5000', '8.5000', '8.5000', '82.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20299, '2022-10-29', 6280, 19467, 1767, 1469, '4.0000', '40.0000', '40.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20300, '2022-10-29', 5947, 19468, 1768, 3905, '3.0000', '13.2092', '13.2092', '13.8000', '13.8000', '168.0000', 1, 0, NULL, 92, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20301, '2022-10-29', 6074, 19469, 1769, 2303, '2.0000', '8.5000', '8.5000', '8.5000', '8.5000', '80.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20302, '2022-10-29', 6218, 19470, 1770, 4356, '1.0000', '15.3740', '15.3740', '17.8000', '17.8000', '157.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20303, '2022-10-29', 6938, 19471, 1771, 4367, '1.0000', '15.0000', '15.0000', '16.5000', '16.5000', '16.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20304, '2022-10-29', 6337, 19472, 1771, 4256, '2.0000', '49.5359', '49.5359', '74.0000', '74.0000', '52.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20305, '2022-10-29', 6944, 19473, 1772, 4411, '1.0000', '14.9000', '14.9000', '16.6000', '16.6000', '22.0000', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20306, '2022-10-29', 6232, 19474, 1772, 4320, '1.0000', '7.6225', '7.6225', '9.9000', '9.9000', '28.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (20307, '2022-10-29', 5947, 19475, 1773, 3905, '1.0000', '13.2092', '13.2092', '13.8000', '13.8000', '167.0000', 1, 0, NULL, 92, NULL);


#
# TABLE STRUCTURE FOR: sma_currencies
#

DROP TABLE IF EXISTS `sma_currencies`;

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

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (1, 'GHC', 'Ghanaian 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM 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=MyISAM AUTO_INCREMENT=9 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');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (6, '001', 'test');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (7, 'delivery', 'For Delivery staff to be able to check only prices of medicines and available stock');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (8, 'sales-attendants', 'To be able to use POS for customer sales only.');


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

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

INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1, 'Purchase is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4\",\"reference_no\":\"PO2022\\/08\\/0004\",\"date\":\"2022-08-13 11:24:00\",\"supplier_id\":\"2\",\"supplier\":\"Default Supplier\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"1815.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"815\",\"order_discount\":\"815.0000\",\"total_discount\":\"815.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"paid\":\"500.0000\",\"status\":\"received\",\"payment_status\":\"partial\",\"created_by\":\"2\",\"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\":\"4\",\"transfer_id\":null,\"product_id\":\"2572\",\"product_code\":\"3425\",\"product_name\":\"SOFTCARE DIAPER\",\"option_id\":null,\"net_unit_cost\":\"3.6300\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1815.0000\",\"quantity_balance\":\"350.0000\",\"date\":\"2022-08-13\",\"status\":\"received\",\"unit_cost\":\"3.6300\",\"real_unit_cost\":\"3.6300\",\"quantity_received\":\"500.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"500.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.6300\"}]}', '2022-09-08 11:35:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-08-27 19:58:25\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0027\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46.5600\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"46.5600\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"46.5600\",\"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\":\"41b70b21bd4bc7879f1e43774537bd1802b31e1186be274cfa768e47884bf0a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"87\",\"sale_id\":\"34\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"88\",\"sale_id\":\"34\",\"product_id\":\"2179\",\"product_code\":\"1340\",\"product_name\":\"Actifed 60mg Tablets 12s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.5600\",\"unit_price\":\"8.5600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.5600\",\"serial_no\":\"\",\"real_unit_price\":\"8.5600\",\"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\":\"ACTIFED.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-08-27 19:41:06\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"98.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"98.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"98.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\":\"f5121f66707e30d0d35155d56b975d59677af8dc64cbfb2aef6977083db9d6b7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"81\",\"sale_id\":\"33\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"82\",\"sale_id\":\"33\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"83\",\"sale_id\":\"33\",\"product_id\":\"3039\",\"product_code\":\"8160\",\"product_name\":\"AIRHEAD BITES FRUIT 24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"11.9000\",\"unit_price\":\"11.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.9000\",\"serial_no\":\"\",\"real_unit_price\":\"11.9000\",\"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\":\"airhead-bites-fruit-24ct.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"84\",\"sale_id\":\"33\",\"product_id\":\"1647\",\"product_code\":\"465\",\"product_name\":\"Allopurinol 300mg Tabs 28\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"allopurinol.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"85\",\"sale_id\":\"33\",\"product_id\":\"1941\",\"product_code\":\"947\",\"product_name\":\"Alpha Garlic Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"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\":\"alpha.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"86\",\"sale_id\":\"33\",\"product_id\":\"2216\",\"product_code\":\"1511\",\"product_name\":\"Amlodipine 5mg Tablets 28s Teva\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"33.6000\",\"unit_price\":\"33.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.6000\",\"serial_no\":\"\",\"real_unit_price\":\"33.6000\",\"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\":\"amlo-5.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-08-27 19:30:05\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0025\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11.6000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11.6000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"11.6000\",\"return_id\":\"32\",\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":\"SR2022\\/08\\/0001\",\"sale_id\":null,\"return_sale_total\":\"-5.9000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"90f3762e3af9453dc95b702aef4c958acfe9370b0106a618c7d02d920cb3d366\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"78\",\"sale_id\":\"31\",\"product_id\":\"1872\",\"product_code\":\"837\",\"product_name\":\"3TOL Lime 250ml Anticeptic & Disinfectant\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"real_unit_price\":\"5.7000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"79\",\"sale_id\":\"31\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"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\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (5, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":false,\"items\":null}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (6, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-08-27 19:23:00\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0024\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"115.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"115.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2022-08-27 19:28:12\",\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"192.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"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\":\"e7b759f6ea551eb5dbc58593c2c308bc4a3550854cd91c6bd4ec621e49e80ddf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"77\",\"sale_id\":\"30\",\"product_id\":\"1814\",\"product_code\":\"743\",\"product_name\":\"2B Benzyl Benzoate 25% Lotion 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"115.5000\",\"serial_no\":\"\",\"real_unit_price\":\"38.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (7, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-08-27 19:16:38\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"137.6000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"137.6000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"137.6000\",\"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\":\"ffda5c98d4837b5dde213edb3f1d7c4811e270ee4e9b53e4c6c6dfc5604f1137\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"72\",\"sale_id\":\"28\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"114.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"73\",\"sale_id\":\"28\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"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\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"74\",\"sale_id\":\"28\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (8, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-08-27 09:31:51\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"918b6e078696c5d620352ed7fb289c25bb6e5064f31a29fd8929c6c935c5b698\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"71\",\"sale_id\":\"27\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (9, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-08-27 09:30:40\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0021\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13.8000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13.8000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"13.8000\",\"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\":\"b4f02ea1ec8fc589c6608af80fae9b061e203d403f690e3a4a2d3bf9cdde50dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"69\",\"sale_id\":\"26\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"70\",\"sale_id\":\"26\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (10, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-08-27 09:29:27\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10.8000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10.8000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"10.8000\",\"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\":\"7a39c9e527897a7d0c4baa9a8f15df82f0d9a9cd2c7f3e295680b40c37598e08\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"67\",\"sale_id\":\"25\",\"product_id\":\"1873\",\"product_code\":\"839\",\"product_name\":\"3TOL 500ML Lime Fresh Anticeptic\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.9000\",\"serial_no\":\"\",\"real_unit_price\":\"4.9000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"68\",\"sale_id\":\"25\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"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\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (11, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-08-27 09:26:14\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0019\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"71.8800\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"71.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"71.8800\",\"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\":\"ba6d3766e3bb16fe0cae0e20b6ab3f97dca887bb24de7c0ec5a40f1d5b8cfcca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"64\",\"sale_id\":\"24\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"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\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"65\",\"sale_id\":\"24\",\"product_id\":\"1858\",\"product_code\":\"816\",\"product_name\":\"Abyvita Syrup 200ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"27.9800\",\"unit_price\":\"27.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.9800\",\"serial_no\":\"\",\"real_unit_price\":\"27.9800\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"66\",\"sale_id\":\"24\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (12, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-08-27 09:22:24\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0018\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5.9000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5.9000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"5.9000\",\"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\":\"8fd5cf09e3fddf184bc9445814fb65a07842f2036b8cd8007f42dae2378fe212\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"63\",\"sale_id\":\"23\",\"product_id\":\"2048\",\"product_code\":\"1122\",\"product_name\":\"Aciclovir 400mg Tablets 56\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"real_unit_price\":\"5.9000\",\"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\":\"aciclovir-400mg.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (13, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-08-27 09:16:58\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0017\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34.4000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34.4000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"34.4000\",\"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\":\"8d6464775885372bd39192165110391398e76120f2d38b18438c2e4e9fa59456\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"60\",\"sale_id\":\"22\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"61\",\"sale_id\":\"22\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"62\",\"sale_id\":\"22\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (14, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-08-27 08:57:53\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0016\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"60.8000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"60.8000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"60.8000\",\"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\":\"27fe542acbea83626acfd0d8714359b1578334ece054e4351229ce56ba470508\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"57\",\"sale_id\":\"21\",\"product_id\":\"3030\",\"product_code\":\"7988\",\"product_name\":\"Addyzoa Capsules 20\\u2019s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"58\",\"sale_id\":\"21\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"59\",\"sale_id\":\"21\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (15, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-08-27 08:50:13\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0015\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"20.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\":\"b61bc17e51841d036a96279ebde90f123f3f353545a6fc45e4232bfc679e9a59\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"56\",\"sale_id\":\"20\",\"product_id\":\"3031\",\"product_code\":\"7990\",\"product_name\":\"ACNE CLEAR\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (16, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"18\",\"date\":\"2022-08-27 05:47:28\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0014\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"69e9cd2f99d78286f2239bc548134b682a236a0244c44c43df6090b01f89b34c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"53\",\"sale_id\":\"18\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (17, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"17\",\"date\":\"2022-08-27 05:44:25\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0013\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"173.5200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"173.5200\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"1\",\"paid\":\"173.5200\",\"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\":\"49886534a4879c80425f4da48be9860406f42570760ddcafdf1a87e847b6e0c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"42\",\"sale_id\":\"17\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"43\",\"sale_id\":\"17\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"44\",\"sale_id\":\"17\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"45\",\"sale_id\":\"17\",\"product_id\":\"2179\",\"product_code\":\"1340\",\"product_name\":\"Actifed 60mg Tablets 12s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.5600\",\"unit_price\":\"8.5600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.5600\",\"serial_no\":\"\",\"real_unit_price\":\"8.5600\",\"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\":\"ACTIFED.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"46\",\"sale_id\":\"17\",\"product_id\":\"1691\",\"product_code\":\"535\",\"product_name\":\"Acyclovir Denk 200mg tabs 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"acyclovir-denk.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"47\",\"sale_id\":\"17\",\"product_id\":\"1873\",\"product_code\":\"839\",\"product_name\":\"3TOL 500ML Lime Fresh Anticeptic\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.9000\",\"serial_no\":\"\",\"real_unit_price\":\"4.9000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"48\",\"sale_id\":\"17\",\"product_id\":\"1858\",\"product_code\":\"816\",\"product_name\":\"Abyvita Syrup 200ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"27.9800\",\"unit_price\":\"27.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.9800\",\"serial_no\":\"\",\"real_unit_price\":\"27.9800\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"49\",\"sale_id\":\"17\",\"product_id\":\"1814\",\"product_code\":\"743\",\"product_name\":\"2B Benzyl Benzoate 25% Lotion 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"50\",\"sale_id\":\"17\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"51\",\"sale_id\":\"17\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"52\",\"sale_id\":\"17\",\"product_id\":\"1858\",\"product_code\":\"816\",\"product_name\":\"Abyvita Syrup 200ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"27.9800\",\"unit_price\":\"27.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.9800\",\"serial_no\":\"\",\"real_unit_price\":\"27.9800\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (18, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"16\",\"date\":\"2022-08-27 05:39:38\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0012\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"217.2000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"217.2000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"1\",\"paid\":\"217.2000\",\"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\":\"92f6a38e63a4ce0029767f1190324856f699d2577b4faf8731dbae9b289470db\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"31\",\"sale_id\":\"16\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"32\",\"sale_id\":\"16\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"33\",\"sale_id\":\"16\",\"product_id\":\"3030\",\"product_code\":\"7988\",\"product_name\":\"Addyzoa Capsules 20\\u2019s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"34\",\"sale_id\":\"16\",\"product_id\":\"3035\",\"product_code\":\"8001\",\"product_name\":\"ABC *ZINC SRP\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"real_unit_price\":\"26.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"35\",\"sale_id\":\"16\",\"product_id\":\"3033\",\"product_code\":\"7994\",\"product_name\":\"Aboniki\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"36\",\"sale_id\":\"16\",\"product_id\":\"3036\",\"product_code\":\"8043\",\"product_name\":\"3CP\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.5000\",\"serial_no\":\"\",\"real_unit_price\":\"11.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"37\",\"sale_id\":\"16\",\"product_id\":\"1753\",\"product_code\":\"643\",\"product_name\":\"Abyvita Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"49.6000\",\"unit_price\":\"49.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.6000\",\"serial_no\":\"\",\"real_unit_price\":\"49.6000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"38\",\"sale_id\":\"16\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"39\",\"sale_id\":\"16\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"40\",\"sale_id\":\"16\",\"product_id\":\"3033\",\"product_code\":\"7994\",\"product_name\":\"Aboniki\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"41\",\"sale_id\":\"16\",\"product_id\":\"3030\",\"product_code\":\"7988\",\"product_name\":\"Addyzoa Capsules 20\\u2019s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (19, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"15\",\"date\":\"2022-08-27 05:37:10\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"130.8200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"130.8200\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"1\",\"paid\":\"130.8200\",\"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\":\"13d84fe255e2fc414824803466ecf4e8da168c3e30eedf598eebbb5019360b2a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"19\",\"sale_id\":\"15\",\"product_id\":\"2179\",\"product_code\":\"1340\",\"product_name\":\"Actifed 60mg Tablets 12s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.5600\",\"unit_price\":\"8.5600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.5600\",\"serial_no\":\"\",\"real_unit_price\":\"8.5600\",\"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\":\"ACTIFED.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"20\",\"sale_id\":\"15\",\"product_id\":\"2179\",\"product_code\":\"1340\",\"product_name\":\"Actifed 60mg Tablets 12s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.5600\",\"unit_price\":\"8.5600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.5600\",\"serial_no\":\"\",\"real_unit_price\":\"8.5600\",\"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\":\"ACTIFED.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"21\",\"sale_id\":\"15\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"22\",\"sale_id\":\"15\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"23\",\"sale_id\":\"15\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"24\",\"sale_id\":\"15\",\"product_id\":\"2047\",\"product_code\":\"1120\",\"product_name\":\"Aciclovir 200mg Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.8000\",\"serial_no\":\"\",\"real_unit_price\":\"6.8000\",\"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\":\"download-97.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"25\",\"sale_id\":\"15\",\"product_id\":\"1873\",\"product_code\":\"839\",\"product_name\":\"3TOL 500ML Lime Fresh Anticeptic\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.9000\",\"serial_no\":\"\",\"real_unit_price\":\"4.9000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"26\",\"sale_id\":\"15\",\"product_id\":\"1872\",\"product_code\":\"837\",\"product_name\":\"3TOL Lime 250ml Anticeptic & Disinfectant\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"real_unit_price\":\"5.7000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"27\",\"sale_id\":\"15\",\"product_id\":\"3035\",\"product_code\":\"8001\",\"product_name\":\"ABC *ZINC SRP\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"real_unit_price\":\"26.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"28\",\"sale_id\":\"15\",\"product_id\":\"3033\",\"product_code\":\"7994\",\"product_name\":\"Aboniki\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"29\",\"sale_id\":\"15\",\"product_id\":\"3036\",\"product_code\":\"8043\",\"product_name\":\"3CP\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.5000\",\"serial_no\":\"\",\"real_unit_price\":\"11.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"30\",\"sale_id\":\"15\",\"product_id\":\"1871\",\"product_code\":\"833\",\"product_name\":\"3TOL 250ml Anticeptic & Disinfectant\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.9000\",\"serial_no\":\"\",\"real_unit_price\":\"7.9000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (20, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"14\",\"date\":\"2022-08-27 05:24:44\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0010\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19.4000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19.4000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"19.4000\",\"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\":\"843a9374bb5446bb4173242cda777c44c7531c8ed2c14b26b36e95973f865e4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"17\",\"sale_id\":\"14\",\"product_id\":\"3036\",\"product_code\":\"8043\",\"product_name\":\"3CP\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.5000\",\"serial_no\":\"\",\"real_unit_price\":\"11.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18\",\"sale_id\":\"14\",\"product_id\":\"1871\",\"product_code\":\"833\",\"product_name\":\"3TOL 250ml Anticeptic & Disinfectant\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.9000\",\"serial_no\":\"\",\"real_unit_price\":\"7.9000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (21, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"13\",\"date\":\"2022-08-18 12:22:32\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0009\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46.5600\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"46.5600\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"46.5600\",\"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\":\"58649e201106707f1ee4837d5c3d376ea9e52f5701a1afb2389903c91f73af1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"15\",\"sale_id\":\"13\",\"product_id\":\"2179\",\"product_code\":\"1340\",\"product_name\":\"Actifed 60mg Tablets 12s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.5600\",\"unit_price\":\"8.5600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.5600\",\"serial_no\":\"\",\"real_unit_price\":\"8.5600\",\"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\":\"ACTIFED.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"16\",\"sale_id\":\"13\",\"product_id\":\"1670\",\"product_code\":\"502\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"actifed-multi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (22, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"12\",\"date\":\"2022-08-16 11:54:35\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0008\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"52.3000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"52.3000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"52.3000\",\"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\":\"fd47058c74d2d9236b1769dd2ea25400aeedcec0915d01f45a98b01f57a43d48\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"13\",\"sale_id\":\"12\",\"product_id\":\"3032\",\"product_code\":\"7992\",\"product_name\":\"Acidom 20mg Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"real_unit_price\":\"13.8000\",\"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\":\"download-60.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"14\",\"sale_id\":\"12\",\"product_id\":\"1814\",\"product_code\":\"743\",\"product_name\":\"2B Benzyl Benzoate 25% Lotion 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"real_unit_price\":\"38.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\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (23, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"11\",\"date\":\"2022-08-14 14:44:54\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"31cf2db8ce4784d3c0d90c17305f9f2573d48badf5c29b478a537dfae02fa8a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"12\",\"sale_id\":\"11\",\"product_id\":\"1691\",\"product_code\":\"535\",\"product_name\":\"Acyclovir Denk 200mg tabs 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"acyclovir-denk.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (24, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"9\",\"date\":\"2022-08-13 12:55:03\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"ea01ad3e58932c40c672b9118c92fe44ba0334f2ce35680e40d6c0c6189dbc7d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"10\",\"sale_id\":\"9\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (25, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"8\",\"date\":\"2022-08-13 12:22:28\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"7409ab22949c31de6450590a2abcd035cb49e970c65c967884a0320965ccf94d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9\",\"sale_id\":\"8\",\"product_id\":\"1647\",\"product_code\":\"465\",\"product_name\":\"Allopurinol 300mg Tabs 28\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"allopurinol.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (26, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"7\",\"date\":\"2022-08-13 12:20:27\",\"reference_no\":\"SALE\\/POS2022\\/08\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"28ae176f62d5f11dda40c5183ba372a17ba083b4c196bf169fb4366195e594e2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8\",\"sale_id\":\"7\",\"product_id\":\"2117\",\"product_code\":\"1241\",\"product_name\":\"Adom Koo Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"adom-koo-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:36:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (27, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"35\",\"date\":\"2022-09-07 11:29:00\",\"reference_no\":\"00023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"670.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"670.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"370.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0d4a3f551ef15de0afad4258b1a3d911860ff25cde1c22c8082b5fc6c9e0ad31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"89\",\"sale_id\":\"35\",\"product_id\":\"1699\",\"product_code\":\"551\",\"product_name\":\"Clodol 100mg Suppository (Diclofenac 2X5)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.7000\",\"unit_price\":\"6.7000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"670.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6.7000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"100.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (28, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-08-27 19:17:00\",\"reference_no\":\"SALE2022\\/08\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"61af38d84286a8ffb0adbc8d43f028ddddc5b5a5494f4116354ffa5f78aa16d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"75\",\"sale_id\":\"29\",\"product_id\":\"1625\",\"product_code\":\"268\",\"product_name\":\"Cardiofin Tab 20mg 100_ (Nifedipine)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"30.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"CARDIO.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (29, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"19\",\"date\":\"2022-08-27 05:57:00\",\"reference_no\":\"SALE2022\\/08\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"10.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9f1ac60c56f02f2cdaddf5a4638bf3c02c0fe0415c0813ef6217bca899d5a76e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"54\",\"sale_id\":\"19\",\"product_id\":\"1634\",\"product_code\":\"436\",\"product_name\":\"Zipferon Forte\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"ZIPER.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"55\",\"sale_id\":\"19\",\"product_id\":\"1629\",\"product_code\":\"273\",\"product_name\":\"Metronidazole 200mg Tablets 10X10 Letap\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (30, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"10\",\"date\":\"2022-08-14 08:26:00\",\"reference_no\":\"SALE2022\\/08\\/0003\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":null,\"total\":\"-181.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"-181.5000\",\"sale_status\":\"returned\",\"payment_status\":\"paid\",\"payment_term\":null,\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":null,\"pos\":\"0\",\"paid\":\"-181.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR2022\\/08\\/0001\",\"sale_id\":\"6\",\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":null,\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (31, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"6\",\"date\":\"2022-08-13 11:50:00\",\"reference_no\":\"SALE2022\\/08\\/0003\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"181.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"181.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2022-08-13 11:58:46\",\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"181.5000\",\"return_id\":\"10\",\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR2022\\/08\\/0001\",\"sale_id\":null,\"return_sale_total\":\"-181.5000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"04ccbca7373f1343eeb4843abf8867af415b6a6778333ec8165683bdb33aa410\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7\",\"sale_id\":\"6\",\"product_id\":\"2572\",\"product_code\":\"3425\",\"product_name\":\"SOFTCARE DIAPER\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.6300\",\"unit_price\":\"3.6300\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"181.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.6300\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (32, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5\",\"date\":\"2022-08-13 11:50:00\",\"reference_no\":\"SALE2022\\/08\\/0002\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"181.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"181.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9f7813efc4bf3b41ebd8cd2383403cbe1a95a7590af6d4f2741da36b4a23e268\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5\",\"sale_id\":\"5\",\"product_id\":\"2572\",\"product_code\":\"3425\",\"product_name\":\"SOFTCARE DIAPER\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.6300\",\"unit_price\":\"3.6300\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"181.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.6300\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (33, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4\",\"date\":\"2022-08-13 11:48:00\",\"reference_no\":\"SALE2022\\/08\\/0001\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"181.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"181.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"073d2509524a950d96768b2b7cfb6b6791302a0fe1325eb1a1512073a474f070\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4\",\"sale_id\":\"4\",\"product_id\":\"2572\",\"product_code\":\"3425\",\"product_name\":\"SOFTCARE DIAPER\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.6300\",\"unit_price\":\"3.6300\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"181.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.6300\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 11:37:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (34, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1976\",\"code\":\"1000\",\"name\":\"Clomid 50mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (35, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1977\",\"code\":\"1001\",\"name\":\"Canesten 20mg Cream\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (36, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1978\",\"code\":\"1002\",\"name\":\"Calcough 125ml Syrup\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"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\":\"1002\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (37, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1979\",\"code\":\"1004\",\"name\":\"Vigomax Forte Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"vIGOMAX-FORTE-TABLETS-.jpg\",\"category_id\":\"1598\",\"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\":\"1004\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (38, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1980\",\"code\":\"1005\",\"name\":\"Azithromycin 500mg Tablets 3&apos;s\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"16.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1005\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (39, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1981\",\"code\":\"1006\",\"name\":\"Valupack Vitamin C Eff. 1000mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1006\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (40, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1982\",\"code\":\"1008\",\"name\":\"Benylin Infant 125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1008\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (41, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1983\",\"code\":\"1011\",\"name\":\"Mist Sennaco Mal-Titi\",\"unit\":\"1\",\"cost\":\"20.7400\",\"price\":\"20.7400\",\"alert_quantity\":\"50.0000\",\"image\":\"mist-cenaco.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1011\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (42, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1984\",\"code\":\"1015\",\"name\":\"Mist FAC (Ferric citrate) 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1015\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (43, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1985\",\"code\":\"1016\",\"name\":\"Mist Expect Sed Mal-Titi\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"mist-expect-sed.jpg\",\"category_id\":\"1598\",\"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\":\"1016\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (44, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1986\",\"code\":\"1018\",\"name\":\"Hydrogen Peroxide Mal-Titi\",\"unit\":\"1\",\"cost\":\"63.2200\",\"price\":\"63.2200\",\"alert_quantity\":\"50.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1018\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (45, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1987\",\"code\":\"1022\",\"name\":\"Mist Pot Cit (Potassium Citrate) Mal-Titi\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1022\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (46, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1988\",\"code\":\"1023\",\"name\":\"Tobcee Forte\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"tobcee-forte.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1023\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (47, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1989\",\"code\":\"1025\",\"name\":\"Calamine Lotion 100ml Mal-Titi\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1025\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (48, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1990\",\"code\":\"1030\",\"name\":\"Infa V Ointment\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1030\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (49, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1991\",\"code\":\"1032\",\"name\":\"Infa V Pessaries\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1032\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (50, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1992\",\"code\":\"1033\",\"name\":\"Naklofen Duo Capsules 75mg 20&apos;s\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1033\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (51, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1993\",\"code\":\"1034\",\"name\":\"Gastrone Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1034\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (52, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1994\",\"code\":\"1037\",\"name\":\"Paracetamol 500mg Tablets 100&apos;s EXE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"para-exeter.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1037\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (53, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1995\",\"code\":\"1039\",\"name\":\"C-Pheniramine Syrup 100ml (Piriton)\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1039\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (54, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1996\",\"code\":\"1040\",\"name\":\"Primolut N 5mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"primo.jpeg\",\"category_id\":\"1598\",\"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\":\"1040\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (55, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1997\",\"code\":\"1041\",\"name\":\"Cyclogest 200mg Pessaries 15&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cyclogest.jpeg\",\"category_id\":\"1598\",\"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\":\"1041\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (56, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1998\",\"code\":\"1042\",\"name\":\"Voltfast Powder 50mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-1.jpeg\",\"category_id\":\"1598\",\"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\":\"1042\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (57, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1999\",\"code\":\"1043\",\"name\":\"Diagellates Elixir 500ml\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1043\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (58, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2000\",\"code\":\"1044\",\"name\":\"Diagellates Elixir 250ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1044\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (59, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2001\",\"code\":\"1046\",\"name\":\"Diagellates Elixir 125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1046\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (60, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2002\",\"code\":\"1048\",\"name\":\"Sibi Men Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-36.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1048\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (61, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2003\",\"code\":\"1049\",\"name\":\"Dermiron Plus\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"dermiron-plus.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1049\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (62, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2004\",\"code\":\"1050\",\"name\":\"Vermox Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-66.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1050\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (63, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2005\",\"code\":\"1051\",\"name\":\"Stugeron Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"stugeron.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1051\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (64, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2006\",\"code\":\"1054\",\"name\":\"Orelox 200mg Tablets\",\"unit\":\"1\",\"cost\":\"63.0000\",\"price\":\"63.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-42.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1054\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (65, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2007\",\"code\":\"1055\",\"name\":\"No-Spa 40mg 100&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-43.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1055\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (66, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2008\",\"code\":\"1058\",\"name\":\"Exforge HCT 10\\/160\\/12. 5mg 28&apos;s\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-44.jpeg\",\"category_id\":\"1598\",\"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\":\"1058\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"1\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (67, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2009\",\"code\":\"1059\",\"name\":\"Diamicron 60mg MR Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-45-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1059\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (68, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2010\",\"code\":\"1060\",\"name\":\"Cororange Syrup 200ml\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"11.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-46.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1060\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (69, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2011\",\"code\":\"1063\",\"name\":\"Cataflam 50mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"149.2800\",\"price\":\"149.2800\",\"alert_quantity\":\"50.0000\",\"image\":\"download-47-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1063\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (70, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2012\",\"code\":\"1065\",\"name\":\"Imodium Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"images.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1065\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (71, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2013\",\"code\":\"1066\",\"name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"unit\":\"1\",\"cost\":\"30.2000\",\"price\":\"30.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"GENDS.jpg\",\"category_id\":\"1598\",\"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\":\"1066\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"1\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (72, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2014\",\"code\":\"1068\",\"name\":\"Coldiron Syrup 125ml\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"47.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1068\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (73, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2015\",\"code\":\"1071\",\"name\":\"Cotton wool 50g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1071\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (74, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2016\",\"code\":\"1072\",\"name\":\"Virest Cream (Aciclovir) 5mg\",\"unit\":\"1\",\"cost\":\"30.2000\",\"price\":\"30.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-52.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1072\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (75, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2017\",\"code\":\"1074\",\"name\":\"Diabetmin (Metformin 500mg) 100&apos;s\",\"unit\":\"1\",\"cost\":\"3.4600\",\"price\":\"3.4600\",\"alert_quantity\":\"50.0000\",\"image\":\"download-53.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1074\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (76, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2018\",\"code\":\"1076\",\"name\":\"Ladinas 2X10\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-54.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1076\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (77, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2019\",\"code\":\"1077\",\"name\":\"Onidoll Tablets\",\"unit\":\"1\",\"cost\":\"19.3400\",\"price\":\"19.3400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1077\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (78, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2020\",\"code\":\"1078\",\"name\":\"Onita Syrup 200ml\",\"unit\":\"1\",\"cost\":\"20.1300\",\"price\":\"20.1300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1078\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (79, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2021\",\"code\":\"1081\",\"name\":\"Fericon 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1081\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (80, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2022\",\"code\":\"1082\",\"name\":\"Azilex Suspension 15ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-70.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1082\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (81, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2023\",\"code\":\"1083\",\"name\":\"Koffex Junior Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"koffex-adt-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1083\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (82, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2024\",\"code\":\"1084\",\"name\":\"Zinc Oxide Ointment 40g\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-79.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1084\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (83, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2025\",\"code\":\"1087\",\"name\":\"Durol Tonic? Junior 200ml\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1087\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (84, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2026\",\"code\":\"1088\",\"name\":\"Diphex Junior Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"diphex-100.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1088\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (85, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2027\",\"code\":\"1090\",\"name\":\"Diazepam 10mg Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1090\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (86, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2028\",\"code\":\"1091\",\"name\":\"Martins liver salt Plain\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-55.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1091\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (87, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2029\",\"code\":\"1092\",\"name\":\"Menthox Lozenges\",\"unit\":\"1\",\"cost\":\"16.6000\",\"price\":\"16.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-81.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1092\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (88, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2030\",\"code\":\"1093\",\"name\":\"Menthox Child Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"15.1000\",\"price\":\"15.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-83.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1093\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (89, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2031\",\"code\":\"1094\",\"name\":\"Cetrizan 10mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"39.7500\",\"price\":\"39.7500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1094\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (90, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2032\",\"code\":\"1097\",\"name\":\"No. 10 Liver Salt (All Flavors)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1097\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (91, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2033\",\"code\":\"1098\",\"name\":\"Stopkof Dry Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1098\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (92, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2034\",\"code\":\"1099\",\"name\":\"Nestrim 100ml Syrup\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"nestrim-sy.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1099\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (93, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2035\",\"code\":\"1102\",\"name\":\"Infa V Wash 50ml\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"17.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1102\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (94, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2036\",\"code\":\"1103\",\"name\":\"Losartan Potassium 100mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1103\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (95, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2037\",\"code\":\"1104\",\"name\":\"Kidivite Multivitamin 25ml Drops\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1104\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (96, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2038\",\"code\":\"1105\",\"name\":\"Infa V Wash 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1105\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (97, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2039\",\"code\":\"1108\",\"name\":\"Exclofen (Diclofenac) Eye drops 1% 10ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1108\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (98, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2040\",\"code\":\"1109\",\"name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1109\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (99, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2041\",\"code\":\"1111\",\"name\":\"E-Panol 100ml Syrup Plain\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"e-panol-plain.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (100, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2042\",\"code\":\"1112\",\"name\":\"Ctrizan 10mg Tablets\",\"unit\":\"1\",\"cost\":\"23.7800\",\"price\":\"23.7800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1112\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (101, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2043\",\"code\":\"1115\",\"name\":\"Celecoxib 200mg Capsules Exeter\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"images-4.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1115\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (102, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2044\",\"code\":\"1116\",\"name\":\"Benylin 4 Flu 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"benyli.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1116\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (103, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2045\",\"code\":\"1118\",\"name\":\"Benylin 4 Flu 100ml Syrup\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (104, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2046\",\"code\":\"1119\",\"name\":\"Azomax 200mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (105, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2047\",\"code\":\"1120\",\"name\":\"Aciclovir 200mg Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-97.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1120\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (106, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2048\",\"code\":\"1122\",\"name\":\"Aciclovir 400mg Tablets 56&apos;s\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"aciclovir-400mg.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1122\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (107, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2049\",\"code\":\"1124\",\"name\":\"Metagyl 400mg Tablets\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-92.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1124\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (108, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2050\",\"code\":\"1128\",\"name\":\"Nesben (Albendazole) Tablets 200mg\",\"unit\":\"1\",\"cost\":\"37.5000\",\"price\":\"37.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-95.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1128\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (109, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2051\",\"code\":\"1135\",\"name\":\"Augmentin 457mg\\/5ml Susp. 70ml\",\"unit\":\"1\",\"cost\":\"108.1000\",\"price\":\"108.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-88.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1135\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (110, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2052\",\"code\":\"1136\",\"name\":\"Augmentin 228\\/5ml Susp. 70ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-87.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (111, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2053\",\"code\":\"1141\",\"name\":\"Menthodex 100ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"images-3.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1141\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (112, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2054\",\"code\":\"1142\",\"name\":\"Shaltoux Herbal Cough Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1142\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (113, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2055\",\"code\":\"1143\",\"name\":\"Mycostat 150mg Capsules 1&apos;s\",\"unit\":\"1\",\"cost\":\"37.8000\",\"price\":\"37.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"mycostat.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1143\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (114, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2056\",\"code\":\"1144\",\"name\":\"Luex Baby Cough Syrup 150ml\",\"unit\":\"1\",\"cost\":\"33.9800\",\"price\":\"33.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"luex-baby.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (115, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2057\",\"code\":\"1147\",\"name\":\"Amoxicillin 125mg\\/5ml Susp 100ml Luex\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (116, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2058\",\"code\":\"1148\",\"name\":\"Vaginax-100 Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"vaginax-pess.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1148\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (117, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2059\",\"code\":\"1149\",\"name\":\"Salocold Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"SALOCOLD.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1149\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (118, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2060\",\"code\":\"1150\",\"name\":\"Salocold Syrup\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"SALOCOLD-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (119, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2061\",\"code\":\"1151\",\"name\":\"Gebexime 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"gebexime-500mg.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1151\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (120, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2062\",\"code\":\"1152\",\"name\":\"Cartef 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cartef-tabs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1152\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (121, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2063\",\"code\":\"1153\",\"name\":\"Paingay Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"paingay.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (122, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2064\",\"code\":\"1155\",\"name\":\"Amcof Junior Syrup\",\"unit\":\"1\",\"cost\":\"52.9200\",\"price\":\"52.9200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (123, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2065\",\"code\":\"1156\",\"name\":\"Gebexime Suspension 70ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gebexime.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1156\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (124, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2066\",\"code\":\"1157\",\"name\":\"Amcof Baby Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"AMCOF-BABY.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1157\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (125, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2067\",\"code\":\"1159\",\"name\":\"Child Care Cough & Cold 125ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1159\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (126, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2068\",\"code\":\"1160\",\"name\":\"Flucloxacillin 100ml Suspension Letap\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (127, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2069\",\"code\":\"1161\",\"name\":\"Cafaprin Tablets\",\"unit\":\"1\",\"cost\":\"8.2800\",\"price\":\"8.2800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1161\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (128, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2070\",\"code\":\"1163\",\"name\":\"Dexone 0.5mg\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"3.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"dexone.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (129, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2071\",\"code\":\"1164\",\"name\":\"Flucloxacillin 250mg Tablets Letap\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (130, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2072\",\"code\":\"1167\",\"name\":\"Letavin 500mg (Griseofulvin) Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1167\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (131, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2073\",\"code\":\"1169\",\"name\":\"Letavin (Griseofulvin)125mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1169\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (132, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2074\",\"code\":\"1170\",\"name\":\"Metronidazole 100ml Suspension Letap\",\"unit\":\"1\",\"cost\":\"6.8500\",\"price\":\"6.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1170\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (133, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2075\",\"code\":\"1173\",\"name\":\"Amoxicillin 250mg (Letap)\",\"unit\":\"1\",\"cost\":\"8.7800\",\"price\":\"8.7800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1173\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (134, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2076\",\"code\":\"1174\",\"name\":\"Letamol Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"letamol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1174\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (135, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2077\",\"code\":\"1175\",\"name\":\"Babyvite 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1175\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (136, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2078\",\"code\":\"1176\",\"name\":\"P-trust Pregnancy Test Kit 25&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (137, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2079\",\"code\":\"1177\",\"name\":\"Supirocin Ointment 15g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"supirocin.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1177\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (138, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2080\",\"code\":\"1179\",\"name\":\"Omexet (omeprazole) 20mg Capsules 28&apos;s\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"34.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"omexet.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1179\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (139, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2081\",\"code\":\"1180\",\"name\":\"Viscof S 100ml Syrup\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"20.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"viscof.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (140, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2082\",\"code\":\"1182\",\"name\":\"Lynux Ointment\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"LYNUX.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (141, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2083\",\"code\":\"1185\",\"name\":\"Flotac Capsules 75mg 20&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (142, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2084\",\"code\":\"1192\",\"name\":\"Enacef (cefuroxime) 500mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (143, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2085\",\"code\":\"1194\",\"name\":\"Daktacort Cream 15g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-62.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1194\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (144, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2086\",\"code\":\"1196\",\"name\":\"Bells Vitamin C Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (145, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2087\",\"code\":\"1199\",\"name\":\"Anusol Suppositories 12&apos;s\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (146, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2088\",\"code\":\"1200\",\"name\":\"Basecold Tablets (50_4)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (147, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2089\",\"code\":\"1201\",\"name\":\"Wormbase Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1201\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (148, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2090\",\"code\":\"1203\",\"name\":\"Dipex Capsules\",\"unit\":\"1\",\"cost\":\"20.1600\",\"price\":\"20.1600\",\"alert_quantity\":\"50.0000\",\"image\":\"dipex.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1203\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (149, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2091\",\"code\":\"1204\",\"name\":\"Fenbase Extra\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"fenbase-extra.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1204\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (150, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2092\",\"code\":\"1205\",\"name\":\"Cotton Wool 200g\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1205\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (151, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2093\",\"code\":\"1206\",\"name\":\"Cotton Wool 100g\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (152, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2094\",\"code\":\"1207\",\"name\":\"Dragon Lozenges\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1207\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (153, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2095\",\"code\":\"1209\",\"name\":\"Parafenac\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"PARAFENAC.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (154, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2096\",\"code\":\"1212\",\"name\":\"Ronfit Forte Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ronfit-forte-tabs.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1212\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (155, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2097\",\"code\":\"1214\",\"name\":\"Roxidol\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1214\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (156, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2098\",\"code\":\"1215\",\"name\":\"Ronfit Cold D Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1215\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (157, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2099\",\"code\":\"1216\",\"name\":\"Ronfit Cold P Junior Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1216\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (158, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2100\",\"code\":\"1218\",\"name\":\"Ronfit Cold Forte Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (159, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2101\",\"code\":\"1219\",\"name\":\"Loperon\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1219\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (160, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2102\",\"code\":\"1220\",\"name\":\"Happyrona\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"happy.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1220\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (161, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2103\",\"code\":\"1221\",\"name\":\"Blumoon 50mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1221\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (162, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2104\",\"code\":\"1222\",\"name\":\"Blumoon 100mg\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1222\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (163, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2105\",\"code\":\"1223\",\"name\":\"Perfectil platinum 60&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (164, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2106\",\"code\":\"1226\",\"name\":\"Wellwoman Capsules\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"2.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1226\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (165, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2107\",\"code\":\"1228\",\"name\":\"Wellman 70+ Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (166, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2108\",\"code\":\"1230\",\"name\":\"Wellman 50+ Tablets\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"wellman-50.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1230\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (167, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2109\",\"code\":\"1231\",\"name\":\"Pregnacare Conception Tablets\",\"unit\":\"1\",\"cost\":\"52.4000\",\"price\":\"52.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (168, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2110\",\"code\":\"1232\",\"name\":\"Pregnacare Tablets 19&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1232\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (169, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2111\",\"code\":\"1233\",\"name\":\"Osteocare Tablets UK\",\"unit\":\"1\",\"cost\":\"32.5000\",\"price\":\"32.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"osteo.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1233\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (170, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2112\",\"code\":\"1235\",\"name\":\"Feroglobin Syrup 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"fero-syru.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1235\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (171, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2113\",\"code\":\"1236\",\"name\":\"Gericare Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gericare.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (172, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2114\",\"code\":\"1237\",\"name\":\"Becoatin Tablet 30&apos;s\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"Becoactin-pack-big.gif\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1237\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (173, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2115\",\"code\":\"1238\",\"name\":\"Adom W&G Mixture\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"m-and-g.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1238\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (174, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2116\",\"code\":\"1239\",\"name\":\"Adom Koo Mixture\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-20.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (175, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2117\",\"code\":\"1241\",\"name\":\"Adom Koo Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"adom-koo-cap.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1241\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (176, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2118\",\"code\":\"1242\",\"name\":\"Piroxilex 20mg Capsules 10X10 (Piroxicam)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1242\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (177, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2119\",\"code\":\"1243\",\"name\":\"Orelox 100mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (178, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2120\",\"code\":\"1245\",\"name\":\"Neo Hycolex E\\/E\\/N 5ML Drops\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1245\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (179, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2121\",\"code\":\"1246\",\"name\":\"Gynomycolex 400mg Pessaries 3&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1246\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (180, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2122\",\"code\":\"1248\",\"name\":\"Flagentyl 500mg Tablets 4&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1248\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (181, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2123\",\"code\":\"1249\",\"name\":\"Ciprolex 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"134.9600\",\"price\":\"134.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"download-74.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1249\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (182, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2124\",\"code\":\"1250\",\"name\":\"Xylo Acino 0.1% Nasal Spray\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (183, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2125\",\"code\":\"1251\",\"name\":\"Timol 0.5% Eye Drop\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (184, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2126\",\"code\":\"1252\",\"name\":\"Polygynax Pessaries 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"24.7000\",\"price\":\"24.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"polygnax.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1252\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (185, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2127\",\"code\":\"1255\",\"name\":\"Para-Denk 250mg Suppository 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (186, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2128\",\"code\":\"1257\",\"name\":\"Clotri Denk 100mg Pessary\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (187, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2129\",\"code\":\"1258\",\"name\":\"Nifedi-Denk 20mg 100&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (188, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2130\",\"code\":\"1259\",\"name\":\"Clotri Denk 1% Cream 20g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-49.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (189, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2131\",\"code\":\"1260\",\"name\":\"Thymair Lozenges 20&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (190, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2132\",\"code\":\"1262\",\"name\":\"Para-Denk 125mg Suppository 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (191, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2133\",\"code\":\"1265\",\"name\":\"Tot?hema Box of 20 Bulbs\",\"unit\":\"1\",\"cost\":\"23.1000\",\"price\":\"23.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"tothema.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (192, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2134\",\"code\":\"1267\",\"name\":\"Rhinathiol Adult Cough Syrup 6.25g\\/125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1267\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (193, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2135\",\"code\":\"1269\",\"name\":\"Nifedi-Denk 10mg Tablets 10X10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (194, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2136\",\"code\":\"1271\",\"name\":\"Flucona-Denk 150mg Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (195, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2137\",\"code\":\"1273\",\"name\":\"Malin Junior\",\"unit\":\"1\",\"cost\":\"127.0000\",\"price\":\"127.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (196, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2138\",\"code\":\"1274\",\"name\":\"Jarifan 2\",\"unit\":\"1\",\"cost\":\"21.6500\",\"price\":\"21.6500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1274\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (197, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2139\",\"code\":\"1276\",\"name\":\"Odymin Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (198, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2140\",\"code\":\"1277\",\"name\":\"Odymin Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (199, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2141\",\"code\":\"1281\",\"name\":\"Leena Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (200, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2142\",\"code\":\"1282\",\"name\":\"Pofakoff Baby\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1282\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (201, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2143\",\"code\":\"1284\",\"name\":\"Pofakoff Adult\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1284\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (202, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2144\",\"code\":\"1288\",\"name\":\"Menstak\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (203, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2145\",\"code\":\"1289\",\"name\":\"Lonart Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1289\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (204, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2146\",\"code\":\"1291\",\"name\":\"Lofnac 100mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lof-tab.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (205, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2147\",\"code\":\"1293\",\"name\":\"Klovinal Pessaries\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-2022-04-14T103520.858.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1293\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (206, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2148\",\"code\":\"1295\",\"name\":\"Comit-50\",\"unit\":\"1\",\"cost\":\"9.3500\",\"price\":\"9.3500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1295\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (207, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2149\",\"code\":\"1296\",\"name\":\"BG Glutamin Plus Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (208, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2150\",\"code\":\"1298\",\"name\":\"Nexcofer Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nex-cap.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (209, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2151\",\"code\":\"1300\",\"name\":\"Malar-2 Forte DS Tablets 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"malar-2.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (210, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2152\",\"code\":\"1301\",\"name\":\"Malar-2 Suspension 60ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"malar-2-sus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1301\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (211, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2153\",\"code\":\"1304\",\"name\":\"Amoksiklav 457mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"12.0400\",\"price\":\"12.0400\",\"alert_quantity\":\"50.0000\",\"image\":\"download-61.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (212, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2154\",\"code\":\"1306\",\"name\":\"Cyprodine 200ml Syrup\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1306\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (213, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2155\",\"code\":\"1308\",\"name\":\"Menthodex 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"images-3.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (214, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2156\",\"code\":\"1309\",\"name\":\"Enacef (Cefuroxime)125ml Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (215, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2157\",\"code\":\"1310\",\"name\":\"Fluxacin 100ml Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1310\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (216, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2158\",\"code\":\"1311\",\"name\":\"Metagyl 200mg Tablets 50_10\",\"unit\":\"1\",\"cost\":\"45.2400\",\"price\":\"45.2400\",\"alert_quantity\":\"50.0000\",\"image\":\"metagyl.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (217, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2159\",\"code\":\"1312\",\"name\":\"Fluxacin 500mg Capsules 20X10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (218, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2160\",\"code\":\"1313\",\"name\":\"Fluxamox 500mg Capsules 200&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1313\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (219, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2161\",\"code\":\"1314\",\"name\":\"Tadol 50mg Capsules 20&rsquo;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tadol.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (220, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2162\",\"code\":\"1315\",\"name\":\"Zymax (Azithromycin) Capsules 500mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"zymzx.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1315\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (221, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2163\",\"code\":\"1316\",\"name\":\"Kidivite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (222, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2164\",\"code\":\"1317\",\"name\":\"Auntie Mary Gripewater 150ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"auntie-mary.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1317\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (223, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2165\",\"code\":\"1319\",\"name\":\"Amoksiklav 228mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"amok.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1319\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (224, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2166\",\"code\":\"1320\",\"name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1320\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (225, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2167\",\"code\":\"1321\",\"name\":\"Givers Herbal Mixture\",\"unit\":\"1\",\"cost\":\"74.3000\",\"price\":\"74.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"GIVERS-HERBAL.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1321\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (226, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2168\",\"code\":\"1322\",\"name\":\"Givers Koo Capsules\",\"unit\":\"1\",\"cost\":\"58.4000\",\"price\":\"58.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"GIVERS-KOO.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1322\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (227, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2169\",\"code\":\"1325\",\"name\":\"Hayan Capsules\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"hayan.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1325\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (228, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2170\",\"code\":\"1326\",\"name\":\"Tinatett Bf Bf Capsules\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1326\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (229, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2171\",\"code\":\"1327\",\"name\":\"Tinatett 230 Herbal Capsules\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"230.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1327\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (230, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2172\",\"code\":\"1329\",\"name\":\"Tinatett Tomac Mixture 500ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tomac.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (231, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2173\",\"code\":\"1330\",\"name\":\"Tinatett Malakare 500ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"malakare.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1330\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (232, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2174\",\"code\":\"1331\",\"name\":\"Gana Balm 20g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gana-balm.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1331\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (233, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2175\",\"code\":\"1334\",\"name\":\"Gana Balm 100g\",\"unit\":\"1\",\"cost\":\"10.4800\",\"price\":\"10.4800\",\"alert_quantity\":\"50.0000\",\"image\":\"gana.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1334\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (234, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2176\",\"code\":\"1336\",\"name\":\"Vikil 20\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"vikil.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1336\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (235, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2177\",\"code\":\"1338\",\"name\":\"Ferrovita B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"17.9000\",\"price\":\"17.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"ferrovita-B12-200ML-SYRUP-EASYLIFE.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (236, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2178\",\"code\":\"1339\",\"name\":\"Ciprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"16.6000\",\"price\":\"16.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"cipri.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1339\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (237, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2179\",\"code\":\"1340\",\"name\":\"Actifed 60mg Tablets 12s\",\"unit\":\"1\",\"cost\":\"8.5600\",\"price\":\"8.5600\",\"alert_quantity\":\"50.0000\",\"image\":\"ACTIFED.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1340\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (238, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2180\",\"code\":\"1341\",\"name\":\"Glucophage 500mg Tablets 30s\",\"unit\":\"1\",\"cost\":\"16.1000\",\"price\":\"16.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"GLUCOPHAGE.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (239, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2181\",\"code\":\"1342\",\"name\":\"Sildenafil 50mg Tablets Teva 4s\",\"unit\":\"1\",\"cost\":\"23.7000\",\"price\":\"23.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"silf.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1342\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (240, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2182\",\"code\":\"1343\",\"name\":\"Stopkof Cold & Catarrh Tablets 12s\",\"unit\":\"1\",\"cost\":\"135.6500\",\"price\":\"135.6500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (241, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2183\",\"code\":\"1346\",\"name\":\"Secnidex 1g Tablets 2s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1346\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (242, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2184\",\"code\":\"1347\",\"name\":\"Folic Acid Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"6.9900\",\"price\":\"6.9900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1347\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (243, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2185\",\"code\":\"1348\",\"name\":\"Permoxyl (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1348\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (244, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2186\",\"code\":\"1350\",\"name\":\"Nesben (Albendazole) Suspension 100mg\",\"unit\":\"1\",\"cost\":\"71.5000\",\"price\":\"71.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"nesben.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1350\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (245, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2187\",\"code\":\"1355\",\"name\":\"Neoferon Capsules 30s\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (246, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2188\",\"code\":\"1356\",\"name\":\"Baby Cough Linctus 125ml ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (247, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2189\",\"code\":\"1357\",\"name\":\"Hydrogen Peroxide 200ml ECL\",\"unit\":\"1\",\"cost\":\"3.7800\",\"price\":\"3.7800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1357\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (248, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2190\",\"code\":\"1360\",\"name\":\"Kidivite Child Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"10.7800\",\"price\":\"10.7800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (249, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2191\",\"code\":\"1429\",\"name\":\"Hydrocortisone 1% Cream (Lavina)\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (250, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2192\",\"code\":\"1435\",\"name\":\"Histazine (Cetrizine) Tablets 10mg 100s\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"histazine.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (251, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2193\",\"code\":\"1438\",\"name\":\"Folic Acid Tablets 5mg 28s UK\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1438\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (252, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2194\",\"code\":\"1440\",\"name\":\"Flucloxacillin 500mg Capsules 28s UK\",\"unit\":\"1\",\"cost\":\"12.4500\",\"price\":\"12.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1440\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (253, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2195\",\"code\":\"1442\",\"name\":\"Extraflex Glucosamine Chondroitin Capsules 30s\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"8.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (254, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2196\",\"code\":\"1447\",\"name\":\"Exforge 10\\/160mg Tablets 28s\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1447\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (255, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2197\",\"code\":\"1448\",\"name\":\"Paracetamol Syrup 100ml Exeter\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (256, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2198\",\"code\":\"1453\",\"name\":\"Exetmomol (Timolol) Eye drops 0.5%\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1453\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (257, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2199\",\"code\":\"1455\",\"name\":\"Paracetamol 500mg Tablets 16&rsquo;s uk\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"para-16.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (258, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2200\",\"code\":\"1458\",\"name\":\"Nodium(Loperamide) Capsules 100&rsquo;s\",\"unit\":\"1\",\"cost\":\"21.3000\",\"price\":\"21.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1458\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (259, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2201\",\"code\":\"1467\",\"name\":\"Teething Mixture 100ml ECL\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ECL-TEETHING.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1467\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (260, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2202\",\"code\":\"1469\",\"name\":\"Enafen (Ibuprufen) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (261, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2203\",\"code\":\"1472\",\"name\":\"Nexium 20mg Tablets 14&rsquo;s\",\"unit\":\"1\",\"cost\":\"12.6500\",\"price\":\"12.6500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1472\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (262, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2204\",\"code\":\"1476\",\"name\":\"Neflucon(Fluconazole)150mg Capsule\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"nefluco.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (263, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2205\",\"code\":\"1477\",\"name\":\"Metoclopramide 10mg Tablets 28&rsquo;s uk\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1477\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (264, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2206\",\"code\":\"1480\",\"name\":\"Doxycycline 100mg Capsules 200s ECL\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"DOXY.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (265, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2207\",\"code\":\"1482\",\"name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1482\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (266, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2208\",\"code\":\"1488\",\"name\":\"Multivitamin Tablets 50_10 Ecl\",\"unit\":\"1\",\"cost\":\"13.7000\",\"price\":\"13.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"multivi.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1488\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (267, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2209\",\"code\":\"1493\",\"name\":\"Metronidazole 400mg tabs 21&rsquo;s Exeter\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"metro.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (268, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2210\",\"code\":\"1496\",\"name\":\"Clotrimazole 1% Cream 20g ECL\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (269, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2211\",\"code\":\"1499\",\"name\":\"Cprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"28.1000\",\"price\":\"28.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (270, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2212\",\"code\":\"1501\",\"name\":\"Bendrofluazide 5mg Tablets 28s UK\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1501\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (271, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2213\",\"code\":\"1505\",\"name\":\"B-Complex Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"37.7000\",\"price\":\"37.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (272, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2214\",\"code\":\"1506\",\"name\":\"B-Complex Syrup 100ml (Jacket)\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (273, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2215\",\"code\":\"1508\",\"name\":\"Amoksiklav 625mg Tablet 14s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"amoksik-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1508\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (274, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2216\",\"code\":\"1511\",\"name\":\"Amlodipine 5mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"33.6000\",\"price\":\"33.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"amlo-5.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (275, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2217\",\"code\":\"1512\",\"name\":\"Amlodipine 10mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"amlodi.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1512\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (276, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2218\",\"code\":\"1515\",\"name\":\"Decatylen Lozenges 20s\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1515\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (277, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2219\",\"code\":\"1517\",\"name\":\"test\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1517\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (278, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2220\",\"code\":\"1520\",\"name\":\"Vitamin B-12 (Finest Nutrition\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1520\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (279, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2221\",\"code\":\"1521\",\"name\":\"Vitamin B-Complex Tablets 100_10 Letap\",\"unit\":\"1\",\"cost\":\"25.7000\",\"price\":\"25.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"vitB.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1521\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (280, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2222\",\"code\":\"1526\",\"name\":\"Promecine Syrup 125ml\",\"unit\":\"1\",\"cost\":\"11.1000\",\"price\":\"11.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"promecian.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1526\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (281, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2223\",\"code\":\"1527\",\"name\":\"Macrafolin Syrup 125ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"macrofolin.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1527\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (282, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2224\",\"code\":\"1529\",\"name\":\"Letalin Expectorant Syrup 125ml\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"letalin-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1529\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (283, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2225\",\"code\":\"1533\",\"name\":\"Letafen (Ibuprofen) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"childcare.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1533\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (284, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2226\",\"code\":\"1535\",\"name\":\"Indomethacin 25mg Capsules 50_10 Letap\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"indome.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (285, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2227\",\"code\":\"1537\",\"name\":\"Folic Acid 5mg Tablets 70_10 Letap\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"folic.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1537\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (286, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2228\",\"code\":\"1540\",\"name\":\"Dynewell Tablet 50_10\",\"unit\":\"1\",\"cost\":\"10.8300\",\"price\":\"10.8300\",\"alert_quantity\":\"50.0000\",\"image\":\"download-4.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1540\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (287, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2229\",\"code\":\"1550\",\"name\":\"Dynewell Syrup 200ml\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"dynewell-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1550\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (288, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2230\",\"code\":\"1642\",\"name\":\"Chloramphenicol 250mg Capsules Letap 50_10\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"chloram.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1642\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (289, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2231\",\"code\":\"1738\",\"name\":\"Ascorbin 100mg (Vitamin C) Tablets 30_10\",\"unit\":\"1\",\"cost\":\"35.9000\",\"price\":\"35.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"ASCOBIN.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1738\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (290, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2232\",\"code\":\"1739\",\"name\":\"Ascorbin Syrup 100ml\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"14.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"ascorbin-c-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1739\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (291, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2233\",\"code\":\"1744\",\"name\":\"Ampicillin 250mg Capsules 50_10 Letap\",\"unit\":\"1\",\"cost\":\"14.2100\",\"price\":\"14.2100\",\"alert_quantity\":\"50.0000\",\"image\":\"ampic.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1744\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (292, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2234\",\"code\":\"1747\",\"name\":\"Amciclox 250mg Capsules 10_10 Letap\",\"unit\":\"1\",\"cost\":\"16.6600\",\"price\":\"16.6600\",\"alert_quantity\":\"50.0000\",\"image\":\"amci.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1747\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (293, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2235\",\"code\":\"1751\",\"name\":\"Rufenac Gel 30g\",\"unit\":\"1\",\"cost\":\"18.3300\",\"price\":\"18.3300\",\"alert_quantity\":\"50.0000\",\"image\":\"rufenac-gel.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1751\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (294, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2236\",\"code\":\"1755\",\"name\":\"Hemoforce Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.6800\",\"price\":\"10.6800\",\"alert_quantity\":\"50.0000\",\"image\":\"hemoforce-plus.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1755\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (295, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2237\",\"code\":\"1757\",\"name\":\"Hemoforce Family Syrup 200ml\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"hemoforce-family.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (296, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2238\",\"code\":\"1758\",\"name\":\"Contreg Syrup 30ml\",\"unit\":\"1\",\"cost\":\"92.1000\",\"price\":\"92.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"contreg-syrup.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (297, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2239\",\"code\":\"1759\",\"name\":\"BX Syrup 200ml\",\"unit\":\"1\",\"cost\":\"15.0200\",\"price\":\"15.0200\",\"alert_quantity\":\"50.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (298, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2240\",\"code\":\"1761\",\"name\":\"Zinol (Paracetamol) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-15.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (299, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2241\",\"code\":\"1766\",\"name\":\"Luzatil 20\\/120mg Tablets 24&rsquo;s\",\"unit\":\"1\",\"cost\":\"2.5300\",\"price\":\"2.5300\",\"alert_quantity\":\"50.0000\",\"image\":\"luzatil.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1766\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (300, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2242\",\"code\":\"1768\",\"name\":\"Zinol 500mg Tablets (Paracetamol) 50X10\",\"unit\":\"1\",\"cost\":\"16.3100\",\"price\":\"16.3100\",\"alert_quantity\":\"50.0000\",\"image\":\"download-12.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1768\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (301, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2243\",\"code\":\"1770\",\"name\":\"Contreg Tablets 10_10\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"contreg.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1770\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (302, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2244\",\"code\":\"1772\",\"name\":\"Citro C Tablets 25&rsquo;s\",\"unit\":\"1\",\"cost\":\"39.9000\",\"price\":\"39.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"CITRO-C.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1772\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (303, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2245\",\"code\":\"1773\",\"name\":\"Painoff Tablets 25X4&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"painoff.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1773\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (304, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2246\",\"code\":\"1775\",\"name\":\"Ferrodex Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1775\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (305, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2247\",\"code\":\"1777\",\"name\":\"Starwin Milk of Magnesia 120ml\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"magacid-60ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1777\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (306, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2248\",\"code\":\"1779\",\"name\":\"Samalin Junior cough syrup 125ml\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"1.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"samalin-jnr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1779\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (307, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2249\",\"code\":\"1781\",\"name\":\"Tanzol (Albendazole) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"17.2600\",\"price\":\"17.2600\",\"alert_quantity\":\"50.0000\",\"image\":\"tanzol-tbs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1781\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (308, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2250\",\"code\":\"1782\",\"name\":\"Tanzol (Albendazol) 400mg\\/5ml Suspension 10ml\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"tanzol-susp.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1782\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (309, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2251\",\"code\":\"1787\",\"name\":\"Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1787\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (310, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2252\",\"code\":\"1788\",\"name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1788\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (311, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2253\",\"code\":\"1790\",\"name\":\"Shaltoux Natural Cough Lozenges 20X6\",\"unit\":\"1\",\"cost\":\"17.8200\",\"price\":\"17.8200\",\"alert_quantity\":\"50.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1790\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (312, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2254\",\"code\":\"1792\",\"name\":\"Shaltoux Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"shaltoux-cough.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1792\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (313, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2255\",\"code\":\"1802\",\"name\":\"Shaltoux 4 Way Syrup 100ml\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"31.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"shaltoux-4way.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1802\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (314, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2256\",\"code\":\"1804\",\"name\":\"Shalcip TZ Tablets 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"shacip-tz.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1804\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (315, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2257\",\"code\":\"1806\",\"name\":\"Shal?Artem 20\\/120mg Tablets 24&rsquo;s\",\"unit\":\"1\",\"cost\":\"5.6200\",\"price\":\"5.6200\",\"alert_quantity\":\"50.0000\",\"image\":\"shalaterm-tabs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1806\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (316, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2258\",\"code\":\"1808\",\"name\":\"Shal?Artem Dry Syrup\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"shalaterm-dry-syrup-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (317, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2259\",\"code\":\"1811\",\"name\":\"Shal?Artem Forte 80\\/480mg Tablets 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"shalaterm.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1811\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (318, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2260\",\"code\":\"1813\",\"name\":\"Rufedol Tablets 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"8.6400\",\"price\":\"8.6400\",\"alert_quantity\":\"50.0000\",\"image\":\"rufedol.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1813\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (319, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2261\",\"code\":\"1815\",\"name\":\"Polygel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"4.5500\",\"alert_quantity\":\"50.0000\",\"image\":\"polygel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1815\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (320, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2262\",\"code\":\"1817\",\"name\":\"Omeshal D Capsule (Omeprazole+Domperidone)10&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"3.0500\",\"alert_quantity\":\"50.0000\",\"image\":\"omeshal-d.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1817\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (321, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2263\",\"code\":\"1819\",\"name\":\"Omeshal Capsule 10X10 (Omeprazole)\",\"unit\":\"1\",\"cost\":\"35.9600\",\"price\":\"35.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1819\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (322, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2264\",\"code\":\"1824\",\"name\":\"Magnavit Tonic 200ml\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"med4.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1824\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (323, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2265\",\"code\":\"1826\",\"name\":\"Magnavit Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.4600\",\"price\":\"3.4600\",\"alert_quantity\":\"50.0000\",\"image\":\"magnavit-cap.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1826\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (324, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2266\",\"code\":\"1831\",\"name\":\"Leopard Balm 30g\",\"unit\":\"1\",\"cost\":\"3.4600\",\"price\":\"3.4600\",\"alert_quantity\":\"50.0000\",\"image\":\"leopard-balm.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1831\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (325, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2267\",\"code\":\"1833\",\"name\":\"Kifaru 50mg Tablets\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"9.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"kifaru-50.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (326, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2268\",\"code\":\"1835\",\"name\":\"Kifaru 100mg Tablets\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"kifaru-100-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1835\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (327, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2269\",\"code\":\"1837\",\"name\":\"Ketazol Shampoo 100ml\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"ketazole.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1837\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (328, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2270\",\"code\":\"1839\",\"name\":\"Ibucap Forte Capsules\",\"unit\":\"1\",\"cost\":\"7.2300\",\"price\":\"7.2300\",\"alert_quantity\":\"50.0000\",\"image\":\"ibucap-forte.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1839\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (329, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2271\",\"code\":\"1841\",\"name\":\"Ibucap Capsules 20&rsquo;s(Monopack)\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"7.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1841\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (330, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2272\",\"code\":\"1844\",\"name\":\"Gogynax Tablets 100mg\",\"unit\":\"1\",\"cost\":\"6.7700\",\"price\":\"6.7700\",\"alert_quantity\":\"50.0000\",\"image\":\"gogynax-tabs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1844\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (331, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2273\",\"code\":\"1846\",\"name\":\"Gogynax Cream 30g\",\"unit\":\"1\",\"cost\":\"19.6800\",\"price\":\"19.6800\",\"alert_quantity\":\"50.0000\",\"image\":\"gogynax-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1846\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (332, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2274\",\"code\":\"1848\",\"name\":\"Diproson Lotion 30ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"diproson-lotion.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1848\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (333, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2275\",\"code\":\"1852\",\"name\":\"Diproson Cream 30g\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"diproson-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1852\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (334, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2276\",\"code\":\"1854\",\"name\":\"Betasol Cream 30g\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"betasol-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (335, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2277\",\"code\":\"1856\",\"name\":\"Metro F Suspension 100ml\",\"unit\":\"1\",\"cost\":\"27.2000\",\"price\":\"27.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1856\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (336, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2278\",\"code\":\"1859\",\"name\":\"Zerocid Suspension 200ML\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1859\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (337, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2279\",\"code\":\"1864\",\"name\":\"Zerocid Plus Suspension 200ML\",\"unit\":\"1\",\"cost\":\"33.2100\",\"price\":\"33.2100\",\"alert_quantity\":\"50.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1864\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (338, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2280\",\"code\":\"1866\",\"name\":\"Vitamin B-Complex S yrup 125ml M & G\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1866\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (339, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2281\",\"code\":\"1870\",\"name\":\"Vitaglobin 200ml Syrup M & G\",\"unit\":\"1\",\"cost\":\"20.4000\",\"price\":\"20.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"vitaglobin-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1870\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (340, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2282\",\"code\":\"1872\",\"name\":\"Polyfer Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"21.9000\",\"price\":\"21.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1872\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (341, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2283\",\"code\":\"1879\",\"name\":\"Mucosyl Adult Syrup 100ml\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1879\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (342, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2284\",\"code\":\"1883\",\"name\":\"Mucosyl Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1883\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (343, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2285\",\"code\":\"1886\",\"name\":\"Heptolif Syrup 200ml\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"35.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"heptolif.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1886\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (344, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2286\",\"code\":\"1893\",\"name\":\"Emigkof S Syrup100ml\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1893\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (345, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2287\",\"code\":\"1894\",\"name\":\"Go Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1894\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (346, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2288\",\"code\":\"1896\",\"name\":\"Emgiprofen Suspension 100ml\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"emgiprofen-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1896\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (347, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2289\",\"code\":\"1897\",\"name\":\"Emigkof D Syrup100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1897\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (348, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2290\",\"code\":\"1898\",\"name\":\"Cafalgin Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.7200\",\"price\":\"3.7200\",\"alert_quantity\":\"50.0000\",\"image\":\"cafalgin-junior.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1898\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (349, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2291\",\"code\":\"1899\",\"name\":\"Ascoryl Plus syrup 125ml\",\"unit\":\"1\",\"cost\":\"5.8800\",\"price\":\"5.8800\",\"alert_quantity\":\"50.0000\",\"image\":\"ascoryl-plus.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1899\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (350, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2292\",\"code\":\"1901\",\"name\":\"Metrolex-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.1900\",\"price\":\"5.1900\",\"alert_quantity\":\"50.0000\",\"image\":\"metrolex-f-susp.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1901\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (351, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2293\",\"code\":\"1903\",\"name\":\"Zintab 20mg Disp Tablets 100_10\",\"unit\":\"1\",\"cost\":\"19.6000\",\"price\":\"19.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"zintab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1903\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (352, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2294\",\"code\":\"1904\",\"name\":\"Proxicam? 20mg Capsules 10_10\",\"unit\":\"1\",\"cost\":\"3.1400\",\"price\":\"3.1400\",\"alert_quantity\":\"50.0000\",\"image\":\"Piroxicam-Capsules.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1904\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (353, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2295\",\"code\":\"1906\",\"name\":\"Paracetamol 500mg M&G Tablets 50_10\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"para.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1906\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (354, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2296\",\"code\":\"1907\",\"name\":\"Paracetamol 500mg Tablet M&G 100_10\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1907\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (355, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2297\",\"code\":\"1911\",\"name\":\"Heptolif Tablets 50x2x10\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"heptolif-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1911\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (356, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2298\",\"code\":\"1913\",\"name\":\"Jeditone Syrup 200ml\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1913\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (357, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2299\",\"code\":\"1915\",\"name\":\"Tobcee Tablets 50&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tobcee.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1915\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (358, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2300\",\"code\":\"1919\",\"name\":\"Emigivit (Multivitamin) Tablets 100_10\",\"unit\":\"1\",\"cost\":\"39.3000\",\"price\":\"39.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"emgivit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1919\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (359, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2301\",\"code\":\"1921\",\"name\":\"Tobin&rsquo;s Cod Liver Oil 10X10\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cod-liver-oil.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1921\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (360, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2302\",\"code\":\"1929\",\"name\":\"Cafalgin Caplets 25_10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cafalgen-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1929\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (361, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2303\",\"code\":\"1946\",\"name\":\"Amoxicillin 500mg Capsules M& G 10_10\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1946\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (362, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2304\",\"code\":\"1955\",\"name\":\"Blopen Gel 30g\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"blopen.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1955\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (363, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2305\",\"code\":\"1956\",\"name\":\"Amoxicillin 250mg Capsules 50_10 M& G\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"2.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1956\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (364, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2306\",\"code\":\"1975\",\"name\":\"Gauze Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"72.8000\",\"price\":\"72.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1975\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (365, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2307\",\"code\":\"1979\",\"name\":\"Gauze Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"160.7000\",\"price\":\"160.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1979\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (366, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2308\",\"code\":\"1984\",\"name\":\"Gauze Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1984\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (367, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2309\",\"code\":\"1990\",\"name\":\"Fabrin Tablets 50X4\",\"unit\":\"1\",\"cost\":\"75.8000\",\"price\":\"75.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"fabrin-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1990\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (368, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2310\",\"code\":\"1992\",\"name\":\"Amino pep Syrup 200ml\",\"unit\":\"1\",\"cost\":\"23.5000\",\"price\":\"23.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"aminopep.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1992\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (369, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2311\",\"code\":\"2000\",\"name\":\"Drez V Gel 30g\",\"unit\":\"1\",\"cost\":\"73.5000\",\"price\":\"73.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"drez-v-gel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (370, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2312\",\"code\":\"2004\",\"name\":\"Foligrow Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"foligrow-caps.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2004\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (371, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2313\",\"code\":\"2006\",\"name\":\"Chlo Eye (Chloramphenicol) drops\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"chlo-eye.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2006\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (372, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2314\",\"code\":\"2011\",\"name\":\"Neuropat Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"neuropat_plus.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2011\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (373, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2315\",\"code\":\"2041\",\"name\":\"Crepe Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2041\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (374, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2316\",\"code\":\"2042\",\"name\":\"Livopat Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"livopat.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2042\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (375, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2317\",\"code\":\"2046\",\"name\":\"Crepe Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2046\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (376, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2318\",\"code\":\"2052\",\"name\":\"Drez Solution 100ml\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"DREZ-SOL-100ML.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2052\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (377, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2319\",\"code\":\"2054\",\"name\":\"Kofof Family Syrup 150ml\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2054\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (378, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2320\",\"code\":\"2057\",\"name\":\"Kofof Child Syrup 100ml\",\"unit\":\"1\",\"cost\":\"1.7300\",\"price\":\"1.7300\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2057\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (379, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2321\",\"code\":\"2059\",\"name\":\"Tobufen (Ibuprofen)Syrup 100ml\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"tobufen-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2059\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (380, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2322\",\"code\":\"2064\",\"name\":\"X?Zole F Suspension\",\"unit\":\"1\",\"cost\":\"29.5000\",\"price\":\"29.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"exole-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2064\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (381, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2323\",\"code\":\"2065\",\"name\":\"Amurox Suspension (Cefuroxime Axetil)\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"amurox-1-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2065\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (382, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2324\",\"code\":\"2067\",\"name\":\"Lufart Suspension\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"lufart-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2067\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (383, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2325\",\"code\":\"2069\",\"name\":\"Vitaforce Syrup 250ml\",\"unit\":\"1\",\"cost\":\"21.1000\",\"price\":\"21.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"vitaforce.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2069\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (384, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2326\",\"code\":\"2071\",\"name\":\"Strobin Lozenges 54X6\",\"unit\":\"1\",\"cost\":\"15.2000\",\"price\":\"15.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"strobin-LOZ.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2071\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (385, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2327\",\"code\":\"2077\",\"name\":\"Ventolin Inhaler\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"VENT.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2077\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (386, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2328\",\"code\":\"2084\",\"name\":\"Strobin Lozenges 25_6\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"strobin-LOZ-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2084\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (387, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2329\",\"code\":\"2086\",\"name\":\"Ancigel O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"ancigel-o.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2086\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (388, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2330\",\"code\":\"2091\",\"name\":\"Otrivin 0.1%Adult Nasal Drop 10ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"otrivin-adult.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2091\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (389, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2331\",\"code\":\"2095\",\"name\":\"Norvasc 5mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"norvasc-5mg.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2095\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (390, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2332\",\"code\":\"2106\",\"name\":\"Gudapet Capsules\",\"unit\":\"1\",\"cost\":\"40.9400\",\"price\":\"40.9400\",\"alert_quantity\":\"50.0000\",\"image\":\"gudapet-caps.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2106\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (391, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2333\",\"code\":\"2110\",\"name\":\"Norvasc 10mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"34.1000\",\"price\":\"34.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"NORVASC-10.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2110\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (392, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2334\",\"code\":\"2111\",\"name\":\"Gudapet Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"gudapet.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (393, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2335\",\"code\":\"2113\",\"name\":\"Plaster roll 4Inches Xtra care\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (394, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2336\",\"code\":\"2124\",\"name\":\"Plaster roll 3Inches Xtra care\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2124\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (395, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2337\",\"code\":\"2127\",\"name\":\"Metrolex F Tablets 21&rsquo;s\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"metrolex-f.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2127\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (396, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2338\",\"code\":\"2132\",\"name\":\"Ancigel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"ancige.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2132\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (397, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2339\",\"code\":\"2134\",\"name\":\"Maalox Stick Packs 20&rsquo;s\",\"unit\":\"1\",\"cost\":\"272.4000\",\"price\":\"272.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"MAALOX-sachet.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2134\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (398, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2340\",\"code\":\"2136\",\"name\":\"Maalox Plus Suspension 250ml\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"maalox-plus_5000x.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (399, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2341\",\"code\":\"2139\",\"name\":\"Klire Antacid Suspension 125ml\",\"unit\":\"1\",\"cost\":\"172.8000\",\"price\":\"172.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"klire-anes-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2139\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (400, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2342\",\"code\":\"2143\",\"name\":\"Lexofen Plus Tablets 2_10\",\"unit\":\"1\",\"cost\":\"28.6000\",\"price\":\"28.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"lexofen-plus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2143\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (401, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2343\",\"code\":\"2147\",\"name\":\"Lexocap 20_10\",\"unit\":\"1\",\"cost\":\"10.9000\",\"price\":\"10.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"lexocap.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (402, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2344\",\"code\":\"2151\",\"name\":\"Kefrox 125mg\\/5ml suspension 70ml\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"kefrox.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2151\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (403, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2345\",\"code\":\"2152\",\"name\":\"Histergan Cream 25g\",\"unit\":\"1\",\"cost\":\"47.2000\",\"price\":\"47.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"Histergan-2-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2152\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (404, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2346\",\"code\":\"2153\",\"name\":\"Klire Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"34.5000\",\"price\":\"34.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"klire-cough.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (405, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2347\",\"code\":\"2158\",\"name\":\"Haemo Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"hamforte.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2158\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (406, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2348\",\"code\":\"2162\",\"name\":\"Feroclear Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"feroclear.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2162\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (407, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2349\",\"code\":\"2164\",\"name\":\"Haem Up Syrup 200ml\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"haemup.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (408, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2350\",\"code\":\"2165\",\"name\":\"Clear Inhaler 12&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"7.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"clear-inhaler.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2165\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (409, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2351\",\"code\":\"2166\",\"name\":\"Klire Tablet 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"klire-tab-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2166\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (410, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2352\",\"code\":\"2167\",\"name\":\"Mist Expect Sed\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"mist-expect-sed.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2167\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (411, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2353\",\"code\":\"2168\",\"name\":\"Methylated Spirit 200ml\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"6.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2168\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (412, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2354\",\"code\":\"2171\",\"name\":\"Mist Sennaco ROKMER\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"mist-cenaco.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2171\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (413, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2355\",\"code\":\"2182\",\"name\":\"Cartef-DS Tablet\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (414, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2356\",\"code\":\"2184\",\"name\":\"Herbloz Lozenges (Orange) 20X6\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2184\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (415, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2357\",\"code\":\"2185\",\"name\":\"Herbloz Lozenges (Orange) 2*12\",\"unit\":\"1\",\"cost\":\"3.9500\",\"price\":\"3.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (416, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2358\",\"code\":\"2188\",\"name\":\"Ferrolex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"35.6000\",\"price\":\"35.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"ferrolex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2188\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (417, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2359\",\"code\":\"2190\",\"name\":\"Diclolex Power Heat Gel 30g\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"diclolex-gel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2190\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (418, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2360\",\"code\":\"2195\",\"name\":\"Ciprolex Eye Ointment 5g\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"14.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"cipro-eye-oint.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (419, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2361\",\"code\":\"2196\",\"name\":\"Cebrotonin 800mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"cebrotonin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (420, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2362\",\"code\":\"2199\",\"name\":\"Bioferon Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"bioferon-capsules-30s.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (421, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2363\",\"code\":\"2200\",\"name\":\"Augmentin 1g Tablets 14&rsquo;s\",\"unit\":\"1\",\"cost\":\"30.8000\",\"price\":\"30.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"med3-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (422, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2364\",\"code\":\"2204\",\"name\":\"Amedin 10mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"AMEDIN-10MG.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2204\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (423, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2365\",\"code\":\"2206\",\"name\":\"Amaryl 4mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"9.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"amaryl-4mg.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (424, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2366\",\"code\":\"2208\",\"name\":\"Amaryl 2mg Tablet 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"Amaryl-2mg-Tablet.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2208\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (425, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2367\",\"code\":\"2209\",\"name\":\"Methylated Spirit 60ml\",\"unit\":\"1\",\"cost\":\"88.9000\",\"price\":\"88.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (426, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2368\",\"code\":\"2216\",\"name\":\"Coldrilif Syrup\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"Coldrilif-Syrup.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2216\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (427, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2369\",\"code\":\"2218\",\"name\":\"X?mox (Amoxicillin)500mg Capsules 21&rsquo;s\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"33.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Xmox-500mg-150x150-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (428, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2370\",\"code\":\"2220\",\"name\":\"Potassium Citrate (Pot Cit\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2220\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (429, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2371\",\"code\":\"2222\",\"name\":\"Araba Ba Zhen Tablets\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"araba-ba.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2222\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (430, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2372\",\"code\":\"2223\",\"name\":\"Mr. Q\",\"unit\":\"1\",\"cost\":\"41.5800\",\"price\":\"41.5800\",\"alert_quantity\":\"50.0000\",\"image\":\"MR.-Q.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (431, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2373\",\"code\":\"2225\",\"name\":\"Fiesta Condom (All Flavours)\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"FIESTA.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2225\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (432, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2374\",\"code\":\"2228\",\"name\":\"Kiss Condom Strawberry\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"kiss-strawberry.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (433, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2375\",\"code\":\"2229\",\"name\":\"Kiss Condom Classic\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"kiss-classic.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2229\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (434, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2376\",\"code\":\"2231\",\"name\":\"Lydia Postpill 1Tablet\",\"unit\":\"1\",\"cost\":\"77.0000\",\"price\":\"77.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (435, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2377\",\"code\":\"2232\",\"name\":\"GRMox 500mg (Amoxicillin) Capsules 10_15\",\"unit\":\"1\",\"cost\":\"39.1000\",\"price\":\"39.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2232\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (436, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2378\",\"code\":\"2236\",\"name\":\"Zamac Tablets 100mg\",\"unit\":\"1\",\"cost\":\"8.9400\",\"price\":\"8.9400\",\"alert_quantity\":\"50.0000\",\"image\":\"IMG_20220103_161259_8442.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (437, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2379\",\"code\":\"2239\",\"name\":\"Vin C 100mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Vin-C.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (438, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2380\",\"code\":\"2243\",\"name\":\"Lumizap Suspension 60ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (439, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2381\",\"code\":\"2245\",\"name\":\"Lumizap 80\\/480mg Tablets\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2245\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (440, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2382\",\"code\":\"2250\",\"name\":\"GRMox (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (441, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2383\",\"code\":\"2252\",\"name\":\"Azure-Retail\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2252\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (442, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2384\",\"code\":\"2254\",\"name\":\"Ferofix Capsules\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"magt-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2254\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (443, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2385\",\"code\":\"2255\",\"name\":\"Ferofix Syrup 200ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"ferofix.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (444, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2386\",\"code\":\"2256\",\"name\":\"Carbozap Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (445, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2387\",\"code\":\"2257\",\"name\":\"Speman Tablets\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"speman.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (446, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2388\",\"code\":\"2260\",\"name\":\"Renalka Syrup\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"renalka.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (447, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2389\",\"code\":\"2262\",\"name\":\"Koflet Lozenges (All Flavors)\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"koflet-loz.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (448, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2390\",\"code\":\"2265\",\"name\":\"Pilex Ointment\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"pilex-oint.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (449, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2391\",\"code\":\"2266\",\"name\":\"Mentat Syrup\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"mentat-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2266\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (450, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2392\",\"code\":\"2268\",\"name\":\"Liv 52 Syrup\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"live-52-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (451, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2393\",\"code\":\"2269\",\"name\":\"Liv 52 Tablets\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"liv-52-tabs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (452, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2394\",\"code\":\"2271\",\"name\":\"Evecare Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"evecare-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (453, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2395\",\"code\":\"2272\",\"name\":\"Cystone Tablets\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"cystone.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2272\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (454, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2396\",\"code\":\"2273\",\"name\":\"Confido Capsules 60&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"confido-caps.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (455, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2397\",\"code\":\"2277\",\"name\":\"Bonnisan Syrup 120ml\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"bonnisan-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (456, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2398\",\"code\":\"2280\",\"name\":\"Candiderm Cream-Triple Action Cream 15mg\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"3.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"candiderm-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2280\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (457, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2399\",\"code\":\"2285\",\"name\":\"Candid V Gel 30gms\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"candid-v-gel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (458, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2400\",\"code\":\"2287\",\"name\":\"Candid V6-Clotrimazole 100mg Pessary\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"candid-V6.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (459, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2401\",\"code\":\"2291\",\"name\":\"Candid V3-Clotrimazole 200mg Pessary\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"CANDID-V3.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (460, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2402\",\"code\":\"2292\",\"name\":\"Candid V1-Clotrimazole 500mg Pessary 1&rsquo;s\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"2.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"candid-v1-p.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2292\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (461, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2403\",\"code\":\"2296\",\"name\":\"Candid B Cream 15mg\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"CANDID-B.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (462, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2404\",\"code\":\"2300\",\"name\":\"Candid Cream- Clotrimazole 1% 20mg\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"candid-cream-clotri.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (463, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2405\",\"code\":\"2303\",\"name\":\"Omroz Injection- Omeprazol 40mg\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"omroz-inj.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (464, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2406\",\"code\":\"2305\",\"name\":\"Ringers Lactate 500ml\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"50.0000\",\"image\":\"RINGERS.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (465, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2407\",\"code\":\"2307\",\"name\":\"Dextrose 5% Infusion 500ml\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"dextrose.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2307\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (466, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2408\",\"code\":\"2309\",\"name\":\"Vitane Drops 30ml\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"VITANE-DROPS.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (467, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2409\",\"code\":\"2311\",\"name\":\"Calcicare Liquid\",\"unit\":\"1\",\"cost\":\"14.4500\",\"price\":\"14.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"calcicare-liquid.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (468, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2410\",\"code\":\"2312\",\"name\":\"Cold Naso\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"cold-naso.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (469, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2411\",\"code\":\"2314\",\"name\":\"Hot Naso- Ephedrine Nasal Drop\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"hot-naso.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (470, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2412\",\"code\":\"2316\",\"name\":\"Omega Oil Liniment 50ml\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"omega-oil.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (471, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2413\",\"code\":\"2318\",\"name\":\"Kamaclox Mouthwash 300ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"kamaclox-mouth-wash.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2318\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (472, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2414\",\"code\":\"2322\",\"name\":\"Leorub Gel 30g\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"leorub-gel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2322\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (473, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2415\",\"code\":\"2324\",\"name\":\"Fasipro Tablets (1*10)\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"4.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"deep-heat-spray-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2324\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (474, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2416\",\"code\":\"2328\",\"name\":\"Deep Heat Spray 150ml\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"deep-heat-spray.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2328\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (475, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2417\",\"code\":\"2330\",\"name\":\"Deep Heat Rub 35g\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"deep-heat-rub.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2330\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (476, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2418\",\"code\":\"2333\",\"name\":\"Gebedol Forte\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"gb-forte.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2333\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (477, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2419\",\"code\":\"2335\",\"name\":\"Blocold Tablet\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"19.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"blocold.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2335\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (478, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2420\",\"code\":\"2337\",\"name\":\"Zipferon Capsule\",\"unit\":\"1\",\"cost\":\"45.5000\",\"price\":\"45.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"zipferon-cap.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2337\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (479, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2421\",\"code\":\"2338\",\"name\":\"Eurovit Multivitamin Gummies Strawberry\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (480, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2422\",\"code\":\"2343\",\"name\":\"Eurovit Multivitamin Gummies Greeen\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (481, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2423\",\"code\":\"2345\",\"name\":\"Clopimol Tablet\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"IMG_20220103_165204_501-rotated.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2345\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (482, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2424\",\"code\":\"2356\",\"name\":\"Tacizol Suspension\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"tacizol-sus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (483, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2425\",\"code\":\"2359\",\"name\":\"Tacizol 400mg Tablet\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"tacizol.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2359\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (484, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2426\",\"code\":\"2361\",\"name\":\"Vaginax Cream 30gm\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"vnax-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2361\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (485, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2427\",\"code\":\"2363\",\"name\":\"Closol Cream\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"15.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"closol-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (486, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2428\",\"code\":\"2384\",\"name\":\"Herbloz Lozenges (Orange) 300PCS\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (487, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2429\",\"code\":\"2386\",\"name\":\"Rizole Suspension 100ml\",\"unit\":\"1\",\"cost\":\"7.8400\",\"price\":\"7.8400\",\"alert_quantity\":\"50.0000\",\"image\":\"rizole-susp.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2386\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (488, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2430\",\"code\":\"2388\",\"name\":\"ORS Plain 25&rsquo;s\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"ors.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2388\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (489, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2431\",\"code\":\"2390\",\"name\":\"Cetapol 500mg Tablet 2X10\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cetapol-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2390\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (490, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2432\",\"code\":\"2394\",\"name\":\"Stericef 1 Gm Injection\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"stericef.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2394\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (491, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2433\",\"code\":\"2399\",\"name\":\"Diclofenac 75mg Tablets Sandoz 20&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"dicl-sdz.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2399\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (492, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2434\",\"code\":\"2400\",\"name\":\"Sirdalud 4mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-64.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (493, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2435\",\"code\":\"2630\",\"name\":\"Sirdalud 2mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"50.0000\",\"image\":\"images-1.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2630\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (494, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2436\",\"code\":\"2632\",\"name\":\"Coartem 20\\/120mg Tablets 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"50.0000\",\"image\":\"c6.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2632\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (495, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2437\",\"code\":\"2634\",\"name\":\"Coartem 20\\/120mg Tablets 12&rsquo;s\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"coartem-20.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2634\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (496, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2438\",\"code\":\"2639\",\"name\":\"Scimether 80\\/480mg Tablet\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"scimether-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2639\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (497, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2439\",\"code\":\"2640\",\"name\":\"Scimether Suspension\",\"unit\":\"1\",\"cost\":\"78.1000\",\"price\":\"78.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"scimether.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2640\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (498, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2440\",\"code\":\"2641\",\"name\":\"Rooter Tytonic\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"rooter-tytonic.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2641\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (499, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2441\",\"code\":\"2643\",\"name\":\"Rooter Life\",\"unit\":\"1\",\"cost\":\"12.8000\",\"price\":\"12.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"rooterlife.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2643\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (500, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2442\",\"code\":\"2644\",\"name\":\"Linctus Junior Syr. 100ml\",\"unit\":\"1\",\"cost\":\"134.4000\",\"price\":\"134.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"linctus-adt-syr-100ml-2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2644\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (501, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2443\",\"code\":\"2646\",\"name\":\"Penicillin V 125mg Letap\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2646\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (502, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2444\",\"code\":\"2648\",\"name\":\"Panacin Tabs 25X4\",\"unit\":\"1\",\"cost\":\"12.6000\",\"price\":\"12.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"PANACIN-TAB.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2648\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (503, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2445\",\"code\":\"2650\",\"name\":\"Sulphur Ointment 40g\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"SULPHUR-OINT.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2650\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (504, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2446\",\"code\":\"2654\",\"name\":\"PMF 200g\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"PMF.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2654\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (505, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2447\",\"code\":\"2655\",\"name\":\"Bella cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"bella-cough-syr-125ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2655\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (506, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2448\",\"code\":\"2657\",\"name\":\"Ferrodex Syrup 200ml\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (507, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2449\",\"code\":\"2661\",\"name\":\"Paraking Syrup 100ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"paraking-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2661\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (508, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2450\",\"code\":\"2662\",\"name\":\"Vigorix Forte Syr 200ml\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"2.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"vigorix-styr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2662\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (509, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2451\",\"code\":\"2664\",\"name\":\"Antasil Tablets 50&rsquo;s\",\"unit\":\"1\",\"cost\":\"18.3000\",\"price\":\"18.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"Antasil-tab..png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (510, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1625\",\"code\":\"268\",\"name\":\"Cardiofin Tab 20mg 100_ (Nifedipine)\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"CARDIO.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (511, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2452\",\"code\":\"2689\",\"name\":\"Linctus Adult Cough syr. 100ml\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"linctus-adt-syr-100ml-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2689\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (512, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1626\",\"code\":\"270\",\"name\":\"Fluxamox Susp. 250mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Fluxamox.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"270\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (513, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1627\",\"code\":\"271\",\"name\":\"Malufen 560 Tablets (Artemether Lumefantrine Tablets)\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (514, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1628\",\"code\":\"272\",\"name\":\"Bazuka Condoms\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"272\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (515, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1629\",\"code\":\"273\",\"name\":\"Metronidazole 200mg Tablets 10X10 Letap\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (516, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1630\",\"code\":\"275\",\"name\":\"Peladol Junior\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (517, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1631\",\"code\":\"276\",\"name\":\"Foliron Capsules\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (518, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1632\",\"code\":\"277\",\"name\":\"Basecold 1_6 Tab\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (519, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2453\",\"code\":\"2779\",\"name\":\"Licntus Jnr. syr 100ml\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"linctus-adt-syr-100ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2779\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (520, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2454\",\"code\":\"2893\",\"name\":\"Malafan Tabs 50&rsquo;s\",\"unit\":\"1\",\"cost\":\"37.0000\",\"price\":\"37.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"malafan.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2893\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (521, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2455\",\"code\":\"2894\",\"name\":\"Haemoglobin Syrup Aryton 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"haemo.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2894\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (522, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2456\",\"code\":\"2896\",\"name\":\"Alugel Tablets 50&rsquo;s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ALUGEL.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2896\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (523, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2457\",\"code\":\"2898\",\"name\":\"Calamine ointment 40mg\",\"unit\":\"1\",\"cost\":\"29.4000\",\"price\":\"29.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"calamine-oint-40mg.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2898\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (524, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2458\",\"code\":\"2902\",\"name\":\"Dithranol ointment 40mg\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"dithranol-oint-40mg.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2902\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (525, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2459\",\"code\":\"2903\",\"name\":\"Kwik Action Tablets 50_4\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"9.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"KA.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2903\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (526, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2460\",\"code\":\"2905\",\"name\":\"Whitfield ointment\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"whitfield-oint-40gm.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2905\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (527, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2461\",\"code\":\"2909\",\"name\":\"APC 50X4 TABS\",\"unit\":\"1\",\"cost\":\"48.0000\",\"price\":\"48.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"APC-Tablets.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2909\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (528, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2462\",\"code\":\"2910\",\"name\":\"Samalin Lozenges 2_10&rsquo;s\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"samalin-loz1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2910\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (529, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2463\",\"code\":\"2911\",\"name\":\"Gluco-Naf C orange 400mg\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"gluconaf-c-orange.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2911\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (530, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2464\",\"code\":\"2913\",\"name\":\"Rapinol Tab 25X4&rsquo;s\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"rapinol-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2913\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (531, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2465\",\"code\":\"2914\",\"name\":\"APC TABS 10X10\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"apc-10S-2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2914\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (532, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2466\",\"code\":\"2916\",\"name\":\"Starwin Milk of Magnesia 360ml\",\"unit\":\"1\",\"cost\":\"57.6000\",\"price\":\"57.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"starwin-milk-of-M.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2916\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (533, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2467\",\"code\":\"2917\",\"name\":\"Rhizin 10mg Tabs10x10\",\"unit\":\"1\",\"cost\":\"16.7000\",\"price\":\"16.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"rhizin.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2917\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (534, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2468\",\"code\":\"2919\",\"name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"unit\":\"1\",\"cost\":\"2.9900\",\"price\":\"2.9900\",\"alert_quantity\":\"50.0000\",\"image\":\"SAMALIN-JNR-COUGH.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2919\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (535, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2469\",\"code\":\"2921\",\"name\":\"Magacid Fastmelt(all flavours)35&rsquo;s\",\"unit\":\"1\",\"cost\":\"99.3000\",\"price\":\"99.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"fastmeltIMG.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2921\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (536, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2470\",\"code\":\"2922\",\"name\":\"Martins liver salt(Lemon)25&rsquo;s\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Martins-Liver-Salt.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2922\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (537, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2471\",\"code\":\"2923\",\"name\":\"Menthox Adult Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"menthox-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2923\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (538, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2472\",\"code\":\"2929\",\"name\":\"Magacid Tab 25&rsquo;s\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"Magacid-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2929\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (539, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2473\",\"code\":\"2931\",\"name\":\"Samalin Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"4.7100\",\"price\":\"4.7100\",\"alert_quantity\":\"50.0000\",\"image\":\"samalin-adt-125ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2931\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (540, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2474\",\"code\":\"2932\",\"name\":\"Koffex Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"koffex-adt-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2932\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (541, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2475\",\"code\":\"2933\",\"name\":\"Durol Tonic 200ml\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"4.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"med2-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2933\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (542, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2476\",\"code\":\"2934\",\"name\":\"Magacid Susp 200ml\",\"unit\":\"1\",\"cost\":\"168.6000\",\"price\":\"168.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"magacid.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2934\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (543, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2477\",\"code\":\"2939\",\"name\":\"Finelife Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"36.8000\",\"price\":\"36.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"finelife-blood-tonic.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2939\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (544, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2478\",\"code\":\"2940\",\"name\":\"Durol Tonic 300ml\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"13.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2940\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (545, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2479\",\"code\":\"2941\",\"name\":\"Asmadrin Tablets 25&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"asmadrin-2-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2941\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (546, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2480\",\"code\":\"2942\",\"name\":\"Virol blood tonic 200ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"virol.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2942\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (547, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2481\",\"code\":\"2943\",\"name\":\"Teedar Syrup 125ml\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"teedar-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2943\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (548, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2482\",\"code\":\"2945\",\"name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"zymax.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2945\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (549, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2483\",\"code\":\"2946\",\"name\":\"Zulu 100mg Tablet\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2946\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (550, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2484\",\"code\":\"2948\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2948\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (551, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2485\",\"code\":\"2949\",\"name\":\"Zubes Expectorant 125ml Syrup\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2949\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (552, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2486\",\"code\":\"2951\",\"name\":\"Zirtek Allegy 10mg Tablets 21&rsquo;s\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"5.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"zirtek-allgy.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2951\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (553, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2487\",\"code\":\"2953\",\"name\":\"ZIPMAN CAPS\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2953\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (554, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2488\",\"code\":\"2954\",\"name\":\"Zinvite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"zinvite-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2954\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (555, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2489\",\"code\":\"2956\",\"name\":\"ZINVITE CAPS\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2956\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (556, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2490\",\"code\":\"2957\",\"name\":\"Zinnat 500mg Tablets 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2957\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (557, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2491\",\"code\":\"2960\",\"name\":\"Zincovit Tablets\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"zicovit.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2960\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (558, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2492\",\"code\":\"2962\",\"name\":\"Zincovit Syrup 200ml\",\"unit\":\"1\",\"cost\":\"23.9000\",\"price\":\"23.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"zincovit-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2962\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (559, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2493\",\"code\":\"2967\",\"name\":\"Zincovit Drops 15ml\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"zicovit-drops.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2967\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (560, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2494\",\"code\":\"2970\",\"name\":\"Zincofer Syrup 200ml\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-77.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2970\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (561, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2495\",\"code\":\"2978\",\"name\":\"Zincofer Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"31.5000\",\"price\":\"31.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-78.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2978\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (562, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2496\",\"code\":\"2995\",\"name\":\"ZESTRIL 20MG\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2995\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (563, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2497\",\"code\":\"2996\",\"name\":\"Zentel 200mg Tablets 2&rsquo;s\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-86.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2996\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (564, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2498\",\"code\":\"2997\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2997\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (565, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1633\",\"code\":\"302\",\"name\":\"Basecam Caps (Piroxicam)\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"302\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (566, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2499\",\"code\":\"3062\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3062\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (567, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2500\",\"code\":\"3065\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"22.9000\",\"price\":\"22.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3065\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (568, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2501\",\"code\":\"3067\",\"name\":\"Wormplex 400 Tablets\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"wormplex-400.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3067\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (569, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2502\",\"code\":\"3069\",\"name\":\"Wormplex Suspension\",\"unit\":\"1\",\"cost\":\"26.4000\",\"price\":\"26.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3069\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (570, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2503\",\"code\":\"3070\",\"name\":\"Wormbase 400mg Tablets\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3070\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (571, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2504\",\"code\":\"3089\",\"name\":\"Wellman Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3089\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (572, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2505\",\"code\":\"3092\",\"name\":\"Wellbaby Infant 160ml Syrup\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3092\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (573, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2506\",\"code\":\"3173\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3173\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (574, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2507\",\"code\":\"3176\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (575, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2508\",\"code\":\"3178\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"9.4700\",\"price\":\"9.4700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3178\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (576, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2509\",\"code\":\"3180\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"9.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (577, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2510\",\"code\":\"3181\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3181\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (578, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2511\",\"code\":\"3182\",\"name\":\"VOLLTFAST 50MG\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (579, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2512\",\"code\":\"3183\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"108.0000\",\"price\":\"108.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3183\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (580, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2513\",\"code\":\"3184\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"122.4000\",\"price\":\"122.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3184\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (581, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2514\",\"code\":\"3185\",\"name\":\"Vitane Liquid 200ml\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"vitane-liq.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (582, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2515\",\"code\":\"3186\",\"name\":\"VITAMILK? BOTTLE\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3186\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (583, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2516\",\"code\":\"3189\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"14.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3189\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (584, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2517\",\"code\":\"3190\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3190\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (585, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2518\",\"code\":\"3192\",\"name\":\"Viscof Plain 100ml Syrup\",\"unit\":\"1\",\"cost\":\"29.8000\",\"price\":\"29.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (586, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2519\",\"code\":\"3193\",\"name\":\"Viscof D 100ml Syrup\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3193\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (587, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2520\",\"code\":\"3195\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (588, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2521\",\"code\":\"3196\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (589, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2522\",\"code\":\"3197\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"7.1800\",\"price\":\"7.1800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3197\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (590, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2523\",\"code\":\"3221\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"14.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3221\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (591, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2524\",\"code\":\"3223\",\"name\":\"Vermox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"vermox-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (592, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2525\",\"code\":\"3229\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"21.2500\",\"price\":\"21.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3229\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (593, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2526\",\"code\":\"3231\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"1.4300\",\"price\":\"1.4300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (594, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2527\",\"code\":\"3234\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"12.8000\",\"price\":\"12.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3234\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (595, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2528\",\"code\":\"3248\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3248\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (596, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2529\",\"code\":\"3249\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"6.2300\",\"price\":\"6.2300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3249\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (597, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2530\",\"code\":\"3250\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"7.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (598, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2531\",\"code\":\"3254\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"7.2300\",\"price\":\"7.2300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3254\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (599, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2532\",\"code\":\"3255\",\"name\":\"TRO XIME CEFUROXINE INJ 750\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (600, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2533\",\"code\":\"3256\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (601, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2534\",\"code\":\"3257\",\"name\":\"Tres Orix 250ml\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"trex-oris.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (602, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2535\",\"code\":\"3258\",\"name\":\"Tranexamic Acid 500mg Tablets 60&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"Tranexamic-Acid-500mg-Tablets-60s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (603, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2536\",\"code\":\"3280\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3280\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (604, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2537\",\"code\":\"3281\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"33.0200\",\"price\":\"33.0200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (605, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2538\",\"code\":\"3283\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"29.9600\",\"price\":\"29.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3283\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (606, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2539\",\"code\":\"3285\",\"name\":\"Tinatett Venecare 750ml\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"titatet.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (607, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2540\",\"code\":\"3287\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"19.1900\",\"price\":\"19.1900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (608, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2541\",\"code\":\"3288\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"24.8500\",\"price\":\"24.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (609, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2542\",\"code\":\"3291\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (610, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2543\",\"code\":\"3293\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"63.2200\",\"price\":\"63.2200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3293\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (611, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2544\",\"code\":\"3296\",\"name\":\"Tetracycline Capsules\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"tetra.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (612, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2545\",\"code\":\"3301\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"21.8300\",\"price\":\"21.8300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3301\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (613, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2546\",\"code\":\"3303\",\"name\":\"Tears Natural II Eye Drops\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"39.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tears-naturale.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (614, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2547\",\"code\":\"3304\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"8.4900\",\"price\":\"8.4900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (615, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2548\",\"code\":\"3305\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (616, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2549\",\"code\":\"3308\",\"name\":\"Tavanic 500mg Tablets 5&rsquo;s\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-65.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (617, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2550\",\"code\":\"3311\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"28.6000\",\"price\":\"28.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (618, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2551\",\"code\":\"3312\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (619, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2552\",\"code\":\"3314\",\"name\":\"Taabea Herbal Mixture\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-75.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (620, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2553\",\"code\":\"3315\",\"name\":\"Syringe and Needle 5ml Letaject\",\"unit\":\"1\",\"cost\":\"67.9000\",\"price\":\"67.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3315\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (621, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2554\",\"code\":\"3317\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"1.4900\",\"price\":\"1.4900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3317\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (622, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2555\",\"code\":\"3349\",\"name\":\"SURFAZ-SN TRIPLE? ACTION CREAM\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3349\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (623, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2556\",\"code\":\"3351\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3351\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (624, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2557\",\"code\":\"3356\",\"name\":\"Super Apeti Plus Tablets 50X20\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"super-apeti-tbs.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (625, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2558\",\"code\":\"3396\",\"name\":\"Super Apeti Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"super-apeti-plus-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3396\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (626, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2559\",\"code\":\"3401\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3401\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (627, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2560\",\"code\":\"3406\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"42.4000\",\"price\":\"42.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3406\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (628, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2561\",\"code\":\"3407\",\"name\":\"Sudocrem 125g cream\",\"unit\":\"1\",\"cost\":\"30.8700\",\"price\":\"30.8700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3407\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (629, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2562\",\"code\":\"3408\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"60.3000\",\"price\":\"60.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3408\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (630, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2563\",\"code\":\"3409\",\"name\":\"Strepsil Orange +Vitamin C Loz 36&rsquo;s\",\"unit\":\"1\",\"cost\":\"60.3000\",\"price\":\"60.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"strepsils-orange.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3409\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (631, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2564\",\"code\":\"3412\",\"name\":\"Stopkof Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"62.3000\",\"price\":\"62.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3412\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (632, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2565\",\"code\":\"3414\",\"name\":\"Stopkof Children 100ml Syrup\",\"unit\":\"1\",\"cost\":\"58.1000\",\"price\":\"58.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3414\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (633, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2566\",\"code\":\"3415\",\"name\":\"Stagyl\",\"unit\":\"1\",\"cost\":\"72.0300\",\"price\":\"72.0300\",\"alert_quantity\":\"50.0000\",\"image\":\"stGLY.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3415\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (634, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2567\",\"code\":\"3417\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"220.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3417\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (635, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2568\",\"code\":\"3420\",\"name\":\"Dispersible Aspirin 75mg Tablets 100&rsquo;s Aspar\",\"unit\":\"1\",\"cost\":\"3.6300\",\"price\":\"3.6300\",\"alert_quantity\":\"50.0000\",\"image\":\"disp-asp.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3420\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (636, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2569\",\"code\":\"3421\",\"name\":\"SOLAK MIX\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"2.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3421\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (637, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2570\",\"code\":\"3422\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3422\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (638, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2571\",\"code\":\"3423\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"8.1000\",\"price\":\"8.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3423\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (639, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2572\",\"code\":\"3425\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"3.6300\",\"price\":\"3.6300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3425\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (640, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2573\",\"code\":\"3426\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"3.0300\",\"price\":\"3.0300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3426\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (641, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2574\",\"code\":\"3427\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"4.2400\",\"price\":\"4.2400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3427\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (642, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2575\",\"code\":\"3428\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"1.8200\",\"price\":\"1.8200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3428\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (643, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2576\",\"code\":\"3429\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (644, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2577\",\"code\":\"3430\",\"name\":\"Sibi Woman Capsules\",\"unit\":\"1\",\"cost\":\"1.4500\",\"price\":\"1.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"sibi.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3430\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (645, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2578\",\"code\":\"3435\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (646, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2579\",\"code\":\"3436\",\"name\":\"Shalcip Tablets 500mg 10&rsquo;s (Ciprofloxacin)\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"shalcip-500.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3436\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (647, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2580\",\"code\":\"3437\",\"name\":\"Shal?Artem Dispersible Tablets 6\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3437\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (648, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2581\",\"code\":\"3505\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"2.7500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (649, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2582\",\"code\":\"3511\",\"name\":\"Septilin Tablet\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"septilin.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (650, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2583\",\"code\":\"3514\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3514\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (651, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2584\",\"code\":\"3516\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"49.5000\",\"price\":\"49.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3516\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (652, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2585\",\"code\":\"3535\",\"name\":\"Secure Contraceptive Pill\",\"unit\":\"1\",\"cost\":\"24.9800\",\"price\":\"24.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (653, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2586\",\"code\":\"3544\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"14.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3544\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (654, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2587\",\"code\":\"3546\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"26.2000\",\"price\":\"26.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (655, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2588\",\"code\":\"3548\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"29.9800\",\"price\":\"29.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3548\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (656, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2589\",\"code\":\"3549\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"55.1000\",\"price\":\"55.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (657, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2590\",\"code\":\"3551\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"26.9800\",\"price\":\"26.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3551\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (658, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2591\",\"code\":\"3558\",\"name\":\"Salamol Inhaler 100mg\",\"unit\":\"1\",\"cost\":\"12.0400\",\"price\":\"12.0400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3558\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (659, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2592\",\"code\":\"3560\",\"name\":\"Seven Seas Cod Liver Oil 100ml ECL\",\"unit\":\"1\",\"cost\":\"11.9800\",\"price\":\"11.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3560\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (660, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2593\",\"code\":\"3562\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"24.5000\",\"price\":\"24.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3562\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (661, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2594\",\"code\":\"3564\",\"name\":\"RUBBING ALC 500ML\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3564\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (662, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2595\",\"code\":\"3566\",\"name\":\"RUBBING ALC\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3566\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (663, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2596\",\"code\":\"3572\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"68.0000\",\"price\":\"68.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3572\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (664, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2597\",\"code\":\"3573\",\"name\":\"Rough Rider Condoms 3&rsquo;s\",\"unit\":\"1\",\"cost\":\"36.8000\",\"price\":\"36.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"rough-rider.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3573\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (665, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2598\",\"code\":\"3576\",\"name\":\"Rooter Mixture\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"rooter-mixture.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3576\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (666, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2599\",\"code\":\"3578\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"35.1000\",\"price\":\"35.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3578\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (667, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2600\",\"code\":\"3579\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3579\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (668, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2601\",\"code\":\"3581\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"22.2000\",\"price\":\"22.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3581\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (669, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2602\",\"code\":\"3585\",\"name\":\"Rhizin Syrup\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-82.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3585\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (670, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2603\",\"code\":\"3586\",\"name\":\"Relcer Gel\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"relcer-gel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3586\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (671, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2604\",\"code\":\"3587\",\"name\":\"Redsun Jelly\",\"unit\":\"1\",\"cost\":\"3.7000\",\"price\":\"3.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"redsun.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3587\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (672, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2605\",\"code\":\"3599\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3599\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (673, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2606\",\"code\":\"3651\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"6.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3651\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (674, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2607\",\"code\":\"3652\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"9.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3652\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (675, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2608\",\"code\":\"3653\",\"name\":\"Prowoman Caps 30_\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"prowoman.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3653\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (676, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2609\",\"code\":\"3655\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"3.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3655\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (677, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2610\",\"code\":\"3657\",\"name\":\"PROSTAFIT\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (678, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2611\",\"code\":\"3663\",\"name\":\"Prostacure X\",\"unit\":\"1\",\"cost\":\"17.3000\",\"price\":\"17.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"PROSTACURE-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3663\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (679, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2612\",\"code\":\"3664\",\"name\":\"Prostacure Tea\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"PROSTACURE-T.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (680, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2613\",\"code\":\"3665\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"29.4500\",\"price\":\"29.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3665\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (681, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2614\",\"code\":\"3668\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"3.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (682, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2615\",\"code\":\"3692\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3692\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (683, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2616\",\"code\":\"3693\",\"name\":\"Proman 50+ Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-58.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3693\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (684, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2617\",\"code\":\"3695\",\"name\":\"Proman Capsules 30s\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"proman.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3695\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (685, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2618\",\"code\":\"3712\",\"name\":\"PROCOLD? SYR 60ML\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"9.5500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3712\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (686, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2619\",\"code\":\"3734\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3734\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (687, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2620\",\"code\":\"3737\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"34.5500\",\"price\":\"34.5500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3737\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (688, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2621\",\"code\":\"3738\",\"name\":\"Pregnacare Plus\",\"unit\":\"1\",\"cost\":\"49.3900\",\"price\":\"49.3900\",\"alert_quantity\":\"50.0000\",\"image\":\"prenac.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3738\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (689, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2622\",\"code\":\"3741\",\"name\":\"Ponstan 250mg Capsules 50&rsquo;s\",\"unit\":\"1\",\"cost\":\"5.4800\",\"price\":\"5.4800\",\"alert_quantity\":\"50.0000\",\"image\":\"ponstan.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3741\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (690, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2623\",\"code\":\"3742\",\"name\":\"Polyfer Forte Syrup 150ML\",\"unit\":\"1\",\"cost\":\"40.8000\",\"price\":\"40.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3742\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (691, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2624\",\"code\":\"3752\",\"name\":\"Polyfer Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"37.3200\",\"price\":\"37.3200\",\"alert_quantity\":\"50.0000\",\"image\":\"polyfer-caps.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3752\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (692, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2625\",\"code\":\"3753\",\"name\":\"Plaster roll Extra care 2Inches\",\"unit\":\"1\",\"cost\":\"18.9800\",\"price\":\"18.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3753\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (693, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2626\",\"code\":\"3755\",\"name\":\"Piriton Original Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3755\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (694, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2627\",\"code\":\"3756\",\"name\":\"Piriton Original Syrup 150ml\",\"unit\":\"1\",\"cost\":\"22.9800\",\"price\":\"22.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"piriton-syrup.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (695, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2628\",\"code\":\"3757\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (696, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2629\",\"code\":\"3759\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (697, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2630\",\"code\":\"3760\",\"name\":\"Pilex Tablets\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"pilex-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3760\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (698, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2631\",\"code\":\"3762\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (699, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2632\",\"code\":\"3763\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3763\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (700, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2633\",\"code\":\"3764\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (701, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2634\",\"code\":\"3775\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3775\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (702, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2635\",\"code\":\"3777\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"9.9800\",\"price\":\"9.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3777\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (703, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2636\",\"code\":\"3778\",\"name\":\"PARA DENK250 SUPPO\",\"unit\":\"1\",\"cost\":\"17.4500\",\"price\":\"17.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3778\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (704, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2637\",\"code\":\"3785\",\"name\":\"Panadol Advance 500mg 16&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"panadol-advance-500mg.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3785\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (705, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2638\",\"code\":\"3786\",\"name\":\"Paingay Gel 30g\",\"unit\":\"1\",\"cost\":\"4.6200\",\"price\":\"4.6200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3786\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (706, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2639\",\"code\":\"3790\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3790\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (707, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2640\",\"code\":\"3791\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3791\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (708, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2641\",\"code\":\"3796\",\"name\":\"Osteocare Chewable Tablets\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"50.0000\",\"image\":\"osteocare.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3796\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (709, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2642\",\"code\":\"3797\",\"name\":\"Osons Cod Liver Capsules\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3797\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (710, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2643\",\"code\":\"3798\",\"name\":\"ORS Orange\",\"unit\":\"1\",\"cost\":\"15.6000\",\"price\":\"15.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3798\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (711, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2644\",\"code\":\"3805\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"9.9400\",\"price\":\"9.9400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3805\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (712, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2645\",\"code\":\"3844\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"30.8000\",\"price\":\"30.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3844\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (713, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2646\",\"code\":\"3865\",\"name\":\"Omeprazole 20mg Tablets 28&rsquo;s Teva\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"Omeprazole-20mg-Tablets-28s-Teva.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3865\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (714, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2647\",\"code\":\"3872\",\"name\":\"Omeprazole 20mg Capsules 28&rsquo;s uk\",\"unit\":\"1\",\"cost\":\"7.9300\",\"price\":\"7.9300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3872\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (715, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2648\",\"code\":\"3875\",\"name\":\"Olfen Gel 20gm\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"olfen.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3875\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (716, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2649\",\"code\":\"3876\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3876\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (717, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2650\",\"code\":\"3907\",\"name\":\"O-FORMIN 500\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3907\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (718, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2651\",\"code\":\"3967\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3967\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (719, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2652\",\"code\":\"3971\",\"name\":\"Nugel-O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"15.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"nugel-o.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3971\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (720, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2653\",\"code\":\"3972\",\"name\":\"zincovit\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"nugel-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3972\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (721, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2654\",\"code\":\"4040\",\"name\":\"Normo Tears Eye Drop\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4040\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (722, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2655\",\"code\":\"4049\",\"name\":\"Normal Saline Infusion 500ml\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"25.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"normal-saline.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4049\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (723, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2656\",\"code\":\"4050\",\"name\":\"Nizoral Cream 15gm\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-63.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4050\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (724, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2657\",\"code\":\"4054\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4054\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (725, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2658\",\"code\":\"4055\",\"name\":\"Night Nurse Capsules 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"night-nurse.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4055\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (726, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2659\",\"code\":\"4056\",\"name\":\"Nifecard XL 30mg Tablets 30&rsquo;s ECL\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"1.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"nifecard.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4056\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (727, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2660\",\"code\":\"4079\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"15.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4079\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (728, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2661\",\"code\":\"4082\",\"name\":\"Nexium 40mg Tablets 14&rsquo;s\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"34.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nexium.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4082\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (729, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2662\",\"code\":\"4088\",\"name\":\"Nerve and Bone Liniment 100ml\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4088\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (730, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2663\",\"code\":\"4089\",\"name\":\"Neovita Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"88.0000\",\"price\":\"88.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"neovita-30.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4089\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (731, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2664\",\"code\":\"4091\",\"name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"unit\":\"1\",\"cost\":\"168.6000\",\"price\":\"168.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"neohycolex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4091\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (732, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2665\",\"code\":\"4095\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"63.8000\",\"price\":\"63.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4095\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (733, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2666\",\"code\":\"4096\",\"name\":\"Natrilix Sr 1.5mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"117.4000\",\"price\":\"117.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4096\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (734, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2667\",\"code\":\"4097\",\"name\":\"Naprox EC 500mg Tablets 100&rsquo;s\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4097\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (735, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2668\",\"code\":\"4099\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4099\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (736, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2669\",\"code\":\"4113\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (737, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2670\",\"code\":\"4119\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (738, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2671\",\"code\":\"4136\",\"name\":\"Mycovin Tabs 500mg 250_\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"mycovin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (739, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2672\",\"code\":\"4142\",\"name\":\"Mycolex Cream 20g\",\"unit\":\"1\",\"cost\":\"25.5000\",\"price\":\"25.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"mycolex-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4142\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (740, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2673\",\"code\":\"4144\",\"name\":\"Mycolex 3 Cream 30gm\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"45.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-100.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (741, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2674\",\"code\":\"4351\",\"name\":\"Mycocort Cream 20g\",\"unit\":\"1\",\"cost\":\"53.2000\",\"price\":\"53.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"mycocort.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4351\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (742, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2675\",\"code\":\"4353\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"115.0000\",\"price\":\"115.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4353\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (743, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2676\",\"code\":\"4356\",\"name\":\"Multivite Tablets Letap\",\"unit\":\"1\",\"cost\":\"50.6000\",\"price\":\"50.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (744, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1634\",\"code\":\"436\",\"name\":\"Zipferon Forte\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ZIPER.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"436\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (745, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2677\",\"code\":\"4360\",\"name\":\"Mucolex Junior Cough150ml Syrup\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (746, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2678\",\"code\":\"4363\",\"name\":\"MOVATE SAPHARMA\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (747, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2679\",\"code\":\"4364\",\"name\":\"Mist Mag. Trisilicate 200ml Mal-Titi\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4364\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (748, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2680\",\"code\":\"4365\",\"name\":\"Magnesium Trisilicate (MMT)\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"mmt.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4365\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (749, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2681\",\"code\":\"4384\",\"name\":\"Mist Pot Cit (Potassium Citrate) ROKMER\",\"unit\":\"1\",\"cost\":\"22.9000\",\"price\":\"22.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (750, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2682\",\"code\":\"4385\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"20.9000\",\"price\":\"20.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4385\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (751, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1635\",\"code\":\"440\",\"name\":\"Wellkid Multivitamin Syrup 160ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"wellkid-multi.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"440\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (752, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1636\",\"code\":\"441\",\"name\":\"Becoatin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"becotin-syrup.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"441\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (753, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1637\",\"code\":\"442\",\"name\":\"Sudocrem 60g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudocrem.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (754, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2683\",\"code\":\"4434\",\"name\":\"Metronidazole 200mg Tablets 50X10 Letap\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4434\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (755, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1638\",\"code\":\"444\",\"name\":\"Spironolactone 100mg Tab NorthStar\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"444\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (756, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2684\",\"code\":\"4442\",\"name\":\"MetroGR-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"17.4000\",\"price\":\"17.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (757, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2685\",\"code\":\"4448\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (758, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2686\",\"code\":\"4449\",\"name\":\"Metformin Denk 500mg Tablets 100&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (759, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1639\",\"code\":\"445\",\"name\":\"Valupak Vit E 400iu\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"valu-e.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"445\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (760, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2687\",\"code\":\"4455\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (761, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2688\",\"code\":\"4456\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4456\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (762, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2689\",\"code\":\"4457\",\"name\":\"Mentat Tablets\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"mentat-tab.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (763, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2690\",\"code\":\"4462\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4462\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (764, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2691\",\"code\":\"4464\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"23.5000\",\"price\":\"23.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4464\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (765, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2692\",\"code\":\"4474\",\"name\":\"Maxitrol Eye 5ml Drops\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4474\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (766, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2693\",\"code\":\"4475\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4475\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (767, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2694\",\"code\":\"4476\",\"name\":\"Mark 2 Inhaler\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"mak-2.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (768, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2695\",\"code\":\"4478\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4478\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (769, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2696\",\"code\":\"4481\",\"name\":\"Malin Lozenges\",\"unit\":\"1\",\"cost\":\"54.8000\",\"price\":\"54.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4481\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (770, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2697\",\"code\":\"4484\",\"name\":\"Malin Baby\",\"unit\":\"1\",\"cost\":\"71.2000\",\"price\":\"71.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4484\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (771, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2698\",\"code\":\"4485\",\"name\":\"Malin Adult\",\"unit\":\"1\",\"cost\":\"32.0000\",\"price\":\"32.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4485\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (772, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1640\",\"code\":\"449\",\"name\":\"Bendroflumethiazide 5mg Bristol\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"bendro-bristol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (773, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2699\",\"code\":\"4490\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"77.8000\",\"price\":\"77.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4490\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (774, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2700\",\"code\":\"4491\",\"name\":\"Malar-2 Forte Tablets 40\\/240mg 12&rsquo;s\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"35.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (775, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2701\",\"code\":\"4495\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4495\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (776, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2702\",\"code\":\"4496\",\"name\":\"Major Nasal Drops\",\"unit\":\"1\",\"cost\":\"39.7000\",\"price\":\"39.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"major.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (777, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2703\",\"code\":\"4498\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4498\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (778, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2704\",\"code\":\"4499\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (779, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2705\",\"code\":\"4503\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"153.9000\",\"price\":\"153.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4503\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (780, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2706\",\"code\":\"4504\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"50.7000\",\"price\":\"50.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4504\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (781, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2707\",\"code\":\"4505\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (782, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2708\",\"code\":\"4506\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"109.9000\",\"price\":\"109.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (783, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2709\",\"code\":\"4507\",\"name\":\"LYRICA 75\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4507\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (784, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2710\",\"code\":\"4509\",\"name\":\"LUMETHER? ADULT\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4509\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (785, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1641\",\"code\":\"451\",\"name\":\"Valupak? Vit C Chewable\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"valu-vit-c.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"451\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (786, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2711\",\"code\":\"4510\",\"name\":\"Lufart DS Tablets\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lufart-ds.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (787, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2712\",\"code\":\"4511\",\"name\":\"Luex Child Dry Cough 150ml Syrup\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (788, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1642\",\"code\":\"452\",\"name\":\"Folic Acid 5mg Crescent\",\"unit\":\"1\",\"cost\":\"58.0000\",\"price\":\"58.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"folic-acid-crescent.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"452\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (789, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2713\",\"code\":\"4527\",\"name\":\"Luex Child Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"luex-child-chesty.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4527\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (790, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2714\",\"code\":\"4530\",\"name\":\"Luex Adult Chesty Cough 150ml syrup\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4530\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (791, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2715\",\"code\":\"4531\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"39.5000\",\"price\":\"39.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4531\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (792, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2716\",\"code\":\"4532\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4532\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (793, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2717\",\"code\":\"4535\",\"name\":\"Lubrimax Jelly 70g\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (794, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2718\",\"code\":\"4547\",\"name\":\"Lubrimax Jelly 50g\",\"unit\":\"1\",\"cost\":\"53.0000\",\"price\":\"53.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4547\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (795, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2719\",\"code\":\"4549\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (796, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2720\",\"code\":\"4550\",\"name\":\"Lonart DS Tablets\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"LONART-DS.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4550\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (797, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2721\",\"code\":\"4552\",\"name\":\"Lofnac Gel 30mg\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lofnac.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4552\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (798, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2722\",\"code\":\"4556\",\"name\":\"Lofnac 100mg Suppository\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4556\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (799, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2723\",\"code\":\"4572\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4572\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (800, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2724\",\"code\":\"4577\",\"name\":\"LIVING BITTERS CAPS\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4577\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (801, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1643\",\"code\":\"458\",\"name\":\"Metrotrust F Suspension\",\"unit\":\"1\",\"cost\":\"18.7000\",\"price\":\"18.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"458\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (802, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1644\",\"code\":\"459\",\"name\":\"Res-Q Tabs 2_10&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"459\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (803, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2725\",\"code\":\"4593\",\"name\":\"Listerine 250ml all types\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4593\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (804, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2726\",\"code\":\"4608\",\"name\":\"Lisinopril 20mg Teva\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4608\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (805, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1645\",\"code\":\"461\",\"name\":\"Buscopan Org.Tabs10mg 56&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"buscopan.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"461\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (806, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2727\",\"code\":\"4613\",\"name\":\"Lisinopril 10mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4613\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (807, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1646\",\"code\":\"462\",\"name\":\"Cetirizine 10mg Tabs 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"462\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (808, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1647\",\"code\":\"465\",\"name\":\"Allopurinol 300mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"allopurinol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"465\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (809, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1648\",\"code\":\"466\",\"name\":\"Simvastatin 40mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"simvastain-40mg.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"466\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (810, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1649\",\"code\":\"467\",\"name\":\"Simvastatin 20mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"SIMVAS.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"467\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (811, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1650\",\"code\":\"468\",\"name\":\"H\\/Aid Vitamin E 200iu Caps 60&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"V.-E-200IU.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"468\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (812, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1651\",\"code\":\"469\",\"name\":\"H\\/Aid Vitamin E 1000iu Natural Caps\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"vitamin-e-1000.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (813, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2728\",\"code\":\"4694\",\"name\":\"Bells Liquid Parafin BP 100ml\",\"unit\":\"1\",\"cost\":\"30.7000\",\"price\":\"30.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"bells-paraffin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4694\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (814, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2729\",\"code\":\"4695\",\"name\":\"LILY? ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4695\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (815, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2730\",\"code\":\"4702\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"44.0000\",\"price\":\"44.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4702\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (816, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2731\",\"code\":\"4705\",\"name\":\"Lexsporin Skin Ointment 20g\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"lexsporin-oint.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4705\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (817, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2732\",\"code\":\"4709\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4709\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (818, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2733\",\"code\":\"4710\",\"name\":\"LEVOTHROXINE 50MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4710\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (819, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1652\",\"code\":\"472\",\"name\":\"H\\/Aid Zinc Gluconate Caps 70mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"H-aid-zin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"472\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (820, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2734\",\"code\":\"4724\",\"name\":\"Letavit Syrup\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4724\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (821, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2735\",\"code\":\"4726\",\"name\":\"Letaron 200ml Syrup\",\"unit\":\"1\",\"cost\":\"11.2500\",\"price\":\"11.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4726\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (822, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2736\",\"code\":\"4729\",\"name\":\"Letamox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4729\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (823, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1653\",\"code\":\"475\",\"name\":\"H\\/AID Vitamin D3 5000IU Caps 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"VIT-d3.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"475\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (824, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2737\",\"code\":\"4758\",\"name\":\"Letamol Elixir 125ml\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"letamol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (825, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1654\",\"code\":\"476\",\"name\":\"Benylin Dry & Tickly Cough 150ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylin-dry.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (826, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2738\",\"code\":\"4761\",\"name\":\"Letacam (Piroxicam)\",\"unit\":\"1\",\"cost\":\"13.6000\",\"price\":\"13.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (827, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2739\",\"code\":\"4762\",\"name\":\"Lenor\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"lenor.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (828, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2740\",\"code\":\"4764\",\"name\":\"Lemsip Cold and flu Max 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"lemsip-cold-and-flu-max.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (829, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1655\",\"code\":\"477\",\"name\":\"Zirtek Syrup 150ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ZIRTEK.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"477\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (830, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1656\",\"code\":\"480\",\"name\":\"Benylin Chesty Cough 300ml\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"BENYLIN-CHESTY.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (831, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1657\",\"code\":\"482\",\"name\":\"Benylin Chesty Cough 150ml(N\\/D)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"BENYLIN-CHESTY.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"482\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (832, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1658\",\"code\":\"483\",\"name\":\"Strepsils Menthol lozenges 16&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"strepsil.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"483\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (833, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1659\",\"code\":\"484\",\"name\":\"Strepsils Original Lozenges. 16&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"strepsils-orig.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"484\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (834, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1660\",\"code\":\"485\",\"name\":\"Hydrocortisone Cream 1% 30g COPHARMA\",\"unit\":\"1\",\"cost\":\"42.6000\",\"price\":\"42.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (835, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2741\",\"code\":\"4885\",\"name\":\"Leena Capsules\",\"unit\":\"1\",\"cost\":\"61.2000\",\"price\":\"61.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"leena.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4885\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (836, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2742\",\"code\":\"4886\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"120.3600\",\"price\":\"120.3600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4886\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (837, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2743\",\"code\":\"4887\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"90.4100\",\"price\":\"90.4100\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4887\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (838, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1661\",\"code\":\"489\",\"name\":\"Fun Time Stim. Joy Ring\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"2.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"fun-time-joy-ring.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"489\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (839, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2744\",\"code\":\"4895\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"42.2300\",\"price\":\"42.2300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4895\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (840, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2745\",\"code\":\"4900\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"49.7000\",\"price\":\"49.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4900\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (841, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2746\",\"code\":\"4901\",\"name\":\"Kofof Adult Syrup 150ml\",\"unit\":\"1\",\"cost\":\"131.5700\",\"price\":\"131.5700\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4901\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (842, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2747\",\"code\":\"4905\",\"name\":\"Koflet Syrup\",\"unit\":\"1\",\"cost\":\"170.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-59.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4905\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (843, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2748\",\"code\":\"4906\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"106.6000\",\"price\":\"106.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4906\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (844, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2749\",\"code\":\"4909\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"132.3000\",\"price\":\"132.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4909\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (845, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1662\",\"code\":\"491\",\"name\":\"K.Y. Jelly Sterile 82G\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"K-Y-Jelly.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (846, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2750\",\"code\":\"4918\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4918\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (847, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2751\",\"code\":\"4924\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"5.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4924\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (848, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1663\",\"code\":\"493\",\"name\":\"Femfresh Wash 250ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"femfresh-250ml.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (849, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2752\",\"code\":\"4930\",\"name\":\"Kidivite Baby Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4930\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (850, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2753\",\"code\":\"4936\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4936\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (851, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1664\",\"code\":\"494\",\"name\":\"Femfresh Wash 150ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"femfresh-10ml.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"494\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (852, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2754\",\"code\":\"4943\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4943\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (853, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2755\",\"code\":\"4944\",\"name\":\"Kidicare Srup 200ml\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"kidicare.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4944\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (854, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2756\",\"code\":\"4946\",\"name\":\"Ketazol Cream 30g\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"ketazol.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4946\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (855, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2757\",\"code\":\"4947\",\"name\":\"KEPTRILS LOZENGES\",\"unit\":\"1\",\"cost\":\"142.0500\",\"price\":\"142.0500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4947\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (856, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2758\",\"code\":\"4949\",\"name\":\"KAMAGRA 50\",\"unit\":\"1\",\"cost\":\"3.2800\",\"price\":\"3.2800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4949\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (857, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1665\",\"code\":\"495\",\"name\":\"Ash.&Pars. Teething Gel 10ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ash-teething.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"495\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (858, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2759\",\"code\":\"4951\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4951\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (859, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2760\",\"code\":\"4954\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"93.6000\",\"price\":\"93.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4954\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (860, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2761\",\"code\":\"4955\",\"name\":\"JRA B&rsquo;s\",\"unit\":\"1\",\"cost\":\"10.3000\",\"price\":\"10.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4955\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (861, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2762\",\"code\":\"4956\",\"name\":\"Joy Ointment\",\"unit\":\"1\",\"cost\":\"10.1800\",\"price\":\"10.1800\",\"alert_quantity\":\"50.0000\",\"image\":\"joyoint.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4956\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (862, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2763\",\"code\":\"4957\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4957\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (863, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2764\",\"code\":\"4959\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"13.9400\",\"price\":\"13.9400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4959\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (864, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1666\",\"code\":\"496\",\"name\":\"Propranolol 40mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (865, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2765\",\"code\":\"4960\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4960\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (866, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2766\",\"code\":\"4965\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4965\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (867, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2767\",\"code\":\"4967\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"16.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4967\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (868, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2768\",\"code\":\"4968\",\"name\":\"Infacol Drops 55ml\",\"unit\":\"1\",\"cost\":\"43.8000\",\"price\":\"43.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"infacol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4968\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (869, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2769\",\"code\":\"4972\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4972\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (870, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2770\",\"code\":\"4974\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4974\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (871, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2771\",\"code\":\"4977\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4977\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (872, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2772\",\"code\":\"4978\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"16.0800\",\"price\":\"16.0800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4978\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (873, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1667\",\"code\":\"498\",\"name\":\"Propranolol 10mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"propranolol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"498\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (874, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2773\",\"code\":\"4984\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4984\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (875, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1668\",\"code\":\"499\",\"name\":\"Omeprazole 40mg Caps 28&apos;s\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"omeprazole.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (876, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2774\",\"code\":\"4997\",\"name\":\"Imboost Herbal Mixture 500ml\",\"unit\":\"1\",\"cost\":\"13.8100\",\"price\":\"13.8100\",\"alert_quantity\":\"50.0000\",\"image\":\"imboost.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4997\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (877, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1669\",\"code\":\"500\",\"name\":\"Mycophe. Mofetil Tabs 500mg 50&apos;s\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"mycophenolate.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (878, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2775\",\"code\":\"5000\",\"name\":\"Imax Delay Spray\",\"unit\":\"1\",\"cost\":\"186.8000\",\"price\":\"186.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-85.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (879, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1670\",\"code\":\"502\",\"name\":\"Actifed Multi Action Tabs 12&apos;s\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"actifed-multi.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"502\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (880, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1671\",\"code\":\"504\",\"name\":\"Nugel Susp 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nugel.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"504\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (881, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1672\",\"code\":\"505\",\"name\":\"Omecet (Omeprazole) Caps 20mg 100_ ECL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (882, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1673\",\"code\":\"506\",\"name\":\"Lorazepam 2mg Tabs 500_ ECL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Lorazepam.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (883, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2776\",\"code\":\"5068\",\"name\":\"Ideos\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5068\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (884, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2777\",\"code\":\"5078\",\"name\":\"Ibucap Capsules 10C (BamBam)\",\"unit\":\"1\",\"cost\":\"130.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5078\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (885, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2778\",\"code\":\"5082\",\"name\":\"Ibex Capsules 24&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5082\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (886, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2779\",\"code\":\"5083\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5083\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (887, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2780\",\"code\":\"5084\",\"name\":\"Hydrogen Peroxide\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5084\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (888, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2781\",\"code\":\"5085\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5085\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (889, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1674\",\"code\":\"510\",\"name\":\"Bendrofluazide Tabs 5mg 500_ ECL\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (890, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1675\",\"code\":\"511\",\"name\":\"Bendrofluazide Tab 2.5mg 500_ ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (891, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1676\",\"code\":\"512\",\"name\":\"Hydrolyte ORS Plain 25_ ECL\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"512\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (892, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2782\",\"code\":\"5122\",\"name\":\"HOT WATTLEER BOT COVERED\",\"unit\":\"1\",\"cost\":\"66.2000\",\"price\":\"66.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5122\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (893, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1677\",\"code\":\"513\",\"name\":\"Hydrolyte ORS 25_ Orange Flav. ECL\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"513\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (894, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1678\",\"code\":\"514\",\"name\":\"Hydrolyte ORS 25 Lemon Flav. ECL\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"hydrolyte-ors.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"514\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (895, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1679\",\"code\":\"515\",\"name\":\"Enamycin tab 250mg 500_ ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"515\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (896, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1680\",\"code\":\"516\",\"name\":\"Metagyl (Metzol) Syrup 200mg\\/5ml 100\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"516\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (897, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1681\",\"code\":\"517\",\"name\":\"Methylated Spirit 125ml ECL\",\"unit\":\"1\",\"cost\":\"235.7300\",\"price\":\"235.7300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"517\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (898, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2783\",\"code\":\"5179\",\"name\":\"HOT WATER BOTTLE\",\"unit\":\"1\",\"cost\":\"41.6300\",\"price\":\"41.6300\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5179\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (899, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1682\",\"code\":\"518\",\"name\":\"Methylated Spirit 200ml ECL\",\"unit\":\"1\",\"cost\":\"194.0000\",\"price\":\"194.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"518\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (900, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2784\",\"code\":\"5183\",\"name\":\"Honeykof Herbal Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"25.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"honey.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5183\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (901, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2785\",\"code\":\"5186\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"72.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5186\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (902, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2786\",\"code\":\"5187\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"67.0000\",\"price\":\"67.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5187\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (903, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2787\",\"code\":\"5188\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"81.4000\",\"price\":\"81.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5188\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (904, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2788\",\"code\":\"5189\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"64.7800\",\"price\":\"64.7800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5189\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (905, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2789\",\"code\":\"5191\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"88.8800\",\"price\":\"88.8800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5191\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (906, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2790\",\"code\":\"5192\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"59.7700\",\"price\":\"59.7700\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (907, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2791\",\"code\":\"5195\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (908, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2792\",\"code\":\"5196\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (909, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2793\",\"code\":\"5198\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5198\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (910, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1683\",\"code\":\"520\",\"name\":\"Kidivit Syrup 100ML\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"520\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (911, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1684\",\"code\":\"521\",\"name\":\"Seven Seas Cod Liver Oil; Once A Day 60_ Caps ECL\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"seven-seas-cod.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"521\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (912, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1685\",\"code\":\"522\",\"name\":\"Bells Normal Saline Drops 0.9% 10ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"bells-normal-saline-drops.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"522\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (913, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1686\",\"code\":\"523\",\"name\":\"Medi Plus\",\"unit\":\"1\",\"cost\":\"72.6400\",\"price\":\"72.6400\",\"alert_quantity\":\"50.0000\",\"image\":\"MEDI-PLUS.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"523\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (914, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2794\",\"code\":\"5239\",\"name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"haemo.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (915, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1687\",\"code\":\"526\",\"name\":\"Femacure X\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"FEMACURE-X.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"526\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (916, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1688\",\"code\":\"529\",\"name\":\"Aspirine Cardio 100MG Tabs 30_\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Aspirine-Cardio-100MG-Tabs-30.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"529\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (917, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2795\",\"code\":\"5297\",\"name\":\"Gyprone Plus 200ml Syrup\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-68.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5297\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (918, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2796\",\"code\":\"5298\",\"name\":\"Gvither Forte 80mg Injection 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"20.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"gvither.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (919, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1689\",\"code\":\"530\",\"name\":\"Tramadol Denk 50 Tabs B\\/10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Tramadol-denk-50mg.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"530\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (920, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2797\",\"code\":\"5305\",\"name\":\"Gentian violet (GV PAINT)\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gv-paint.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (921, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2798\",\"code\":\"5309\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (922, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1690\",\"code\":\"531\",\"name\":\"Tramadol Denk 100mg Retard 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"531\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (923, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2799\",\"code\":\"5312\",\"name\":\"Roberts Glycerine 90ml\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (924, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2800\",\"code\":\"5313\",\"name\":\"Glucose Powder 400mg\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"gluc.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5313\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (925, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2801\",\"code\":\"5314\",\"name\":\"Glibenil (Glibenclamide) Tablets\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (926, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2802\",\"code\":\"5321\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"31.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5321\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (927, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1691\",\"code\":\"535\",\"name\":\"Acyclovir Denk 200mg tabs 25&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"acyclovir-denk.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (928, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1692\",\"code\":\"536\",\"name\":\"HCT Exforge 5\\/160\\/12.5mg 28&apos;s\",\"unit\":\"1\",\"cost\":\"5.0400\",\"price\":\"5.0400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"536\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (929, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2803\",\"code\":\"5360\",\"name\":\"Givers P Capsules\",\"unit\":\"1\",\"cost\":\"328.9000\",\"price\":\"328.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (930, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2804\",\"code\":\"5372\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5372\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (931, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2805\",\"code\":\"5374\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5374\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (932, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2806\",\"code\":\"5375\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"14.3000\",\"price\":\"14.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5375\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (933, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2807\",\"code\":\"5378\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (934, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2808\",\"code\":\"5379\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"46.9900\",\"price\":\"46.9900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5379\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (935, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2809\",\"code\":\"5383\",\"name\":\"Gebedol Plus Capsule\",\"unit\":\"1\",\"cost\":\"53.5000\",\"price\":\"53.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"gb-plus.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5383\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (936, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2810\",\"code\":\"5384\",\"name\":\"Gebedol Extra\",\"unit\":\"1\",\"cost\":\"32.7000\",\"price\":\"32.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"gb-extra.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (937, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2811\",\"code\":\"5385\",\"name\":\"Gebedol Tablet\",\"unit\":\"1\",\"cost\":\"30.2000\",\"price\":\"30.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"gebedol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5385\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (938, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2812\",\"code\":\"5390\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"104.4000\",\"price\":\"104.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5390\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (939, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1693\",\"code\":\"540\",\"name\":\"Oson&apos;s Cod Liver Oil Capsules 10_10 Softgels\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"540\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (940, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1694\",\"code\":\"541\",\"name\":\"Salo Simple Linctus\",\"unit\":\"1\",\"cost\":\"3.9600\",\"price\":\"3.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"541\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (941, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1695\",\"code\":\"542\",\"name\":\"Happyrona Forte Tablets 20X1X20\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"happy.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"542\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (942, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2813\",\"code\":\"5455\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"25.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (943, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1696\",\"code\":\"546\",\"name\":\"COA Mixture\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (944, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2814\",\"code\":\"5464\",\"name\":\"Gaviscon Peppermint Liquid 200ml\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5464\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (945, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2815\",\"code\":\"5468\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"2.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5468\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (946, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2816\",\"code\":\"5469\",\"name\":\"Gastrone Plus 200ml Suspension\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (947, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1697\",\"code\":\"548\",\"name\":\"Taabea Taacum\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"548\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (948, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1698\",\"code\":\"549\",\"name\":\"Paracetamol 500mg Tablets 50_10 Eskay\",\"unit\":\"1\",\"cost\":\"18.3000\",\"price\":\"18.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (949, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2817\",\"code\":\"5491\",\"name\":\"Garlic Pearls Osons\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"osons-garlic.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (950, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2818\",\"code\":\"5492\",\"name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"galvus-met.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5492\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (951, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1699\",\"code\":\"551\",\"name\":\"Clodol 100mg Suppository (Diclofenac 2X5)\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"551\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (952, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1700\",\"code\":\"552\",\"name\":\"Jet 2 Inhaler\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"jet-2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"552\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (953, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1701\",\"code\":\"554\",\"name\":\"Jet 2 Cold Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"554\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (954, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2819\",\"code\":\"5556\",\"name\":\"Gacet 250mg Suppository\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5556\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (955, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2820\",\"code\":\"5557\",\"name\":\"Gacet 125mg Suppositories\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5557\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (956, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2821\",\"code\":\"5559\",\"name\":\"Furosemide 40mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5559\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (957, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2822\",\"code\":\"5560\",\"name\":\"Funbact A\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"funbact-a.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5560\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (958, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2823\",\"code\":\"5561\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5561\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (959, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2824\",\"code\":\"5564\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"44.6000\",\"price\":\"44.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5564\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (960, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2825\",\"code\":\"5595\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5595\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (961, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1702\",\"code\":\"560\",\"name\":\"Neoferon Syrup 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"560\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (962, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2826\",\"code\":\"5604\",\"name\":\"Foliron Tonic 200ml\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5604\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (963, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2827\",\"code\":\"5606\",\"name\":\"Foligrow Syrup 200ml\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"folig.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5606\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (964, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2828\",\"code\":\"5607\",\"name\":\"Flurest Tablets 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"flu.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5607\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (965, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2829\",\"code\":\"5609\",\"name\":\"Flucor Day Gel\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"13.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5609\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (966, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2830\",\"code\":\"5610\",\"name\":\"FLUCOR? NIGHT\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"13.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5610\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (967, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2831\",\"code\":\"5614\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5614\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (968, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2832\",\"code\":\"5615\",\"name\":\"Flemex Jnr. Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"fle-jnr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5615\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (969, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2833\",\"code\":\"5616\",\"name\":\"Flemex Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"70.0000\",\"price\":\"70.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"flemex-adult.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5616\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (970, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2834\",\"code\":\"5618\",\"name\":\"Flagyl Suspension 100ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5618\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (971, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2835\",\"code\":\"5619\",\"name\":\"Fisherman&rsquo;s Friend All Flavours 24&rsquo;s\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5619\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (972, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1703\",\"code\":\"562\",\"name\":\"Livertone Tonic 200ml\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"livertone.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"562\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (973, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2836\",\"code\":\"5622\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5622\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (974, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2837\",\"code\":\"5624\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"129.2000\",\"price\":\"129.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5624\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (975, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2838\",\"code\":\"5629\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5629\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (976, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1704\",\"code\":\"563\",\"name\":\"Durex Extra Safe 3&apos;s Condoms\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"563\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (977, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1705\",\"code\":\"564\",\"name\":\"Nexcofer Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nexcofer.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"564\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (978, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1706\",\"code\":\"565\",\"name\":\"Metro-Z Suspension 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"565\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (979, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2839\",\"code\":\"5665\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"27.9000\",\"price\":\"27.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5665\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (980, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2840\",\"code\":\"5666\",\"name\":\"Ferrous Sulphate 200mg Tab 30&rsquo;s EXE\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5666\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (981, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2841\",\"code\":\"5668\",\"name\":\"Feroglobin Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"3.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"feroglobi.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (982, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2842\",\"code\":\"5669\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"3.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5669\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (983, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1707\",\"code\":\"567\",\"name\":\"Healthy Life Vitamin C 1000mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"567\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (984, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2843\",\"code\":\"5670\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5670\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (985, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2844\",\"code\":\"5671\",\"name\":\"Ezipen Tablets 5_6\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"ezipen-rotated.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5671\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (986, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2845\",\"code\":\"5672\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"43.5000\",\"price\":\"43.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5672\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (987, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1708\",\"code\":\"568\",\"name\":\"Lisinopril 5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"568\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (988, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2846\",\"code\":\"5681\",\"name\":\"Evening Primrose 1000mg Tablets Valupak\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"36.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"evening-primrose.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5681\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (989, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2847\",\"code\":\"5682\",\"name\":\"Evecare Capsules 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"54.0000\",\"price\":\"54.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"evecare-caps.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5682\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (990, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2848\",\"code\":\"5683\",\"name\":\"Etisala Capsules\",\"unit\":\"1\",\"cost\":\"37.9000\",\"price\":\"37.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5683\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (991, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1709\",\"code\":\"569\",\"name\":\"Nurofen Syrup 100ml Strawberry\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nurofen-syrup-strawb.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"569\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (992, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1710\",\"code\":\"570\",\"name\":\"Skybru (Brufen) 100mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"570\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (993, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1711\",\"code\":\"571\",\"name\":\"Eskaron Capsules 10X30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"571\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (994, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2849\",\"code\":\"5715\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"99.3000\",\"price\":\"99.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5715\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (995, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2850\",\"code\":\"5718\",\"name\":\"Epiderm Cream 30g\",\"unit\":\"1\",\"cost\":\"79.1500\",\"price\":\"79.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5718\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (996, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1712\",\"code\":\"572\",\"name\":\"Sudafed Sinus Ease Spray 0.1%\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-sinus-spray.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"572\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (997, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2851\",\"code\":\"5724\",\"name\":\"Epiderm Cream 15g\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5724\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (998, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1713\",\"code\":\"573\",\"name\":\"Sudafed Head & Congestion Max Strength\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-head-and-cong.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"573\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (999, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1714\",\"code\":\"574\",\"name\":\"Sudafed Blocked Nose Spray 15ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-blocked-nose.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"574\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1000, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2852\",\"code\":\"5747\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5747\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1001, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2853\",\"code\":\"5749\",\"name\":\"Entramol 500mg Tablets 15X12\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"entramol.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5749\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1002, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2854\",\"code\":\"5750\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1003, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1715\",\"code\":\"576\",\"name\":\"Sudafed Sinus & Pain Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-sinus-and-pain.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"576\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1004, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1716\",\"code\":\"577\",\"name\":\"Sudafed Mucus Relief Tablets 16&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-mucus-relief.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"577\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1005, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1717\",\"code\":\"578\",\"name\":\"Sudafed Decongestant Tablets 12&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sudafed-decongestant.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"578\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1006, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2855\",\"code\":\"5781\",\"name\":\"Enacef (Cefuroxime) 250mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"240.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5781\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1007, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2856\",\"code\":\"5791\",\"name\":\"Emgiflox 250mg Capsules 50_10\",\"unit\":\"1\",\"cost\":\"32.0000\",\"price\":\"32.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5791\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1008, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2857\",\"code\":\"5793\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"13.4000\",\"price\":\"13.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5793\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1009, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2858\",\"code\":\"5795\",\"name\":\"Efpac Tablets\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"EFPAC-TAB.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5795\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1010, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2859\",\"code\":\"5798\",\"name\":\"Efpac Junior Syrup\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"efpac-jnr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5798\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1011, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1718\",\"code\":\"580\",\"name\":\"Corsodyl Mint 500ml\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"corsodyl-mint.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"580\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1012, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2860\",\"code\":\"5801\",\"name\":\"Easy Life Vitamin C+ Zinc Tablets\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"esay-life.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1013, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2861\",\"code\":\"5806\",\"name\":\"DUO COTECSON\",\"unit\":\"1\",\"cost\":\"47.8000\",\"price\":\"47.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5806\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1014, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2862\",\"code\":\"5808\",\"name\":\"Drez Powder 10g\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1015, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2863\",\"code\":\"5809\",\"name\":\"Drez Ointment 30mg\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"drez-oint-30g.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5809\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1016, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2864\",\"code\":\"5810\",\"name\":\"Drez Ointment 10g\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5810\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1017, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2865\",\"code\":\"5816\",\"name\":\"Dragon Spray\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"DRAGON.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5816\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1018, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2866\",\"code\":\"5817\",\"name\":\"Dragon Tablets\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"DRAGON-TABS.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5817\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1019, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1719\",\"code\":\"582\",\"name\":\"Nurofen Syrup 100ml Orange\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nurofen-syrup-orange.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"582\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1020, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2867\",\"code\":\"5822\",\"name\":\"Doxycycline 100mg Letap\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"DOXY.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5822\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1021, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2868\",\"code\":\"5824\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"2.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5824\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1022, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2869\",\"code\":\"5826\",\"name\":\"Domi 30mg Suppositories\",\"unit\":\"1\",\"cost\":\"247.0000\",\"price\":\"247.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5826\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1023, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2870\",\"code\":\"5828\",\"name\":\"Domi 10 Suppositories\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5828\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1024, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2871\",\"code\":\"5833\",\"name\":\"Diphex Cough Syrup\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"diphex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1025, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2872\",\"code\":\"5836\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5836\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1026, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2873\",\"code\":\"5837\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5837\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1027, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2874\",\"code\":\"5839\",\"name\":\"Diflucan 150mg Capsules 1&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.4400\",\"price\":\"7.4400\",\"alert_quantity\":\"50.0000\",\"image\":\"DIFLUCAN-150-mg.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5839\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1028, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2875\",\"code\":\"5840\",\"name\":\"Dicnac 100mg Suppositories\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"dicnac.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5840\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1029, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2876\",\"code\":\"5849\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"27.8000\",\"price\":\"27.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5849\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1030, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1720\",\"code\":\"585\",\"name\":\"Benylin Children Night Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylin-children-night.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"585\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1031, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1721\",\"code\":\"586\",\"name\":\"Kingdom Garlic Bitters\",\"unit\":\"1\",\"cost\":\"46.3000\",\"price\":\"46.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"586\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1032, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1722\",\"code\":\"587\",\"name\":\"Paracetamol 500mg Tablet Crescent\",\"unit\":\"1\",\"cost\":\"36.4900\",\"price\":\"36.4900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"587\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1033, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1723\",\"code\":\"588\",\"name\":\"Morgan&apos;s Auntibactirial Soap\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"morgan-antibacterial.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"588\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1034, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1724\",\"code\":\"589\",\"name\":\"Bonjela Adult Gel 15g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"589\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1035, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1725\",\"code\":\"592\",\"name\":\"Bonjela Teething Gel 15g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"bonjela-teething.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"592\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1036, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1726\",\"code\":\"594\",\"name\":\"Bonjela Junior Gel 15g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"bonjela-junior-gel.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"594\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1037, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1727\",\"code\":\"595\",\"name\":\"Keppra 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"keppra.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"595\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1038, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1728\",\"code\":\"596\",\"name\":\"Robaxin 750mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"50.0000\",\"image\":\"robaxin-750mg.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"596\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1039, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2877\",\"code\":\"5960\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5960\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1040, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2878\",\"code\":\"5964\",\"name\":\"Diclolex 100mg Tablets 10X10\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5964\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1041, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2879\",\"code\":\"5966\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5966\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1042, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2880\",\"code\":\"5968\",\"name\":\"Diclo-Denk100mg? Suppository 10&rsquo;s\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5968\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1043, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1729\",\"code\":\"597\",\"name\":\"Vit.? B Complex Tablets 60&apos;s Valupak\",\"unit\":\"1\",\"cost\":\"77.9100\",\"price\":\"77.9100\",\"alert_quantity\":\"50.0000\",\"image\":\"vitamin-b-complex.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"597\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1044, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1730\",\"code\":\"600\",\"name\":\"Glucose and Chondriton 400mg Tab. Valupak 30&apos;s\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"6.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"glucose-and-chondriton-val.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"600\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1045, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2881\",\"code\":\"6001\",\"name\":\"Diclo-Denk 100mg Tablet 10_10\",\"unit\":\"1\",\"cost\":\"65.8000\",\"price\":\"65.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1046, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2882\",\"code\":\"6004\",\"name\":\"Diazepam 5mg Tablets 500&rsquo;s\",\"unit\":\"1\",\"cost\":\"63.0000\",\"price\":\"63.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6004\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1047, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2883\",\"code\":\"6008\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"8.8200\",\"price\":\"8.8200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6008\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1048, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1731\",\"code\":\"601\",\"name\":\"Canderel Tablets 105&apos;s\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"canderel-tab.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"601\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1049, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2884\",\"code\":\"6029\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"26.4000\",\"price\":\"26.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6029\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1050, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1732\",\"code\":\"603\",\"name\":\"Lemsip Cold and flu Original 10&apos;s\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lemsip-cold-and-flu-original.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"603\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1051, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1733\",\"code\":\"604\",\"name\":\"Benylin Children Chesty Cough Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylin-children-chesty.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"604\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1052, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1734\",\"code\":\"605\",\"name\":\"Bells Children Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"94.0200\",\"price\":\"94.0200\",\"alert_quantity\":\"50.0000\",\"image\":\"bells-ch.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"605\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1053, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1735\",\"code\":\"609\",\"name\":\"Vitamin E 400 IU Capsules H\\/A 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Vitamin-E-400-IU-Capsules.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"609\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1054, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1736\",\"code\":\"611\",\"name\":\"Simvastatin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"4.2700\",\"price\":\"4.2700\",\"alert_quantity\":\"50.0000\",\"image\":\"Simvastatin-10mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"611\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1055, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1737\",\"code\":\"612\",\"name\":\"Warfarin 5mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Warfarin-5mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"612\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1056, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1738\",\"code\":\"614\",\"name\":\"Bisoprolol 2.5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Bisoprolol-2.5mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"614\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1057, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2885\",\"code\":\"6146\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6146\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1058, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2886\",\"code\":\"6148\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6148\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1059, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2887\",\"code\":\"6150\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1060, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2888\",\"code\":\"6153\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1061, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2889\",\"code\":\"6155\",\"name\":\"Deep Freez Spray 150ml\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"deep-freeze-spray.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1062, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1739\",\"code\":\"616\",\"name\":\"Glimepiride 4mg Tablets 30&apos;s Teva\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Glimepiride-4mg-Tablets-30s-Teva.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"616\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1063, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1740\",\"code\":\"617\",\"name\":\"Ramipril 2.5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"2.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"Ramipril-2.5mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"617\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1064, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1741\",\"code\":\"618\",\"name\":\"Loratadine 10mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"loratadine.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"618\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1065, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1742\",\"code\":\"620\",\"name\":\"Amitriptyline 25mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Amitriptyline-25mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"620\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1066, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1743\",\"code\":\"621\",\"name\":\"Sildenafil 50mg Tablets 8&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Sildenafil-50mg-Tablets-8s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"621\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1067, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1744\",\"code\":\"623\",\"name\":\"Sildenafil 100mg Tablets 8&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Sildenafil-100mg-Tablets-8s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"623\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1068, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1745\",\"code\":\"625\",\"name\":\"Digoxin 125mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Digoxin-125mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1069, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2890\",\"code\":\"6275\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1070, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2891\",\"code\":\"6279\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6279\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1071, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1746\",\"code\":\"628\",\"name\":\"Carvedilol 12.5mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"41.6800\",\"price\":\"41.6800\",\"alert_quantity\":\"50.0000\",\"image\":\"Carvedilol-12.5mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"628\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1072, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1747\",\"code\":\"629\",\"name\":\"Carvedilol 6.25mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"Carvedilol-6.25mg-Tablets-28s.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"629\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1073, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1748\",\"code\":\"631\",\"name\":\"Benylin Mucus+Decon Syrup100ml\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"27.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylin-mucus-plus-decon.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"631\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1074, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1749\",\"code\":\"632\",\"name\":\"Spironolactone 50mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"11.5800\",\"price\":\"11.5800\",\"alert_quantity\":\"50.0000\",\"image\":\"Spironolactone-50mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"632\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1075, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2892\",\"code\":\"6337\",\"name\":\"Danrub Ointment 40g\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-76.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6337\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1076, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1750\",\"code\":\"635\",\"name\":\"Folic Acid 5mg Tablet 28&apos;s Accord\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"folic-acid.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"635\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1077, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1751\",\"code\":\"638\",\"name\":\"Biva Plus Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"638\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1078, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1752\",\"code\":\"640\",\"name\":\"Biva Plus Capsules\",\"unit\":\"1\",\"cost\":\"80.5000\",\"price\":\"80.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"640\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1079, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1753\",\"code\":\"643\",\"name\":\"Abyvita Capsules\",\"unit\":\"1\",\"cost\":\"49.6000\",\"price\":\"49.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"643\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1080, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1754\",\"code\":\"644\",\"name\":\"Mist FAC (Ferric citrate) 200ml ROKMER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"644\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1081, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1755\",\"code\":\"646\",\"name\":\"Prowoman 50+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"646\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1082, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1756\",\"code\":\"647\",\"name\":\"Benylin Mucus Max H&L\",\"unit\":\"1\",\"cost\":\"33.3000\",\"price\":\"33.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"benylyin-mucus-max.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"647\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1083, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1757\",\"code\":\"648\",\"name\":\"Mist Mag. Trisilicate 200ml ROKMER\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"52.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"648\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1084, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2893\",\"code\":\"6487\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6487\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1085, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2894\",\"code\":\"6488\",\"name\":\"Dalacin C 300mg Capsules 16&rsquo;s\",\"unit\":\"1\",\"cost\":\"7.1500\",\"price\":\"7.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6488\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1086, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1758\",\"code\":\"649\",\"name\":\"Lonart 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"lonart.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"649\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1087, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2895\",\"code\":\"6490\",\"name\":\"Daktarin Cream 15g\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"download-90.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6490\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1088, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2896\",\"code\":\"6491\",\"name\":\"Daflon 500mg Tablets 30&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1089, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2897\",\"code\":\"6493\",\"name\":\"Cytotec\",\"unit\":\"1\",\"cost\":\"4.4500\",\"price\":\"4.4500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1090, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2898\",\"code\":\"6496\",\"name\":\"Cyprodine (Cyproheptadine) Capsules 30_\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1091, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2899\",\"code\":\"6497\",\"name\":\"Cyfen Tablets\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6497\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1092, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1759\",\"code\":\"650\",\"name\":\"Seclear Eye Drop\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"650\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1093, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2900\",\"code\":\"6500\",\"name\":\"Cyfen Syrup\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"9.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1094, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2901\",\"code\":\"6505\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"12.1000\",\"price\":\"12.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1095, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2902\",\"code\":\"6509\",\"name\":\"Crepe Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6509\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1096, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1760\",\"code\":\"651\",\"name\":\"Chloramphenicol Eye Ointment 0.01 5g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"chloram-eye.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"651\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1097, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2903\",\"code\":\"6510\",\"name\":\"Crepe Bandage 2Inches Xtra care\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1098, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2904\",\"code\":\"6529\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6529\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1099, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2905\",\"code\":\"6533\",\"name\":\"Cotton wool (Zigzag) 50g\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"zigzag.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6533\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1100, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2906\",\"code\":\"6538\",\"name\":\"Cororange Drops\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"cororange-drops.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1101, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2907\",\"code\":\"6547\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"29.7000\",\"price\":\"29.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6547\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1102, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2908\",\"code\":\"6549\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"45.1000\",\"price\":\"45.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1103, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1761\",\"code\":\"655\",\"name\":\"Travatan Eye Drops 2.5ml\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"travatan.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"655\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1104, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2909\",\"code\":\"6552\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6552\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1105, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2910\",\"code\":\"6553\",\"name\":\"COMBACT-N\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6553\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1106, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2911\",\"code\":\"6559\",\"name\":\"Colodium\",\"unit\":\"1\",\"cost\":\"80.8000\",\"price\":\"80.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"colodium.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6559\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1107, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1762\",\"code\":\"656\",\"name\":\"Broncholin Syrup 125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"656\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1108, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2912\",\"code\":\"6569\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6569\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1109, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1763\",\"code\":\"657\",\"name\":\"Letaplex Syrup 125ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1110, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1764\",\"code\":\"658\",\"name\":\"Alu Hyd Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"658\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1111, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2913\",\"code\":\"6581\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"8.2500\",\"price\":\"8.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6581\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1112, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1765\",\"code\":\"659\",\"name\":\"Amoxicillin 500mg Letap\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"659\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1113, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1766\",\"code\":\"661\",\"name\":\"Liverplex B 200ml\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"liverplex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"661\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1114, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2914\",\"code\":\"6620\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6620\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1115, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1767\",\"code\":\"663\",\"name\":\"Goldy Forte DS\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"goldy.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"663\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1116, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2915\",\"code\":\"6637\",\"name\":\"Colestop 10mg 30&rsquo;s (Atovastin)\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6637\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1117, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2916\",\"code\":\"6646\",\"name\":\"Coldrilif Capsules 10X10\",\"unit\":\"1\",\"cost\":\"57.0000\",\"price\":\"57.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"coldrilif.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6646\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1118, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2917\",\"code\":\"6650\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"52.8000\",\"price\":\"52.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6650\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1119, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2918\",\"code\":\"6653\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6653\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1120, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2919\",\"code\":\"6657\",\"name\":\"Coartem 80\\/480 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"4.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"coaterm.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1121, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2920\",\"code\":\"6658\",\"name\":\"Cloxacillin 250mg Letap\",\"unit\":\"1\",\"cost\":\"10.1000\",\"price\":\"10.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6658\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1122, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2921\",\"code\":\"6659\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"13.4400\",\"price\":\"13.4400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6659\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1123, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1768\",\"code\":\"668\",\"name\":\"Goldy Malaria Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"goldy.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1124, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1769\",\"code\":\"669\",\"name\":\"Gebediclo 50mg Tablets\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"669\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1125, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1770\",\"code\":\"670\",\"name\":\"Gebediclo 100mg Tablets\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"670\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1126, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2922\",\"code\":\"6719\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6719\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1127, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2923\",\"code\":\"6722\",\"name\":\"Cirotamin Tonic\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"CIROTAMIN.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6722\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1128, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1771\",\"code\":\"673\",\"name\":\"Azirocin Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"673\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1129, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1772\",\"code\":\"675\",\"name\":\"Azirocin 250mg Capules\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"675\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1130, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2924\",\"code\":\"6753\",\"name\":\"Ciprolex TZ\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"tz.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6753\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1131, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2925\",\"code\":\"6756\",\"name\":\"Ciprolex Eye\\/ Ear 5ML Drops\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"cipro-eye.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1132, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2926\",\"code\":\"6757\",\"name\":\"Cipro-Denk 500mg Tablet\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1133, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2927\",\"code\":\"6758\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1134, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2928\",\"code\":\"6759\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"15.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1135, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1773\",\"code\":\"676\",\"name\":\"Lydia Oral Contraception Pill\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"676\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1136, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2929\",\"code\":\"6760\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6760\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1137, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2930\",\"code\":\"6761\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1138, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2931\",\"code\":\"6762\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1139, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2932\",\"code\":\"6763\",\"name\":\"Chlo Ear Chloramphenicol Drops\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"chlo-ear.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6763\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1140, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2933\",\"code\":\"6764\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1141, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2934\",\"code\":\"6765\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6765\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1142, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2935\",\"code\":\"6766\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6766\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1143, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2936\",\"code\":\"6768\",\"name\":\"Cetapol Syrup\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"CETAPOL-SYRUP-1-600x400-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6768\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1144, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1774\",\"code\":\"677\",\"name\":\"Lydia Postpill 2Tablets\",\"unit\":\"1\",\"cost\":\"29.8000\",\"price\":\"29.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"677\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1145, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2937\",\"code\":\"6771\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"78.3000\",\"price\":\"78.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6771\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1146, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2938\",\"code\":\"6775\",\"name\":\"Celebrex\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6775\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1147, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2939\",\"code\":\"6777\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"40.6000\",\"price\":\"40.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6777\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1148, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2940\",\"code\":\"6779\",\"name\":\"Inoxime (Cefixime) 200mg Tablets\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6779\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1149, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2941\",\"code\":\"6780\",\"name\":\"Castor Oil 70ml\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1150, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2942\",\"code\":\"6782\",\"name\":\"Cartef Suspension\",\"unit\":\"1\",\"cost\":\"17.4000\",\"price\":\"17.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"cartef.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6782\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1151, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2943\",\"code\":\"6783\",\"name\":\"Cardioace Capsules 80&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"cadio.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6783\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1152, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2944\",\"code\":\"6784\",\"name\":\"Carbozap Syrup Adult 100ml FG\",\"unit\":\"1\",\"cost\":\"220.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6784\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1153, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2945\",\"code\":\"6785\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"252.0000\",\"price\":\"252.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6785\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1154, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2946\",\"code\":\"6786\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6786\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1155, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2947\",\"code\":\"6787\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6787\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1156, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2948\",\"code\":\"6788\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"52.6000\",\"price\":\"52.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6788\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1157, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2949\",\"code\":\"6789\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6789\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1158, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1775\",\"code\":\"679\",\"name\":\"Plaster roll Extra care 1Inch\",\"unit\":\"1\",\"cost\":\"269.3000\",\"price\":\"269.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"679\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1159, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2950\",\"code\":\"6792\",\"name\":\"Calpol 6+ Suspension 80ml\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cal-6.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6792\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1160, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2951\",\"code\":\"6793\",\"name\":\"Calpol Infant 2+Suspension 100ml\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"14.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"calpol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6793\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1161, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2952\",\"code\":\"6797\",\"name\":\"Calcium B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"40.6000\",\"price\":\"40.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"cal-b12.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6797\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1162, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1776\",\"code\":\"680\",\"name\":\"Kofof Child Suppresant 100ml\",\"unit\":\"1\",\"cost\":\"107.0000\",\"price\":\"107.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"680\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1163, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2953\",\"code\":\"6801\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"27.3000\",\"price\":\"27.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1164, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2954\",\"code\":\"6803\",\"name\":\"BX Syrup 100ml\",\"unit\":\"1\",\"cost\":\"43.1000\",\"price\":\"43.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6803\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1165, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2955\",\"code\":\"6804\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6804\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1166, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2956\",\"code\":\"6806\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6806\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1167, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2957\",\"code\":\"6807\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6807\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1168, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2958\",\"code\":\"6808\",\"name\":\"BRAINWESE OMEGA 3? 150ML\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"41.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1169, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2959\",\"code\":\"6809\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"38.2000\",\"price\":\"38.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6809\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1170, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1777\",\"code\":\"681\",\"name\":\"Kofof Child Expectorant 100ml\",\"unit\":\"1\",\"cost\":\"19.6000\",\"price\":\"19.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"681\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1171, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2960\",\"code\":\"6810\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"40.5000\",\"price\":\"40.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6810\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1172, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1778\",\"code\":\"682\",\"name\":\"Kofof Baby\",\"unit\":\"1\",\"cost\":\"145.0000\",\"price\":\"145.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"682\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1173, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1779\",\"code\":\"683\",\"name\":\"Dicnac 75\",\"unit\":\"1\",\"cost\":\"159.5000\",\"price\":\"159.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"dicnac.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"683\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1174, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1780\",\"code\":\"684\",\"name\":\"Emgiflox Suspension 100ml\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"684\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1175, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1781\",\"code\":\"685\",\"name\":\"Arziglobin Plus 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-67.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"685\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1176, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2961\",\"code\":\"6854\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1177, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2962\",\"code\":\"6855\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6855\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1178, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2963\",\"code\":\"6857\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"36.3000\",\"price\":\"36.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"bongela-adult.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6857\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1179, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1782\",\"code\":\"686\",\"name\":\"Gyprone Plus Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"686\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1180, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1783\",\"code\":\"689\",\"name\":\"Examination Gloves\",\"unit\":\"1\",\"cost\":\"30.7900\",\"price\":\"30.7900\",\"alert_quantity\":\"50.0000\",\"image\":\"gloves.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"689\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1181, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1784\",\"code\":\"690\",\"name\":\"Plaster Strips Easy Care\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"plst.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"690\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1182, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1785\",\"code\":\"691\",\"name\":\"Pregnancy Test Kit One-Step\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"one.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"691\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1183, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1786\",\"code\":\"694\",\"name\":\"Cotton Wool 25gm\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"cot.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"694\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1184, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1787\",\"code\":\"698\",\"name\":\"Malaria Test Kit\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"malari.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"698\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1185, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1788\",\"code\":\"699\",\"name\":\"Otrivin 0.05% Child Nasal Drop 10ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"otrivin-child.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"699\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1186, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1789\",\"code\":\"701\",\"name\":\"Wellman Drink\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"wellman.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"701\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1187, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1790\",\"code\":\"705\",\"name\":\"Jointace Omega-3 Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"joint.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"705\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1188, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2964\",\"code\":\"7054\",\"name\":\"Bonaplex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"BONAPLEX.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7054\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1189, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2965\",\"code\":\"7055\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7055\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1190, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1791\",\"code\":\"706\",\"name\":\"Feroglobin Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"148.0500\",\"price\":\"148.0500\",\"alert_quantity\":\"50.0000\",\"image\":\"fero-p.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"706\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1191, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1792\",\"code\":\"707\",\"name\":\"Aspanol Jnr. Syrup\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"aspanol-jnr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"707\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1192, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2966\",\"code\":\"7071\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"9.5800\",\"price\":\"9.5800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7071\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1193, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2967\",\"code\":\"7075\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"9.9600\",\"price\":\"9.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7075\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1194, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2968\",\"code\":\"7078\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7078\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1195, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2969\",\"code\":\"7083\",\"name\":\"Bioferon Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.5600\",\"price\":\"10.5600\",\"alert_quantity\":\"50.0000\",\"image\":\"BIOFERON-S.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7083\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1196, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1793\",\"code\":\"709\",\"name\":\"Martins liver salt (Orange)25&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"martins-orange.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"709\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1197, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1794\",\"code\":\"711\",\"name\":\"Mayfer Syrup 200ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"myfer.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"711\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1198, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1795\",\"code\":\"712\",\"name\":\"Huichun Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"huchin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"712\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1199, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1796\",\"code\":\"713\",\"name\":\"Carvedi Denk 6.25mgTablets 3X10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"caverdi.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"713\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1200, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2970\",\"code\":\"7130\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7130\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1201, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1797\",\"code\":\"714\",\"name\":\"Normal Saline Nasal Drops 10ml Lavina\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"lavina.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"714\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1202, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1798\",\"code\":\"716\",\"name\":\"Kalamina Lotion 120ml\",\"unit\":\"1\",\"cost\":\"81.2000\",\"price\":\"81.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"kalamina.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"716\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1203, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1799\",\"code\":\"717\",\"name\":\"Nexcofer Blood Tonic 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"nexcofer.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"717\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1204, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1800\",\"code\":\"718\",\"name\":\"Stopkof Cold and Catarrh Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"stopkof-cnc-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"718\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1205, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1801\",\"code\":\"720\",\"name\":\"Lavi-Cvamoxiclav DS Suspension 457mg\\/5ml 70ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"clsv.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"720\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1206, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1802\",\"code\":\"721\",\"name\":\"Durex Feels Condoms 3&apos;s\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"durex.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"721\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1207, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1803\",\"code\":\"722\",\"name\":\"Xarelto 20mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"11.2500\",\"price\":\"11.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"xarelto.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"722\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1208, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1804\",\"code\":\"723\",\"name\":\"Tetracycline Eye Ointement 5g Troge\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tetra.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"723\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1209, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2971\",\"code\":\"7230\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7230\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1210, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2972\",\"code\":\"7234\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7234\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1211, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1805\",\"code\":\"726\",\"name\":\"Secnidazole 1g Tablets 2&apos;s (Lavina)\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"secni.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"726\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1212, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1806\",\"code\":\"727\",\"name\":\"Metro-Z Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"20.9000\",\"price\":\"20.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"727\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1213, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1807\",\"code\":\"728\",\"name\":\"Metagyl Syrup (Metzol) Syrp 200mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"25.9000\",\"price\":\"25.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"metagly-sus.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"728\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1214, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1808\",\"code\":\"729\",\"name\":\"Lavi-Cvamoxiclav DS Suspension 228.5mg\\/5ml 70ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"729\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1215, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1809\",\"code\":\"730\",\"name\":\"Histazine (Cetrizine) 5mg\\/5ml Syrup 60ml\",\"unit\":\"1\",\"cost\":\"14.9600\",\"price\":\"14.9600\",\"alert_quantity\":\"50.0000\",\"image\":\"histazine-syr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"730\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1216, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2973\",\"code\":\"7308\",\"name\":\"Bendrofluazide 2.5mg Tablets 28s ACCORD\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"Bendrofluazide-2.5mg-Tablets-28s-UK.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1217, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2974\",\"code\":\"7310\",\"name\":\"Bells Teething Mixture\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"35.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"bells-teething.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7310\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1218, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1810\",\"code\":\"732\",\"name\":\"Ferrous Sulphate Tablets 500s ECL\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"732\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1219, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2975\",\"code\":\"7323\",\"name\":\"Borges Olive Oil 125ml\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"borges.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7323\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1220, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2976\",\"code\":\"7328\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"82.5000\",\"price\":\"82.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7328\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1221, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2977\",\"code\":\"7341\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"1.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1222, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1811\",\"code\":\"737\",\"name\":\"Clarithromycin 500mg Tablets 14s Exeter\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"737\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1223, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1812\",\"code\":\"741\",\"name\":\"Exetrim Suspension 240mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"741\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1224, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1813\",\"code\":\"742\",\"name\":\"Cetrizan Syrup 5MG\\/5ML 60ML\",\"unit\":\"1\",\"cost\":\"7.1500\",\"price\":\"7.1500\",\"alert_quantity\":\"50.0000\",\"image\":\"CETRIZAN.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"742\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1225, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2978\",\"code\":\"7422\",\"name\":\"Basecold Syrup\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7422\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1226, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1814\",\"code\":\"743\",\"name\":\"2B Benzyl Benzoate 25% Lotion 100ml\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"743\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1227, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1815\",\"code\":\"744\",\"name\":\"Bells Olive Oil 70ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"bells-olive.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"744\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1228, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2979\",\"code\":\"7448\",\"name\":\"Baseboom Gel\",\"unit\":\"1\",\"cost\":\"15.0900\",\"price\":\"15.0900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1229, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1816\",\"code\":\"745\",\"name\":\"Vit Bco Strong 30&apos;s Krka\",\"unit\":\"1\",\"cost\":\"158.6000\",\"price\":\"158.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"bco-strong.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"745\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1230, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2980\",\"code\":\"7457\",\"name\":\"Baby Cough Lintus 100ml ECL\",\"unit\":\"1\",\"cost\":\"158.4000\",\"price\":\"158.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"BABY-CO.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1231, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1817\",\"code\":\"746\",\"name\":\"Crestor 20mg\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"746\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1232, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1818\",\"code\":\"749\",\"name\":\"Diphex Bronchodilator Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"diphex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"749\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1233, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1819\",\"code\":\"751\",\"name\":\"Cetapol PM Syrup 100ml\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"CETAPOL-PM.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"751\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1234, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1820\",\"code\":\"753\",\"name\":\"Gluco-Naf C Pineapple 400mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"753\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1235, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1821\",\"code\":\"755\",\"name\":\"Multivitamin Syrup 125ml Ayrton\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"arton.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"755\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1236, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1822\",\"code\":\"756\",\"name\":\"Paracetamol 500mg Tablets Ayrton\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"par-ayr.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1237, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1823\",\"code\":\"759\",\"name\":\"Zithromax? 200mg\\/5ml 15ml Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1238, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1824\",\"code\":\"761\",\"name\":\"Healthlink Menopause Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1239, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1825\",\"code\":\"763\",\"name\":\"Healthlink Glucosamine & Chodroitin Caplet\",\"unit\":\"1\",\"cost\":\"33.8000\",\"price\":\"33.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"763\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1240, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1826\",\"code\":\"764\",\"name\":\"Healthlink Omega-3 Fish Oil Gels\",\"unit\":\"1\",\"cost\":\"21.5000\",\"price\":\"21.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1241, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1827\",\"code\":\"765\",\"name\":\"Health Link Hair, Nails & Skin\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"765\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1242, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2981\",\"code\":\"7664\",\"name\":\"B COMPLEX TAB LOCAL\",\"unit\":\"1\",\"cost\":\"54.2500\",\"price\":\"54.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1243, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2982\",\"code\":\"7668\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"75.3200\",\"price\":\"75.3200\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1244, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2983\",\"code\":\"7670\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"45.4900\",\"price\":\"45.4900\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7670\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1245, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2984\",\"code\":\"7675\",\"name\":\"Azilex 250 Capsules 6&rsquo;s\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"azilex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7675\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1246, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2985\",\"code\":\"7688\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7688\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1247, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2986\",\"code\":\"7690\",\"name\":\"Augmentin? 625mgTablets 14&rsquo;s\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"images-2.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7690\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1248, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1828\",\"code\":\"770\",\"name\":\"Lumetrust Suspension 150ml\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"770\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1249, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2987\",\"code\":\"7709\",\"name\":\"Atorvastatin 10mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"6.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7709\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1250, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2988\",\"code\":\"7716\",\"name\":\"Atorvastatin 20mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"59.0000\",\"price\":\"59.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7716\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1251, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1829\",\"code\":\"772\",\"name\":\"Lumetrust 140\\/360mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"772\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1252, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1830\",\"code\":\"773\",\"name\":\"Trustzole 400mg Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"773\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1253, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2989\",\"code\":\"7733\",\"name\":\"Atenolol 100mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7733\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1254, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2990\",\"code\":\"7735\",\"name\":\"Atacand 8mg Tablets 28&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7735\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1255, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2991\",\"code\":\"7736\",\"name\":\"Atacand Plus 16\\/12.5mg\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"atacand.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7736\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1256, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2992\",\"code\":\"7739\",\"name\":\"Asthalex Syrup 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"asthalex.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7739\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1257, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2993\",\"code\":\"7741\",\"name\":\"ASPIRIN LOCAL\",\"unit\":\"1\",\"cost\":\"168.0000\",\"price\":\"168.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7741\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1258, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2994\",\"code\":\"7754\",\"name\":\"Aspanol Productive\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"19.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7754\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1259, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2995\",\"code\":\"7756\",\"name\":\"Aspanol All In One Syrup\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"19.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1260, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2996\",\"code\":\"7757\",\"name\":\"Asmanol 100mg Tablets\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"18.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"asmanol.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1261, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2997\",\"code\":\"7758\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"32.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1262, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1831\",\"code\":\"776\",\"name\":\"Trustzole 400mg Tablets\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"776\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1263, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2998\",\"code\":\"7762\",\"name\":\"Ascoryl Syrup 125ml\",\"unit\":\"1\",\"cost\":\"49.2000\",\"price\":\"49.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"Ascorly-C-scaled.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1264, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"2999\",\"code\":\"7765\",\"name\":\"Arziglobin 200ml Syrup\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-67.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7765\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1265, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3000\",\"code\":\"7768\",\"name\":\"Arfan 20\\/120mg\",\"unit\":\"1\",\"cost\":\"21.7400\",\"price\":\"21.7400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7768\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1266, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3001\",\"code\":\"7772\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"19.3400\",\"price\":\"19.3400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7772\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1267, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1832\",\"code\":\"778\",\"name\":\"Babyvite 50ml Drops\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"778\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1268, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1833\",\"code\":\"780\",\"name\":\"Listerine 500ML All Types\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1269, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3002\",\"code\":\"7801\",\"name\":\"Aptizoom Syrup 200ml\",\"unit\":\"1\",\"cost\":\"46.0000\",\"price\":\"46.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"aptizoom-syr.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1270, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3003\",\"code\":\"7807\",\"name\":\"Apetatrust 200ml Syrup\",\"unit\":\"1\",\"cost\":\"90.8000\",\"price\":\"90.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7807\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1271, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1834\",\"code\":\"781\",\"name\":\"Fada Martins Herbal Mixture\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"781\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1272, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3004\",\"code\":\"7811\",\"name\":\"Apetamin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7811\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1273, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3005\",\"code\":\"7816\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7816\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1274, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3006\",\"code\":\"7819\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7819\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1275, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1835\",\"code\":\"782\",\"name\":\"Orelox 40mg\\/5ml Suspension 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"782\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1276, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3007\",\"code\":\"7822\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"46.8000\",\"price\":\"46.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7822\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1277, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3008\",\"code\":\"7825\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7825\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1278, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3009\",\"code\":\"7827\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"27.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7827\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1279, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1836\",\"code\":\"783\",\"name\":\"Enterogemina 5ml? Ampoles 10&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"783\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1280, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3010\",\"code\":\"7831\",\"name\":\"Ampicillin 250mg Capsules 50X10 Eskay\",\"unit\":\"1\",\"cost\":\"38.8000\",\"price\":\"38.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7831\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1281, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3011\",\"code\":\"7833\",\"name\":\"Amoxicillin Suspension 100ml (Letap)\",\"unit\":\"1\",\"cost\":\"20.6000\",\"price\":\"20.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"AMOCXI.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1282, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3012\",\"code\":\"7836\",\"name\":\"Amoksiklav 1g Tablet 10s\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"1000amok.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7836\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1283, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1837\",\"code\":\"784\",\"name\":\"Skycef 500mg (Cefuroxime) 1X10\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"784\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1284, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3013\",\"code\":\"7840\",\"name\":\"AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7840\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1285, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3014\",\"code\":\"7844\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"29.6000\",\"price\":\"29.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7844\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1286, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3015\",\"code\":\"7847\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7847\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1287, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3016\",\"code\":\"7849\",\"name\":\"Amcof Adult Syrup\",\"unit\":\"1\",\"cost\":\"91.2000\",\"price\":\"91.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7849\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1288, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3017\",\"code\":\"7852\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"59.9000\",\"price\":\"59.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7852\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1289, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3018\",\"code\":\"7854\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"55.8000\",\"price\":\"55.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1290, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3019\",\"code\":\"7857\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"58.9000\",\"price\":\"58.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7857\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1291, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1838\",\"code\":\"786\",\"name\":\"Skycef 250mg (Cefuroxime) 1X10\",\"unit\":\"1\",\"cost\":\"39.3000\",\"price\":\"39.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"786\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1292, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3020\",\"code\":\"7864\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7864\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1293, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3021\",\"code\":\"7868\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"99.6000\",\"price\":\"99.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7868\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1294, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3022\",\"code\":\"7875\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"78.3000\",\"price\":\"78.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7875\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1295, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3023\",\"code\":\"7878\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7878\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1296, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1839\",\"code\":\"788\",\"name\":\"Paracetamol 500mg Tablets 100_10 Eskay\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"788\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1297, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3024\",\"code\":\"7880\",\"name\":\"Agbeve Tonic\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"6.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"agbeve.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7880\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1298, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3025\",\"code\":\"7885\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7885\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1299, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3026\",\"code\":\"7887\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7887\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1300, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3027\",\"code\":\"7888\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"54.9000\",\"price\":\"54.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7888\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1301, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1840\",\"code\":\"789\",\"name\":\"Skyclav 228.5mg\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"789\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1302, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3028\",\"code\":\"7891\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7891\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1303, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1841\",\"code\":\"791\",\"name\":\"Skyclav 457mg\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"791\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1304, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1842\",\"code\":\"792\",\"name\":\"Skyclav 625\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"792\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1305, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1843\",\"code\":\"793\",\"name\":\"Skyclav 1g\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"793\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1306, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1844\",\"code\":\"794\",\"name\":\"Maxmox 500mg\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"794\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1307, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3029\",\"code\":\"7948\",\"name\":\"Adom W&G Capsules\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"wng.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7948\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1308, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1845\",\"code\":\"798\",\"name\":\"Eskyzole Triple Action Cream 30g\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"798\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1309, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3030\",\"code\":\"7988\",\"name\":\"Addyzoa Capsules 20&rsquo;s\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7988\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1310, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1846\",\"code\":\"799\",\"name\":\"Eskaron Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"799\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1311, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3031\",\"code\":\"7990\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7990\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1312, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3032\",\"code\":\"7992\",\"name\":\"Acidom 20mg Capsules\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"download-60.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7992\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1313, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3033\",\"code\":\"7994\",\"name\":\"Aboniki\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7994\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1314, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1847\",\"code\":\"800\",\"name\":\"Benylin Original Syrup 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"800\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1315, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3034\",\"code\":\"8000\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1316, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3035\",\"code\":\"8001\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1317, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1848\",\"code\":\"801\",\"name\":\"Starcold\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1318, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1849\",\"code\":\"802\",\"name\":\"Epiciprin (Ciprofloxacin 0.3%) Eye\\/Ear Drop\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"802\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1319, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1850\",\"code\":\"803\",\"name\":\"Dexatrol Eye \\/ Ear Drop 5ml\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"803\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1320, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1851\",\"code\":\"804\",\"name\":\"Epifenac Eye 1mg\\/ml Drop\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"804\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1321, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3036\",\"code\":\"8043\",\"name\":\"3CP\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8043\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1322, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3037\",\"code\":\"8062\",\"name\":\"~AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"61.8000\",\"price\":\"61.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8062\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1323, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1852\",\"code\":\"807\",\"name\":\"Nostamine Eye\\/Nose Drop 10ml\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"807\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1324, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1853\",\"code\":\"808\",\"name\":\"Epicrom 2% Eye Drop 10ml\",\"unit\":\"1\",\"cost\":\"7.2500\",\"price\":\"7.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1325, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1854\",\"code\":\"809\",\"name\":\"Azycin 500mg\",\"unit\":\"1\",\"cost\":\"226.2100\",\"price\":\"226.2100\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"809\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1326, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3038\",\"code\":\"8090\",\"name\":\"AMERICAN WHITE VINEGAR? 473ML\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8090\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1327, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1855\",\"code\":\"812\",\"name\":\"Malin Baby Plus\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"812\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1328, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1856\",\"code\":\"814\",\"name\":\"Milk of Magnesia 125ml Letap\",\"unit\":\"1\",\"cost\":\"14.7600\",\"price\":\"14.7600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"814\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1329, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1857\",\"code\":\"815\",\"name\":\"Co-Trimoxazole (Septrin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"815\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1330, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1858\",\"code\":\"816\",\"name\":\"Abyvita Syrup 200ml\",\"unit\":\"1\",\"cost\":\"27.9800\",\"price\":\"27.9800\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"816\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1331, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3039\",\"code\":\"8160\",\"name\":\"AIRHEAD BITES FRUIT 24CT\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"11.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"airhead-bites-fruit-24ct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1332, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3040\",\"code\":\"8163\",\"name\":\"STAMINA- RX ? 24CT\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"stamina-rx-24ct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1333, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1859\",\"code\":\"817\",\"name\":\"Peladol Extra\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"817\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1334, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1860\",\"code\":\"818\",\"name\":\"Sporanox\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"sporanox.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"818\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1335, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1861\",\"code\":\"820\",\"name\":\"Motilium Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"820\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1336, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3041\",\"code\":\"8202\",\"name\":\"JAGUAR KING 30000 ? 24CT\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"02MJ2.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8202\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1337, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1862\",\"code\":\"821\",\"name\":\"Gyno-Daktarin Pessaries\",\"unit\":\"1\",\"cost\":\"30.5000\",\"price\":\"30.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"821\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1338, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1863\",\"code\":\"823\",\"name\":\"Gyno-Daktarin Cream\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"20.1000\",\"alert_quantity\":\"50.0000\",\"image\":\"gyno-daktarin.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"823\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1339, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1864\",\"code\":\"824\",\"name\":\"Fleming 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"fleming.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"824\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1340, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1865\",\"code\":\"825\",\"name\":\"Cororange Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"825\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1341, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1866\",\"code\":\"827\",\"name\":\"Adom Ladies Mixture\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"827\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1342, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1867\",\"code\":\"828\",\"name\":\"Adom Ladies Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"828\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1343, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1868\",\"code\":\"829\",\"name\":\"Cirotamin Caplets 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"829\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1344, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1869\",\"code\":\"831\",\"name\":\"Lipitor 20mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"831\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1345, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1870\",\"code\":\"832\",\"name\":\"Deep Freez Gel 35g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"832\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1346, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3042\",\"code\":\"8323\",\"name\":\"HORNY GOAT WEED 24CT\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"horny-goat-weed-24ct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8323\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1347, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1871\",\"code\":\"833\",\"name\":\"3TOL 250ml Anticeptic & Disinfectant\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1348, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3043\",\"code\":\"8336\",\"name\":\"ALKA SELTZ PLS COLD 20\\/2&rsquo;s BOX\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"alka-seltz-pls-cold-202s-box.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8336\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1349, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3044\",\"code\":\"8355\",\"name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"unit\":\"1\",\"cost\":\"68.0000\",\"price\":\"68.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1350, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1872\",\"code\":\"837\",\"name\":\"3TOL Lime 250ml Anticeptic & Disinfectant\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"837\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1351, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3045\",\"code\":\"8376\",\"name\":\"ZANTAC? 150? 25CT\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"zantac-150-25ct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8376\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1352, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3046\",\"code\":\"8377\",\"name\":\"DAYQUIL 2&rsquo;s DISP.? (25 CT)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"dayquil-2s-disp-25-ct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8377\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1353, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3047\",\"code\":\"8378\",\"name\":\"WHITE ALCOHOL 50%? 16oz\\/24CT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1354, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1873\",\"code\":\"839\",\"name\":\"3TOL 500ML Lime Fresh Anticeptic\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"839\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1355, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1874\",\"code\":\"840\",\"name\":\"3TOL 500ML Anticeptic & Disinfectant\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"840\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"2\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1356, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1875\",\"code\":\"846\",\"name\":\"Mucolex Cough Syrup150ml\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"846\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1357, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1876\",\"code\":\"847\",\"name\":\"Zubes Extra Strong Cough Lozenges\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"28.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"847\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1358, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1877\",\"code\":\"850\",\"name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"850\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1359, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1878\",\"code\":\"852\",\"name\":\"Fiesta Lubricant\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"4.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"852\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1360, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1879\",\"code\":\"854\",\"name\":\"Luex Nasal Inhaler (Jar)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1361, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1880\",\"code\":\"856\",\"name\":\"Luex Adult Dry Cough 150ml syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"856\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1362, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1881\",\"code\":\"857\",\"name\":\"Lexofen 150ml Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"LEXOFEN.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"857\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1363, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1882\",\"code\":\"858\",\"name\":\"Tegretol 200mg tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"858\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1364, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1883\",\"code\":\"859\",\"name\":\"Tegretol CR 400mg tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"859\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1365, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1884\",\"code\":\"860\",\"name\":\"Tegretol CR 200mg Divitabs 50&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"860\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1366, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1885\",\"code\":\"862\",\"name\":\"Proximexa 500mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"862\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1367, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1886\",\"code\":\"863\",\"name\":\"Polygynax Pessaries 12&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"polygnax.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"863\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1368, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1887\",\"code\":\"867\",\"name\":\"Phlebodia B\\/15 Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"867\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1369, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1888\",\"code\":\"870\",\"name\":\"Olfen Gel 50gm\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"olfen.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"870\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1370, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1889\",\"code\":\"871\",\"name\":\"Metformin Denk 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"871\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1371, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1890\",\"code\":\"872\",\"name\":\"Perfectil Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"872\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1372, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1891\",\"code\":\"873\",\"name\":\"Zulu MR 100mg Tablet\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"873\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1373, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1892\",\"code\":\"876\",\"name\":\"Ocip TZ\",\"unit\":\"1\",\"cost\":\"2.1600\",\"price\":\"2.1600\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"876\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1374, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1893\",\"code\":\"877\",\"name\":\"T-Sec 1g Tablets\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"877\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1375, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1894\",\"code\":\"879\",\"name\":\"Ocip 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"15.2500\",\"price\":\"15.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"879\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1376, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1895\",\"code\":\"880\",\"name\":\"Man Up Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"880\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1377, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1896\",\"code\":\"881\",\"name\":\"Inopril 10\\/12.5mg\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"65.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"881\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1378, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1897\",\"code\":\"882\",\"name\":\"Zithromax 250mg Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"882\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1379, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1898\",\"code\":\"883\",\"name\":\"Zentel 100mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"883\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1380, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1899\",\"code\":\"884\",\"name\":\"Nestrim Tabs 500 Blist\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"884\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1381, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1900\",\"code\":\"885\",\"name\":\"Nepafenac 0.001 Eye Drops 5ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"885\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1382, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1901\",\"code\":\"886\",\"name\":\"Metoclopramide 10mg Tablets 28&apos;s Exeter\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"mto.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"886\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1383, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1902\",\"code\":\"887\",\"name\":\"Menthodex Lozenges 80G Sachet 25_ ORIG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"metn.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"887\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1384, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1903\",\"code\":\"888\",\"name\":\"Menthodex Lozenges 80G Sachet 25_ H&L\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"menth.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"888\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1385, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1904\",\"code\":\"890\",\"name\":\"Immunocin Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"49.4000\",\"price\":\"49.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"890\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1386, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1905\",\"code\":\"894\",\"name\":\"Hydrocortisone Cream 0.01 30g Exeter\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"hydrct.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"894\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1387, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1906\",\"code\":\"896\",\"name\":\"Gastrone Suspension 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"896\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1388, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1907\",\"code\":\"898\",\"name\":\"Amoxicillin 125mg\\/5ml 100ml Suspension EXE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"898\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1389, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1908\",\"code\":\"900\",\"name\":\"Exaflox (Fluclox) 100ml suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"900\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1390, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1909\",\"code\":\"901\",\"name\":\"Enaphagemetformin 500mg Tablets 500&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"901\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1391, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1910\",\"code\":\"902\",\"name\":\"Enafix (Cefixime) 100ml Suspension\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"902\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1392, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1911\",\"code\":\"904\",\"name\":\"Drez Solution 30ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"904\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1393, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1912\",\"code\":\"905\",\"name\":\"Enacin-C (Clindamycin) 300mg Caps 100_\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"905\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1394, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1913\",\"code\":\"907\",\"name\":\"Diclofenac Inj 75mg\\/3ml 10_\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"907\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1395, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1914\",\"code\":\"908\",\"name\":\"Clotrimazole Cream 0.01 20g\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"908\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1396, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1915\",\"code\":\"910\",\"name\":\"Vitamin B Denk\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"910\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1397, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1916\",\"code\":\"911\",\"name\":\"Atenolol 50mg Tablets 28&apos;s (ECL)\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"911\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1398, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1917\",\"code\":\"912\",\"name\":\"Ascovit CEE (Vitamin C) 100ml Syrup\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"asc-cee.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"912\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1399, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1918\",\"code\":\"913\",\"name\":\"Allacan 10 mg Tabs 30&apos;s (Cetirizine)\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"913\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1400, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1919\",\"code\":\"914\",\"name\":\"City Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"914\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1401, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1920\",\"code\":\"915\",\"name\":\"Grison Syrup 125mg\\/5ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"915\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1402, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1921\",\"code\":\"917\",\"name\":\"Levon 2 Postpill CRD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"917\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1403, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1922\",\"code\":\"918\",\"name\":\"Wellwoman 50+ CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"918\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1404, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1923\",\"code\":\"921\",\"name\":\"Pregnacare Max\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"921\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1405, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1924\",\"code\":\"922\",\"name\":\"Pregnacare Breastfeeding Cap\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"922\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1406, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1925\",\"code\":\"925\",\"name\":\"Perfectil Plus Caps\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"925\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1407, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1926\",\"code\":\"926\",\"name\":\"Neurozan 30?8 Caps\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"6.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"926\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1408, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1927\",\"code\":\"931\",\"name\":\"Menopace Tabs UK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"931\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1409, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1928\",\"code\":\"932\",\"name\":\"Diabetone Capsules 30&apos;s UK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"932\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1410, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1929\",\"code\":\"933\",\"name\":\"Wellwoman Plus Caps\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"933\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1411, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1930\",\"code\":\"935\",\"name\":\"Wellwoman Max Caps 28 tabs\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"935\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1412, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1931\",\"code\":\"936\",\"name\":\"Wellwoman 70+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"4.0200\",\"alert_quantity\":\"50.0000\",\"image\":\"wellwoman-70.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"936\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1413, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1932\",\"code\":\"937\",\"name\":\"Res-Q Antacid Suspension\",\"unit\":\"1\",\"cost\":\"44.8000\",\"price\":\"44.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"resq.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"937\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1414, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1933\",\"code\":\"938\",\"name\":\"Methyl Salicylate Ointment 40g\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"ms-oint.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"938\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1415, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1934\",\"code\":\"939\",\"name\":\"Ichthammol Ointment 40g\",\"unit\":\"1\",\"cost\":\"5.5500\",\"price\":\"5.5500\",\"alert_quantity\":\"50.0000\",\"image\":\"itch.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"939\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1416, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1935\",\"code\":\"940\",\"name\":\"Salicylics Ointment 40g\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"sali.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"940\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1417, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1936\",\"code\":\"941\",\"name\":\"Vagid CL Suppositories\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"vagid.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"941\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1418, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1937\",\"code\":\"942\",\"name\":\"Lonart Forte 40\\/240mg Tablets\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"lonart-forte.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"942\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1419, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1938\",\"code\":\"943\",\"name\":\"Lofnac P Tablets 50\\/500\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"2.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"lofnac-p.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"943\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1420, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1939\",\"code\":\"945\",\"name\":\"GV- Fluc 150mg Capsules\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gv-fluc.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"945\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1421, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1940\",\"code\":\"946\",\"name\":\"Gacet 1g Suppository\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"gacet-1gm.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"946\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1422, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1941\",\"code\":\"947\",\"name\":\"Alpha Garlic Capsules\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"alpha.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"947\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1423, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1942\",\"code\":\"948\",\"name\":\"Borges Olive Oil 500ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"borges-500ml.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"948\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1424, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1943\",\"code\":\"949\",\"name\":\"Fumet Suspension\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"fumet.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"949\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1425, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1944\",\"code\":\"951\",\"name\":\"Deep Heat Rub 67g\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"deep-heat-rub.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"951\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1426, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1945\",\"code\":\"952\",\"name\":\"Wormbat 10ml Suspension\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"wormbat.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"952\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1427, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1946\",\"code\":\"953\",\"name\":\"Procomil Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"procomil-tab.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"953\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1428, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1947\",\"code\":\"954\",\"name\":\"Polygel Suspension 120ml\",\"unit\":\"1\",\"cost\":\"15.9000\",\"price\":\"15.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"polygel.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"954\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1429, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1948\",\"code\":\"956\",\"name\":\"Heptopep Forte 200ml Syrup\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"heptopep.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"956\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1430, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1949\",\"code\":\"957\",\"name\":\"Haemoglobin 200ml Syrup M&G\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"haemo.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"957\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1431, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1950\",\"code\":\"958\",\"name\":\"Procomil Male Delay Spray\",\"unit\":\"1\",\"cost\":\"9.2500\",\"price\":\"9.2500\",\"alert_quantity\":\"50.0000\",\"image\":\"procomil.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"958\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1432, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1951\",\"code\":\"959\",\"name\":\"M2-Tone Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"m2_tone.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"959\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1433, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1952\",\"code\":\"963\",\"name\":\"Vivadona Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"50.0000\",\"image\":\"vivadona.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"963\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1434, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1953\",\"code\":\"968\",\"name\":\"Dymol 50\\/500 Mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"dymo.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"968\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1435, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1954\",\"code\":\"969\",\"name\":\"Axacef 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"17.4000\",\"price\":\"17.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"axa.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"969\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1436, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1955\",\"code\":\"970\",\"name\":\"Livomyn Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"19.4000\",\"price\":\"19.4000\",\"alert_quantity\":\"50.0000\",\"image\":\"Charak-Livomyn.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"970\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1437, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1956\",\"code\":\"971\",\"name\":\"Evanova Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"evanova.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"971\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1438, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1957\",\"code\":\"972\",\"name\":\"Prednisolone 5mg Tablets 70_10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"972\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1439, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1958\",\"code\":\"974\",\"name\":\"Co-Trimoxazole 80\\/400mg(Septrin)Tablets 100_10\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"c-tri.png\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"974\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1440, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1959\",\"code\":\"976\",\"name\":\"Kefrox 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"kefrox.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"976\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1441, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1960\",\"code\":\"977\",\"name\":\"Levothyroxin 50mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"levo-50.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"977\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1442, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1961\",\"code\":\"979\",\"name\":\"Levothyroxine 100mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"14.8500\",\"price\":\"14.8500\",\"alert_quantity\":\"50.0000\",\"image\":\"levo.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"979\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1443, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1962\",\"code\":\"980\",\"name\":\"Tamsulosin 400mcg Capsules 30&apos;s Teva\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"tamsu.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"980\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1444, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1963\",\"code\":\"982\",\"name\":\"Contiflo XL 400mcg Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"311.6000\",\"price\":\"311.6000\",\"alert_quantity\":\"50.0000\",\"image\":\"contiflo-xl.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"982\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1445, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1964\",\"code\":\"984\",\"name\":\"Seven Seas JointCare Active 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"ss-j-active.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"984\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1446, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1965\",\"code\":\"985\",\"name\":\"Seven Seas JointCare Suplex 30&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"seve-cod-j.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"985\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1447, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1966\",\"code\":\"986\",\"name\":\"Seven Seas C\\/o Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"986\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1448, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1967\",\"code\":\"987\",\"name\":\"Tylenol Extra Strength 500mg Capsules 50&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"987\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1449, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1968\",\"code\":\"991\",\"name\":\"Ibuprofen Suspension 100ml\\/5ml\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"991\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1450, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1969\",\"code\":\"992\",\"name\":\"Furosemide 20mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"992\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1451, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1970\",\"code\":\"993\",\"name\":\"Dulcolax 10mg Suppositories 12&apos;s\",\"unit\":\"1\",\"cost\":\"8.1400\",\"price\":\"8.1400\",\"alert_quantity\":\"50.0000\",\"image\":\"\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"993\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1452, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1971\",\"code\":\"994\",\"name\":\"Fluconazole 150mg Capsules Teva\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"fluconazole.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"994\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1453, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1972\",\"code\":\"995\",\"name\":\"Alka 5 Syrup 100ml\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"50.0000\",\"image\":\"Alka-5-syrup.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"995\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1454, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1973\",\"code\":\"996\",\"name\":\"Day And Night Nurse Capsules 24&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"50.0000\",\"image\":\"day-n-night.jpeg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"996\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1455, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1974\",\"code\":\"997\",\"name\":\"Hyponidd Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"50.0000\",\"image\":\"HYPONIDD-TABS.jpg\",\"category_id\":\"1598\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"997\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1456, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1975\",\"code\":\"998\",\"name\":\"Day Nurse Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"50.0000\",\"image\":\"day-nurse.jpeg\",\"category_id\":\"1598\",\"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\":\"998\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:29:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1457, 'Purchase is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5\",\"reference_no\":\"PO2022\\/09\\/0005\",\"date\":\"2022-09-09 01:44:00\",\"supplier_id\":\"2\",\"supplier\":\"Default Supplier\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"1800.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\":\"1800.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"2\",\"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\":\"29\",\"purchase_id\":\"5\",\"transfer_id\":null,\"product_id\":\"3048\",\"product_code\":\"1\",\"product_name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"option_id\":\"3\",\"net_unit_cost\":\"20.0000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1800.0000\",\"quantity_balance\":\"90.0000\",\"date\":\"2022-09-09\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":\"90.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"90.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"}]}', '2022-09-08 21:45:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1458, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3048\",\"code\":\"1\",\"name\":\"WHITE ALCOHOL 50oz\\/24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"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\":\"1\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"1\",\"hide\":\"0\",\"second_name\":\"Pro 11\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1459, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3057\",\"code\":\"10\",\"name\":\"AMERICAN WHITE VINEGAR  473ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"10\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1460, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3147\",\"code\":\"100\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1461, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4047\",\"code\":\"1000\",\"name\":\"Azomax 200mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1462, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4048\",\"code\":\"1001\",\"name\":\"Benylin 4 Flu 100ml Syrup\",\"unit\":\"1\",\"cost\":\"22.9800\",\"price\":\"22.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"benylin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1463, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4049\",\"code\":\"1002\",\"name\":\"Benylin 4 Flu 200ml Syrup\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"benyli.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1002\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1464, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4050\",\"code\":\"1003\",\"name\":\"Celecoxib 200mg Capsules Exeter\",\"unit\":\"1\",\"cost\":\"26.1800\",\"price\":\"26.1800\",\"alert_quantity\":\"20.0000\",\"image\":\"images-4.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1003\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1465, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4051\",\"code\":\"1004\",\"name\":\"Ctrizan 10mg Tablets\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1004\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1466, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4052\",\"code\":\"1005\",\"name\":\"E-Panol 100ml Syrup Plain\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"20.0000\",\"image\":\"e-panol-plain.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1005\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1467, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4053\",\"code\":\"1006\",\"name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1006\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1468, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4054\",\"code\":\"1007\",\"name\":\"Exclofen (Diclofenac) Eye drops 1% 10ml\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1007\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1469, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4055\",\"code\":\"1008\",\"name\":\"Infa V Wash 100ml\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1008\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1470, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4056\",\"code\":\"1009\",\"name\":\"Kidivite Multivitamin 25ml Drops\",\"unit\":\"1\",\"cost\":\"9.9800\",\"price\":\"9.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1009\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1471, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3148\",\"code\":\"101\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"101\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1472, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4057\",\"code\":\"1010\",\"name\":\"Losartan Potassium 100mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"17.4500\",\"price\":\"17.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1010\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1473, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4058\",\"code\":\"1011\",\"name\":\"Infa V Wash 50ml\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1011\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1474, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4059\",\"code\":\"1012\",\"name\":\"Nestrim 100ml Syrup\",\"unit\":\"1\",\"cost\":\"4.6200\",\"price\":\"4.6200\",\"alert_quantity\":\"20.0000\",\"image\":\"nestrim-sy.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1012\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1475, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4060\",\"code\":\"1013\",\"name\":\"Stopkof Dry Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1013\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1476, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4061\",\"code\":\"1014\",\"name\":\"No. 10 Liver Salt (All Flavors)\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1014\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1477, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4062\",\"code\":\"1015\",\"name\":\"Cetrizan 10mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"6.3300\",\"price\":\"6.3300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1015\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1478, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4063\",\"code\":\"1016\",\"name\":\"Menthox Child Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"4.6700\",\"alert_quantity\":\"20.0000\",\"image\":\"download-83.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1016\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1479, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4064\",\"code\":\"1017\",\"name\":\"Menthox Lozenges\",\"unit\":\"1\",\"cost\":\"15.6000\",\"price\":\"15.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-81.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1017\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1480, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4065\",\"code\":\"1018\",\"name\":\"Martins liver salt Plain\",\"unit\":\"1\",\"cost\":\"9.9400\",\"price\":\"9.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"download-55.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1018\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1481, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4066\",\"code\":\"1019\",\"name\":\"Diazepam 10mg Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"30.8000\",\"price\":\"30.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1019\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1482, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3149\",\"code\":\"102\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"102\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1483, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4067\",\"code\":\"1020\",\"name\":\"Diphex Junior Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"diphex-100.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1020\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1484, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4068\",\"code\":\"1021\",\"name\":\"Durol Tonic  Junior 200ml\",\"unit\":\"1\",\"cost\":\"7.9300\",\"price\":\"7.9300\",\"alert_quantity\":\"20.0000\",\"image\":\"download-2.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1021\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1485, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4069\",\"code\":\"1022\",\"name\":\"Zinc Oxide Ointment 40g\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-79.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1022\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1486, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4070\",\"code\":\"1023\",\"name\":\"Koffex Junior Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"koffex-adt-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1023\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1487, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4071\",\"code\":\"1024\",\"name\":\"Azilex Suspension 15ml\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-70.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1024\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1488, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4072\",\"code\":\"1025\",\"name\":\"Fericon 200ml Syrup\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1025\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1489, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4073\",\"code\":\"1026\",\"name\":\"Onita Syrup 200ml\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"15.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1026\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1490, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4074\",\"code\":\"1027\",\"name\":\"Onidoll Tablets\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1027\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1491, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4075\",\"code\":\"1028\",\"name\":\"Ladinas 2X10\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-54.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1028\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1492, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4076\",\"code\":\"1029\",\"name\":\"Diabetmin (Metformin 500mg) 100&apos;s\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"25.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-53.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1029\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1493, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3150\",\"code\":\"103\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"103\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1494, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4077\",\"code\":\"1030\",\"name\":\"Virest Cream (Aciclovir) 5mg\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-52.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1030\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1495, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4078\",\"code\":\"1031\",\"name\":\"Cotton wool 50g\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1031\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1496, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4079\",\"code\":\"1032\",\"name\":\"Coldiron Syrup 125ml\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1032\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1497, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4080\",\"code\":\"1033\",\"name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"1.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"GENDS.jpg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1033\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1498, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4081\",\"code\":\"1034\",\"name\":\"Imodium Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"18.1000\",\"price\":\"18.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"images.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1034\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1499, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4082\",\"code\":\"1035\",\"name\":\"Cataflam 50mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"34.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-47-1.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1035\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1500, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4083\",\"code\":\"1036\",\"name\":\"Cororange Syrup 200ml\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-46.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1036\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1501, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4084\",\"code\":\"1037\",\"name\":\"Diamicron 60mg MR Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"88.0000\",\"price\":\"88.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-45-1.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1037\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1502, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4085\",\"code\":\"1038\",\"name\":\"Exforge HCT 10\\/160\\/12. 5mg 28&apos;s\",\"unit\":\"1\",\"cost\":\"168.6000\",\"price\":\"168.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-44.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1038\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1503, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4086\",\"code\":\"1039\",\"name\":\"No-Spa 40mg 100&apos;s\",\"unit\":\"1\",\"cost\":\"63.8000\",\"price\":\"63.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-43.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1039\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1504, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3151\",\"code\":\"104\",\"name\":\"Carbozap Syrup Adult 100ml FG\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"104\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1505, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4087\",\"code\":\"1040\",\"name\":\"Orelox 200mg Tablets\",\"unit\":\"1\",\"cost\":\"117.4000\",\"price\":\"117.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-42.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1040\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1506, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4088\",\"code\":\"1041\",\"name\":\"Stugeron Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"stugeron.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1041\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1507, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4089\",\"code\":\"1042\",\"name\":\"Vermox Suspension\",\"unit\":\"1\",\"cost\":\"21.8000\",\"price\":\"21.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-66.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1042\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1508, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4090\",\"code\":\"1043\",\"name\":\"Dermiron Plus\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"dermiron-plus.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1043\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1509, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4091\",\"code\":\"1044\",\"name\":\"Sibi Men Capsules\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-36.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1044\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1510, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4092\",\"code\":\"1045\",\"name\":\"Diagellates Elixir 125ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1045\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1511, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4093\",\"code\":\"1046\",\"name\":\"Diagellates Elixir 250ml\",\"unit\":\"1\",\"cost\":\"25.5000\",\"price\":\"25.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1046\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1512, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4094\",\"code\":\"1047\",\"name\":\"Diagellates Elixir 500ml\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"45.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"diagelat.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1047\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1513, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4095\",\"code\":\"1048\",\"name\":\"Voltfast Powder 50mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"53.2000\",\"price\":\"53.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-1.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1048\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1514, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4096\",\"code\":\"1049\",\"name\":\"Cyclogest 200mg Pessaries 15&apos;s\",\"unit\":\"1\",\"cost\":\"115.0000\",\"price\":\"115.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cyclogest.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1049\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1515, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3152\",\"code\":\"105\",\"name\":\"Cardioace Capsules 80&apos;s\",\"unit\":\"1\",\"cost\":\"77.9100\",\"price\":\"77.9100\",\"alert_quantity\":\"20.0000\",\"image\":\"cadio.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"105\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1516, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4097\",\"code\":\"1050\",\"name\":\"Primolut N 5mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"50.6000\",\"price\":\"50.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"primo.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1050\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1517, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4098\",\"code\":\"1051\",\"name\":\"C-Pheniramine Syrup 100ml (Piriton)\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1051\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1518, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4099\",\"code\":\"1052\",\"name\":\"Paracetamol 500mg Tablets 100&apos;s EXE\",\"unit\":\"1\",\"cost\":\"19.5800\",\"price\":\"19.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"para-exeter.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1052\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1519, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4100\",\"code\":\"1053\",\"name\":\"Gastrone Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1053\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1520, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4101\",\"code\":\"1054\",\"name\":\"Naklofen Duo Capsules 75mg 20&apos;s\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1054\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1521, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4102\",\"code\":\"1055\",\"name\":\"Infa V Pessaries\",\"unit\":\"1\",\"cost\":\"22.9000\",\"price\":\"22.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1055\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1522, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4103\",\"code\":\"1056\",\"name\":\"Infa V Ointment\",\"unit\":\"1\",\"cost\":\"20.9000\",\"price\":\"20.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-84.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1056\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1523, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4104\",\"code\":\"1057\",\"name\":\"Calamine Lotion 100ml Mal-Titi\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1057\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1524, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4105\",\"code\":\"1058\",\"name\":\"Tobcee Forte\",\"unit\":\"1\",\"cost\":\"17.4000\",\"price\":\"17.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"tobcee-forte.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1058\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1525, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4106\",\"code\":\"1059\",\"name\":\"Mist Pot Cit (Potassium Citrate) Mal-Titi\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1059\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1526, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3153\",\"code\":\"106\",\"name\":\"Cartef Suspension\",\"unit\":\"1\",\"cost\":\"6.8800\",\"price\":\"6.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"cartef.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"106\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1527, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4107\",\"code\":\"1060\",\"name\":\"Hydrogen Peroxide Mal-Titi\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1060\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1528, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4108\",\"code\":\"1061\",\"name\":\"Mist Expect Sed Mal-Titi\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mist-expect-sed.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1061\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1529, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4109\",\"code\":\"1062\",\"name\":\"Mist FAC (Ferric citrate) 200ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1062\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1530, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4110\",\"code\":\"1063\",\"name\":\"Mist Sennaco Mal-Titi\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"mist-cenaco.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1063\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1531, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4111\",\"code\":\"1064\",\"name\":\"Benylin Infant 125ml\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1064\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1532, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4112\",\"code\":\"1065\",\"name\":\"Valupack Vitamin C Eff. 1000mg\",\"unit\":\"1\",\"cost\":\"23.5000\",\"price\":\"23.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1065\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1533, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4113\",\"code\":\"1066\",\"name\":\"Azithromycin 500mg Tablets 3&apos;s\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1066\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1534, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4114\",\"code\":\"1067\",\"name\":\"Vigomax Forte Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"vIGOMAX-FORTE-TABLETS-.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1067\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1535, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4115\",\"code\":\"1068\",\"name\":\"Calcough 125ml Syrup\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1068\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1536, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4116\",\"code\":\"1069\",\"name\":\"Canesten 20mg Cream\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1069\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1537, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3154\",\"code\":\"107\",\"name\":\"Castor Oil 70ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"107\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1538, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4117\",\"code\":\"1070\",\"name\":\"Clomid 50mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"54.8000\",\"price\":\"54.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1070\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1539, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4118\",\"code\":\"1071\",\"name\":\"Day Nurse Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"71.2000\",\"price\":\"71.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"day-nurse.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1071\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1540, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4119\",\"code\":\"1072\",\"name\":\"Hyponidd Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"33.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"HYPONIDD-TABS.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1072\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1541, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4120\",\"code\":\"1073\",\"name\":\"Day And Night Nurse Capsules 24&apos;s\",\"unit\":\"1\",\"cost\":\"77.8000\",\"price\":\"77.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"day-n-night.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1073\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1542, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4121\",\"code\":\"1074\",\"name\":\"Alka 5 Syrup 100ml\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"35.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Alka-5-syrup.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1074\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1543, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4122\",\"code\":\"1075\",\"name\":\"Fluconazole 150mg Capsules Teva\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"fluconazole.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1075\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1544, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4123\",\"code\":\"1076\",\"name\":\"Dulcolax 10mg Suppositories 12&apos;s\",\"unit\":\"1\",\"cost\":\"39.7000\",\"price\":\"39.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1076\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1545, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4124\",\"code\":\"1077\",\"name\":\"Furosemide 20mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1077\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1546, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4125\",\"code\":\"1078\",\"name\":\"Ibuprofen Suspension 100ml\\/5ml\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1078\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1547, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4126\",\"code\":\"1079\",\"name\":\"Tylenol Extra Strength 500mg Capsules 50&apos;s\",\"unit\":\"1\",\"cost\":\"153.9000\",\"price\":\"153.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1079\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1548, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3155\",\"code\":\"108\",\"name\":\"Inoxime (Cefixime) 200mg Tablets\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"108\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1549, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4127\",\"code\":\"1080\",\"name\":\"Seven Seas C\\/o Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"50.7000\",\"price\":\"50.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1080\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1550, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4128\",\"code\":\"1081\",\"name\":\"Seven Seas JointCare Suplex 30&apos;s\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"seve-cod-j.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1081\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1551, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4129\",\"code\":\"1082\",\"name\":\"Seven Seas JointCare Active 30&apos;s\",\"unit\":\"1\",\"cost\":\"109.9000\",\"price\":\"109.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ss-j-active.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1082\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1552, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4130\",\"code\":\"1083\",\"name\":\"Contiflo XL 400mcg Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"contiflo-xl.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1083\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1553, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4131\",\"code\":\"1084\",\"name\":\"Tamsulosin 400mcg Capsules 30&apos;s Teva\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tamsu.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1084\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1554, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4132\",\"code\":\"1085\",\"name\":\"Levothyroxine 100mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"levo.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1085\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1555, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4133\",\"code\":\"1086\",\"name\":\"Levothyroxin 50mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"levo-50.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1086\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1556, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4134\",\"code\":\"1087\",\"name\":\"Kefrox 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kefrox.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1087\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1557, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4135\",\"code\":\"1088\",\"name\":\"Co-Trimoxazole 80\\/400mg(Septrin)Tablets 100x10\",\"unit\":\"1\",\"cost\":\"9.6200\",\"price\":\"9.6200\",\"alert_quantity\":\"20.0000\",\"image\":\"c-tri.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1088\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1558, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4136\",\"code\":\"1089\",\"name\":\"Prednisolone 5mg Tablets 70x10\",\"unit\":\"1\",\"cost\":\"39.5000\",\"price\":\"39.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1089\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1559, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3156\",\"code\":\"109\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"109\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1560, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4137\",\"code\":\"1090\",\"name\":\"Evanova Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"evanova.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1090\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1561, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4138\",\"code\":\"1091\",\"name\":\"Livomyn Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Charak-Livomyn.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1091\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1562, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4139\",\"code\":\"1092\",\"name\":\"Axacef 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"53.0000\",\"price\":\"53.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"axa.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1092\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1563, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4140\",\"code\":\"1093\",\"name\":\"Dymol 50\\/500 Mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"dymo.jpeg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1093\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1564, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4141\",\"code\":\"1094\",\"name\":\"Vivadona Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"vivadona.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1094\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1565, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4142\",\"code\":\"1095\",\"name\":\"M2-Tone Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"m2_tone.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1095\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1566, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4143\",\"code\":\"1096\",\"name\":\"Procomil Male Delay Spray\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"procomil.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1096\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1567, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4144\",\"code\":\"1097\",\"name\":\"Haemoglobin 200ml Syrup M&amp;G\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemo.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1097\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1568, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4145\",\"code\":\"1098\",\"name\":\"Heptopep Forte 200ml Syrup\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"heptopep.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1098\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1569, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4146\",\"code\":\"1099\",\"name\":\"Polygel Suspension 120ml\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"polygel.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1099\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1570, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3058\",\"code\":\"11\",\"name\":\"AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1571, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3157\",\"code\":\"110\",\"name\":\"Celebrex\",\"unit\":\"1\",\"cost\":\"94.0200\",\"price\":\"94.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"110\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1572, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4147\",\"code\":\"1100\",\"name\":\"Procomil Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"procomil-tab.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1573, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4148\",\"code\":\"1101\",\"name\":\"Wormbat 10ml Suspension\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"wormbat.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1101\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1574, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4149\",\"code\":\"1102\",\"name\":\"Deep Heat Rub 67g\",\"unit\":\"1\",\"cost\":\"30.7000\",\"price\":\"30.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-rub.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1102\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1575, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4150\",\"code\":\"1103\",\"name\":\"Fumet Suspension\",\"unit\":\"1\",\"cost\":\"3.8800\",\"price\":\"3.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"fumet.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1103\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1576, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4151\",\"code\":\"1104\",\"name\":\"Borges Olive Oil 500ml\",\"unit\":\"1\",\"cost\":\"44.0000\",\"price\":\"44.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"borges-500ml.jpg\",\"category_id\":\"1668\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1104\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1577, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4152\",\"code\":\"1105\",\"name\":\"Alpha Garlic Capsules\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"alpha.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1105\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1578, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4153\",\"code\":\"1106\",\"name\":\"Gacet 1g Suppository\",\"unit\":\"1\",\"cost\":\"13.2500\",\"price\":\"13.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"gacet-1gm.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1106\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1579, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4154\",\"code\":\"1107\",\"name\":\"GV- Fluc 150mg Capsules\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gv-fluc.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1107\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1580, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4155\",\"code\":\"1108\",\"name\":\"Lofnac P Tablets 50\\/500\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"lofnac-p.jpeg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1108\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1581, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4156\",\"code\":\"1109\",\"name\":\"Lonart Forte 40\\/240mg Tablets\",\"unit\":\"1\",\"cost\":\"11.2500\",\"price\":\"11.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"lonart-forte.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1109\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1582, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3158\",\"code\":\"111\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1583, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4157\",\"code\":\"1110\",\"name\":\"Vagid CL Suppositories\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"vagid.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1110\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1584, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4158\",\"code\":\"1111\",\"name\":\"Salicylics Ointment 40g\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"sali.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1585, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4159\",\"code\":\"1112\",\"name\":\"Ichthammol Ointment 40g\",\"unit\":\"1\",\"cost\":\"13.6000\",\"price\":\"13.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"itch.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1112\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1586, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4160\",\"code\":\"1113\",\"name\":\"Methyl Salicylate Ointment 40g\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ms-oint.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1587, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4161\",\"code\":\"1114\",\"name\":\"Res-Q Antacid Suspension\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"resq.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1114\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1588, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4162\",\"code\":\"1115\",\"name\":\"Wellwoman 70+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"61.2000\",\"price\":\"61.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"wellwoman-70.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1115\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1589, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4163\",\"code\":\"1116\",\"name\":\"Wellwoman Max Caps 28 tabs\",\"unit\":\"1\",\"cost\":\"120.3600\",\"price\":\"120.3600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1116\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1590, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4164\",\"code\":\"1117\",\"name\":\"Wellwoman Plus Caps\",\"unit\":\"1\",\"cost\":\"90.4100\",\"price\":\"90.4100\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1117\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1591, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4165\",\"code\":\"1118\",\"name\":\"Diabetone Capsules 30&apos;s UK\",\"unit\":\"1\",\"cost\":\"42.2300\",\"price\":\"42.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1592, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4166\",\"code\":\"1119\",\"name\":\"Menopace Tabs UK\",\"unit\":\"1\",\"cost\":\"49.7000\",\"price\":\"49.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1593, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3159\",\"code\":\"112\",\"name\":\"Cetapol Syrup\",\"unit\":\"1\",\"cost\":\"4.2700\",\"price\":\"4.2700\",\"alert_quantity\":\"20.0000\",\"image\":\"CETAPOL-SYRUP-1-600x400-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"112\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1594, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4167\",\"code\":\"1120\",\"name\":\"Neurozan 30\'8 Caps\",\"unit\":\"1\",\"cost\":\"131.5700\",\"price\":\"131.5700\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1120\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1595, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4168\",\"code\":\"1121\",\"name\":\"Perfectil Plus Caps\",\"unit\":\"1\",\"cost\":\"170.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1121\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1596, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4169\",\"code\":\"1122\",\"name\":\"Pregnacare Breastfeeding Cap\",\"unit\":\"1\",\"cost\":\"106.6000\",\"price\":\"106.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1122\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1597, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4170\",\"code\":\"1123\",\"name\":\"Pregnacare Max\",\"unit\":\"1\",\"cost\":\"132.3000\",\"price\":\"132.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1123\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1598, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4171\",\"code\":\"1124\",\"name\":\"Wellwoman 50+ CAPS\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1124\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1599, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4172\",\"code\":\"1125\",\"name\":\"Levon 2 Postpill CRD\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"5.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1600, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4173\",\"code\":\"1126\",\"name\":\"Grison Syrup 125mg\\/5ml\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1126\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1601, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4174\",\"code\":\"1127\",\"name\":\"City Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1127\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1602, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4175\",\"code\":\"1128\",\"name\":\"Allacan 10 mg Tabs 30&apos;s (Cetirizine)\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1128\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1603, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4176\",\"code\":\"1129\",\"name\":\"Ascovit CEE (Vitamin C) 100ml Syrup\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"asc-cee.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1129\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1604, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3160\",\"code\":\"113\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1605, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4177\",\"code\":\"1130\",\"name\":\"Atenolol 50mg Tablets 28&apos;s (ECL)\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1130\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1606, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4178\",\"code\":\"1131\",\"name\":\"Vitamin B Denk\",\"unit\":\"1\",\"cost\":\"142.0500\",\"price\":\"142.0500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1131\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1607, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4179\",\"code\":\"1132\",\"name\":\"Clotrimazole Cream 0.01 20g\",\"unit\":\"1\",\"cost\":\"3.2800\",\"price\":\"3.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1132\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1608, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4180\",\"code\":\"1133\",\"name\":\"Diclofenac Inj 75mg\\/3ml 10\'\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1133\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1609, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4181\",\"code\":\"1134\",\"name\":\"Enacin-C (Clindamycin) 300mg Caps 100\'\",\"unit\":\"1\",\"cost\":\"93.6000\",\"price\":\"93.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1134\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1610, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4182\",\"code\":\"1135\",\"name\":\"Drez Solution 30ml\",\"unit\":\"1\",\"cost\":\"10.3000\",\"price\":\"10.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1135\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1611, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4183\",\"code\":\"1136\",\"name\":\"Enafix (Cefixime) 100ml Suspension\",\"unit\":\"1\",\"cost\":\"10.1800\",\"price\":\"10.1800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1689\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1612, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4184\",\"code\":\"1137\",\"name\":\"Enaphagemetformin 500mg Tablets 500&apos;s\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1137\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1613, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4185\",\"code\":\"1138\",\"name\":\"Exaflox (Fluclox) 100ml suspension\",\"unit\":\"1\",\"cost\":\"13.9400\",\"price\":\"13.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1138\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1614, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4186\",\"code\":\"1139\",\"name\":\"Amoxicillin 125mg\\/5ml 100ml Suspension EXE\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1139\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1615, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3161\",\"code\":\"114\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"114\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1616, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4187\",\"code\":\"1140\",\"name\":\"Gastrone Suspension 200ml\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1140\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1617, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4188\",\"code\":\"1141\",\"name\":\"Hydrocortisone Cream 0.01 30g Exeter\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"16.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrct.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1141\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1618, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4189\",\"code\":\"1142\",\"name\":\"Immunocin Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"43.8000\",\"price\":\"43.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1142\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1619, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4190\",\"code\":\"1143\",\"name\":\"Menthodex Lozenges 80G Sachet 25\' H&amp;L\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"menth.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1143\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1620, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4191\",\"code\":\"1144\",\"name\":\"Menthodex Lozenges 80G Sachet 25\' ORIG\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"metn.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1621, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4192\",\"code\":\"1145\",\"name\":\"Metoclopramide 10mg Tablets 28&apos;s Exeter\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"mto.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1145\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1622, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4193\",\"code\":\"1146\",\"name\":\"Nepafenac 0.001 Eye Drops 5ml\",\"unit\":\"1\",\"cost\":\"16.0800\",\"price\":\"16.0800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1146\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1623, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4194\",\"code\":\"1147\",\"name\":\"Nestrim Tabs 500 Blist\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1624, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4195\",\"code\":\"1148\",\"name\":\"Zentel 100mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"13.8100\",\"price\":\"13.8100\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1148\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1625, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4196\",\"code\":\"1149\",\"name\":\"Zithromax 250mg Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"186.8000\",\"price\":\"186.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1149\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1626, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3162\",\"code\":\"115\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"115\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1627, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4197\",\"code\":\"1150\",\"name\":\"Inopril 10\\/12.5mg\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1628, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4198\",\"code\":\"1151\",\"name\":\"Man Up Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"130.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1151\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1629, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4199\",\"code\":\"1152\",\"name\":\"Ocip 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1152\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1630, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4200\",\"code\":\"1153\",\"name\":\"T-Sec 1g Tablets\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1631, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4201\",\"code\":\"1154\",\"name\":\"Ocip TZ\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1154\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1632, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4202\",\"code\":\"1155\",\"name\":\"Zulu MR 100mg Tablet\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1633, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4203\",\"code\":\"1156\",\"name\":\"Perfectil Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"66.2000\",\"price\":\"66.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1156\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1634, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4204\",\"code\":\"1157\",\"name\":\"Metformin Denk 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"41.6300\",\"price\":\"41.6300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1157\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1635, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4205\",\"code\":\"1158\",\"name\":\"Olfen Gel 50gm\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"25.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"olfen.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1158\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1636, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4206\",\"code\":\"1159\",\"name\":\"Phlebodia B\\/15 Capsules\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"72.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1159\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1637, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3163\",\"code\":\"116\",\"name\":\"Chlo Ear Chloramphenicol Drops\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"chlo-ear.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"116\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1638, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4207\",\"code\":\"1160\",\"name\":\"Polygynax Pessaries 12&apos;s\",\"unit\":\"1\",\"cost\":\"67.0000\",\"price\":\"67.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"polygnax.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1639, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4208\",\"code\":\"1161\",\"name\":\"Proximexa 500mg Tablets\",\"unit\":\"1\",\"cost\":\"81.4000\",\"price\":\"81.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1161\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1640, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4209\",\"code\":\"1162\",\"name\":\"Tegretol CR 200mg Divitabs 50&apos;s\",\"unit\":\"1\",\"cost\":\"64.7800\",\"price\":\"64.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1692\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1162\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1641, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4210\",\"code\":\"1163\",\"name\":\"Tegretol CR 400mg tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"88.8800\",\"price\":\"88.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1692\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1642, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4211\",\"code\":\"1164\",\"name\":\"Tegretol 200mg tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"59.7700\",\"price\":\"59.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1692\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1643, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4212\",\"code\":\"1165\",\"name\":\"Lexofen 150ml Suspension\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"LEXOFEN.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1165\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1644, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4213\",\"code\":\"1166\",\"name\":\"Luex Adult Dry Cough 150ml syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1166\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1645, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4214\",\"code\":\"1167\",\"name\":\"Luex Nasal Inhaler (Jar)\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1167\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1646, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4215\",\"code\":\"1168\",\"name\":\"Fiesta Lubricant\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1685\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1168\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1647, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4216\",\"code\":\"1169\",\"name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1169\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1648, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3164\",\"code\":\"117\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"117\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1649, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4217\",\"code\":\"1170\",\"name\":\"Zubes Extra Strong Cough Lozenges\",\"unit\":\"1\",\"cost\":\"21.4000\",\"price\":\"21.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1170\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1650, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4218\",\"code\":\"1171\",\"name\":\"Mucolex Cough Syrup150ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1171\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1651, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4219\",\"code\":\"1172\",\"name\":\"3TOL 500ML Anticeptic &amp; Disinfectant\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1693\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1172\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1652, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4220\",\"code\":\"1173\",\"name\":\"3TOL 500ML Lime Fresh Anticeptic\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1693\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1173\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1653, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4221\",\"code\":\"1174\",\"name\":\"3TOL Lime 250ml Anticeptic &amp; Disinfectant\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1693\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1174\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1654, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4222\",\"code\":\"1175\",\"name\":\"3TOL 250ml Anticeptic &amp; Disinfectant\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1693\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1175\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1655, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4223\",\"code\":\"1176\",\"name\":\"Deep Freez Gel 35g\",\"unit\":\"1\",\"cost\":\"35.5400\",\"price\":\"35.5400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1656, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4224\",\"code\":\"1177\",\"name\":\"Lipitor 20mg 30&apos;s\",\"unit\":\"1\",\"cost\":\"328.9000\",\"price\":\"328.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1177\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1657, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4225\",\"code\":\"1178\",\"name\":\"Cirotamin Caplets 28&apos;s\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1178\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1658, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4226\",\"code\":\"1179\",\"name\":\"Adom Ladies Capsules\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1179\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1659, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3165\",\"code\":\"118\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1660, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4227\",\"code\":\"1180\",\"name\":\"Adom Ladies Mixture\",\"unit\":\"1\",\"cost\":\"14.3000\",\"price\":\"14.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1661, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4228\",\"code\":\"1181\",\"name\":\"Cororange Capsules\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1181\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1662, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4229\",\"code\":\"1182\",\"name\":\"Fleming 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"46.9900\",\"price\":\"46.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"fleming.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1663, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4230\",\"code\":\"1183\",\"name\":\"Gyno-Daktarin Cream\",\"unit\":\"1\",\"cost\":\"62.5000\",\"price\":\"62.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gyno-daktarin.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1183\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1664, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4231\",\"code\":\"1184\",\"name\":\"Gyno-Daktarin Pessaries\",\"unit\":\"1\",\"cost\":\"32.7000\",\"price\":\"32.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1184\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1665, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4232\",\"code\":\"1185\",\"name\":\"Motilium Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"41.4000\",\"price\":\"41.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1666, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4233\",\"code\":\"1186\",\"name\":\"Sporanox\",\"unit\":\"1\",\"cost\":\"121.9000\",\"price\":\"121.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"sporanox.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1186\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1667, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4234\",\"code\":\"1187\",\"name\":\"Peladol Extra\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"25.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1187\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1668, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4235\",\"code\":\"1188\",\"name\":\"Abyvita Syrup 200ml\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1188\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1669, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4236\",\"code\":\"1189\",\"name\":\"Co-Trimoxazole (Septrin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.1800\",\"price\":\"3.1800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1189\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1670, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3166\",\"code\":\"119\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1671, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4237\",\"code\":\"1190\",\"name\":\"Milk of Magnesia 125ml Letap\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1190\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1672, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4238\",\"code\":\"1191\",\"name\":\"Malin Baby Plus\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1191\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1673, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4239\",\"code\":\"1192\",\"name\":\"Azycin 500mg\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1674, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4240\",\"code\":\"1193\",\"name\":\"Epicrom 2% Eye Drop 10ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1193\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1675, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4241\",\"code\":\"1194\",\"name\":\"Nostamine Eye\\/Nose Drop 10ml\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1194\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1676, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4242\",\"code\":\"1195\",\"name\":\"Epifenac Eye 1mg\\/ml Drop\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1677, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4243\",\"code\":\"1196\",\"name\":\"Dexatrol Eye \\/ Ear Drop 5ml\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1678, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4244\",\"code\":\"1197\",\"name\":\"Epiciprin (Ciprofloxacin 0.3%) Eye\\/Ear Drop\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1197\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1679, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4245\",\"code\":\"1198\",\"name\":\"Starcold\",\"unit\":\"1\",\"cost\":\"44.6000\",\"price\":\"44.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1198\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1680, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4246\",\"code\":\"1199\",\"name\":\"Benylin Original Syrup 100ml\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1681, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3059\",\"code\":\"12\",\"name\":\"3CP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1682, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3167\",\"code\":\"120\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"120\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1683, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4247\",\"code\":\"1200\",\"name\":\"Eskaron Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1684, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4248\",\"code\":\"1201\",\"name\":\"Eskyzole Triple Action Cream 30g\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1201\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1685, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4249\",\"code\":\"1202\",\"name\":\"Maxmox 500mg\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1202\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1686, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4250\",\"code\":\"1203\",\"name\":\"Skyclav 1g\",\"unit\":\"1\",\"cost\":\"15.5300\",\"price\":\"15.5300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1203\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1687, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4251\",\"code\":\"1204\",\"name\":\"Skyclav 625\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"16.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1204\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1688, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4252\",\"code\":\"1205\",\"name\":\"Skyclav 457mg\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1205\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1689, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4253\",\"code\":\"1206\",\"name\":\"Skyclav 228.5mg\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1690, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4254\",\"code\":\"1207\",\"name\":\"Paracetamol 500mg Tablets 100x10 Eskay\",\"unit\":\"1\",\"cost\":\"70.0000\",\"price\":\"70.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1207\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1691, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4255\",\"code\":\"1208\",\"name\":\"Skycef 250mg (Cefuroxime) 1X10\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1208\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1692, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4256\",\"code\":\"1209\",\"name\":\"Skycef 500mg (Cefuroxime) 1X10\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1693, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3168\",\"code\":\"121\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"121\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1694, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4257\",\"code\":\"1210\",\"name\":\"Enterogemina 5ml  Ampoles 10&apos;s\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1210\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1695, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4258\",\"code\":\"1211\",\"name\":\"Orelox 40mg\\/5ml Suspension 100ml\",\"unit\":\"1\",\"cost\":\"129.2000\",\"price\":\"129.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1211\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1696, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4259\",\"code\":\"1212\",\"name\":\"Fada Martins Herbal Mixture\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1212\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1697, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4260\",\"code\":\"1213\",\"name\":\"Listerine 500ML All Types\",\"unit\":\"1\",\"cost\":\"27.9000\",\"price\":\"27.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1213\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1698, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4261\",\"code\":\"1214\",\"name\":\"Babyvite 50ml Drops\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1214\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1699, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4262\",\"code\":\"1215\",\"name\":\"Trustzole 400mg Tablets\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1215\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1700, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4263\",\"code\":\"1216\",\"name\":\"Trustzole 400mg Suspension\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1216\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1701, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4264\",\"code\":\"1217\",\"name\":\"Lumetrust 140\\/360mg Tablets\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1702, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4265\",\"code\":\"1218\",\"name\":\"Lumetrust Suspension 150ml\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1703, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4266\",\"code\":\"1219\",\"name\":\"Health Link Hair, Nails &amp; Skin\",\"unit\":\"1\",\"cost\":\"43.5000\",\"price\":\"43.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1219\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1704, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3169\",\"code\":\"122\",\"name\":\"Cipro-Denk 500mg Tablet\",\"unit\":\"1\",\"cost\":\"41.6800\",\"price\":\"41.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"122\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1705, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4267\",\"code\":\"1220\",\"name\":\"Healthlink Omega-3 Fish Oil Gels\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"36.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1220\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1706, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4268\",\"code\":\"1221\",\"name\":\"Healthlink Glucosamine &amp; Chodroitin Caplet\",\"unit\":\"1\",\"cost\":\"54.0000\",\"price\":\"54.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1221\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1707, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4269\",\"code\":\"1222\",\"name\":\"Healthlink Menopause Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"37.9000\",\"price\":\"37.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1222\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1708, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4270\",\"code\":\"1223\",\"name\":\"Zithromax  200mg\\/5ml 15ml Suspension\",\"unit\":\"1\",\"cost\":\"99.3000\",\"price\":\"99.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1709, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4271\",\"code\":\"1224\",\"name\":\"Paracetamol 500mg Tablets Ayrton\",\"unit\":\"1\",\"cost\":\"79.1500\",\"price\":\"79.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"par-ayr.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1224\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1710, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4272\",\"code\":\"1225\",\"name\":\"Multivitamin Syrup 125ml Ayrton\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"arton.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1225\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1711, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4273\",\"code\":\"1226\",\"name\":\"Gluco-Naf C Pineapple 400mg\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1226\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1712, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4274\",\"code\":\"1227\",\"name\":\"Cetapol PM Syrup 100ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"CETAPOL-PM.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1227\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1713, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4275\",\"code\":\"1228\",\"name\":\"Diphex Bronchodilator Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"diphex.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1714, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4276\",\"code\":\"1229\",\"name\":\"Crestor 20mg\",\"unit\":\"1\",\"cost\":\"240.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1229\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1715, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3170\",\"code\":\"123\",\"name\":\"Ciprolex Eye\\/ Ear 5ML Drops\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipro-eye.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"123\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1716, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4277\",\"code\":\"1230\",\"name\":\"Vit Bco Strong 30&apos;s Krka\",\"unit\":\"1\",\"cost\":\"32.0000\",\"price\":\"32.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bco-strong.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1230\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1717, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4278\",\"code\":\"1231\",\"name\":\"Bells Olive Oil 70ml\",\"unit\":\"1\",\"cost\":\"13.4000\",\"price\":\"13.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-olive.jpeg\",\"category_id\":\"1668\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1718, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4279\",\"code\":\"1232\",\"name\":\"2B Benzyl Benzoate 25% Lotion 100ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1232\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1719, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4280\",\"code\":\"1233\",\"name\":\"Cetrizan Syrup 5MG\\/5ML 60ML\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"CETRIZAN.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1233\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1720, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4281\",\"code\":\"1234\",\"name\":\"Exetrim Suspension 240mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1234\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1721, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4282\",\"code\":\"1235\",\"name\":\"Clarithromycin 500mg Tablets 14s Exeter\",\"unit\":\"1\",\"cost\":\"47.8000\",\"price\":\"47.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1235\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1722, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4283\",\"code\":\"1236\",\"name\":\"Ferrous Sulphate Tablets 500s ECL\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1679\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1723, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4284\",\"code\":\"1237\",\"name\":\"Histazine (Cetrizine) 5mg\\/5ml Syrup 60ml\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"histazine-syr.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1237\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1724, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4285\",\"code\":\"1238\",\"name\":\"Lavi-Cvamoxiclav DS Suspension 228.5mg\\/5ml 70ml\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1238\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1725, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4286\",\"code\":\"1239\",\"name\":\"Metagyl Syrup (Metzol) Syrp 200mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"metagly-sus.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1726, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3171\",\"code\":\"124\",\"name\":\"Ciprolex TZ\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"27.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tz.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"124\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1727, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4287\",\"code\":\"1240\",\"name\":\"Metro-Z Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1240\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1728, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4288\",\"code\":\"1241\",\"name\":\"Secnidazole 1g Tablets 2&apos;s (Lavina)\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"secni.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1241\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1729, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4289\",\"code\":\"1242\",\"name\":\"Tetracycline Eye Ointement 5g Troge\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"tetra.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1242\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1730, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4290\",\"code\":\"1243\",\"name\":\"Xarelto 20mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"247.0000\",\"price\":\"247.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"xarelto.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1731, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4291\",\"code\":\"1244\",\"name\":\"Durex Feels Condoms 3&apos;s\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"durex.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1244\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1732, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4292\",\"code\":\"1245\",\"name\":\"Lavi-Cvamoxiclav DS Suspension 457mg\\/5ml 70ml\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"clsv.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1245\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1733, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4293\",\"code\":\"1246\",\"name\":\"Stopkof Cold and Catarrh Syrup\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"stopkof-cnc-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1246\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1734, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4294\",\"code\":\"1247\",\"name\":\"Nexcofer Blood Tonic 100ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"nexcofer.jpeg\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1247\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1735, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4295\",\"code\":\"1248\",\"name\":\"Kalamina Lotion 120ml\",\"unit\":\"1\",\"cost\":\"7.4400\",\"price\":\"7.4400\",\"alert_quantity\":\"20.0000\",\"image\":\"kalamina.jpeg\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1248\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1736, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4296\",\"code\":\"1249\",\"name\":\"Normal Saline Nasal Drops 10ml Lavina\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"lavina.jpeg\",\"category_id\":\"1686\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1249\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1737, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3172\",\"code\":\"125\",\"name\":\"Cirotamin Tonic\",\"unit\":\"1\",\"cost\":\"11.5800\",\"price\":\"11.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"CIROTAMIN.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1738, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4297\",\"code\":\"1250\",\"name\":\"Carvedi Denk 6.25mgTablets 3X10\",\"unit\":\"1\",\"cost\":\"27.8000\",\"price\":\"27.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"caverdi.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1739, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4298\",\"code\":\"1251\",\"name\":\"Huichun Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"huchin.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1740, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4299\",\"code\":\"1252\",\"name\":\"Mayfer Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"myfer.jpeg\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1252\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1741, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4300\",\"code\":\"1253\",\"name\":\"Martins liver salt (Orange)25&apos;s\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"martins-orange.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1253\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1742, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4301\",\"code\":\"1254\",\"name\":\"Aspanol Jnr. Syrup\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"aspanol-jnr.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1254\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1743, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4302\",\"code\":\"1255\",\"name\":\"Feroglobin Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"65.8000\",\"price\":\"65.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"fero-p.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1744, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4303\",\"code\":\"1256\",\"name\":\"Jointace Omega-3 Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"63.0000\",\"price\":\"63.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"joint.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1745, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4304\",\"code\":\"1257\",\"name\":\"Wellman Drink\",\"unit\":\"1\",\"cost\":\"8.8200\",\"price\":\"8.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"wellman.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1746, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4305\",\"code\":\"1258\",\"name\":\"Otrivin 0.05% Child Nasal Drop 10ml\",\"unit\":\"1\",\"cost\":\"26.4000\",\"price\":\"26.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"otrivin-child.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1747, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4306\",\"code\":\"1259\",\"name\":\"Malaria Test Kit\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"malari.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1748, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3173\",\"code\":\"126\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"126\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1749, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4307\",\"code\":\"1260\",\"name\":\"Cotton Wool 25gm\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"cot.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1750, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4308\",\"code\":\"1261\",\"name\":\"Pregnancy Test Kit One-Step\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"one.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1261\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1751, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4309\",\"code\":\"1262\",\"name\":\"Plaster Strips Easy Care\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"10.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"plst.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1752, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4310\",\"code\":\"1263\",\"name\":\"Examination Gloves\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"gloves.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1263\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1753, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4311\",\"code\":\"1264\",\"name\":\"Gyprone Plus Tablets\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1264\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1754, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4312\",\"code\":\"1265\",\"name\":\"Arziglobin Plus 200ml Syrup\",\"unit\":\"1\",\"cost\":\"8.9000\",\"price\":\"8.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-67.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1755, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4313\",\"code\":\"1266\",\"name\":\"Emgiflox Suspension 100ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1266\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1756, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4314\",\"code\":\"1267\",\"name\":\"Dicnac 75\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"dicnac.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1267\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1757, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4315\",\"code\":\"1268\",\"name\":\"Kofof Baby\",\"unit\":\"1\",\"cost\":\"7.1500\",\"price\":\"7.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1758, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4316\",\"code\":\"1269\",\"name\":\"Kofof Child Expectorant 100ml\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1759, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3174\",\"code\":\"127\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"127\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1760, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4317\",\"code\":\"1270\",\"name\":\"Kofof Child Suppresant 100ml\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1270\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1761, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4318\",\"code\":\"1271\",\"name\":\"Plaster roll Extra care 1Inch\",\"unit\":\"1\",\"cost\":\"4.4500\",\"price\":\"4.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1762, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4319\",\"code\":\"1272\",\"name\":\"Lydia Postpill 2Tablets\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1272\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1763, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4320\",\"code\":\"1273\",\"name\":\"Lydia Oral Contraception Pill\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1764, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4321\",\"code\":\"1274\",\"name\":\"Azirocin 250mg Capules\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1274\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1765, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4322\",\"code\":\"1275\",\"name\":\"Azirocin Suspension\",\"unit\":\"1\",\"cost\":\"14.3000\",\"price\":\"14.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1766, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4323\",\"code\":\"1276\",\"name\":\"Gebediclo 100mg Tablets\",\"unit\":\"1\",\"cost\":\"9.9900\",\"price\":\"9.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1767, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4324\",\"code\":\"1277\",\"name\":\"Gebediclo 50mg Tablets\",\"unit\":\"1\",\"cost\":\"8.3200\",\"price\":\"8.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1768, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4325\",\"code\":\"1278\",\"name\":\"Goldy Malaria Suspension\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"goldy.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1278\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1769, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4326\",\"code\":\"1279\",\"name\":\"Goldy Forte DS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"goldy.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1279\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1770, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3175\",\"code\":\"128\",\"name\":\"Cloxacillin 250mg Letap\",\"unit\":\"1\",\"cost\":\"80.5000\",\"price\":\"80.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"128\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1771, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4327\",\"code\":\"1280\",\"name\":\"Liverplex B 200ml\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"liverplex.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1280\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1772, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4328\",\"code\":\"1281\",\"name\":\"Amoxicillin 500mg Letap\",\"unit\":\"1\",\"cost\":\"29.7000\",\"price\":\"29.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1773, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4329\",\"code\":\"1282\",\"name\":\"Alu Hyd Tablets\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1282\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1774, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4330\",\"code\":\"1283\",\"name\":\"Letaplex Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1283\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1775, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4331\",\"code\":\"1284\",\"name\":\"Broncholin Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1284\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1776, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4332\",\"code\":\"1285\",\"name\":\"Travatan Eye Drops 2.5ml\",\"unit\":\"1\",\"cost\":\"80.8000\",\"price\":\"80.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"travatan.jpg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1777, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4333\",\"code\":\"1286\",\"name\":\"Chloramphenicol Eye Ointment 0.01 5g\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"chloram-eye.jpg\",\"category_id\":\"1694\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1286\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1778, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4334\",\"code\":\"1287\",\"name\":\"Seclear Eye Drop\",\"unit\":\"1\",\"cost\":\"8.2500\",\"price\":\"8.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1779, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4335\",\"code\":\"1288\",\"name\":\"Lonart 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lonart.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1780, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4336\",\"code\":\"1289\",\"name\":\"Mist Mag. Trisilicate 200ml ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1289\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1781, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3176\",\"code\":\"129\",\"name\":\"Coartem 80\\/480 6&apos;s\",\"unit\":\"1\",\"cost\":\"56.1000\",\"price\":\"56.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"coaterm.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"129\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1782, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4337\",\"code\":\"1290\",\"name\":\"Benylin Mucus Max H&amp;L\",\"unit\":\"1\",\"cost\":\"57.0000\",\"price\":\"57.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"benylyin-mucus-max.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1290\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1783, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4338\",\"code\":\"1291\",\"name\":\"Prowoman 50+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"52.8000\",\"price\":\"52.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1784, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4339\",\"code\":\"1292\",\"name\":\"Mist FAC (Ferric citrate) 200ml ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1292\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1785, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4340\",\"code\":\"1293\",\"name\":\"Abyvita Capsules\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"4.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1293\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1786, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4341\",\"code\":\"1294\",\"name\":\"Biva Plus Capsules\",\"unit\":\"1\",\"cost\":\"10.1000\",\"price\":\"10.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1294\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1787, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4342\",\"code\":\"1295\",\"name\":\"Biva Plus Syrup\",\"unit\":\"1\",\"cost\":\"13.4400\",\"price\":\"13.4400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1295\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1788, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4343\",\"code\":\"1296\",\"name\":\"Folic Acid 5mg Tablet 28&apos;s Accord\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"folic-acid.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1789, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4344\",\"code\":\"1297\",\"name\":\"Spironolactone 50mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"28.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Spironolactone-50mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1297\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1790, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4345\",\"code\":\"1298\",\"name\":\"Benylin Mucus+Decon Syrup100ml\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"benylin-mucus-plus-decon.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1791, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4346\",\"code\":\"1299\",\"name\":\"Carvedilol 6.25mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Carvedilol-6.25mg-Tablets-28s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1299\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1792, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3060\",\"code\":\"13\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"13\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1793, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3177\",\"code\":\"130\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"130\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1794, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4347\",\"code\":\"1300\",\"name\":\"Carvedilol 12.5mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Carvedilol-12.5mg-Tablets-28s.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1795, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4348\",\"code\":\"1301\",\"name\":\"Digoxin 125mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"Digoxin-125mg-Tablets-28s.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1301\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1796, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4349\",\"code\":\"1302\",\"name\":\"Sildenafil 100mg Tablets 8&apos;s\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"15.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Sildenafil-100mg-Tablets-8s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1302\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1797, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4350\",\"code\":\"1303\",\"name\":\"Sildenafil 50mg Tablets 8&apos;s\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Sildenafil-50mg-Tablets-8s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1798, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4351\",\"code\":\"1304\",\"name\":\"Amitriptyline 25mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Amitriptyline-25mg-Tablets-28s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1799, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4352\",\"code\":\"1305\",\"name\":\"Loratadine 10mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"loratadine.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1800, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4353\",\"code\":\"1306\",\"name\":\"Ramipril 2.5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Ramipril-2.5mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1306\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1801, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4354\",\"code\":\"1307\",\"name\":\"Glimepiride 4mg Tablets 30&apos;s Teva\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Glimepiride-4mg-Tablets-30s-Teva.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1307\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1802, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4355\",\"code\":\"1308\",\"name\":\"Bisoprolol 2.5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"Bisoprolol-2.5mg-Tablets-28s-Teva.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1803, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4356\",\"code\":\"1309\",\"name\":\"Warfarin 5mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Warfarin-5mg-Tablets-28s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1804, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3178\",\"code\":\"131\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"131\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1805, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4357\",\"code\":\"1310\",\"name\":\"Simvastatin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Simvastatin-10mg-Tablets-28s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1310\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1806, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4358\",\"code\":\"1311\",\"name\":\"Vitamin E 400 IU Capsules H\\/A 30&apos;s\",\"unit\":\"1\",\"cost\":\"78.3000\",\"price\":\"78.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"Vitamin-E-400-IU-Capsules.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1807, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4359\",\"code\":\"1312\",\"name\":\"Bells Children Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-ch.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1808, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4360\",\"code\":\"1313\",\"name\":\"Benylin Children Chesty Cough Syrup\",\"unit\":\"1\",\"cost\":\"40.6000\",\"price\":\"40.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"benylin-children-chesty.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1313\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1809, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4361\",\"code\":\"1314\",\"name\":\"Lemsip Cold and flu Original 10&apos;s\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"lemsip-cold-and-flu-original.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1810, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4362\",\"code\":\"1315\",\"name\":\"Canderel Tablets 105&apos;s\",\"unit\":\"1\",\"cost\":\"12.9000\",\"price\":\"12.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"canderel-tab.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1315\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1811, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4363\",\"code\":\"1316\",\"name\":\"Glucose and Chondriton 400mg Tab. Valupak 30&apos;s\",\"unit\":\"1\",\"cost\":\"17.4000\",\"price\":\"17.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"glucose-and-chondriton-val.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1812, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4364\",\"code\":\"1317\",\"name\":\"Vit.  B Complex Tablets 60&apos;s Valupak\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitamin-b-complex.jpeg\",\"category_id\":\"1695\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1317\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1813, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4365\",\"code\":\"1318\",\"name\":\"Robaxin 750mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"220.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"robaxin-750mg.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1318\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1814, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4366\",\"code\":\"1319\",\"name\":\"Keppra 1000mg Tablets\",\"unit\":\"1\",\"cost\":\"252.0000\",\"price\":\"252.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"keppra.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1319\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1815, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3179\",\"code\":\"132\",\"name\":\"Coldrilif Capsules 10X10\",\"unit\":\"1\",\"cost\":\"3.9100\",\"price\":\"3.9100\",\"alert_quantity\":\"20.0000\",\"image\":\"coldrilif.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"132\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1816, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4367\",\"code\":\"1320\",\"name\":\"Bonjela Junior Gel 15g\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"bonjela-junior-gel.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1320\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1817, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4368\",\"code\":\"1321\",\"name\":\"Bonjela Teething Gel 15g\",\"unit\":\"1\",\"cost\":\"38.4000\",\"price\":\"38.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"bonjela-teething.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1321\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1818, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4369\",\"code\":\"1322\",\"name\":\"Bonjela Adult Gel 15g\",\"unit\":\"1\",\"cost\":\"52.6000\",\"price\":\"52.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1322\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1819, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4370\",\"code\":\"1323\",\"name\":\"Morgan&apos;s Auntibactirial Soap\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"morgan-antibacterial.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1323\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1820, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4371\",\"code\":\"1324\",\"name\":\"Paracetamol 500mg Tablet Crescent\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1324\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1821, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4372\",\"code\":\"1325\",\"name\":\"Kingdom Garlic Bitters\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"14.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1325\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1822, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4373\",\"code\":\"1326\",\"name\":\"Benylin Children Night Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"40.6000\",\"price\":\"40.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"benylin-children-night.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1326\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1823, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4374\",\"code\":\"1327\",\"name\":\"Nurofen Syrup 100ml Orange\",\"unit\":\"1\",\"cost\":\"27.3000\",\"price\":\"27.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"nurofen-syrup-orange.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1327\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1824, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4375\",\"code\":\"1328\",\"name\":\"Corsodyl Mint 500ml\",\"unit\":\"1\",\"cost\":\"43.1000\",\"price\":\"43.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"corsodyl-mint.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1328\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1825, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4376\",\"code\":\"1329\",\"name\":\"Sudafed Decongestant Tablets 12&apos;s\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-decongestant.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1826, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3180\",\"code\":\"133\",\"name\":\"Colestop 10mg 30&apos;s (Atovastin)\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"52.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"133\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1827, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4377\",\"code\":\"1330\",\"name\":\"Sudafed Mucus Relief Tablets 16&apos;s\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-mucus-relief.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1330\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1828, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4378\",\"code\":\"1331\",\"name\":\"Sudafed Sinus &amp; Pain Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-sinus-and-pain.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1331\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1829, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4379\",\"code\":\"1332\",\"name\":\"Sudafed Blocked Nose Spray 15ml\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"41.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-blocked-nose.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1332\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1830, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4380\",\"code\":\"1333\",\"name\":\"Sudafed Head &amp; Congestion Max Strength\",\"unit\":\"1\",\"cost\":\"38.2000\",\"price\":\"38.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-head-and-cong.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1333\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1831, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4381\",\"code\":\"1334\",\"name\":\"Sudafed Sinus Ease Spray 0.1%\",\"unit\":\"1\",\"cost\":\"40.5000\",\"price\":\"40.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudafed-sinus-spray.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1334\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1832, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4382\",\"code\":\"1335\",\"name\":\"Eskaron Capsules 10X30\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1335\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1833, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4383\",\"code\":\"1336\",\"name\":\"Skybru (Brufen) 100mg\\/5ml Suspension\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1336\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1834, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4384\",\"code\":\"1337\",\"name\":\"Nurofen Syrup 100ml Strawberry\",\"unit\":\"1\",\"cost\":\"36.3000\",\"price\":\"36.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"nurofen-syrup-strawb.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1337\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1835, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4385\",\"code\":\"1338\",\"name\":\"Lisinopril 5mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1836, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4386\",\"code\":\"1339\",\"name\":\"Healthy Life Vitamin C 1000mg Tablets 20&apos;s\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1339\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1837, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3181\",\"code\":\"134\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"134\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1838, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4387\",\"code\":\"1340\",\"name\":\"Metro-Z Suspension 100ml\",\"unit\":\"1\",\"cost\":\"9.5800\",\"price\":\"9.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1340\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1839, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4388\",\"code\":\"1341\",\"name\":\"Nexcofer Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"9.9600\",\"price\":\"9.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"nexcofer.jpeg\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1840, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4389\",\"code\":\"1342\",\"name\":\"Durex Extra Safe 3&apos;s Condoms\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1342\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1841, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4390\",\"code\":\"1343\",\"name\":\"Livertone Tonic 200ml\",\"unit\":\"1\",\"cost\":\"10.5600\",\"price\":\"10.5600\",\"alert_quantity\":\"20.0000\",\"image\":\"livertone.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1842, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4391\",\"code\":\"1344\",\"name\":\"Neoferon Syrup 200ml\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1344\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1843, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4392\",\"code\":\"1345\",\"name\":\"Jet 2 Cold Capsules\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1345\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1844, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4393\",\"code\":\"1346\",\"name\":\"Jet 2 Inhaler\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"jet-2.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1346\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1845, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4394\",\"code\":\"1347\",\"name\":\"Clodol 100mg Suppository (Diclofenac 2X5)\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1347\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1846, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4395\",\"code\":\"1348\",\"name\":\"Paracetamol 500mg Tablets 50x10 Eskay\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"35.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1348\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1847, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4396\",\"code\":\"1349\",\"name\":\"Taabea Taacum\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1349\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1848, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3182\",\"code\":\"135\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"135\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1849, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4397\",\"code\":\"1350\",\"name\":\"COA Mixture\",\"unit\":\"1\",\"cost\":\"85.0000\",\"price\":\"85.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1350\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1850, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4398\",\"code\":\"1351\",\"name\":\"Happyrona Forte Tablets 20X1X20\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"happy.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1351\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1851, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4399\",\"code\":\"1352\",\"name\":\"Salo Simple Linctus\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1352\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1852, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4400\",\"code\":\"1353\",\"name\":\"Oson&apos;s Cod Liver Oil Capsules 10x10 Softgels\",\"unit\":\"1\",\"cost\":\"15.0900\",\"price\":\"15.0900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1353\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1853, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4401\",\"code\":\"1354\",\"name\":\"HCT Exforge 5\\/160\\/12.5mg 28&apos;s\",\"unit\":\"1\",\"cost\":\"158.4000\",\"price\":\"158.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1354\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1854, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4402\",\"code\":\"1355\",\"name\":\"Acyclovir Denk 200mg tabs 25&apos;s\",\"unit\":\"1\",\"cost\":\"54.2500\",\"price\":\"54.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"acyclovir-denk.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1855, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4403\",\"code\":\"1356\",\"name\":\"Tramadol Denk 100mg Retard 30&apos;s\",\"unit\":\"1\",\"cost\":\"75.3200\",\"price\":\"75.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1856, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4404\",\"code\":\"1357\",\"name\":\"Tramadol Denk 50 Tabs B\\/10\",\"unit\":\"1\",\"cost\":\"45.4900\",\"price\":\"45.4900\",\"alert_quantity\":\"20.0000\",\"image\":\"Tramadol-denk-50mg.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1357\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1857, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4405\",\"code\":\"1358\",\"name\":\"Aspirine Cardio 100MG Tabs 30\'\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Aspirine-Cardio-100MG-Tabs-30.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1358\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1858, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4406\",\"code\":\"1359\",\"name\":\"Femacure X\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"FEMACURE-X.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1359\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1859, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3183\",\"code\":\"136\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1860, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4407\",\"code\":\"1360\",\"name\":\"Medi Plus\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"MEDI-PLUS.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1861, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4408\",\"code\":\"1361\",\"name\":\"Bells Normal Saline Drops 0.9% 10ml\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"6.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-normal-saline-drops.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1361\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1862, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4409\",\"code\":\"1362\",\"name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"unit\":\"1\",\"cost\":\"59.0000\",\"price\":\"59.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"seven-seas-cod.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1362\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1863, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4410\",\"code\":\"1363\",\"name\":\"Kidivit Syrup 100ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1864, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4411\",\"code\":\"1364\",\"name\":\"Methylated Spirit 200ml ECL\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1364\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1865, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4412\",\"code\":\"1365\",\"name\":\"Methylated Spirit 125ml ECL\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1365\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1866, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4413\",\"code\":\"1366\",\"name\":\"Metagyl (Metzol) Syrup 200mg\\/5ml 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1366\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1867, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4414\",\"code\":\"1367\",\"name\":\"Enamycin tab 250mg 500\' ECL\",\"unit\":\"1\",\"cost\":\"168.0000\",\"price\":\"168.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1367\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1868, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4415\",\"code\":\"1368\",\"name\":\"Hydrolyte ORS 25 Lemon Flav. ECL\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"19.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrolyte-ors.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1368\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1869, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4416\",\"code\":\"1369\",\"name\":\"Hydrolyte ORS 25\' Orange Flav. ECL\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"19.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1369\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1870, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3184\",\"code\":\"137\",\"name\":\"Colodium\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"colodium.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"137\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1871, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4417\",\"code\":\"1370\",\"name\":\"Hydrolyte ORS Plain 25\' ECL\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"18.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1370\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1872, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4418\",\"code\":\"1371\",\"name\":\"Bendrofluazide Tab 2.5mg 500\' ECL\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"32.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1371\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1873, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4419\",\"code\":\"1372\",\"name\":\"Bendrofluazide Tabs 5mg 500\' ECL\",\"unit\":\"1\",\"cost\":\"49.2000\",\"price\":\"49.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1372\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1874, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4420\",\"code\":\"1373\",\"name\":\"Lorazepam 2mg Tabs 500\' ECL\",\"unit\":\"1\",\"cost\":\"59.8000\",\"price\":\"59.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Lorazepam.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1373\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1875, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4421\",\"code\":\"1374\",\"name\":\"Omecet (Omeprazole) Caps 20mg 100\' ECL\",\"unit\":\"1\",\"cost\":\"21.7400\",\"price\":\"21.7400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1374\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1876, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4422\",\"code\":\"1375\",\"name\":\"Nugel Susp 200ml\",\"unit\":\"1\",\"cost\":\"19.3400\",\"price\":\"19.3400\",\"alert_quantity\":\"20.0000\",\"image\":\"nugel.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1375\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1877, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4423\",\"code\":\"1376\",\"name\":\"Actifed Multi Action Tabs 12&apos;s\",\"unit\":\"1\",\"cost\":\"46.0000\",\"price\":\"46.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"actifed-multi.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1376\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1878, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4424\",\"code\":\"1377\",\"name\":\"Mycophe. Mofetil Tabs 500mg 50&apos;s\",\"unit\":\"1\",\"cost\":\"90.8000\",\"price\":\"90.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycophenolate.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1377\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1879, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4425\",\"code\":\"1378\",\"name\":\"Omeprazole 40mg Caps 28&apos;s\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"omeprazole.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1880, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4426\",\"code\":\"1379\",\"name\":\"Propranolol 10mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"propranolol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1379\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1881, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3185\",\"code\":\"138\",\"name\":\"Combact N\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"138\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1882, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4427\",\"code\":\"1380\",\"name\":\"Propranolol 40mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"7.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1883, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4428\",\"code\":\"1381\",\"name\":\"Ashton and Parsons Teething Gel 10ml\",\"unit\":\"1\",\"cost\":\"58.0000\",\"price\":\"58.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"ash-teething.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1381\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1884, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4429\",\"code\":\"1382\",\"name\":\"Femfresh Wash 150ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"femfresh-10ml.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1382\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1885, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4430\",\"code\":\"1383\",\"name\":\"Femfresh Wash 250ml\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"27.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"femfresh-250ml.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1383\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1886, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4431\",\"code\":\"1384\",\"name\":\"K.Y. Jelly Sterile 82G\",\"unit\":\"1\",\"cost\":\"38.8000\",\"price\":\"38.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"K-Y-Jelly.jpeg\",\"category_id\":\"1685\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1887, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4432\",\"code\":\"1385\",\"name\":\"Fun Time Stim. Joy Ring\",\"unit\":\"1\",\"cost\":\"20.6000\",\"price\":\"20.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"fun-time-joy-ring.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1385\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1888, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4433\",\"code\":\"1386\",\"name\":\"Hydrocortisone Cream 1% 30g COPHARMA\",\"unit\":\"1\",\"cost\":\"15.4000\",\"price\":\"15.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1386\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1889, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4434\",\"code\":\"1387\",\"name\":\"Strepsils Original Lozenges. 16&apos;s\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"strepsils-orig.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1387\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1890, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4435\",\"code\":\"1388\",\"name\":\"Strepsils Menthol lozenges 16&apos;s\",\"unit\":\"1\",\"cost\":\"29.6000\",\"price\":\"29.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"strepsil.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1388\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1891, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4436\",\"code\":\"1389\",\"name\":\"Benylin Chesty Cough 150ml(N\\/D)\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"BENYLIN-CHESTY.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1389\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1892, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3186\",\"code\":\"139\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"139\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1893, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4437\",\"code\":\"1390\",\"name\":\"Benylin Chesty Cough 300ml\",\"unit\":\"1\",\"cost\":\"91.2000\",\"price\":\"91.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"BENYLIN-CHESTY.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1390\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1894, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4438\",\"code\":\"1391\",\"name\":\"Zirtek Syrup 150ml\",\"unit\":\"1\",\"cost\":\"59.9000\",\"price\":\"59.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ZIRTEK.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1391\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1895, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4439\",\"code\":\"1392\",\"name\":\"Benylin Dry &amp; Tickly Cough 150ml\",\"unit\":\"1\",\"cost\":\"55.8000\",\"price\":\"55.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"benylin-dry.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1392\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1896, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4440\",\"code\":\"1393\",\"name\":\"H\\/AID Vitamin D3 5000IU Caps 30&apos;s\",\"unit\":\"1\",\"cost\":\"58.9000\",\"price\":\"58.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"VIT-d3.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1393\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1897, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4441\",\"code\":\"1394\",\"name\":\"H\\/Aid Zinc Gluconate Caps 70mg\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"H-aid-zin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1394\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1898, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4442\",\"code\":\"1395\",\"name\":\"H\\/Aid Vitamin E 1000iu Natural Caps\",\"unit\":\"1\",\"cost\":\"99.6000\",\"price\":\"99.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitamin-e-1000.jpeg\",\"category_id\":\"1695\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1395\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1899, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4443\",\"code\":\"1396\",\"name\":\"H\\/Aid Vitamin E 200iu Caps 60&apos;s\",\"unit\":\"1\",\"cost\":\"78.3000\",\"price\":\"78.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"V.-E-200IU.png\",\"category_id\":\"1695\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1396\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1900, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4444\",\"code\":\"1397\",\"name\":\"Simvastatin 20mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"SIMVAS.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1397\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1901, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4445\",\"code\":\"1398\",\"name\":\"Simvastatin 40mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"6.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"simvastain-40mg.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1398\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1902, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4446\",\"code\":\"1399\",\"name\":\"Allopurinol 300mg Tabs 28&apos;s\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"allopurinol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1399\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1903, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3061\",\"code\":\"14\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"14\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1904, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3187\",\"code\":\"140\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"140\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1905, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4447\",\"code\":\"1400\",\"name\":\"Cetirizine 10mg Tabs 30&apos;s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1906, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4448\",\"code\":\"1401\",\"name\":\"Buscopan Org.Tabs10mg 56&apos;s\",\"unit\":\"1\",\"cost\":\"54.9000\",\"price\":\"54.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"buscopan.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1401\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1907, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4449\",\"code\":\"1402\",\"name\":\"Res-Q Tabs 2x10&apos;s\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1402\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1908, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4450\",\"code\":\"1403\",\"name\":\"Metrotrust F Suspension\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1403\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1909, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4451\",\"code\":\"1404\",\"name\":\"Folic Acid 5mg Crescent\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"folic-acid-crescent.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1404\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1910, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4452\",\"code\":\"1405\",\"name\":\"Valupak  Vit C Chewable\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"valu-vit-c.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1405\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1911, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4453\",\"code\":\"1406\",\"name\":\"Bendroflumethiazide 5mg Bristol\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"bendro-bristol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1406\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1912, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4454\",\"code\":\"1407\",\"name\":\"Valupak Vit E 400iu\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"valu-e.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1407\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1913, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4455\",\"code\":\"1408\",\"name\":\"Spironolactone 100mg Tab NorthStar\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1408\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1914, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4456\",\"code\":\"1409\",\"name\":\"Sudocrem 60g\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"sudocrem.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1409\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1915, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3188\",\"code\":\"141\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"141\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1916, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4457\",\"code\":\"1410\",\"name\":\"Becoatin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"becotin-syrup.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1410\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1917, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4458\",\"code\":\"1411\",\"name\":\"Wellkid Multivitamin Syrup 160ml\",\"unit\":\"1\",\"cost\":\"61.8000\",\"price\":\"61.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"wellkid-multi.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1411\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1918, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4459\",\"code\":\"1412\",\"name\":\"Zipferon Forte\",\"unit\":\"1\",\"cost\":\"9.2100\",\"price\":\"9.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"ZIPER.png\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1412\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1919, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4460\",\"code\":\"1413\",\"name\":\"Basecam Caps (Piroxicam)\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"11.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1413\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1920, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4461\",\"code\":\"1414\",\"name\":\"Basecold 1x6 Tab\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1414\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1921, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4462\",\"code\":\"1415\",\"name\":\"Foliron Capsules\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1415\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1922, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4463\",\"code\":\"1416\",\"name\":\"Peladol Junior\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1416\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1923, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4464\",\"code\":\"1417\",\"name\":\"Metronidazole 200mg Tablets 10X10 Letap\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1417\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1924, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4465\",\"code\":\"1418\",\"name\":\"Bazuka Condoms\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"65.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1418\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1925, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4466\",\"code\":\"1419\",\"name\":\"Malufen 560 Tablets (Artemether Lumefantrine Tablets)\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1419\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1926, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3189\",\"code\":\"142\",\"name\":\"Cororange Drops\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"cororange-drops.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"142\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1927, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4467\",\"code\":\"1420\",\"name\":\"Fluxamox Susp. 250mg\\/5ml 100ml\",\"unit\":\"1\",\"cost\":\"10.7800\",\"price\":\"10.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"Fluxamox.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1420\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1928, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4468\",\"code\":\"1421\",\"name\":\"Cardiofin Tab 20mg 100\' (Nifedipine)\",\"unit\":\"1\",\"cost\":\"18.4800\",\"price\":\"18.4800\",\"alert_quantity\":\"20.0000\",\"image\":\"CARDIO.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1421\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1929, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4469\",\"code\":\"1422\",\"name\":\"Oxytetra Cap 250mg\",\"unit\":\"1\",\"cost\":\"46.2800\",\"price\":\"46.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1422\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1930, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4470\",\"code\":\"1423\",\"name\":\"RL-Ringer Lactate IV 500ml\",\"unit\":\"1\",\"cost\":\"5.3600\",\"price\":\"5.3600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1423\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1931, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4471\",\"code\":\"1424\",\"name\":\"DNS-Dext+Normal Sline IV 500ml\",\"unit\":\"1\",\"cost\":\"5.3600\",\"price\":\"5.3600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1424\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1932, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4472\",\"code\":\"1425\",\"name\":\"Letamox (All Flavour) Tab 500mg (1X20)\",\"unit\":\"1\",\"cost\":\"13.1400\",\"price\":\"13.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1425\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1933, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4473\",\"code\":\"1426\",\"name\":\"Prostajoy\",\"unit\":\"1\",\"cost\":\"29.7000\",\"price\":\"29.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1426\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1934, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4474\",\"code\":\"1427\",\"name\":\"Ganaman Capsules\",\"unit\":\"1\",\"cost\":\"29.7000\",\"price\":\"29.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1427\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1935, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4475\",\"code\":\"1428\",\"name\":\"Eskadol Blister(25x1x10)\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1428\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1936, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4476\",\"code\":\"1429\",\"name\":\"Eskadol Nyte\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ekadol-nyte.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1937, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3190\",\"code\":\"143\",\"name\":\"Cotton wool (Zigzag) 50g\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"zigzag.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"143\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1938, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4477\",\"code\":\"1430\",\"name\":\"Eskafan Tabs 20\\/120 (1X24)\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1430\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1939, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4478\",\"code\":\"1431\",\"name\":\"Eskafan Susp(180mg\\/1080mg)\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1431\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1940, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4479\",\"code\":\"1432\",\"name\":\"Eskypan 10mg (10x1x10)\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1432\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1941, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4480\",\"code\":\"1433\",\"name\":\"Fluclox Suspension 100ml Eskay\",\"unit\":\"1\",\"cost\":\"5.2300\",\"price\":\"5.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1433\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1942, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4481\",\"code\":\"1434\",\"name\":\"Maxmox 250mg (50x10)\",\"unit\":\"1\",\"cost\":\"87.4000\",\"price\":\"87.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1434\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1943, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4482\",\"code\":\"1435\",\"name\":\"Maxmox 250mg (10x10)\",\"unit\":\"1\",\"cost\":\"17.7100\",\"price\":\"17.7100\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1944, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4483\",\"code\":\"1436\",\"name\":\"Maxmox Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1436\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1945, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4484\",\"code\":\"1437\",\"name\":\"Betasol N (Eye,Ear &amp; Nose) Drop\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"betasol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1437\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1946, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4485\",\"code\":\"1438\",\"name\":\"mb-Chlor Eye Drops 0.5%\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1438\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1947, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4486\",\"code\":\"1439\",\"name\":\"Tobufen 60ml\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1439\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1948, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3191\",\"code\":\"144\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1949, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4487\",\"code\":\"1440\",\"name\":\"Robb Inhaler\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1440\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1950, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4488\",\"code\":\"1441\",\"name\":\"Roberts Glycerine 30ml\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1441\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1951, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4489\",\"code\":\"1442\",\"name\":\"Robb Ointment\",\"unit\":\"1\",\"cost\":\"34.1000\",\"price\":\"34.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1952, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4490\",\"code\":\"1443\",\"name\":\"Haemo Forte Syrup 100ml\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"hamforte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1443\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1953, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4491\",\"code\":\"1444\",\"name\":\"Kelcuf Adult Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1444\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1954, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4492\",\"code\":\"1445\",\"name\":\"Kelcuf Baby Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1445\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1955, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4493\",\"code\":\"1446\",\"name\":\"Kelcuf Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1446\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1956, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4494\",\"code\":\"1447\",\"name\":\"Flucotrust Capsules\",\"unit\":\"1\",\"cost\":\"2.8900\",\"price\":\"2.8900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1447\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1957, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4495\",\"code\":\"1448\",\"name\":\"Cotton 500g\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1958, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4496\",\"code\":\"1449\",\"name\":\"Samalin Adult Syrup (Non Drowsy)\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1959, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3192\",\"code\":\"145\",\"name\":\"Crepe Bandage 2Inches Xtra care\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"2.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"145\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1960, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4497\",\"code\":\"1450\",\"name\":\"Mycolex Powder 50g\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1450\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1961, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4498\",\"code\":\"1451\",\"name\":\"Luex Baby Powder 200g\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1451\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1962, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4499\",\"code\":\"1452\",\"name\":\"Klire Calcium\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1452\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1963, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4500\",\"code\":\"1453\",\"name\":\"Klire Ibupofen\",\"unit\":\"1\",\"cost\":\"14.4000\",\"price\":\"14.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1453\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1964, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4501\",\"code\":\"1454\",\"name\":\"Klire Zofu\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1454\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1965, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4502\",\"code\":\"1455\",\"name\":\"Klire Acielo O\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1966, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4503\",\"code\":\"1456\",\"name\":\"Klire Odim Capsules\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1456\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1967, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4504\",\"code\":\"1457\",\"name\":\"Bestvit C (Vitamin C with Zinc)\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1968, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3193\",\"code\":\"146\",\"name\":\"Crepe Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"146\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1969, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3194\",\"code\":\"147\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1970, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3195\",\"code\":\"148\",\"name\":\"Cyfen Syrup\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"148\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1971, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3196\",\"code\":\"149\",\"name\":\"Cyfen Tablets\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"149\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1972, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3062\",\"code\":\"15\",\"name\":\"Aboniki\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"15\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1973, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3197\",\"code\":\"150\",\"name\":\"Cyprodine (Cyproheptadine) Capsules 30\'\",\"unit\":\"1\",\"cost\":\"32.8000\",\"price\":\"32.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1974, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3198\",\"code\":\"151\",\"name\":\"Cytotec\",\"unit\":\"1\",\"cost\":\"269.3000\",\"price\":\"269.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"151\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1975, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3199\",\"code\":\"152\",\"name\":\"Daflon 500mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"107.0000\",\"price\":\"107.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"152\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1976, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3200\",\"code\":\"153\",\"name\":\"Daktarin Cream 15g\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-90.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1977, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3201\",\"code\":\"154\",\"name\":\"Dalacin C 300mg Capsules 16&apos;s\",\"unit\":\"1\",\"cost\":\"175.6100\",\"price\":\"175.6100\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"154\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1978, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3202\",\"code\":\"155\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"159.5000\",\"price\":\"159.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1979, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3203\",\"code\":\"156\",\"name\":\"Danrub Ointment 40g\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"8.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-76.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"156\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1980, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3204\",\"code\":\"157\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"157\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1981, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3205\",\"code\":\"158\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"158\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1982, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3206\",\"code\":\"159\",\"name\":\"Deep Freez Spray 150ml\",\"unit\":\"1\",\"cost\":\"47.7700\",\"price\":\"47.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-freeze-spray.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"159\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1983, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3063\",\"code\":\"16\",\"name\":\"Acidom 20mg Capsules\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-60.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"16\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1984, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3207\",\"code\":\"160\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1985, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3208\",\"code\":\"161\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"161\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1986, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3209\",\"code\":\"162\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"162\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1987, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3210\",\"code\":\"163\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1988, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3211\",\"code\":\"164\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1989, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3212\",\"code\":\"165\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"165\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1990, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3213\",\"code\":\"166\",\"name\":\"Diazepam 5mg Tablets 500&apos;s\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"166\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1991, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3214\",\"code\":\"167\",\"name\":\"Diclo-Denk 100mg Tablet 10x10\",\"unit\":\"1\",\"cost\":\"148.0500\",\"price\":\"148.0500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"167\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1992, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3215\",\"code\":\"168\",\"name\":\"Diclo-Denk100mg  Suppository 10&apos;s\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"168\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1993, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3216\",\"code\":\"169\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"169\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1994, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3064\",\"code\":\"17\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"17\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1995, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3217\",\"code\":\"170\",\"name\":\"Diclolex 100mg Tablets 10X10\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"170\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1996, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3218\",\"code\":\"171\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"171\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1997, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3219\",\"code\":\"172\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"172\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1998, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3220\",\"code\":\"173\",\"name\":\"Dicnac 100mg Suppositories\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"dicnac.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"173\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1999, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3221\",\"code\":\"174\",\"name\":\"Diflucan 150mg Capsules 1&apos;s\",\"unit\":\"1\",\"cost\":\"81.2000\",\"price\":\"81.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"DIFLUCAN-150-mg.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"174\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2000, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3222\",\"code\":\"175\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"175\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2001, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3223\",\"code\":\"176\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2002, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3224\",\"code\":\"177\",\"name\":\"Diphex Cough Syrup\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"diphex.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"177\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2003, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3225\",\"code\":\"178\",\"name\":\"Domi 10 Suppositories\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"11.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1676\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"178\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2004, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3226\",\"code\":\"179\",\"name\":\"Domi 30mg Suppositories\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1676\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"179\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2005, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3065\",\"code\":\"18\",\"name\":\"Addyzoa Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"58.0000\",\"price\":\"58.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"18\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2006, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3227\",\"code\":\"180\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2007, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3228\",\"code\":\"181\",\"name\":\"Doxycycline 100mg Letap\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"DOXY.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"181\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2008, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3229\",\"code\":\"182\",\"name\":\"Dragon Tablets\",\"unit\":\"1\",\"cost\":\"23.4000\",\"price\":\"23.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"DRAGON-TABS.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2009, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3230\",\"code\":\"183\",\"name\":\"Dragon Spray\",\"unit\":\"1\",\"cost\":\"28.9000\",\"price\":\"28.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"DRAGON.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"183\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2010, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3231\",\"code\":\"184\",\"name\":\"Drez Ointment 10g\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"184\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2011, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3232\",\"code\":\"185\",\"name\":\"Drez Ointment 30mg\",\"unit\":\"1\",\"cost\":\"14.9600\",\"price\":\"14.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"drez-oint-30g.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2012, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3233\",\"code\":\"186\",\"name\":\"Drez Powder 10g\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"186\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2013, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3234\",\"code\":\"187\",\"name\":\"DUO COTECSON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"187\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2014, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3235\",\"code\":\"188\",\"name\":\"Easy Life Vitamin C+ Zinc Tablets\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"esay-life.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"188\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2015, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3236\",\"code\":\"189\",\"name\":\"Efpac Junior Syrup\",\"unit\":\"1\",\"cost\":\"7.1500\",\"price\":\"7.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"efpac-jnr.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"189\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2016, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3066\",\"code\":\"19\",\"name\":\"Adom W&amp;G Capsules\",\"unit\":\"1\",\"cost\":\"18.7000\",\"price\":\"18.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"wng.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"19\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2017, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3237\",\"code\":\"190\",\"name\":\"Efpac Tablets\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"EFPAC-TAB.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"190\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2018, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3238\",\"code\":\"191\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"191\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2019, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3239\",\"code\":\"192\",\"name\":\"Emgiflox 250mg Capsules 50x10\",\"unit\":\"1\",\"cost\":\"158.6000\",\"price\":\"158.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2020, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3240\",\"code\":\"193\",\"name\":\"Enacef (Cefuroxime) 250mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"193\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2021, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3241\",\"code\":\"194\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"194\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2022, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3242\",\"code\":\"195\",\"name\":\"Entramol 500mg Tablets 15X12\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"entramol.png\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2023, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3243\",\"code\":\"196\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2024, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3244\",\"code\":\"197\",\"name\":\"Epiderm Cream 15g\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"197\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2025, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3245\",\"code\":\"198\",\"name\":\"Epiderm Cream 30g\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"198\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2026, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3246\",\"code\":\"199\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2027, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3049\",\"code\":\"2\",\"name\":\"DAYQUIL 2&apos;s DISP.  (25 CT)\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dayquil-2s-disp-25-ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2028, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3067\",\"code\":\"20\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2029, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3247\",\"code\":\"200\",\"name\":\"Etisala Capsules\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2030, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3248\",\"code\":\"201\",\"name\":\"Evecare Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"33.8000\",\"price\":\"33.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"evecare-caps.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"201\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2031, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3249\",\"code\":\"202\",\"name\":\"Evening Primrose 1000mg Tablets Valupak\",\"unit\":\"1\",\"cost\":\"21.5000\",\"price\":\"21.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"evening-primrose.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"202\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2032, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3250\",\"code\":\"203\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"203\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2033, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3251\",\"code\":\"204\",\"name\":\"Ezipen Tablets 5x6\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"ezipen-rotated.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"204\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2034, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3252\",\"code\":\"205\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"205\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2035, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3253\",\"code\":\"206\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2036, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3254\",\"code\":\"207\",\"name\":\"Feroglobin Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"feroglobi.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"207\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2037, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3255\",\"code\":\"208\",\"name\":\"Ferrous Sulphate 200mg Tab 30&apos;s EXE\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1679\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"208\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2038, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3256\",\"code\":\"209\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2039, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3068\",\"code\":\"21\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"21\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2040, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3257\",\"code\":\"210\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"210\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2041, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3258\",\"code\":\"211\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"211\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2042, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3259\",\"code\":\"212\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"212\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2043, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3260\",\"code\":\"213\",\"name\":\"Fisherman&apos;s Friend All Flavours 24&apos;s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"213\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2044, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3261\",\"code\":\"214\",\"name\":\"Flagyl Suspension 100ml\",\"unit\":\"1\",\"cost\":\"39.3000\",\"price\":\"39.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"214\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2045, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3262\",\"code\":\"215\",\"name\":\"Flemex Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"flemex-adult.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"215\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2046, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3263\",\"code\":\"216\",\"name\":\"Flemex Jnr. Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"fle-jnr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"216\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2047, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3264\",\"code\":\"217\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2048, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3265\",\"code\":\"218\",\"name\":\"FLUCOR  NIGHT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2049, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3266\",\"code\":\"219\",\"name\":\"Flucor Day Gel\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"219\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2050, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3069\",\"code\":\"22\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"22\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2051, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3267\",\"code\":\"220\",\"name\":\"Flurest Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"flu.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"220\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2052, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3268\",\"code\":\"221\",\"name\":\"Foligrow Syrup 200ml\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"20.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"folig.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"221\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2053, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3269\",\"code\":\"222\",\"name\":\"Foliron Tonic 200ml\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"222\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2054, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3270\",\"code\":\"223\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2055, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3271\",\"code\":\"224\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"224\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2056, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3272\",\"code\":\"225\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"225\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2057, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3273\",\"code\":\"226\",\"name\":\"Funbact A\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"funbact-a.jpeg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"226\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2058, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3274\",\"code\":\"227\",\"name\":\"Furosemide 40mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"227\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2059, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3275\",\"code\":\"228\",\"name\":\"Gacet 125mg Suppositories\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2060, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3276\",\"code\":\"229\",\"name\":\"Gacet 250mg Suppository\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"229\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2061, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3070\",\"code\":\"23\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"23\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2062, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3277\",\"code\":\"230\",\"name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"unit\":\"1\",\"cost\":\"226.2100\",\"price\":\"226.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"galvus-met.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"230\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2063, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3278\",\"code\":\"231\",\"name\":\"Garlic Pearls Osons\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"osons-garlic.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2064, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3279\",\"code\":\"232\",\"name\":\"Gastrone Plus 200ml Suspension\",\"unit\":\"1\",\"cost\":\"14.7600\",\"price\":\"14.7600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"232\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2065, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3280\",\"code\":\"233\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"233\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2066, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3281\",\"code\":\"234\",\"name\":\"Gaviscon Peppermint Liquid 200ml\",\"unit\":\"1\",\"cost\":\"27.9800\",\"price\":\"27.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"234\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2067, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3282\",\"code\":\"235\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"235\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2068, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3283\",\"code\":\"236\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2069, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3284\",\"code\":\"237\",\"name\":\"Gebedol Tablet\",\"unit\":\"1\",\"cost\":\"11.1000\",\"price\":\"11.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gebedol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"237\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2070, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3285\",\"code\":\"238\",\"name\":\"Gebedol Extra\",\"unit\":\"1\",\"cost\":\"31.1000\",\"price\":\"31.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-extra.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"238\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2071, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3286\",\"code\":\"239\",\"name\":\"Gebedol Plus Capsule\",\"unit\":\"1\",\"cost\":\"24.4300\",\"price\":\"24.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-plus.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2072, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3071\",\"code\":\"24\",\"name\":\"Agbeve Tonic\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"agbeve.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2073, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3287\",\"code\":\"240\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"240\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2074, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3288\",\"code\":\"241\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"241\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2075, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3289\",\"code\":\"242\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"242\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2076, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3290\",\"code\":\"243\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2077, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3291\",\"code\":\"244\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"244\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2078, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3292\",\"code\":\"245\",\"name\":\"Givers P Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"245\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2079, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3293\",\"code\":\"246\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"246\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2080, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3294\",\"code\":\"247\",\"name\":\"Glibenil (Glibenclamide) Tablets\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"247\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2081, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3295\",\"code\":\"248\",\"name\":\"Glucose Powder 400mg\",\"unit\":\"1\",\"cost\":\"6.1700\",\"price\":\"6.1700\",\"alert_quantity\":\"20.0000\",\"image\":\"gluc.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"248\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2082, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3296\",\"code\":\"249\",\"name\":\"Roberts Glycerine 90ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"249\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2083, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3072\",\"code\":\"25\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2084, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3297\",\"code\":\"250\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2085, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3298\",\"code\":\"251\",\"name\":\"Gentian violet (GV PAINT)\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"gv-paint.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2086, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3299\",\"code\":\"252\",\"name\":\"Gvither Forte 80mg Injection 10&apos;s\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"28.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gvither.jpeg\",\"category_id\":\"1682\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"252\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2087, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3300\",\"code\":\"253\",\"name\":\"Gyprone Plus 200ml Syrup\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-68.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"253\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2088, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3301\",\"code\":\"254\",\"name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"4.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemo.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"254\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2089, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3302\",\"code\":\"255\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2090, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3303\",\"code\":\"256\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2091, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3304\",\"code\":\"257\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2092, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3305\",\"code\":\"258\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2093, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3306\",\"code\":\"259\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2094, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3073\",\"code\":\"26\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"26\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2095, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3307\",\"code\":\"260\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2096, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3308\",\"code\":\"261\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"261\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2097, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3309\",\"code\":\"262\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2098, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3310\",\"code\":\"263\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"263\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2099, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3311\",\"code\":\"264\",\"name\":\"Honeykof Herbal Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"honey.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"264\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2100, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3312\",\"code\":\"265\",\"name\":\"HOT WATER BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2101, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3313\",\"code\":\"266\",\"name\":\"HOT WATTLEER BOT COVERED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"266\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2102, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3314\",\"code\":\"267\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"267\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2103, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3315\",\"code\":\"268\",\"name\":\"Hydrogen Peroxide\",\"unit\":\"1\",\"cost\":\"2.1600\",\"price\":\"2.1600\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2104, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3316\",\"code\":\"269\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2105, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3074\",\"code\":\"27\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"27\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2106, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3317\",\"code\":\"270\",\"name\":\"Ibex Capsules 24&apos;s\",\"unit\":\"1\",\"cost\":\"15.2500\",\"price\":\"15.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"270\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2107, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3318\",\"code\":\"271\",\"name\":\"Ibucap Capsules 10C (BamBam)\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2108, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3319\",\"code\":\"272\",\"name\":\"Ideos\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"65.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"272\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2109, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3320\",\"code\":\"273\",\"name\":\"Imax Delay Spray\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-85.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2110, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3321\",\"code\":\"274\",\"name\":\"Imboost Herbal Mixture 500ml\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"imboost.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"274\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2111, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3322\",\"code\":\"275\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2112, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3323\",\"code\":\"276\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2113, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3324\",\"code\":\"277\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2114, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3325\",\"code\":\"278\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"278\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2115, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3326\",\"code\":\"279\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"279\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2116, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3075\",\"code\":\"28\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"28\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2117, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3327\",\"code\":\"280\",\"name\":\"Infacol Drops 55ml\",\"unit\":\"1\",\"cost\":\"49.4000\",\"price\":\"49.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"infacol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"280\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2118, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3328\",\"code\":\"281\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2119, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3329\",\"code\":\"282\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"282\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2120, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3330\",\"code\":\"283\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"283\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2121, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3331\",\"code\":\"284\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"284\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2122, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3332\",\"code\":\"285\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2123, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3333\",\"code\":\"286\",\"name\":\"Joy Ointment\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"joyoint.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"286\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2124, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3334\",\"code\":\"287\",\"name\":\"JRA B&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2125, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3335\",\"code\":\"288\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2126, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3336\",\"code\":\"289\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"289\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2127, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3076\",\"code\":\"29\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"29\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2128, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3337\",\"code\":\"290\",\"name\":\"KAMAGRA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"290\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2129, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3338\",\"code\":\"291\",\"name\":\"KEPTRILS LOZENGES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2130, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3339\",\"code\":\"292\",\"name\":\"Ketazol Cream 30g\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ketazol.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"292\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2131, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3340\",\"code\":\"293\",\"name\":\"Kidicare Srup 200ml\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kidicare.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"293\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2132, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3341\",\"code\":\"294\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"294\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2133, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3342\",\"code\":\"295\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"295\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2134, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3343\",\"code\":\"296\",\"name\":\"Kidivite Baby Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2135, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3344\",\"code\":\"297\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"297\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2136, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3345\",\"code\":\"298\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2137, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3346\",\"code\":\"299\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"299\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2138, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3050\",\"code\":\"3\",\"name\":\"ZANTAC  150  25CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zantac-150-25ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2139, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3077\",\"code\":\"30\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2140, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3347\",\"code\":\"300\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2141, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3348\",\"code\":\"301\",\"name\":\"Koflet Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-59.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"301\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2142, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3349\",\"code\":\"302\",\"name\":\"Kofof Adult Syrup 150ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"302\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2143, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3350\",\"code\":\"303\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2144, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3351\",\"code\":\"304\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2145, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3352\",\"code\":\"305\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2146, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3353\",\"code\":\"306\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"306\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2147, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3354\",\"code\":\"307\",\"name\":\"Leena Capsules\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"4.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"leena.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"307\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2148, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3355\",\"code\":\"308\",\"name\":\"Lemsip Cold and flu Max 10&apos;s\",\"unit\":\"1\",\"cost\":\"44.8000\",\"price\":\"44.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"lemsip-cold-and-flu-max.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2149, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3356\",\"code\":\"309\",\"name\":\"Lenor\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lenor.jpeg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2150, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3078\",\"code\":\"31\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"31\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2151, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3357\",\"code\":\"310\",\"name\":\"Letacam (Piroxicam)\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"310\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2152, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3358\",\"code\":\"311\",\"name\":\"Letamol Elixir 125ml\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"letamol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2153, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3359\",\"code\":\"312\",\"name\":\"Letamox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"13.1400\",\"price\":\"13.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2154, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3360\",\"code\":\"313\",\"name\":\"Letaron 200ml Syrup\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"313\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2155, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3361\",\"code\":\"314\",\"name\":\"Letavit Syrup\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"2.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2156, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3362\",\"code\":\"315\",\"name\":\"LEVOTHROXINE 50MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"315\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2157, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3363\",\"code\":\"316\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2158, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3364\",\"code\":\"317\",\"name\":\"Lexsporin Skin Ointment 20g\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexsporin-oint.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"317\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2159, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3365\",\"code\":\"318\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"318\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2160, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3366\",\"code\":\"319\",\"name\":\"LILY  ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"319\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2161, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3079\",\"code\":\"32\",\"name\":\"Amcof Adult Syrup\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"32\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2162, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3367\",\"code\":\"320\",\"name\":\"Bells Liquid Parafin BP 100ml\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-paraffin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"320\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2163, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3368\",\"code\":\"321\",\"name\":\"Lisinopril 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"321\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2164, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3369\",\"code\":\"322\",\"name\":\"Lisinopril 20mg Teva\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"322\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2165, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3370\",\"code\":\"323\",\"name\":\"Listerine 250ml all types\",\"unit\":\"1\",\"cost\":\"15.9000\",\"price\":\"15.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"323\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2166, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3371\",\"code\":\"324\",\"name\":\"LIVING BITTERS CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"324\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2167, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3372\",\"code\":\"325\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"325\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2168, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3373\",\"code\":\"326\",\"name\":\"Lofnac 100mg Suppository\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"326\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2169, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3374\",\"code\":\"327\",\"name\":\"Lofnac Gel 30mg\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lofnac.jpeg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"327\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2170, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3375\",\"code\":\"328\",\"name\":\"Lonart DS Tablets\",\"unit\":\"1\",\"cost\":\"17.2000\",\"price\":\"17.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"LONART-DS.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"328\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2171, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3376\",\"code\":\"329\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2172, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3080\",\"code\":\"33\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"33\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2173, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3377\",\"code\":\"330\",\"name\":\"Lubrimax Jelly 50g\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1685\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"330\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2174, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3378\",\"code\":\"331\",\"name\":\"Lubrimax Jelly 70g\",\"unit\":\"1\",\"cost\":\"19.4000\",\"price\":\"19.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"331\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2175, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3379\",\"code\":\"332\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"332\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2176, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3380\",\"code\":\"333\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"333\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2177, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3381\",\"code\":\"334\",\"name\":\"Luex Adult Chesty Cough 150ml syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"334\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2178, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3382\",\"code\":\"335\",\"name\":\"Luex Child Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"luex-child-chesty.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"335\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2179, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3383\",\"code\":\"336\",\"name\":\"Luex Child Dry Cough 150ml Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"336\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2180, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3384\",\"code\":\"337\",\"name\":\"Lufart DS Tablets\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"15.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lufart-ds.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"337\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2181, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3385\",\"code\":\"338\",\"name\":\"LUMETHER  ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2182, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3386\",\"code\":\"339\",\"name\":\"LYRICA 75\",\"unit\":\"1\",\"cost\":\"311.6000\",\"price\":\"311.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"339\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2183, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3081\",\"code\":\"34\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"34\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2184, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3387\",\"code\":\"340\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"340\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2185, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3388\",\"code\":\"341\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2186, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3389\",\"code\":\"342\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"342\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2187, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3390\",\"code\":\"343\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2188, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3391\",\"code\":\"344\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"344\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2189, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3392\",\"code\":\"345\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"345\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2190, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3393\",\"code\":\"346\",\"name\":\"Major Nasal Drops\",\"unit\":\"1\",\"cost\":\"8.1400\",\"price\":\"8.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"major.jpg\",\"category_id\":\"1686\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"346\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2191, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3394\",\"code\":\"347\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"347\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2192, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3395\",\"code\":\"348\",\"name\":\"Malar-2 Forte Tablets 40\\/240mg 12&apos;s\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"348\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2193, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3396\",\"code\":\"349\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"349\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2194, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3082\",\"code\":\"35\",\"name\":\"AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"35\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2195, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3397\",\"code\":\"350\",\"name\":\"Malin Adult\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"350\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2196, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3398\",\"code\":\"351\",\"name\":\"Malin Baby\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"351\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2197, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3399\",\"code\":\"352\",\"name\":\"Malin Lozenges\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"352\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2198, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3400\",\"code\":\"353\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"353\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2199, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3401\",\"code\":\"354\",\"name\":\"Mark 2 Inhaler\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mak-2.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"354\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2200, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3402\",\"code\":\"355\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2201, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3403\",\"code\":\"356\",\"name\":\"Maxitrol Eye 5ml Drops\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"16.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2202, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3404\",\"code\":\"357\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"357\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2203, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3405\",\"code\":\"358\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"358\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2204, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3406\",\"code\":\"359\",\"name\":\"Mentat Tablets\",\"unit\":\"1\",\"cost\":\"20.7400\",\"price\":\"20.7400\",\"alert_quantity\":\"20.0000\",\"image\":\"mentat-tab.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"359\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2205, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3083\",\"code\":\"36\",\"name\":\"Amoksiklav 1g Tablet 10s\",\"unit\":\"1\",\"cost\":\"48.2000\",\"price\":\"48.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"1000amok.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"36\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2206, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3407\",\"code\":\"360\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2207, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3408\",\"code\":\"361\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"361\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2208, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3409\",\"code\":\"362\",\"name\":\"Metformin Denk 500mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"63.2200\",\"price\":\"63.2200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"362\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2209, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3410\",\"code\":\"363\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2210, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3411\",\"code\":\"364\",\"name\":\"MetroGR-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"364\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2211, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3412\",\"code\":\"365\",\"name\":\"Metronidazole 200mg Tablets 50X10 Letap\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"365\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2212, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3413\",\"code\":\"366\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"366\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2213, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3414\",\"code\":\"367\",\"name\":\"Mist Pot Cit (Potassium Citrate) ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"367\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2214, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3415\",\"code\":\"368\",\"name\":\"Magnesium Trisilicate (MMT)\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"mmt.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"368\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2215, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3416\",\"code\":\"369\",\"name\":\"Mist Mag. Trisilicate 200ml Mal-Titi\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"369\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2216, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3084\",\"code\":\"37\",\"name\":\"Amoxicillin Suspension 100ml (Letap)\",\"unit\":\"1\",\"cost\":\"3.4100\",\"price\":\"3.4100\",\"alert_quantity\":\"20.0000\",\"image\":\"AMOCXI.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"37\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2217, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3417\",\"code\":\"370\",\"name\":\"MOVATE SAPHARMA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"370\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2218, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3418\",\"code\":\"371\",\"name\":\"Mucolex Junior Cough150ml Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"371\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2219, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3419\",\"code\":\"372\",\"name\":\"Multivite Tablets Letap\",\"unit\":\"1\",\"cost\":\"22.1000\",\"price\":\"22.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"372\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2220, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3420\",\"code\":\"373\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"373\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2221, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3421\",\"code\":\"374\",\"name\":\"Mycocort Cream 20g\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycocort.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"374\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2222, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3422\",\"code\":\"375\",\"name\":\"Mycolex 3 Cream 30gm\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-100.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"375\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2223, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3423\",\"code\":\"376\",\"name\":\"Mycolex Cream 20g\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycolex-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"376\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2224, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3424\",\"code\":\"377\",\"name\":\"Mycovin Tabs 500mg 250\'\",\"unit\":\"1\",\"cost\":\"198.0000\",\"price\":\"198.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycovin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"377\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2225, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3425\",\"code\":\"378\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2226, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3426\",\"code\":\"379\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"379\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2227, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3085\",\"code\":\"38\",\"name\":\"Ampicillin 250mg Capsules 50X10 Eskay\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"1.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"38\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2228, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3427\",\"code\":\"380\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2229, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3428\",\"code\":\"381\",\"name\":\"Naprox EC 500mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"381\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2230, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3429\",\"code\":\"382\",\"name\":\"Natrilix Sr 1.5mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"63.0000\",\"price\":\"63.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"382\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2231, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3430\",\"code\":\"383\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"383\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2232, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3431\",\"code\":\"384\",\"name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"neohycolex.jpg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2233, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3432\",\"code\":\"385\",\"name\":\"Neovita Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"neovita-30.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"385\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2234, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3433\",\"code\":\"386\",\"name\":\"Nerve and Bone Liniment 100ml\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"11.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1687\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"386\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2235, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3434\",\"code\":\"387\",\"name\":\"Nexium 40mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"149.2800\",\"price\":\"149.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"nexium.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"387\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2236, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3435\",\"code\":\"388\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"388\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2237, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3436\",\"code\":\"389\",\"name\":\"Nifecard XL 30mg Tablets 30&apos;s ECL\",\"unit\":\"1\",\"cost\":\"30.2000\",\"price\":\"30.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"nifecard.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"389\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2238, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3086\",\"code\":\"39\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"39\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2239, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3437\",\"code\":\"390\",\"name\":\"Night Nurse Capsules 10&apos;s\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"47.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"night-nurse.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"390\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2240, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3438\",\"code\":\"391\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"391\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2241, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3439\",\"code\":\"392\",\"name\":\"Nizoral Cream 15gm\",\"unit\":\"1\",\"cost\":\"35.3000\",\"price\":\"35.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-63.jpeg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"392\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2242, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3440\",\"code\":\"393\",\"name\":\"Normal Saline Infusion 500ml\",\"unit\":\"1\",\"cost\":\"4.4800\",\"price\":\"4.4800\",\"alert_quantity\":\"20.0000\",\"image\":\"normal-saline.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"393\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2243, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3441\",\"code\":\"394\",\"name\":\"Normo Tears Eye Drop\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"394\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2244, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3442\",\"code\":\"395\",\"name\":\"zincovit\",\"unit\":\"1\",\"cost\":\"19.3400\",\"price\":\"19.3400\",\"alert_quantity\":\"20.0000\",\"image\":\"nugel-scaled.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"395\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2245, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3443\",\"code\":\"396\",\"name\":\"Nugel-O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"20.1300\",\"price\":\"20.1300\",\"alert_quantity\":\"20.0000\",\"image\":\"nugel-o.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"396\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2246, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3444\",\"code\":\"397\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"397\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2247, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3445\",\"code\":\"398\",\"name\":\"O-FORMIN 500\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"398\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2248, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3446\",\"code\":\"399\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"399\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2249, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3051\",\"code\":\"4\",\"name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2250, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3087\",\"code\":\"40\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2251, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3447\",\"code\":\"400\",\"name\":\"Olfen Gel 20gm\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"olfen.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2252, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3448\",\"code\":\"401\",\"name\":\"Omeprazole 20mg Capsules 28&apos;s uk\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"401\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2253, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3449\",\"code\":\"402\",\"name\":\"Omeprazole 20mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Omeprazole-20mg-Tablets-28s-Teva.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"402\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2254, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3450\",\"code\":\"403\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"403\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2255, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3451\",\"code\":\"404\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"404\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2256, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3452\",\"code\":\"405\",\"name\":\"ORS Orange\",\"unit\":\"1\",\"cost\":\"16.6000\",\"price\":\"16.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"405\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2257, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3453\",\"code\":\"406\",\"name\":\"Osons Cod Liver Capsules\",\"unit\":\"1\",\"cost\":\"15.1000\",\"price\":\"15.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"406\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2258, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3454\",\"code\":\"407\",\"name\":\"Osteocare Chewable Tablets\",\"unit\":\"1\",\"cost\":\"39.7500\",\"price\":\"39.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"osteocare.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"407\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2259, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3455\",\"code\":\"408\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"408\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2260, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3456\",\"code\":\"409\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"409\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2261, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3088\",\"code\":\"41\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"41\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2262, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3457\",\"code\":\"410\",\"name\":\"Paingay Gel 30g\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"410\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2263, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3458\",\"code\":\"411\",\"name\":\"Panadol Advance 500mg 16&apos;s\",\"unit\":\"1\",\"cost\":\"24.0900\",\"price\":\"24.0900\",\"alert_quantity\":\"20.0000\",\"image\":\"panadol-advance-500mg.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"411\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2264, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3459\",\"code\":\"412\",\"name\":\"PARA DENK250 SUPPO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"412\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2265, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3460\",\"code\":\"413\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"413\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2266, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3461\",\"code\":\"414\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"414\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2267, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3462\",\"code\":\"415\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"415\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2268, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3463\",\"code\":\"416\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"416\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2269, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3464\",\"code\":\"417\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"417\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2270, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3465\",\"code\":\"418\",\"name\":\"Pilex Tablets\",\"unit\":\"1\",\"cost\":\"23.7800\",\"price\":\"23.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"pilex-tab.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"418\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2271, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3466\",\"code\":\"419\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"419\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2272, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3089\",\"code\":\"42\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"42\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2273, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3467\",\"code\":\"420\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"420\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2274, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3468\",\"code\":\"421\",\"name\":\"Piriton Original Syrup 150ml\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"piriton-syrup.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"421\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2275, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3469\",\"code\":\"422\",\"name\":\"Piriton Original Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"422\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2276, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3470\",\"code\":\"423\",\"name\":\"Plaster roll Extra care 2Inches\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"423\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2277, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3471\",\"code\":\"424\",\"name\":\"Polyfer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-caps.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"424\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2278, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3472\",\"code\":\"425\",\"name\":\"Polyfer Forte Syrup 150ML\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"425\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2279, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3473\",\"code\":\"426\",\"name\":\"Ponstan 250mg Capsules 50&apos;s\",\"unit\":\"1\",\"cost\":\"37.5000\",\"price\":\"37.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ponstan.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"426\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2280, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3474\",\"code\":\"427\",\"name\":\"Pregnacare Plus\",\"unit\":\"1\",\"cost\":\"108.1000\",\"price\":\"108.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"prenac.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"427\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2281, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3475\",\"code\":\"428\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"428\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2282, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3476\",\"code\":\"429\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2283, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3090\",\"code\":\"43\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"43\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2284, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3477\",\"code\":\"430\",\"name\":\"PROCOLD  SYR 60ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"430\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2285, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3478\",\"code\":\"431\",\"name\":\"Proman Capsules 30s\",\"unit\":\"1\",\"cost\":\"41.5800\",\"price\":\"41.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"proman.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"431\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2286, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3479\",\"code\":\"432\",\"name\":\"Proman 50+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"33.9800\",\"price\":\"33.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-58.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"432\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2287, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3480\",\"code\":\"433\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"433\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2288, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3481\",\"code\":\"434\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"434\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2289, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3482\",\"code\":\"435\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2290, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3483\",\"code\":\"436\",\"name\":\"Prostacure Tea\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"PROSTACURE-T.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"436\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2291, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3484\",\"code\":\"437\",\"name\":\"Prostacure X\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"PROSTACURE-1.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"437\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2292, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3485\",\"code\":\"438\",\"name\":\"PROSTAFIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"438\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2293, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3486\",\"code\":\"439\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"439\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2294, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3091\",\"code\":\"44\",\"name\":\"Apetamin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"44\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2295, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3487\",\"code\":\"440\",\"name\":\"Prowoman Caps 30\'\",\"unit\":\"1\",\"cost\":\"52.9200\",\"price\":\"52.9200\",\"alert_quantity\":\"20.0000\",\"image\":\"prowoman.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"440\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2296, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3488\",\"code\":\"441\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"441\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2297, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3489\",\"code\":\"442\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2298, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3490\",\"code\":\"443\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"443\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2299, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3491\",\"code\":\"444\",\"name\":\"Redsun Jelly\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"redsun.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"444\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2300, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3492\",\"code\":\"445\",\"name\":\"Relcer Gel\",\"unit\":\"1\",\"cost\":\"8.2800\",\"price\":\"8.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"relcer-gel.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"445\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2301, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3493\",\"code\":\"446\",\"name\":\"Rhizin Syrup\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"3.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-82.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"446\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2302, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3494\",\"code\":\"447\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"447\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2303, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3495\",\"code\":\"448\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2304, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3496\",\"code\":\"449\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2305, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3092\",\"code\":\"45\",\"name\":\"Apetatrust 200ml Syrup\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"45\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2306, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3497\",\"code\":\"450\",\"name\":\"Rooter Mixture\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooter-mixture.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"450\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2307, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3498\",\"code\":\"451\",\"name\":\"Rough Rider Condoms 3&apos;s\",\"unit\":\"1\",\"cost\":\"8.7800\",\"price\":\"8.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"rough-rider.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"451\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2308, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3499\",\"code\":\"452\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"452\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2309, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3500\",\"code\":\"453\",\"name\":\"Rubbing Alcohol 500ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"453\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2310, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3501\",\"code\":\"454\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"454\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2311, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3502\",\"code\":\"455\",\"name\":\"Seven Seas Cod Liver Oil 100ml ECL\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"34.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2312, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3503\",\"code\":\"456\",\"name\":\"Salamol Inhaler 100mg\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"20.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"456\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2313, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3504\",\"code\":\"457\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2314, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3505\",\"code\":\"458\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"458\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2315, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3506\",\"code\":\"459\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"459\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2316, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3093\",\"code\":\"46\",\"name\":\"Aptizoom Syrup 200ml\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"aptizoom-syr.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"46\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2317, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3507\",\"code\":\"460\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"460\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2318, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3508\",\"code\":\"461\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"461\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2319, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3509\",\"code\":\"462\",\"name\":\"Secure Contraceptive Pill\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"462\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2320, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3510\",\"code\":\"463\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"463\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2321, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3511\",\"code\":\"464\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"464\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2322, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3512\",\"code\":\"465\",\"name\":\"Septilin Tablet\",\"unit\":\"1\",\"cost\":\"20.1600\",\"price\":\"20.1600\",\"alert_quantity\":\"20.0000\",\"image\":\"septilin.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"465\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2323, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3513\",\"code\":\"466\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"466\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2324, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3514\",\"code\":\"467\",\"name\":\"Shal\'Artem Dispersible Tablets 6\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"467\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2325, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3515\",\"code\":\"468\",\"name\":\"Shalcip Tablets 500mg 10&apos;s (Ciprofloxacin)\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalcip-500.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"468\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2326, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3516\",\"code\":\"469\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2327, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3094\",\"code\":\"47\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"47\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2328, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3517\",\"code\":\"470\",\"name\":\"Sibi Woman Capsules\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sibi.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"470\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2329, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3518\",\"code\":\"471\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"471\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2330, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3519\",\"code\":\"472\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"472\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2331, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3520\",\"code\":\"473\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"473\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2332, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3521\",\"code\":\"474\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"474\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2333, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3522\",\"code\":\"475\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"475\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2334, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3523\",\"code\":\"476\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2335, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3524\",\"code\":\"477\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"477\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2336, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3525\",\"code\":\"478\",\"name\":\"SOLAK MIX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"478\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2337, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3526\",\"code\":\"479\",\"name\":\"Dispersible Aspirin 75mg Tablets 100&apos;s Aspar\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"disp-asp.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"479\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2338, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3095\",\"code\":\"48\",\"name\":\"Arfan 20\\/120mg\",\"unit\":\"1\",\"cost\":\"5.8600\",\"price\":\"5.8600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"48\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2339, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3527\",\"code\":\"480\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2340, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3528\",\"code\":\"481\",\"name\":\"Stagyl\",\"unit\":\"1\",\"cost\":\"3.3200\",\"price\":\"3.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"stGLY.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"481\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2341, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3529\",\"code\":\"482\",\"name\":\"Stopkof Children 100ml Syrup\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"482\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2342, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3530\",\"code\":\"483\",\"name\":\"Stopkof Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"483\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2343, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3531\",\"code\":\"484\",\"name\":\"Strepsil Orange +Vitamin C Loz 36&apos;s\",\"unit\":\"1\",\"cost\":\"52.4000\",\"price\":\"52.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"strepsils-orange.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"484\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2344, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3532\",\"code\":\"485\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2345, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3533\",\"code\":\"486\",\"name\":\"Sudocrem 125g cream\",\"unit\":\"1\",\"cost\":\"32.5000\",\"price\":\"32.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"486\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2346, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3534\",\"code\":\"487\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"487\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2347, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3535\",\"code\":\"488\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"488\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2348, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3536\",\"code\":\"489\",\"name\":\"Super Apeti Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"super-apeti-plus-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"489\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2349, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3096\",\"code\":\"49\",\"name\":\"Arziglobin 200ml Syrup\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-67.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"49\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2350, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3537\",\"code\":\"490\",\"name\":\"Super Apeti Plus Tablets 50X20\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"super-apeti-tbs.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"490\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2351, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3538\",\"code\":\"491\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2352, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3539\",\"code\":\"492\",\"name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"492\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2353, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3540\",\"code\":\"493\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2354, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3541\",\"code\":\"494\",\"name\":\"Syringe and Needle 5ml Letaject\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"494\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2355, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3542\",\"code\":\"495\",\"name\":\"Taabea Herbal Mixture\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-75.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"495\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2356, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3543\",\"code\":\"496\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2357, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3544\",\"code\":\"497\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"497\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2358, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3545\",\"code\":\"498\",\"name\":\"Tavanic 500mg Tablets 5&apos;s\",\"unit\":\"1\",\"cost\":\"134.9600\",\"price\":\"134.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"download-65.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"498\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2359, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3546\",\"code\":\"499\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2360, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3052\",\"code\":\"5\",\"name\":\"ALKA SELTZ PLS COLD 20\\/2&apos;s BOX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"alka-seltz-pls-cold-202s-box.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2361, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3097\",\"code\":\"50\",\"name\":\"Ascoryl Syrup 125ml\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"Ascorly-C-scaled.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2362, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3547\",\"code\":\"500\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2363, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3548\",\"code\":\"501\",\"name\":\"Tears Natural II Eye Drops\",\"unit\":\"1\",\"cost\":\"24.7000\",\"price\":\"24.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"tears-naturale.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"501\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2364, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3549\",\"code\":\"502\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"502\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2365, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3550\",\"code\":\"503\",\"name\":\"Tetracycline Capsules\",\"unit\":\"1\",\"cost\":\"15.8200\",\"price\":\"15.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"tetra.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"503\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2366, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3551\",\"code\":\"504\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"504\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2367, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3552\",\"code\":\"505\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2368, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3553\",\"code\":\"506\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2369, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3554\",\"code\":\"507\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"507\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2370, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3555\",\"code\":\"508\",\"name\":\"Tinatett Venecare 750ml\",\"unit\":\"1\",\"cost\":\"23.1000\",\"price\":\"23.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"titatet.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"508\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2371, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3556\",\"code\":\"509\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"509\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2372, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3098\",\"code\":\"51\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"51\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2373, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3557\",\"code\":\"510\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2374, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3558\",\"code\":\"511\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2375, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3559\",\"code\":\"512\",\"name\":\"Tranexamic Acid 500mg Tablets 60&apos;s\",\"unit\":\"1\",\"cost\":\"127.0000\",\"price\":\"127.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Tranexamic-Acid-500mg-Tablets-60s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"512\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2376, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3560\",\"code\":\"513\",\"name\":\"Tres Orix 250ml\",\"unit\":\"1\",\"cost\":\"21.6500\",\"price\":\"21.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"trex-oris.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"513\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2377, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3561\",\"code\":\"514\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"514\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2378, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3562\",\"code\":\"515\",\"name\":\"TRO XIME CEFUROXINE INJ 750\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"515\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2379, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3563\",\"code\":\"516\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"516\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2380, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3564\",\"code\":\"517\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"517\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2381, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3565\",\"code\":\"518\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"518\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2382, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3566\",\"code\":\"519\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"519\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2383, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3099\",\"code\":\"52\",\"name\":\"Asmanol 100mg Tablets\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"asmanol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"52\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2384, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3567\",\"code\":\"520\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"520\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2385, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3568\",\"code\":\"521\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"521\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2386, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3569\",\"code\":\"522\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"522\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2387, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3570\",\"code\":\"523\",\"name\":\"Vermox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"10.9000\",\"price\":\"10.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"vermox-tab.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"523\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2388, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3571\",\"code\":\"524\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"524\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2389, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3572\",\"code\":\"525\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"525\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2390, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3573\",\"code\":\"526\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"526\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2391, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3574\",\"code\":\"527\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"527\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2392, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3575\",\"code\":\"528\",\"name\":\"Viscof D 100ml Syrup\",\"unit\":\"1\",\"cost\":\"12.8400\",\"price\":\"12.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"528\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2393, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3576\",\"code\":\"529\",\"name\":\"Viscof Plain 100ml Syrup\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"529\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2394, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3100\",\"code\":\"53\",\"name\":\"Aspanol All In One Syrup\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"53\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2395, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3577\",\"code\":\"530\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"530\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2396, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3578\",\"code\":\"531\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"531\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2397, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3579\",\"code\":\"532\",\"name\":\"VITAMILK  BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"532\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2398, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3580\",\"code\":\"533\",\"name\":\"Vitane Liquid 200ml\",\"unit\":\"1\",\"cost\":\"45.2400\",\"price\":\"45.2400\",\"alert_quantity\":\"20.0000\",\"image\":\"vitane-liq.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"533\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2399, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3581\",\"code\":\"534\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"534\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2400, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3582\",\"code\":\"535\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2401, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3583\",\"code\":\"536\",\"name\":\"VOLLTFAST 50MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"536\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2402, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3584\",\"code\":\"537\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"537\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2403, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3585\",\"code\":\"538\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2404, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3586\",\"code\":\"539\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"539\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2405, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3101\",\"code\":\"54\",\"name\":\"Aspanol Productive\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"54\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2406, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3587\",\"code\":\"540\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"540\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2407, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3588\",\"code\":\"541\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"541\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2408, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3589\",\"code\":\"542\",\"name\":\"Wellbaby Infant 160ml Syrup\",\"unit\":\"1\",\"cost\":\"74.3000\",\"price\":\"74.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"542\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2409, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3590\",\"code\":\"543\",\"name\":\"Wellman Capsules\",\"unit\":\"1\",\"cost\":\"58.4000\",\"price\":\"58.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"543\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2410, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3591\",\"code\":\"544\",\"name\":\"Wormbase 400mg Tablets\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"544\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2411, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3592\",\"code\":\"545\",\"name\":\"Wormplex Suspension\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"545\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2412, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3593\",\"code\":\"546\",\"name\":\"Wormplex 400 Tablets\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"wormplex-400.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2413, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3594\",\"code\":\"547\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"547\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2414, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3595\",\"code\":\"548\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"548\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2415, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3596\",\"code\":\"549\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2416, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3102\",\"code\":\"55\",\"name\":\"Aspirin Tab 300mg\",\"unit\":\"1\",\"cost\":\"18.3200\",\"price\":\"18.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"55\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2417, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3597\",\"code\":\"550\",\"name\":\"Zentel 200mg Tablets 2&apos;s\",\"unit\":\"1\",\"cost\":\"10.4800\",\"price\":\"10.4800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-86.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"550\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2418, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3598\",\"code\":\"551\",\"name\":\"ZESTRIL 20MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"551\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2419, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3599\",\"code\":\"552\",\"name\":\"Zincofer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"17.9000\",\"price\":\"17.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-78.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"552\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2420, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3600\",\"code\":\"553\",\"name\":\"Zincofer Syrup 200ml\",\"unit\":\"1\",\"cost\":\"17.8400\",\"price\":\"17.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"download-77.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"553\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2421, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3601\",\"code\":\"554\",\"name\":\"Zincovit Drops 15ml\",\"unit\":\"1\",\"cost\":\"8.8200\",\"price\":\"8.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"zicovit-drops.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"554\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2422, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3602\",\"code\":\"555\",\"name\":\"Zincovit Syrup 200ml\",\"unit\":\"1\",\"cost\":\"16.1000\",\"price\":\"16.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"zincovit-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"555\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2423, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3603\",\"code\":\"556\",\"name\":\"Zincovit Tablets\",\"unit\":\"1\",\"cost\":\"23.7000\",\"price\":\"23.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"zicovit.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"556\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2424, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3604\",\"code\":\"557\",\"name\":\"Zinnat 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"135.6500\",\"price\":\"135.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"557\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2425, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3605\",\"code\":\"558\",\"name\":\"ZINVITE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"558\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2426, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3606\",\"code\":\"559\",\"name\":\"Zinvite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.9900\",\"price\":\"6.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"zinvite-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"559\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2427, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3103\",\"code\":\"56\",\"name\":\"Asthalex Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"asthalex.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"56\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2428, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3607\",\"code\":\"560\",\"name\":\"ZIPMAN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"560\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2429, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3608\",\"code\":\"561\",\"name\":\"Zirtek Allegy 10mg Tablets 21&apos;s\",\"unit\":\"1\",\"cost\":\"71.5000\",\"price\":\"71.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"zirtek-allgy.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"561\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2430, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3609\",\"code\":\"562\",\"name\":\"Zubes Expectorant 125ml Syrup\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"562\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2431, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3610\",\"code\":\"563\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"563\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2432, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3611\",\"code\":\"564\",\"name\":\"Zulu 100mg Tablet\",\"unit\":\"1\",\"cost\":\"3.7800\",\"price\":\"3.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"564\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2433, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3612\",\"code\":\"565\",\"name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"unit\":\"1\",\"cost\":\"10.7800\",\"price\":\"10.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"zymax.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"565\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2434, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3613\",\"code\":\"566\",\"name\":\"Teedar Syrup 125ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"teedar-syr.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"566\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2435, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3614\",\"code\":\"567\",\"name\":\"Virol blood tonic 200ml\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"virol.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"567\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2436, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3615\",\"code\":\"568\",\"name\":\"Asmadrin Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"asmadrin-2-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"568\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2437, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3616\",\"code\":\"569\",\"name\":\"Durol Tonic 300ml\",\"unit\":\"1\",\"cost\":\"12.4500\",\"price\":\"12.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"download-2.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"569\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2438, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3104\",\"code\":\"57\",\"name\":\"Atacand Plus 16\\/12.5mg\",\"unit\":\"1\",\"cost\":\"235.7300\",\"price\":\"235.7300\",\"alert_quantity\":\"20.0000\",\"image\":\"atacand.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"57\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2439, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3617\",\"code\":\"570\",\"name\":\"Finelife Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"8.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"finelife-blood-tonic.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"570\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2440, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3618\",\"code\":\"571\",\"name\":\"Magacid Susp 200ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"magacid.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"571\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2441, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3619\",\"code\":\"572\",\"name\":\"Durol Tonic 200ml\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"med2-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"572\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2442, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3620\",\"code\":\"573\",\"name\":\"Koffex Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"koffex-adt-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"573\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2443, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3621\",\"code\":\"574\",\"name\":\"Samalin Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-adt-125ml.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"574\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2444, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3622\",\"code\":\"575\",\"name\":\"Magacid Tab 25&apos;s\",\"unit\":\"1\",\"cost\":\"21.3000\",\"price\":\"21.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"Magacid-tab.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"575\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2445, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3623\",\"code\":\"576\",\"name\":\"Menthox Adult Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"menthox-syr.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"576\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2446, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3624\",\"code\":\"577\",\"name\":\"Martins liver salt(Lemon)25&apos;s\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"Martins-Liver-Salt.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"577\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2447, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3625\",\"code\":\"578\",\"name\":\"Magacid Fastmelt(all flavours)35&apos;s\",\"unit\":\"1\",\"cost\":\"12.6500\",\"price\":\"12.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"fastmeltIMG.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"578\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2448, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3626\",\"code\":\"579\",\"name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"unit\":\"1\",\"cost\":\"7.9400\",\"price\":\"7.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"SAMALIN-JNR-COUGH.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"579\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2449, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3105\",\"code\":\"58\",\"name\":\"Atacand 8mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"194.0000\",\"price\":\"194.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"58\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2450, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3627\",\"code\":\"580\",\"name\":\"Rhizin 10mg Tabs10x10\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"rhizin.jpg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"580\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2451, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3628\",\"code\":\"581\",\"name\":\"Starwin Milk of Magnesia 360ml\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"starwin-milk-of-M.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"581\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2452, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3629\",\"code\":\"582\",\"name\":\"APC TABS 10X10\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"apc-10S-2.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"582\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2453, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3630\",\"code\":\"583\",\"name\":\"Rapinol Tab 25X4&apos;s\",\"unit\":\"1\",\"cost\":\"13.7000\",\"price\":\"13.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"rapinol-tab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"583\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2454, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3631\",\"code\":\"584\",\"name\":\"Gluco-Naf C orange 400mg\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"gluconaf-c-orange.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"584\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2455, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3632\",\"code\":\"585\",\"name\":\"Samalin Lozenges 2x10&apos;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-loz1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"585\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2456, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3633\",\"code\":\"586\",\"name\":\"APC 50X4 TABS\",\"unit\":\"1\",\"cost\":\"28.1000\",\"price\":\"28.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"APC-Tablets.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"586\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2457, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3634\",\"code\":\"587\",\"name\":\"Whitfield ointment\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"whitfield-oint-40gm.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"587\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2458, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3635\",\"code\":\"588\",\"name\":\"Kwik Action Tablets 50x4\",\"unit\":\"1\",\"cost\":\"37.7000\",\"price\":\"37.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"KA.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"588\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2459, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3636\",\"code\":\"589\",\"name\":\"Dithranol ointment 40mg\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dithranol-oint-40mg.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"589\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2460, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3106\",\"code\":\"59\",\"name\":\"Atenolol 100mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"59\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2461, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3637\",\"code\":\"590\",\"name\":\"Calamine ointment 40mg\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"calamine-oint-40mg.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"590\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2462, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3638\",\"code\":\"591\",\"name\":\"Alugel Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"33.6000\",\"price\":\"33.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ALUGEL.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"591\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2463, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3639\",\"code\":\"592\",\"name\":\"Haemoglobin Syrup Aryton 200ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemo.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"592\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2464, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3640\",\"code\":\"593\",\"name\":\"Malafan Tabs 50&apos;s\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"malafan.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"593\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2465, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3641\",\"code\":\"594\",\"name\":\"Licntus Jnr. syr 100ml\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"594\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2466, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3642\",\"code\":\"595\",\"name\":\"Linctus Adult Cough syr. 100ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"595\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2467, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3643\",\"code\":\"596\",\"name\":\"Antasil Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"25.7000\",\"price\":\"25.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"Antasil-tab..png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"596\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2468, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3644\",\"code\":\"597\",\"name\":\"Vigorix Forte Syr 200ml\",\"unit\":\"1\",\"cost\":\"11.1000\",\"price\":\"11.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"vigorix-styr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"597\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2469, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3645\",\"code\":\"598\",\"name\":\"Paraking Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"paraking-scaled.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"598\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2470, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3646\",\"code\":\"599\",\"name\":\"Ferrodex Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"599\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2471, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3053\",\"code\":\"6\",\"name\":\"HORNY GOAT WEED 24CT\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"horny-goat-weed-24ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2472, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3107\",\"code\":\"60\",\"name\":\"Atorvastatin 20mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2473, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3647\",\"code\":\"600\",\"name\":\"Bella cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"bella-cough-syr-125ml.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"600\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2474, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3648\",\"code\":\"601\",\"name\":\"PMF 200g\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"PMF.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"601\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2475, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3649\",\"code\":\"602\",\"name\":\"Sulphur Ointment 40g\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"SULPHUR-OINT.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"602\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2476, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3650\",\"code\":\"603\",\"name\":\"Panacin Tabs 25X4\",\"unit\":\"1\",\"cost\":\"10.8300\",\"price\":\"10.8300\",\"alert_quantity\":\"20.0000\",\"image\":\"PANACIN-TAB.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"603\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2477, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3651\",\"code\":\"604\",\"name\":\"Penicillin V 125mg Letap\",\"unit\":\"1\",\"cost\":\"11.3800\",\"price\":\"11.3800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"604\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2478, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3652\",\"code\":\"605\",\"name\":\"Linctus Junior Syr. 100ml\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml-2.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"605\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2479, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3653\",\"code\":\"606\",\"name\":\"Rooter Life\",\"unit\":\"1\",\"cost\":\"35.9000\",\"price\":\"35.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooterlife.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"606\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2480, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3654\",\"code\":\"607\",\"name\":\"Rooter Tytonic\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooter-tytonic.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"607\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2481, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3655\",\"code\":\"608\",\"name\":\"Scimether Suspension\",\"unit\":\"1\",\"cost\":\"14.2100\",\"price\":\"14.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"scimether.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"608\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2482, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3656\",\"code\":\"609\",\"name\":\"Scimether 80\\/480mg Tablet\",\"unit\":\"1\",\"cost\":\"16.6600\",\"price\":\"16.6600\",\"alert_quantity\":\"20.0000\",\"image\":\"scimether-1.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"609\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2483, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3108\",\"code\":\"61\",\"name\":\"Atorvastatin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"61\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2484, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3657\",\"code\":\"610\",\"name\":\"Coartem 20\\/120mg Tablets 12&apos;s\",\"unit\":\"1\",\"cost\":\"18.3300\",\"price\":\"18.3300\",\"alert_quantity\":\"20.0000\",\"image\":\"coartem-20.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"610\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2485, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3658\",\"code\":\"611\",\"name\":\"Coartem 20\\/120mg Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"10.6800\",\"price\":\"10.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"c6.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"611\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2486, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3659\",\"code\":\"612\",\"name\":\"Sirdalud 2mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"images-1.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"612\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2487, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3660\",\"code\":\"613\",\"name\":\"Sirdalud 4mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"92.1000\",\"price\":\"92.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-64.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"613\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2488, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3661\",\"code\":\"614\",\"name\":\"Diclofenac 75mg Tablets Sandoz 20&apos;s\",\"unit\":\"1\",\"cost\":\"15.0200\",\"price\":\"15.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"dicl-sdz.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"614\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2489, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3662\",\"code\":\"615\",\"name\":\"Stericef 1 Gm Injection\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"stericef.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"615\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2490, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3663\",\"code\":\"616\",\"name\":\"Cetapol 500mg Tablet 2X10\",\"unit\":\"1\",\"cost\":\"2.5300\",\"price\":\"2.5300\",\"alert_quantity\":\"20.0000\",\"image\":\"cetapol-tab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"616\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2491, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3664\",\"code\":\"617\",\"name\":\"ORS Plain 25&apos;s\",\"unit\":\"1\",\"cost\":\"16.3100\",\"price\":\"16.3100\",\"alert_quantity\":\"20.0000\",\"image\":\"ors.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"617\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2492, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3665\",\"code\":\"618\",\"name\":\"Rizole Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"rizole-susp.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"618\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2493, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3666\",\"code\":\"619\",\"name\":\"Herbloz Lozenges (Orange) 300PCS\",\"unit\":\"1\",\"cost\":\"55.5400\",\"price\":\"55.5400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"619\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2494, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3109\",\"code\":\"62\",\"name\":\"Augmentin  625mgTablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"72.6400\",\"price\":\"72.6400\",\"alert_quantity\":\"20.0000\",\"image\":\"images-2.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"62\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2495, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3667\",\"code\":\"620\",\"name\":\"Closol Cream\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"closol-cream.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"620\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2496, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3668\",\"code\":\"621\",\"name\":\"Vaginax Cream 30gm\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"vnax-scaled.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"621\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2497, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3669\",\"code\":\"622\",\"name\":\"Tacizol 400mg Tablet\",\"unit\":\"1\",\"cost\":\"0.7200\",\"price\":\"0.7200\",\"alert_quantity\":\"20.0000\",\"image\":\"tacizol.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"622\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2498, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3670\",\"code\":\"623\",\"name\":\"Tacizol Suspension\",\"unit\":\"1\",\"cost\":\"1.8800\",\"price\":\"1.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"tacizol-sus.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"623\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2499, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3671\",\"code\":\"624\",\"name\":\"Clopimol Tablet\",\"unit\":\"1\",\"cost\":\"17.2600\",\"price\":\"17.2600\",\"alert_quantity\":\"20.0000\",\"image\":\"IMG_20220103_165204_501-rotated.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"624\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2500, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3672\",\"code\":\"625\",\"name\":\"Eurovit Multivitamin Gummies Greeen\",\"unit\":\"1\",\"cost\":\"18.8800\",\"price\":\"18.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2501, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3673\",\"code\":\"626\",\"name\":\"Eurovit Multivitamin Gummies Strawberry\",\"unit\":\"1\",\"cost\":\"18.8800\",\"price\":\"18.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"626\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2502, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3674\",\"code\":\"627\",\"name\":\"Zipferon Capsule\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"4.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"zipferon-cap.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"627\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2503, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3675\",\"code\":\"628\",\"name\":\"Blocold Tablet\",\"unit\":\"1\",\"cost\":\"17.8200\",\"price\":\"17.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"blocold.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"628\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2504, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3676\",\"code\":\"629\",\"name\":\"Gebedol Forte\",\"unit\":\"1\",\"cost\":\"17.2100\",\"price\":\"17.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-forte.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"629\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2505, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3110\",\"code\":\"63\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"63\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2506, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3677\",\"code\":\"630\",\"name\":\"Deep Heat Rub 35g\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"31.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-rub.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"630\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2507, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3678\",\"code\":\"631\",\"name\":\"Deep Heat Spray 150ml\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-spray.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"631\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2508, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3679\",\"code\":\"632\",\"name\":\"Fasipro Tablets (1*10)\",\"unit\":\"1\",\"cost\":\"7.9900\",\"price\":\"7.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-spray-1.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"632\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2509, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3680\",\"code\":\"633\",\"name\":\"Leorub Gel 30g\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"4.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"leorub-gel.jpg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"633\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2510, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3681\",\"code\":\"634\",\"name\":\"Kamaclox Mouthwash 300ml\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"kamaclox-mouth-wash.jpg\",\"category_id\":\"1689\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"634\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2511, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3682\",\"code\":\"635\",\"name\":\"Omega Oil Liniment 50ml\",\"unit\":\"1\",\"cost\":\"8.6400\",\"price\":\"8.6400\",\"alert_quantity\":\"20.0000\",\"image\":\"omega-oil.jpg\",\"category_id\":\"1687\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"635\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2512, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3683\",\"code\":\"636\",\"name\":\"Hot Naso- Ephedrine Nasal Drop\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"4.5500\",\"alert_quantity\":\"20.0000\",\"image\":\"hot-naso.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"636\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2513, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3684\",\"code\":\"637\",\"name\":\"Cold Naso\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"3.0500\",\"alert_quantity\":\"20.0000\",\"image\":\"cold-naso.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"637\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2514, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3685\",\"code\":\"638\",\"name\":\"Calcicare Liquid\",\"unit\":\"1\",\"cost\":\"35.9600\",\"price\":\"35.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"calcicare-liquid.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"638\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2515, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3686\",\"code\":\"639\",\"name\":\"Vitane Drops 30ml\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"VITANE-DROPS.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"639\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2516, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3111\",\"code\":\"64\",\"name\":\"Azilex 250 Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"azilex.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"64\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2517, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3687\",\"code\":\"640\",\"name\":\"Dextrose 5% Infusion 500ml\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"dextrose.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"640\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2518, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3688\",\"code\":\"641\",\"name\":\"Ringers Lactate 500ml\",\"unit\":\"1\",\"cost\":\"3.4600\",\"price\":\"3.4600\",\"alert_quantity\":\"20.0000\",\"image\":\"RINGERS.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"641\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2519, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3689\",\"code\":\"642\",\"name\":\"Omroz Injection- Omeprazol 40mg\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"9.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"omroz-inj.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"642\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2520, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3690\",\"code\":\"643\",\"name\":\"Candid Cream- Clotrimazole 1% 20mg\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-cream-clotri.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"643\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2521, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3691\",\"code\":\"644\",\"name\":\"Candid B Cream 15mg\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"CANDID-B.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"644\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2522, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3692\",\"code\":\"645\",\"name\":\"Candid V1-Clotrimazole 500mg Pessary 1&apos;s\",\"unit\":\"1\",\"cost\":\"7.2300\",\"price\":\"7.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-v1-p.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"645\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2523, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3693\",\"code\":\"646\",\"name\":\"Candid V3-Clotrimazole 200mg Pessary\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"7.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"CANDID-V3.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"646\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2524, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3694\",\"code\":\"647\",\"name\":\"Candid V6-Clotrimazole 100mg Pessary\",\"unit\":\"1\",\"cost\":\"6.7700\",\"price\":\"6.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-V6.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"647\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2525, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3695\",\"code\":\"648\",\"name\":\"Candid V Gel 30gms\",\"unit\":\"1\",\"cost\":\"19.6800\",\"price\":\"19.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-v-gel.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"648\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2526, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3696\",\"code\":\"649\",\"name\":\"Candiderm Cream-Triple Action Cream 15mg\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"candiderm-cream.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"649\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2527, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3112\",\"code\":\"65\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"65\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2528, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3697\",\"code\":\"650\",\"name\":\"Bonnisan Syrup 120ml\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"bonnisan-syr.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"650\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2529, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3698\",\"code\":\"651\",\"name\":\"Confido Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"confido-caps.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"651\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2530, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3699\",\"code\":\"652\",\"name\":\"Cystone Tablets\",\"unit\":\"1\",\"cost\":\"27.2000\",\"price\":\"27.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cystone.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"652\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2531, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3700\",\"code\":\"653\",\"name\":\"Evecare Syrup 200ml\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"evecare-syr.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"653\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2532, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3701\",\"code\":\"654\",\"name\":\"Liv 52 Tablets\",\"unit\":\"1\",\"cost\":\"33.2100\",\"price\":\"33.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"liv-52-tabs.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"654\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2533, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3702\",\"code\":\"655\",\"name\":\"Liv 52 Syrup\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"live-52-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"655\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2534, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3703\",\"code\":\"656\",\"name\":\"Mentat Syrup\",\"unit\":\"1\",\"cost\":\"20.4000\",\"price\":\"20.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"mentat-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"656\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2535, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3704\",\"code\":\"657\",\"name\":\"Pilex Ointment\",\"unit\":\"1\",\"cost\":\"21.9000\",\"price\":\"21.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"pilex-oint.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2536, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3705\",\"code\":\"658\",\"name\":\"Koflet Lozenges (All Flavors)\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"koflet-loz.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"658\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2537, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3706\",\"code\":\"659\",\"name\":\"Renalka Syrup\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"renalka.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"659\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2538, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3113\",\"code\":\"66\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"66\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2539, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3707\",\"code\":\"660\",\"name\":\"Speman Tablets\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"speman.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"660\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2540, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3708\",\"code\":\"661\",\"name\":\"Carbozap Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"661\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2541, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3709\",\"code\":\"662\",\"name\":\"Ferofix Syrup 200ml\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"ferofix.jpg, ferfix-syr.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"662\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2542, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3710\",\"code\":\"663\",\"name\":\"Ferofix Capsules\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"magt-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"663\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2543, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3711\",\"code\":\"664\",\"name\":\"Azure-Retail\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tablets-medicine-supplement-vitamin-5620566.jpg\",\"category_id\":\"1690\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2544, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3712\",\"code\":\"665\",\"name\":\"GRMox (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.7200\",\"price\":\"3.7200\",\"alert_quantity\":\"20.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"665\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2545, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3713\",\"code\":\"666\",\"name\":\"Lumizap 80\\/480mg Tablets\",\"unit\":\"1\",\"cost\":\"5.8800\",\"price\":\"5.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"Lumizap-40-80.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"666\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2546, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3714\",\"code\":\"667\",\"name\":\"Lumizap Suspension 60ml\",\"unit\":\"1\",\"cost\":\"5.1900\",\"price\":\"5.1900\",\"alert_quantity\":\"20.0000\",\"image\":\"Lumizap-suspension.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"667\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2547, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3715\",\"code\":\"668\",\"name\":\"Vin C 100mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"19.6000\",\"price\":\"19.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"Vin-C.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2548, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3716\",\"code\":\"669\",\"name\":\"Zamac Tablets 100mg\",\"unit\":\"1\",\"cost\":\"3.1400\",\"price\":\"3.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"IMG_20220103_161259_8442.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"669\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2549, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3114\",\"code\":\"67\",\"name\":\"B COMPLEX TAB LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"67\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2550, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3717\",\"code\":\"670\",\"name\":\"GRMox 500mg (Amoxicillin) Capsules 10x15\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"670\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2551, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3718\",\"code\":\"671\",\"name\":\"Lydia Postpill 1Tablet\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"671\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2552, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3719\",\"code\":\"672\",\"name\":\"Kiss Condom Classic\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"kiss-classic.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"672\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2553, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3720\",\"code\":\"673\",\"name\":\"Kiss Condom Strawberry\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"kiss-strawberry.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"673\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2554, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3721\",\"code\":\"674\",\"name\":\"Fiesta Condom (All Flavours)\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"FIESTA.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"674\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2555, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3722\",\"code\":\"675\",\"name\":\"Mr. Q\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"MR.-Q.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"675\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2556, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3723\",\"code\":\"676\",\"name\":\"Araba Ba Zhen Tablets\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"araba-ba.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"676\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2557, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3724\",\"code\":\"677\",\"name\":\"Potassium Citrate (Pot Cit\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"677\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2558, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3725\",\"code\":\"678\",\"name\":\"X\'mox (Amoxicillin)500mg Capsules 21&apos;s\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"Xmox-500mg-150x150-1.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"678\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2559, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3726\",\"code\":\"679\",\"name\":\"Coldrilif Syrup\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"Coldrilif-Syrup.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"679\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2560, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3115\",\"code\":\"68\",\"name\":\"Baby Cough Lintus 100ml ECL\",\"unit\":\"1\",\"cost\":\"5.0400\",\"price\":\"5.0400\",\"alert_quantity\":\"20.0000\",\"image\":\"BABY-CO.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"68\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2561, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3727\",\"code\":\"680\",\"name\":\"Methylated Spirit 60ml\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"2.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"680\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2562, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3728\",\"code\":\"681\",\"name\":\"Amaryl 2mg Tablet 30&apos;s\",\"unit\":\"1\",\"cost\":\"72.8000\",\"price\":\"72.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Amaryl-2mg-Tablet.jpg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"681\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2563, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3729\",\"code\":\"682\",\"name\":\"Amaryl 4mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"160.7000\",\"price\":\"160.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"amaryl-4mg.jpg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"682\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2564, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3730\",\"code\":\"683\",\"name\":\"Amedin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"AMEDIN-10MG.jpg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"683\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2565, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3731\",\"code\":\"684\",\"name\":\"Augmentin 1g Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"75.8000\",\"price\":\"75.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"med3-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"684\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2566, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3732\",\"code\":\"685\",\"name\":\"Bioferon Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"23.5000\",\"price\":\"23.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"bioferon-capsules-30s.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"685\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2567, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3733\",\"code\":\"686\",\"name\":\"Cebrotonin 800mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"73.5000\",\"price\":\"73.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"cebrotonin.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"686\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2568, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3734\",\"code\":\"687\",\"name\":\"Ciprolex Eye Ointment 5g\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipro-eye-oint.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"687\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2569, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3735\",\"code\":\"688\",\"name\":\"Diclolex Power Heat Gel 30g\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"diclolex-gel.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"688\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2570, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3736\",\"code\":\"689\",\"name\":\"Ferrolex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrolex.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"689\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2571, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3116\",\"code\":\"69\",\"name\":\"Baseboom Gel\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"69\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2572, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3737\",\"code\":\"690\",\"name\":\"Herbloz Lozenges (Orange) 2*12\",\"unit\":\"1\",\"cost\":\"7.7700\",\"price\":\"7.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"690\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2573, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3738\",\"code\":\"691\",\"name\":\"Herbloz Lozenges (Orange) 20X6\",\"unit\":\"1\",\"cost\":\"31.1000\",\"price\":\"31.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"691\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2574, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3739\",\"code\":\"692\",\"name\":\"Cartef-DS Tablet\",\"unit\":\"1\",\"cost\":\"8.3200\",\"price\":\"8.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"692\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2575, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3740\",\"code\":\"693\",\"name\":\"Mist Sennaco ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mist-cenaco.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"693\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2576, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3741\",\"code\":\"694\",\"name\":\"Methylated Spirit 200ml\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"694\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2577, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3742\",\"code\":\"695\",\"name\":\"Klire Tablet 10&apos;s\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-tab-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"695\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2578, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3743\",\"code\":\"696\",\"name\":\"Clear Inhaler 12&apos;s\",\"unit\":\"1\",\"cost\":\"29.5000\",\"price\":\"29.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"clear-inhaler.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"696\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2579, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3744\",\"code\":\"697\",\"name\":\"Haem Up Syrup 200ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemup.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"697\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2580, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3745\",\"code\":\"698\",\"name\":\"Feroclear Syrup 200ml\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"28.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"feroclear.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"698\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2581, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3746\",\"code\":\"699\",\"name\":\"Haemo Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"27.8000\",\"price\":\"27.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"hamforte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"699\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2582, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3054\",\"code\":\"7\",\"name\":\"JAGUAR KING 30000 - 24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"02MJ2.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2583, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3117\",\"code\":\"70\",\"name\":\"Basecold Syrup\",\"unit\":\"1\",\"cost\":\"3.9600\",\"price\":\"3.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2584, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3747\",\"code\":\"700\",\"name\":\"Klire Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"15.2000\",\"price\":\"15.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-cough.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"700\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2585, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3748\",\"code\":\"701\",\"name\":\"Histergan Cream 25g\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Histergan-2-cream.jpg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"701\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2586, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3749\",\"code\":\"702\",\"name\":\"Kefrox 125mg\\/5ml suspension 70ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kefrox.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"702\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2587, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3750\",\"code\":\"703\",\"name\":\"Lexocap 20x10\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexocap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"703\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2588, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3751\",\"code\":\"704\",\"name\":\"Lexofen Plus Tablets 2x10\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexofen-plus.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"704\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2589, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3752\",\"code\":\"705\",\"name\":\"Klire Antacid Suspension 125ml\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-anes-1.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"705\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2590, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3753\",\"code\":\"706\",\"name\":\"Maalox Plus Suspension 250ml\",\"unit\":\"1\",\"cost\":\"40.9400\",\"price\":\"40.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"maalox-plus_5000x.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"706\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2591, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3754\",\"code\":\"707\",\"name\":\"Maalox Stick Packs 20&apos;s\",\"unit\":\"1\",\"cost\":\"34.1000\",\"price\":\"34.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"MAALOX-sachet.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"707\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2592, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3755\",\"code\":\"708\",\"name\":\"Ancigel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ancige.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"708\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2593, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3756\",\"code\":\"709\",\"name\":\"Metrolex F Tablets 21&apos;s\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"metrolex-f.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"709\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2594, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3118\",\"code\":\"71\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"71\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2595, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3757\",\"code\":\"710\",\"name\":\"Plaster roll 3Inches Xtra care\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"710\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2596, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3758\",\"code\":\"711\",\"name\":\"Plaster roll 4Inches Xtra care\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"711\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2597, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3759\",\"code\":\"712\",\"name\":\"Gudapet Syrup 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gudapet.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"712\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2598, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3760\",\"code\":\"713\",\"name\":\"Norvasc 10mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"272.4000\",\"price\":\"272.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"NORVASC-10.jpg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"713\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2599, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3761\",\"code\":\"714\",\"name\":\"Gudapet Capsules\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"gudapet-caps.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"714\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2600, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3762\",\"code\":\"715\",\"name\":\"Norvasc 5mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"172.8000\",\"price\":\"172.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"norvasc-5mg.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"715\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2601, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3763\",\"code\":\"716\",\"name\":\"Otrivin 0.1%Adult Nasal Drop 10ml\",\"unit\":\"1\",\"cost\":\"28.6000\",\"price\":\"28.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"otrivin-adult.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"716\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2602, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3764\",\"code\":\"717\",\"name\":\"Ancigel O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"14.8500\",\"price\":\"14.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"ancigel-o.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"717\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2603, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3765\",\"code\":\"718\",\"name\":\"Strobin Lozenges 25x6\",\"unit\":\"1\",\"cost\":\"25.5000\",\"price\":\"25.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"strobin-LOZ-1.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"718\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2604, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3766\",\"code\":\"719\",\"name\":\"Ventolin Inhaler\",\"unit\":\"1\",\"cost\":\"47.2000\",\"price\":\"47.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"VENT.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"719\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2605, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3119\",\"code\":\"72\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"72\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2606, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3767\",\"code\":\"720\",\"name\":\"Strobin Lozenges 54X6\",\"unit\":\"1\",\"cost\":\"52.7000\",\"price\":\"52.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"strobin-LOZ.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"720\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2607, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3768\",\"code\":\"721\",\"name\":\"Vitaforce Syrup 250ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitaforce.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"721\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2608, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3769\",\"code\":\"722\",\"name\":\"Lufart Suspension\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lufart-scaled.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"722\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2609, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3770\",\"code\":\"723\",\"name\":\"Amurox Suspension (Cefuroxime Axetil)\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"amurox-1-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"723\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2610, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3771\",\"code\":\"724\",\"name\":\"X\'Zole F Suspension\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"7.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"exole-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"724\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2611, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3772\",\"code\":\"725\",\"name\":\"Tobufen (Ibuprofen)Syrup 100ml\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"tobufen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"725\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2612, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3773\",\"code\":\"726\",\"name\":\"Kofof Child Syrup 100ml\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"726\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2613, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3774\",\"code\":\"727\",\"name\":\"Kofof Family Syrup 150ml\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"6.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"727\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2614, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3775\",\"code\":\"728\",\"name\":\"Drez Solution 100ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"DREZ-SOL-100ML.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"728\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2615, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3776\",\"code\":\"729\",\"name\":\"Crepe Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"4.3500\",\"price\":\"4.3500\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"729\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2616, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3120\",\"code\":\"73\",\"name\":\"Borges Olive Oil 125ml\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"borges.jpeg\",\"category_id\":\"1668\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"73\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2617, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3777\",\"code\":\"730\",\"name\":\"Livopat Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"livopat.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"730\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2618, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3778\",\"code\":\"731\",\"name\":\"Crepe Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"731\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2619, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3779\",\"code\":\"732\",\"name\":\"Neuropat Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"35.6000\",\"price\":\"35.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"neuropat_plus.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"732\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2620, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3780\",\"code\":\"733\",\"name\":\"Chlo Eye (Chloramphenicol) drops\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"chlo-eye.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"733\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2621, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3781\",\"code\":\"734\",\"name\":\"Foligrow Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"foligrow-caps.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"734\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2622, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3782\",\"code\":\"735\",\"name\":\"Drez V Gel 30g\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"drez-v-gel.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"735\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2623, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3783\",\"code\":\"736\",\"name\":\"Amino pep Syrup 200ml\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"aminopep.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"736\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2624, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3784\",\"code\":\"737\",\"name\":\"Fabrin Tablets 50X4\",\"unit\":\"1\",\"cost\":\"30.8000\",\"price\":\"30.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"fabrin-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"737\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2625, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3785\",\"code\":\"738\",\"name\":\"Gauze Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"738\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2626, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3786\",\"code\":\"739\",\"name\":\"Gauze Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"9.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"739\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2627, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3121\",\"code\":\"74\",\"name\":\"Bells Teething Mixture\",\"unit\":\"1\",\"cost\":\"18.3000\",\"price\":\"18.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-teething.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"74\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2628, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3787\",\"code\":\"740\",\"name\":\"Gauze Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"740\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2629, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3788\",\"code\":\"741\",\"name\":\"Amoxicillin 250mg Capsules 50x10 M&amp; G\",\"unit\":\"1\",\"cost\":\"88.9000\",\"price\":\"88.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"741\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2630, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3789\",\"code\":\"742\",\"name\":\"Blopen Gel 30g\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"blopen.jpeg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"742\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2631, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3790\",\"code\":\"743\",\"name\":\"Amoxicillin 500mg Capsules M&amp; G 10x10\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"33.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"743\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2632, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3791\",\"code\":\"744\",\"name\":\"Cafalgin Caplets 25x10\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cafalgen-scaled.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"744\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2633, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3792\",\"code\":\"745\",\"name\":\"Tobin&apos;s Cod Liver Oil 10X10\",\"unit\":\"1\",\"cost\":\"24.3000\",\"price\":\"24.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"cod-liver-oil.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"745\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2634, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3793\",\"code\":\"746\",\"name\":\"Emigivit (Multivitamin) Tablets 100x10\",\"unit\":\"1\",\"cost\":\"41.5800\",\"price\":\"41.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"emgivit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"746\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2635, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3794\",\"code\":\"747\",\"name\":\"Tobcee Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tobcee.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"747\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2636, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3795\",\"code\":\"748\",\"name\":\"Jeditone Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"748\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2637, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3796\",\"code\":\"749\",\"name\":\"Heptolif Tablets 50x2x10\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"heptolif-tab.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"749\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2638, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3122\",\"code\":\"75\",\"name\":\"Bendrofluazide 2.5mg Tablets 28s\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"Bendrofluazide-2.5mg-Tablets-28s-UK.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2639, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3797\",\"code\":\"750\",\"name\":\"Paracetamol 500mg Tablet M&amp;G 100x10\",\"unit\":\"1\",\"cost\":\"77.0000\",\"price\":\"77.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2640, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3798\",\"code\":\"751\",\"name\":\"Paracetamol 500mg M&amp;G Tablets 50x10\",\"unit\":\"1\",\"cost\":\"39.1000\",\"price\":\"39.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"para.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"751\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2641, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3799\",\"code\":\"752\",\"name\":\"Proxicam  20mg Capsules 10x10\",\"unit\":\"1\",\"cost\":\"8.9400\",\"price\":\"8.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"Piroxicam-Capsules.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"752\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2642, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3800\",\"code\":\"753\",\"name\":\"Zintab 20mg Disp Tablets 100x10\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zintab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"753\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2643, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3801\",\"code\":\"754\",\"name\":\"Metrolex-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"metrolex-f-susp.jpg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"754\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2644, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3802\",\"code\":\"755\",\"name\":\"Ascoryl Plus syrup 125ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"ascoryl-plus.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"755\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2645, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3803\",\"code\":\"756\",\"name\":\"Cafalgin Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"cafalgin-junior.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2646, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3804\",\"code\":\"757\",\"name\":\"Emigkof D Syrup100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2647, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3805\",\"code\":\"758\",\"name\":\"Emgiprofen Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgiprofen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2648, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3806\",\"code\":\"759\",\"name\":\"Go Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2649, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3123\",\"code\":\"76\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"76\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2650, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3807\",\"code\":\"760\",\"name\":\"Emigkof S Syrup100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"760\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2651, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3808\",\"code\":\"761\",\"name\":\"Heptolif Syrup 200ml\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"heptolif.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2652, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3809\",\"code\":\"762\",\"name\":\"Mucosyl Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2653, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3810\",\"code\":\"763\",\"name\":\"Mucosyl Adult Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"763\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2654, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3811\",\"code\":\"764\",\"name\":\"Polyfer Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2655, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3812\",\"code\":\"765\",\"name\":\"Vitaglobin 200ml Syrup M &amp; G\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitaglobin-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"765\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2656, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3813\",\"code\":\"766\",\"name\":\"Vitamin B-Complex S yrup 125ml M &amp; G\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"766\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2657, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3814\",\"code\":\"767\",\"name\":\"Zerocid Plus Suspension 200ML\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"767\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2658, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3815\",\"code\":\"768\",\"name\":\"Zerocid Suspension 200ML\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"768\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2659, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3816\",\"code\":\"769\",\"name\":\"Metro F Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"769\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2660, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3124\",\"code\":\"77\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"77\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2661, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3817\",\"code\":\"770\",\"name\":\"Betasol Cream 30g\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"betasol-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"770\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2662, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3818\",\"code\":\"771\",\"name\":\"Diproson Cream 30g\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"diproson-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"771\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2663, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3819\",\"code\":\"772\",\"name\":\"Diproson Lotion 30ml\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"3.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"diproson-lotion.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"772\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2664, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3820\",\"code\":\"773\",\"name\":\"Gogynax Cream 30g\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gogynax-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"773\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2665, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3821\",\"code\":\"774\",\"name\":\"Gogynax Tablets 100mg\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gogynax-tabs.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"774\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2666, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3822\",\"code\":\"775\",\"name\":\"Ibucap Capsules 20&apos;s(Monopack)\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"775\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2667, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3823\",\"code\":\"776\",\"name\":\"Ibucap Forte Capsules\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"2.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-forte.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"776\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2668, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3824\",\"code\":\"777\",\"name\":\"Ketazol Shampoo 100ml\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ketazole.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"777\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2669, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3825\",\"code\":\"778\",\"name\":\"Kifaru 100mg Tablets\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"kifaru-100-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"778\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2670, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3826\",\"code\":\"779\",\"name\":\"Kifaru 50mg Tablets\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"kifaru-50.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"779\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2671, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3125\",\"code\":\"78\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"78\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2672, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3827\",\"code\":\"780\",\"name\":\"Leopard Balm 30g\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"leopard-balm.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2673, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3828\",\"code\":\"781\",\"name\":\"Magnavit Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"magnavit-cap.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"781\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2674, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3829\",\"code\":\"782\",\"name\":\"Magnavit Tonic 200ml\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"med4.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"782\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2675, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3830\",\"code\":\"783\",\"name\":\"Omeshal Capsule 10X10 (Omeprazole)\",\"unit\":\"1\",\"cost\":\"14.4500\",\"price\":\"14.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"783\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2676, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3831\",\"code\":\"784\",\"name\":\"Omeshal D Capsule (Omeprazole+Domperidone)10&apos;s\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"omeshal-d.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"784\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2677, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3832\",\"code\":\"785\",\"name\":\"Polygel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"polygel.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"785\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2678, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3833\",\"code\":\"786\",\"name\":\"Rufedol Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"rufedol.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"786\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2679, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3834\",\"code\":\"787\",\"name\":\"Shal\'Artem Forte 80\\/480mg Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"787\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2680, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3835\",\"code\":\"788\",\"name\":\"Shal\'Artem Dry Syrup\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dry-syrup-1.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"788\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2681, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3836\",\"code\":\"789\",\"name\":\"Shal\'Artem 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"4.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-tabs.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"789\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2682, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3126\",\"code\":\"79\",\"name\":\"Bioferon Syrup 200ml\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"BIOFERON-S.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"79\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2683, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3837\",\"code\":\"790\",\"name\":\"Shalcip TZ Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"shacip-tz.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"790\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2684, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3838\",\"code\":\"791\",\"name\":\"Shaltoux 4 Way Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-4way.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"791\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2685, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3839\",\"code\":\"792\",\"name\":\"Shaltoux Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-cough.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"792\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2686, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3840\",\"code\":\"793\",\"name\":\"Shaltoux Natural Cough Lozenges 20X6\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"19.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"793\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2687, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3841\",\"code\":\"794\",\"name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"unit\":\"1\",\"cost\":\"45.5000\",\"price\":\"45.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"794\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2688, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3842\",\"code\":\"795\",\"name\":\"Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"795\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2689, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3843\",\"code\":\"796\",\"name\":\"Tanzol (Albendazol) 400mg\\/5ml Suspension 10ml\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"tanzol-susp.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"796\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2690, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3844\",\"code\":\"797\",\"name\":\"Tanzol (Albendazole) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"tanzol-tbs.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"797\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2691, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3845\",\"code\":\"798\",\"name\":\"Samalin Junior cough syrup 125ml\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-jnr.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"798\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2692, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3846\",\"code\":\"799\",\"name\":\"Starwin Milk of Magnesia 120ml\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"magacid-60ml.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"799\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2693, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3055\",\"code\":\"8\",\"name\":\"STAMINA- RX   24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"stamina-rx-24ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2694, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3127\",\"code\":\"80\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"80\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2695, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3847\",\"code\":\"800\",\"name\":\"Ferrodex Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"800\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2696, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3848\",\"code\":\"801\",\"name\":\"Painoff Tablets 25X4&apos;s\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"15.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"painoff.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2697, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3849\",\"code\":\"802\",\"name\":\"Citro C Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"CITRO-C.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"802\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2698, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3850\",\"code\":\"803\",\"name\":\"Contreg Tablets 10x10\",\"unit\":\"1\",\"cost\":\"7.8400\",\"price\":\"7.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"contreg.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"803\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2699, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3851\",\"code\":\"804\",\"name\":\"Zinol 500mg Tablets (Paracetamol) 50X10\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-12.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"804\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2700, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3852\",\"code\":\"805\",\"name\":\"Luzatil 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"luzatil.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"805\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2701, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3853\",\"code\":\"806\",\"name\":\"Zinol (Paracetamol) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-15.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"806\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2702, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3854\",\"code\":\"807\",\"name\":\"BX Syrup 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"807\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2703, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3855\",\"code\":\"808\",\"name\":\"Contreg Syrup 30ml\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"contreg-syrup.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2704, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3856\",\"code\":\"809\",\"name\":\"Hemoforce Family Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"hemoforce-family.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"809\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2705, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3128\",\"code\":\"81\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"81\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2706, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3857\",\"code\":\"810\",\"name\":\"Hemoforce Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"hemoforce-plus.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"810\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2707, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3858\",\"code\":\"811\",\"name\":\"Rufenac Gel 30g\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"rufenac-gel.jpeg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"811\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2708, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3859\",\"code\":\"812\",\"name\":\"Amciclox 250mg Capsules 10x10 Letap\",\"unit\":\"1\",\"cost\":\"30.6900\",\"price\":\"30.6900\",\"alert_quantity\":\"20.0000\",\"image\":\"amci.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"812\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2709, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3860\",\"code\":\"813\",\"name\":\"Ampicillin 250mg Capsules 50x10 Letap\",\"unit\":\"1\",\"cost\":\"78.1000\",\"price\":\"78.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"ampic.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"813\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2710, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3861\",\"code\":\"814\",\"name\":\"Ascorbin Syrup 100ml\",\"unit\":\"1\",\"cost\":\"2.8800\",\"price\":\"2.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"ascorbin-c-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"814\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2711, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3862\",\"code\":\"815\",\"name\":\"Ascorbin 100mg (Vitamin C) Tablets 30x10\",\"unit\":\"1\",\"cost\":\"13.5800\",\"price\":\"13.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"ASCOBIN.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"815\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2712, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3863\",\"code\":\"816\",\"name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"2.6900\",\"alert_quantity\":\"20.0000\",\"image\":\"chloram.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"816\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2713, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3864\",\"code\":\"817\",\"name\":\"Dynewell Syrup 200ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dynewell-syr.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"817\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2714, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3865\",\"code\":\"818\",\"name\":\"Dynewell Tablet 50x10\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-4.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"818\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2715, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3866\",\"code\":\"819\",\"name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"folic.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"819\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2716, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3129\",\"code\":\"82\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"82\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2717, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3867\",\"code\":\"820\",\"name\":\"Indomethacin 25mg Capsules 50x10 Letap\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"indome.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"820\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2718, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3868\",\"code\":\"821\",\"name\":\"Letafen (Ibuprofen) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"childcare.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"821\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2719, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3869\",\"code\":\"822\",\"name\":\"Letalin Expectorant Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"letalin-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"822\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2720, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3870\",\"code\":\"823\",\"name\":\"Macrafolin Syrup 125ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"macrofolin.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"823\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2721, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3871\",\"code\":\"824\",\"name\":\"Promecine Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.8400\",\"price\":\"2.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"promecian.jpg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"824\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2722, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3872\",\"code\":\"825\",\"name\":\"Vitamin B-Complex Tablets 100x10 Letap\",\"unit\":\"1\",\"cost\":\"20.9500\",\"price\":\"20.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"vitB.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"825\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2723, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3873\",\"code\":\"826\",\"name\":\"Vitamin B-12 (Finest Nutrition\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"826\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2724, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3874\",\"code\":\"827\",\"name\":\"test\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"827\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2725, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3875\",\"code\":\"828\",\"name\":\"Decatylen Lozenges 20s\",\"unit\":\"1\",\"cost\":\"37.0000\",\"price\":\"37.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"828\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2726, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3876\",\"code\":\"829\",\"name\":\"Amlodipine 10mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"amlodi.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"829\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2727, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3130\",\"code\":\"83\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"83\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2728, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3877\",\"code\":\"830\",\"name\":\"Amlodipine 5mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"amlo-5.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"830\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2729, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3878\",\"code\":\"831\",\"name\":\"Amoksiklav 625mg Tablet 14s\",\"unit\":\"1\",\"cost\":\"33.3000\",\"price\":\"33.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"amoksik-1.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"831\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2730, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3879\",\"code\":\"832\",\"name\":\"B-Complex Syrup 100ml (Jacket)\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"832\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2731, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3880\",\"code\":\"833\",\"name\":\"B-Complex Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"9.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2732, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3881\",\"code\":\"834\",\"name\":\"Bendrofluazide 5mg Tablets 28s UK\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"834\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2733, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3882\",\"code\":\"835\",\"name\":\"Cprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"48.0000\",\"price\":\"48.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"835\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2734, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3883\",\"code\":\"836\",\"name\":\"Clotrimazole 1% Cream 20g ECL\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"836\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2735, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3884\",\"code\":\"837\",\"name\":\"Metronidazole 400mg tabs 21&apos;s Exeter\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"metro.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"837\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2736, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3885\",\"code\":\"838\",\"name\":\"Multivitamin Tablets 50x10 Ecl\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"multivi.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"838\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2737, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3886\",\"code\":\"839\",\"name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"839\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2738, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3131\",\"code\":\"84\",\"name\":\"Bonaplex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"BONAPLEX.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"84\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2739, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3887\",\"code\":\"840\",\"name\":\"Doxycycline 100mg Capsules 200s ECL\",\"unit\":\"1\",\"cost\":\"57.6000\",\"price\":\"57.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"DOXY.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"840\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2740, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3888\",\"code\":\"841\",\"name\":\"Metoclopramide 10mg Tablets 28&apos;s uk\",\"unit\":\"1\",\"cost\":\"16.7000\",\"price\":\"16.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"841\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2741, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3889\",\"code\":\"842\",\"name\":\"Neflucon(Fluconazole)150mg Capsule\",\"unit\":\"1\",\"cost\":\"2.9900\",\"price\":\"2.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"nefluco.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"842\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2742, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3890\",\"code\":\"843\",\"name\":\"Nexium 20mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"99.3000\",\"price\":\"99.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"843\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2743, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3891\",\"code\":\"844\",\"name\":\"Enafen (Ibuprufen) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"844\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2744, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3892\",\"code\":\"845\",\"name\":\"Teething Mixture 100ml ECL\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"ECL-TEETHING.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"845\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2745, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3893\",\"code\":\"846\",\"name\":\"Nodium(Loperamide) Capsules 100&apos;s\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"846\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2746, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3894\",\"code\":\"847\",\"name\":\"Paracetamol 500mg Tablets 16&apos;s uk\",\"unit\":\"1\",\"cost\":\"4.7100\",\"price\":\"4.7100\",\"alert_quantity\":\"20.0000\",\"image\":\"para-16.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"847\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2747, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3895\",\"code\":\"848\",\"name\":\"Exetmomol (Timolol) Eye drops 0.5%\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"848\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2748, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3896\",\"code\":\"849\",\"name\":\"Paracetamol Syrup 100ml Exeter\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"4.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"849\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2749, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3132\",\"code\":\"85\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bongela-adult.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"85\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2750, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3897\",\"code\":\"850\",\"name\":\"Exforge 10\\/160mg Tablets 28s\",\"unit\":\"1\",\"cost\":\"168.6000\",\"price\":\"168.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"850\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2751, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3898\",\"code\":\"851\",\"name\":\"Extraflex Glucosamine Chondroitin Capsules 30s\",\"unit\":\"1\",\"cost\":\"36.8000\",\"price\":\"36.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"851\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2752, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3899\",\"code\":\"852\",\"name\":\"Flucloxacillin 500mg Capsules 28s UK\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"13.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"852\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2753, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3900\",\"code\":\"853\",\"name\":\"Folic Acid Tablets 5mg 28s UK\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"853\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2754, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3901\",\"code\":\"854\",\"name\":\"Histazine (Cetrizine) Tablets 10mg 100s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"histazine.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2755, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3902\",\"code\":\"855\",\"name\":\"Hydrocortisone 1% Cream (Lavina)\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"855\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2756, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3903\",\"code\":\"856\",\"name\":\"Kidivite Child Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"856\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2757, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3904\",\"code\":\"857\",\"name\":\"Hydrogen Peroxide 200ml ECL\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"857\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2758, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3905\",\"code\":\"858\",\"name\":\"Baby Cough Linctus 125ml ECL\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"858\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2759, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3906\",\"code\":\"859\",\"name\":\"Neoferon Capsules 30s\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"859\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2760, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3133\",\"code\":\"86\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"86\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2761, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3907\",\"code\":\"860\",\"name\":\"Nesben (Albendazole) Suspension 100mg\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"5.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"nesben.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"860\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2762, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3908\",\"code\":\"861\",\"name\":\"Permoxyl (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"861\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2763, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3909\",\"code\":\"862\",\"name\":\"Folic Acid Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"862\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2764, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3910\",\"code\":\"863\",\"name\":\"Secnidex 1g Tablets 2s\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"863\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2765, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3911\",\"code\":\"864\",\"name\":\"Stopkof Cold &amp; Catarrh Tablets 12s\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"864\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2766, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3912\",\"code\":\"865\",\"name\":\"Sildenafil 50mg Tablets Teva 4s\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"silf.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"865\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2767, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3913\",\"code\":\"866\",\"name\":\"Glucophage 500mg Tablets 30s\",\"unit\":\"1\",\"cost\":\"23.9000\",\"price\":\"23.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"GLUCOPHAGE.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"866\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2768, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3914\",\"code\":\"867\",\"name\":\"Actifed 60mg Tablets 12s\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ACTIFED.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"867\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2769, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3915\",\"code\":\"868\",\"name\":\"Ciprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipri.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"868\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2770, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3916\",\"code\":\"869\",\"name\":\"Ferrovita B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"31.5000\",\"price\":\"31.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrovita-B12-200ML-SYRUP-EASYLIFE.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"869\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2771, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3134\",\"code\":\"87\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"87\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2772, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3917\",\"code\":\"870\",\"name\":\"Vikil 20\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"vikil.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"870\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2773, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3918\",\"code\":\"871\",\"name\":\"Gana Balm 100g\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"gana.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"871\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2774, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3919\",\"code\":\"872\",\"name\":\"Gana Balm 20g\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"gana-balm.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"872\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2775, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3920\",\"code\":\"873\",\"name\":\"Tinatett Malakare 500ml\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"malakare.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"873\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2776, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3921\",\"code\":\"874\",\"name\":\"Tinatett Tomac Mixture 500ml\",\"unit\":\"1\",\"cost\":\"22.9000\",\"price\":\"22.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"tomac.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"874\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2777, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3922\",\"code\":\"875\",\"name\":\"Tinatett 230 Herbal Capsules\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"230.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"875\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2778, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3923\",\"code\":\"876\",\"name\":\"Tinatett Bf Bf Capsules\",\"unit\":\"1\",\"cost\":\"26.4000\",\"price\":\"26.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"876\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2779, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3924\",\"code\":\"877\",\"name\":\"Hayan Capsules\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"hayan.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"877\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2780, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3925\",\"code\":\"878\",\"name\":\"Givers Koo Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"GIVERS-KOO.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"878\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2781, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3926\",\"code\":\"879\",\"name\":\"Givers Herbal Mixture\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"GIVERS-HERBAL.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"879\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2782, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3135\",\"code\":\"88\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"88\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2783, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3927\",\"code\":\"880\",\"name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"880\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2784, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3928\",\"code\":\"881\",\"name\":\"Amoksiklav 228mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"amok.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"881\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2785, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3929\",\"code\":\"882\",\"name\":\"Auntie Mary Gripewater 150ml\",\"unit\":\"1\",\"cost\":\"9.4700\",\"price\":\"9.4700\",\"alert_quantity\":\"20.0000\",\"image\":\"auntie-mary.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"882\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2786, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3930\",\"code\":\"883\",\"name\":\"Kidivite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"9.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"883\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2787, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3931\",\"code\":\"884\",\"name\":\"Zymax (Azithromycin) Capsules 500mg\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"zymzx.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"884\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2788, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3932\",\"code\":\"885\",\"name\":\"Tadol 50mg Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tadol.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"885\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2789, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3933\",\"code\":\"886\",\"name\":\"Fluxamox 500mg Capsules 200&apos;s\",\"unit\":\"1\",\"cost\":\"108.0000\",\"price\":\"108.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"886\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2790, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3934\",\"code\":\"887\",\"name\":\"Fluxacin 500mg Capsules 20X10\",\"unit\":\"1\",\"cost\":\"122.4000\",\"price\":\"122.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"887\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2791, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3935\",\"code\":\"888\",\"name\":\"Metagyl 200mg Tablets 50x10\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"metagyl.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"888\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2792, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3936\",\"code\":\"889\",\"name\":\"Fluxacin 100ml Suspension\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"889\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2793, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3136\",\"code\":\"89\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"89\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2794, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3937\",\"code\":\"890\",\"name\":\"Enacef (Cefuroxime)125ml Suspension\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"14.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"890\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2795, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3938\",\"code\":\"891\",\"name\":\"Menthodex 200ml Syrup\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"images-3.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"891\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2796, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3939\",\"code\":\"892\",\"name\":\"Cyprodine 200ml Syrup\",\"unit\":\"1\",\"cost\":\"32.8000\",\"price\":\"32.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"892\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2797, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3940\",\"code\":\"893\",\"name\":\"Amoksiklav 457mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-61.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"893\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2798, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3941\",\"code\":\"894\",\"name\":\"Malar-2 Suspension 60ml\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"malar-2-sus.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"894\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2799, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3942\",\"code\":\"895\",\"name\":\"Malar-2 Forte DS Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"malar-2.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"895\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2800, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3943\",\"code\":\"896\",\"name\":\"Nexcofer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"7.1800\",\"price\":\"7.1800\",\"alert_quantity\":\"20.0000\",\"image\":\"nex-cap.jpeg\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"896\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2801, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3944\",\"code\":\"897\",\"name\":\"BG Glutamin Plus Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"14.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"897\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2802, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3945\",\"code\":\"898\",\"name\":\"Comit-50\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"898\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2803, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3946\",\"code\":\"899\",\"name\":\"Klovinal Pessaries\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-2022-04-14T103520.858.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"899\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2804, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3056\",\"code\":\"9\",\"name\":\"AIRHEAD BITES FRUIT 24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"airhead-bites-fruit-24ct.jpg\",\"category_id\":\"1655\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"9\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2805, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3137\",\"code\":\"90\",\"name\":\"BRAINWESE OMEGA 3  150ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"90\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2806, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3947\",\"code\":\"900\",\"name\":\"Lofnac 100mg Tablets\",\"unit\":\"1\",\"cost\":\"1.4300\",\"price\":\"1.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"lof-tab.jpeg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"900\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2807, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3948\",\"code\":\"901\",\"name\":\"Lonart Suspension\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"901\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2808, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3949\",\"code\":\"902\",\"name\":\"Menstak\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"902\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2809, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3950\",\"code\":\"903\",\"name\":\"Pofakoff Adult\",\"unit\":\"1\",\"cost\":\"6.2300\",\"price\":\"6.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"903\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2810, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3951\",\"code\":\"904\",\"name\":\"Pofakoff Baby\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"7.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"904\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2811, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3952\",\"code\":\"905\",\"name\":\"Leena Syrup\",\"unit\":\"1\",\"cost\":\"7.2300\",\"price\":\"7.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"905\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2812, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3953\",\"code\":\"906\",\"name\":\"Odymin Syrup\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"906\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2813, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3954\",\"code\":\"907\",\"name\":\"Odymin Capsules\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"907\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2814, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3955\",\"code\":\"908\",\"name\":\"Jarifan 2\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"908\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2815, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3956\",\"code\":\"909\",\"name\":\"Malin Junior\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"909\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2816, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3138\",\"code\":\"91\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"91\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2817, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3957\",\"code\":\"910\",\"name\":\"Flucona-Denk 150mg Capsules\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"910\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2818, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3958\",\"code\":\"911\",\"name\":\"Nifedi-Denk 10mg Tablets 10X10\",\"unit\":\"1\",\"cost\":\"33.0200\",\"price\":\"33.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"911\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2819, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3959\",\"code\":\"912\",\"name\":\"Rhinathiol Adult Cough Syrup 6.25g\\/125ml\",\"unit\":\"1\",\"cost\":\"29.9600\",\"price\":\"29.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"912\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2820, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3960\",\"code\":\"913\",\"name\":\"Tot\'hema Box of 20 Bulbs\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tothema.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"913\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2821, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3961\",\"code\":\"914\",\"name\":\"Para-Denk 125mg Suppository 10&apos;s\",\"unit\":\"1\",\"cost\":\"19.1900\",\"price\":\"19.1900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"914\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2822, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3962\",\"code\":\"915\",\"name\":\"Thymair Lozenges 20&apos;s\",\"unit\":\"1\",\"cost\":\"24.8500\",\"price\":\"24.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"915\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2823, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3963\",\"code\":\"916\",\"name\":\"Clotri Denk 1% Cream 20g\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-49.jpeg\",\"category_id\":\"1690\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"916\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2824, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3964\",\"code\":\"917\",\"name\":\"Nifedi-Denk 20mg 100&apos;s\",\"unit\":\"1\",\"cost\":\"63.2200\",\"price\":\"63.2200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"917\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2825, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3965\",\"code\":\"918\",\"name\":\"Clotri Denk 100mg Pessary\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"25.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1690\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"918\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2826, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3966\",\"code\":\"919\",\"name\":\"Para-Denk 250mg Suppository 10&apos;s\",\"unit\":\"1\",\"cost\":\"21.8300\",\"price\":\"21.8300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"919\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2827, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3139\",\"code\":\"92\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"92\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2828, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3967\",\"code\":\"920\",\"name\":\"Polygynax Pessaries 6&apos;s\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"39.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"polygnax.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"920\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2829, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3968\",\"code\":\"921\",\"name\":\"Timol 0.5% Eye Drop\",\"unit\":\"1\",\"cost\":\"8.4900\",\"price\":\"8.4900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"921\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2830, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3969\",\"code\":\"922\",\"name\":\"Xylo Acino 0.1% Nasal Spray\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"922\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2831, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3970\",\"code\":\"923\",\"name\":\"Ciprolex 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-74.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"923\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2832, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3971\",\"code\":\"924\",\"name\":\"Flagentyl 500mg Tablets 4&apos;s\",\"unit\":\"1\",\"cost\":\"28.6000\",\"price\":\"28.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"924\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2833, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3972\",\"code\":\"925\",\"name\":\"Gynomycolex 400mg Pessaries 3&apos;s\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"925\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2834, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3973\",\"code\":\"926\",\"name\":\"Neo Hycolex E\\/E\\/N 5ML Drops\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"926\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2835, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3974\",\"code\":\"927\",\"name\":\"Orelox 100mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"67.9000\",\"price\":\"67.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"927\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2836, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3975\",\"code\":\"928\",\"name\":\"Piroxilex 20mg Capsules 10X10 (Piroxicam)\",\"unit\":\"1\",\"cost\":\"1.4900\",\"price\":\"1.4900\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"928\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2837, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3976\",\"code\":\"929\",\"name\":\"Adom Koo Capsules\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"adom-koo-cap.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"929\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2838, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3140\",\"code\":\"93\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"93\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2839, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3977\",\"code\":\"930\",\"name\":\"Adom Koo Mixture\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-20.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"930\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2840, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3978\",\"code\":\"931\",\"name\":\"Adom W&amp;G Mixture\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"m-and-g.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"931\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2841, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3979\",\"code\":\"932\",\"name\":\"Becoatin Tablet 30&apos;s\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Becoactin-pack-big.gif\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"932\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2842, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3980\",\"code\":\"933\",\"name\":\"Gericare Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"gericare.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"933\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2843, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3981\",\"code\":\"934\",\"name\":\"Feroglobin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"49.5300\",\"price\":\"49.5300\",\"alert_quantity\":\"20.0000\",\"image\":\"fero-syru.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"934\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2844, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3982\",\"code\":\"935\",\"name\":\"Osteocare Tablets UK\",\"unit\":\"1\",\"cost\":\"30.8700\",\"price\":\"30.8700\",\"alert_quantity\":\"20.0000\",\"image\":\"osteo.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"935\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2845, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3983\",\"code\":\"936\",\"name\":\"Pregnacare Tablets 19&apos;s\",\"unit\":\"1\",\"cost\":\"60.3000\",\"price\":\"60.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"936\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2846, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3984\",\"code\":\"937\",\"name\":\"Pregnacare Conception Tablets\",\"unit\":\"1\",\"cost\":\"60.3000\",\"price\":\"60.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"937\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2847, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3985\",\"code\":\"938\",\"name\":\"Wellman 50+ Tablets\",\"unit\":\"1\",\"cost\":\"62.3000\",\"price\":\"62.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"wellman-50.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"938\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2848, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3986\",\"code\":\"939\",\"name\":\"Wellman 70+ Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"58.1000\",\"price\":\"58.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"939\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2849, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3141\",\"code\":\"94\",\"name\":\"BX Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"94\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2850, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3987\",\"code\":\"940\",\"name\":\"Wellwoman Capsules\",\"unit\":\"1\",\"cost\":\"72.0300\",\"price\":\"72.0300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"940\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2851, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3988\",\"code\":\"941\",\"name\":\"Perfectil platinum 60&apos;s\",\"unit\":\"1\",\"cost\":\"220.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"941\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2852, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3989\",\"code\":\"942\",\"name\":\"Blumoon 100mg\",\"unit\":\"1\",\"cost\":\"3.6300\",\"price\":\"3.6300\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"942\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2853, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3990\",\"code\":\"943\",\"name\":\"Blumoon 50mg\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"2.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"943\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2854, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3991\",\"code\":\"944\",\"name\":\"Happyrona\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"happy.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"944\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2855, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3992\",\"code\":\"945\",\"name\":\"Loperon\",\"unit\":\"1\",\"cost\":\"8.1000\",\"price\":\"8.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"945\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2856, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3993\",\"code\":\"946\",\"name\":\"Ronfit Cold Forte Syrup\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"946\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2857, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3994\",\"code\":\"947\",\"name\":\"Ronfit Cold P Junior Syrup\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"947\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2858, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3995\",\"code\":\"948\",\"name\":\"Ronfit Cold D Syrup\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"948\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2859, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3996\",\"code\":\"949\",\"name\":\"Roxidol\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"949\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2860, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3142\",\"code\":\"95\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"95\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2861, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3997\",\"code\":\"950\",\"name\":\"Ronfit Forte Tablets\",\"unit\":\"1\",\"cost\":\"3.7500\",\"price\":\"3.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"ronfit-forte-tabs.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"950\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2862, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3998\",\"code\":\"951\",\"name\":\"Parafenac\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"PARAFENAC.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"951\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2863, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3999\",\"code\":\"952\",\"name\":\"Dragon Lozenges\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"952\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2864, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4000\",\"code\":\"953\",\"name\":\"Cotton Wool 100g\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"953\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2865, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4001\",\"code\":\"954\",\"name\":\"Cotton Wool 200g\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cotton.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"954\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2866, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4002\",\"code\":\"955\",\"name\":\"Fenbase Extra\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"2.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"fenbase-extra.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"955\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2867, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4003\",\"code\":\"956\",\"name\":\"Dipex Capsules\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"dipex.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"956\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2868, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4004\",\"code\":\"957\",\"name\":\"Wormbase Suspension\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"2.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"957\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2869, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4005\",\"code\":\"958\",\"name\":\"Basecold Tablets (50x4)\",\"unit\":\"1\",\"cost\":\"49.5000\",\"price\":\"49.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"958\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2870, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4006\",\"code\":\"959\",\"name\":\"Anusol Suppositories 12&apos;s\",\"unit\":\"1\",\"cost\":\"24.9800\",\"price\":\"24.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"959\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2871, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3143\",\"code\":\"96\",\"name\":\"Calcium B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"cal-b12.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"96\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2872, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4007\",\"code\":\"960\",\"name\":\"Bells Vitamin C Syrup\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"14.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"960\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2873, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4008\",\"code\":\"961\",\"name\":\"Daktacort Cream 15g\",\"unit\":\"1\",\"cost\":\"35.9000\",\"price\":\"35.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-62.jpeg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"961\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2874, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4009\",\"code\":\"962\",\"name\":\"Enacef (cefuroxime) 500mg Tablets\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"962\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2875, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4010\",\"code\":\"963\",\"name\":\"Flotac Capsules 75mg 20&apos;s\",\"unit\":\"1\",\"cost\":\"55.1000\",\"price\":\"55.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"963\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2876, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4011\",\"code\":\"964\",\"name\":\"Lynux Ointment\",\"unit\":\"1\",\"cost\":\"26.9800\",\"price\":\"26.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"LYNUX.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"964\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2877, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4012\",\"code\":\"965\",\"name\":\"Viscof S 100ml Syrup\",\"unit\":\"1\",\"cost\":\"12.8400\",\"price\":\"12.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"viscof.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"965\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2878, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4013\",\"code\":\"966\",\"name\":\"Omexet (omeprazole) 20mg Capsules 28&apos;s\",\"unit\":\"1\",\"cost\":\"11.9800\",\"price\":\"11.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"omexet.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"966\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2879, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4014\",\"code\":\"967\",\"name\":\"Supirocin Ointment 15g\",\"unit\":\"1\",\"cost\":\"24.5000\",\"price\":\"24.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"supirocin.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"967\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2880, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4015\",\"code\":\"968\",\"name\":\"P-trust Pregnancy Test Kit 25&apos;s\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"968\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2881, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4016\",\"code\":\"969\",\"name\":\"Babyvite 200ml Syrup\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"969\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2882, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3144\",\"code\":\"97\",\"name\":\"Calpol Infant 2+Suspension 100ml\",\"unit\":\"1\",\"cost\":\"46.3000\",\"price\":\"46.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"calpol.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"97\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2883, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4017\",\"code\":\"970\",\"name\":\"Letamol Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"72.2000\",\"price\":\"72.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"letamol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"970\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2884, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4018\",\"code\":\"971\",\"name\":\"Amoxicillin 250mg (Letap)\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"971\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2885, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4019\",\"code\":\"972\",\"name\":\"Metronidazole 100ml Suspension Letap\",\"unit\":\"1\",\"cost\":\"3.5200\",\"price\":\"3.5200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"972\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2886, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4020\",\"code\":\"973\",\"name\":\"Letavin (Griseofulvin)125mg Tablets\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"973\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2887, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4021\",\"code\":\"974\",\"name\":\"Letavin 500mg (Griseofulvin) Tablets\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"974\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2888, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4022\",\"code\":\"975\",\"name\":\"Flucloxacillin 250mg Tablets Letap\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"975\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2889, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4023\",\"code\":\"976\",\"name\":\"Dexone 0.5mg\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"2.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"dexone.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"976\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2890, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4024\",\"code\":\"977\",\"name\":\"Cafaprin Tablets\",\"unit\":\"1\",\"cost\":\"13.1400\",\"price\":\"13.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"977\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2891, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4025\",\"code\":\"978\",\"name\":\"Flucloxacillin 100ml Suspension Letap\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"978\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2892, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4026\",\"code\":\"979\",\"name\":\"Child Care Cough &amp; Cold 125ml Syrup\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"979\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2893, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3145\",\"code\":\"98\",\"name\":\"Calpol 6+ Suspension 80ml\",\"unit\":\"1\",\"cost\":\"36.4900\",\"price\":\"36.4900\",\"alert_quantity\":\"20.0000\",\"image\":\"cal-6.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"98\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2894, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4027\",\"code\":\"980\",\"name\":\"Amcof Baby Syrup\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"AMCOF-BABY.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"980\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2895, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4028\",\"code\":\"981\",\"name\":\"Gebexime Suspension 70ml\",\"unit\":\"1\",\"cost\":\"9.6600\",\"price\":\"9.6600\",\"alert_quantity\":\"20.0000\",\"image\":\"gebexime.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"981\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2896, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4029\",\"code\":\"982\",\"name\":\"Amcof Junior Syrup\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"982\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2897, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4030\",\"code\":\"983\",\"name\":\"Paingay Capsules\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"3.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"paingay.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"983\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2898, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4031\",\"code\":\"984\",\"name\":\"Cartef 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"4.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"cartef-tabs.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"984\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2899, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4032\",\"code\":\"985\",\"name\":\"Gebexime 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"18.8800\",\"price\":\"18.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"gebexime-500mg.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"985\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2900, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4033\",\"code\":\"986\",\"name\":\"Salocold Syrup\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"SALOCOLD-1.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"986\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2901, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4034\",\"code\":\"987\",\"name\":\"Salocold Tablets\",\"unit\":\"1\",\"cost\":\"29.4500\",\"price\":\"29.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"SALOCOLD.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"987\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2902, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4035\",\"code\":\"988\",\"name\":\"Vaginax-100 Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"3.3200\",\"price\":\"3.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"vaginax-pess.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"988\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2903, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4036\",\"code\":\"989\",\"name\":\"Amoxicillin 125mg\\/5ml Susp 100ml Luex\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"989\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2904, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"3146\",\"code\":\"99\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"99\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2905, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4037\",\"code\":\"990\",\"name\":\"Luex Baby Cough Syrup 150ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"luex-baby.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"990\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2906, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4038\",\"code\":\"991\",\"name\":\"Mycostat 150mg Capsules 1&apos;s\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycostat.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"991\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2907, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4039\",\"code\":\"992\",\"name\":\"Shaltoux Herbal Cough Syrup\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"9.5500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"992\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2908, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4040\",\"code\":\"993\",\"name\":\"Menthodex 100ml Syrup\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"images-3.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"993\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2909, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4041\",\"code\":\"994\",\"name\":\"Augmentin 228\\/5ml Susp. 70ml\",\"unit\":\"1\",\"cost\":\"34.5500\",\"price\":\"34.5500\",\"alert_quantity\":\"20.0000\",\"image\":\"download-87.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"994\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2910, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4042\",\"code\":\"995\",\"name\":\"Augmentin 457mg\\/5ml Susp. 70ml\",\"unit\":\"1\",\"cost\":\"49.3900\",\"price\":\"49.3900\",\"alert_quantity\":\"20.0000\",\"image\":\"download-88.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"995\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2911, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4043\",\"code\":\"996\",\"name\":\"Nesben (Albendazole) Tablets 200mg\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-95.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"996\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2912, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4044\",\"code\":\"997\",\"name\":\"Metagyl 400mg Tablets\",\"unit\":\"1\",\"cost\":\"40.8000\",\"price\":\"40.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-92.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"997\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2913, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4045\",\"code\":\"998\",\"name\":\"Aciclovir 400mg Tablets 56&apos;s\",\"unit\":\"1\",\"cost\":\"37.3200\",\"price\":\"37.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"aciclovir-400mg.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"998\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2914, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4046\",\"code\":\"999\",\"name\":\"Aciclovir 200mg Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"18.9800\",\"price\":\"18.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-97.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"999\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-08 21:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2915, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"41\",\"date\":\"2022-09-09 02:27:00\",\"reference_no\":\"SALE2022\\/09\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"67\",\"pos\":\"0\",\"paid\":\"1340.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f66add276ea5933a2c722c18ab664fbb83e7b0222430c293bf3f2e943b90c0a3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"109\",\"sale_id\":\"41\",\"product_id\":\"4508\",\"product_code\":\"4\",\"product_name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"67.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"67.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 22:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2916, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"40\",\"date\":\"2022-09-09 02:24:00\",\"reference_no\":\"987\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"b393e6db65d6bb657a023da904a36220e0b981df25b9ddf8516b3816b140bc2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"108\",\"sale_id\":\"40\",\"product_id\":\"4505\",\"product_code\":\"1\",\"product_name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"100.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 22:42:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2917, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"39\",\"date\":\"2022-09-09 02:18:31\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0031\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7.1800\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7.1800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"7.1800\",\"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\":\"34cc371849fb579993eb7ac23486fc38fcc2b5e21242fee968d2e0e350067467\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"107\",\"sale_id\":\"39\",\"product_id\":\"5400\",\"product_code\":\"896\",\"product_name\":\"Nexcofer Capsules 30\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.1800\",\"unit_price\":\"7.1800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.1800\",\"serial_no\":\"\",\"real_unit_price\":\"7.1800\",\"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\":\"nex-cap.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 22:42:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2918, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"38\",\"date\":\"2022-09-09 02:05:24\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0030\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"639.6400\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"639.6400\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"1\",\"paid\":\"639.6400\",\"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\":\"ed374b7e26815235bcb7ec76e39a5c3ec3fc0c951129964262d9f3e8b5719e5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"94\",\"sale_id\":\"38\",\"product_id\":\"4659\",\"product_code\":\"155\",\"product_name\":\"DALACIN SRP\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"159.5000\",\"unit_price\":\"159.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"159.5000\",\"serial_no\":\"\",\"real_unit_price\":\"159.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"95\",\"sale_id\":\"38\",\"product_id\":\"5213\",\"product_code\":\"709\",\"product_name\":\"Metrolex F Tablets 21\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"real_unit_price\":\"12.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\":\"metrolex-f.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"96\",\"sale_id\":\"38\",\"product_id\":\"5273\",\"product_code\":\"769\",\"product_name\":\"Metro F Suspension 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"real_unit_price\":\"5.7000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"97\",\"sale_id\":\"38\",\"product_id\":\"4718\",\"product_code\":\"214\",\"product_name\":\"Flagyl Suspension 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"39.3000\",\"unit_price\":\"39.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.3000\",\"serial_no\":\"\",\"real_unit_price\":\"39.3000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"98\",\"sale_id\":\"38\",\"product_id\":\"4566\",\"product_code\":\"62\",\"product_name\":\"Augmentin  625mgTablets 14\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"72.6400\",\"unit_price\":\"72.6400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.6400\",\"serial_no\":\"\",\"real_unit_price\":\"72.6400\",\"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\":\"images-2.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"99\",\"sale_id\":\"38\",\"product_id\":\"4568\",\"product_code\":\"64\",\"product_name\":\"Azilex 250 Capsules 6\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"real_unit_price\":\"14.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\":\"azilex.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"100\",\"sale_id\":\"38\",\"product_id\":\"5388\",\"product_code\":\"884\",\"product_name\":\"Zymax (Azithromycin) Capsules 500mg\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"real_unit_price\":\"13.2000\",\"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\":\"zymzx.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"101\",\"sale_id\":\"38\",\"product_id\":\"5247\",\"product_code\":\"743\",\"product_name\":\"Amoxicillin 500mg Capsules M& G 10x10\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"33.0000\",\"unit_price\":\"33.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"real_unit_price\":\"33.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"102\",\"sale_id\":\"38\",\"product_id\":\"4542\",\"product_code\":\"38\",\"product_name\":\"Ampicillin 250mg Capsules 50X10 Eskay\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.7000\",\"unit_price\":\"1.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1.7000\",\"serial_no\":\"\",\"real_unit_price\":\"1.7000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"103\",\"sale_id\":\"38\",\"product_id\":\"5385\",\"product_code\":\"881\",\"product_name\":\"Amoksiklav 228mg\\/5ml Suspension 70ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"21.0000\",\"unit_price\":\"21.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"real_unit_price\":\"21.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\":\"amok.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"104\",\"sale_id\":\"38\",\"product_id\":\"5316\",\"product_code\":\"812\",\"product_name\":\"Amciclox 250mg Capsules 10x10 Letap\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"30.6900\",\"unit_price\":\"30.6900\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.6900\",\"serial_no\":\"\",\"real_unit_price\":\"30.6900\",\"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\":\"amci.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"105\",\"sale_id\":\"38\",\"product_id\":\"5335\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"33.3000\",\"unit_price\":\"33.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.3000\",\"serial_no\":\"\",\"real_unit_price\":\"33.3000\",\"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\":\"amoksik-1.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"106\",\"sale_id\":\"38\",\"product_id\":\"4658\",\"product_code\":\"154\",\"product_name\":\"Dalacin C 300mg Capsules 16\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"175.6100\",\"unit_price\":\"175.6100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"175.6100\",\"serial_no\":\"\",\"real_unit_price\":\"175.6100\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 22:42:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2919, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"37\",\"date\":\"2022-09-09 02:04:22\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0029\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4.0200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4.0200\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"4.0200\",\"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\":\"32f451470fa302d0698be7085317c308960f54f9eed962e6b3ed6b3ddbd255e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"93\",\"sale_id\":\"37\",\"product_id\":\"4811\",\"product_code\":\"307\",\"product_name\":\"Leena Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0200\",\"unit_price\":\"4.0200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.0200\",\"serial_no\":\"\",\"real_unit_price\":\"4.0200\",\"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\":\"leena.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-08 22:42:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2920, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-09-09 02:03:13\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"480.0700\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"480.0700\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"480.0700\",\"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\":\"bcce5e1dc293661e217e6ad472651c72e44b8b6e1a545f44f7432bcc82f48fa5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"90\",\"sale_id\":\"36\",\"product_id\":\"4210\",\"product_code\":\"1163\",\"product_name\":\"Tegretol CR 400mg tablets 30\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"88.8800\",\"unit_price\":\"88.8800\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"355.5200\",\"serial_no\":\"\",\"real_unit_price\":\"88.8800\",\"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\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"91\",\"sale_id\":\"36\",\"product_id\":\"4209\",\"product_code\":\"1162\",\"product_name\":\"Tegretol CR 200mg Divitabs 50\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"64.7800\",\"unit_price\":\"64.7800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.7800\",\"serial_no\":\"\",\"real_unit_price\":\"64.7800\",\"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\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"92\",\"sale_id\":\"36\",\"product_id\":\"4211\",\"product_code\":\"1164\",\"product_name\":\"Tegretol 200mg tablets 50\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"59.7700\",\"unit_price\":\"59.7700\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.7700\",\"serial_no\":\"\",\"real_unit_price\":\"59.7700\",\"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\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-08 22:42:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2921, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4505\",\"code\":\"1\",\"name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"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\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2922, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4514\",\"code\":\"10\",\"name\":\"AMERICAN WHITE VINEGAR  473ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2923, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4604\",\"code\":\"100\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2924, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4605\",\"code\":\"101\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"101\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2925, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4606\",\"code\":\"102\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"102\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2926, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4607\",\"code\":\"103\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"103\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2927, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4608\",\"code\":\"104\",\"name\":\"Carbozap Syrup Adult 100ml FG\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1664\",\"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\":\"104\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2928, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4609\",\"code\":\"105\",\"name\":\"Cardioace Capsules 80&apos;s\",\"unit\":\"1\",\"cost\":\"77.9100\",\"price\":\"77.9100\",\"alert_quantity\":\"20.0000\",\"image\":\"cadio.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"105\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2929, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4610\",\"code\":\"106\",\"name\":\"Cartef Suspension\",\"unit\":\"1\",\"cost\":\"6.8800\",\"price\":\"6.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"cartef.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"106\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2930, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4611\",\"code\":\"107\",\"name\":\"Castor Oil 70ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"107\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2931, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4612\",\"code\":\"108\",\"name\":\"Inoxime (Cefixime) 200mg Tablets\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"108\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2932, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4613\",\"code\":\"109\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"109\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2933, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4515\",\"code\":\"11\",\"name\":\"AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2934, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4614\",\"code\":\"110\",\"name\":\"Celebrex\",\"unit\":\"1\",\"cost\":\"94.0200\",\"price\":\"94.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"110\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2935, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4615\",\"code\":\"111\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2936, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4616\",\"code\":\"112\",\"name\":\"Cetapol Syrup\",\"unit\":\"1\",\"cost\":\"4.2700\",\"price\":\"4.2700\",\"alert_quantity\":\"20.0000\",\"image\":\"CETAPOL-SYRUP-1-600x400-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"112\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2937, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4617\",\"code\":\"113\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2938, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4618\",\"code\":\"114\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"114\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2939, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4619\",\"code\":\"115\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"115\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2940, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4620\",\"code\":\"116\",\"name\":\"Chlo Ear Chloramphenicol Drops\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"chlo-ear.jpeg\",\"category_id\":\"1671\",\"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\":\"116\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2941, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4621\",\"code\":\"117\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"117\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2942, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4622\",\"code\":\"118\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2943, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4623\",\"code\":\"119\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2944, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4516\",\"code\":\"12\",\"name\":\"3CP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2945, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4624\",\"code\":\"120\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"120\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2946, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4625\",\"code\":\"121\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"121\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2947, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4626\",\"code\":\"122\",\"name\":\"Cipro-Denk 500mg Tablet\",\"unit\":\"1\",\"cost\":\"41.6800\",\"price\":\"41.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"122\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2948, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4627\",\"code\":\"123\",\"name\":\"Ciprolex Eye\\/ Ear 5ML Drops\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipro-eye.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"123\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2949, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4628\",\"code\":\"124\",\"name\":\"Ciprolex TZ\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"27.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tz.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"124\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2950, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4629\",\"code\":\"125\",\"name\":\"Cirotamin Tonic\",\"unit\":\"1\",\"cost\":\"11.5800\",\"price\":\"11.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"CIROTAMIN.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2951, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4630\",\"code\":\"126\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"126\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2952, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4631\",\"code\":\"127\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"127\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2953, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4632\",\"code\":\"128\",\"name\":\"Cloxacillin 250mg Letap\",\"unit\":\"1\",\"cost\":\"80.5000\",\"price\":\"80.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"128\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2954, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4633\",\"code\":\"129\",\"name\":\"Coartem 80\\/480 6&apos;s\",\"unit\":\"1\",\"cost\":\"56.1000\",\"price\":\"56.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"coaterm.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"129\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2955, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4517\",\"code\":\"13\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"13\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2956, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4634\",\"code\":\"130\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"130\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2957, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4635\",\"code\":\"131\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"131\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2958, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4636\",\"code\":\"132\",\"name\":\"Coldrilif Capsules 10X10\",\"unit\":\"1\",\"cost\":\"3.9100\",\"price\":\"3.9100\",\"alert_quantity\":\"20.0000\",\"image\":\"coldrilif.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"132\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2959, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4637\",\"code\":\"133\",\"name\":\"Colestop 10mg 30&apos;s (Atovastin)\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"52.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"133\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2960, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4638\",\"code\":\"134\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"134\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2961, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4639\",\"code\":\"135\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"135\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2962, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4640\",\"code\":\"136\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2963, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4641\",\"code\":\"137\",\"name\":\"Colodium\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"colodium.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"137\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2964, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4642\",\"code\":\"138\",\"name\":\"Combact N\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"138\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2965, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4643\",\"code\":\"139\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"139\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2966, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4518\",\"code\":\"14\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"14\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2967, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4644\",\"code\":\"140\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"140\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2968, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4645\",\"code\":\"141\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"141\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2969, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4646\",\"code\":\"142\",\"name\":\"Cororange Drops\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"cororange-drops.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"142\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2970, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4647\",\"code\":\"143\",\"name\":\"Cotton wool (Zigzag) 50g\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"3.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"zigzag.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"143\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2971, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4648\",\"code\":\"144\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2972, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4649\",\"code\":\"145\",\"name\":\"Crepe Bandage 2Inches Xtra care\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"2.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"145\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2973, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4650\",\"code\":\"146\",\"name\":\"Crepe Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"8.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"146\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2974, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4651\",\"code\":\"147\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2975, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4652\",\"code\":\"148\",\"name\":\"Cyfen Syrup\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"148\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2976, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4653\",\"code\":\"149\",\"name\":\"Cyfen Tablets\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"149\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2977, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4519\",\"code\":\"15\",\"name\":\"Aboniki\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"15\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2978, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4654\",\"code\":\"150\",\"name\":\"Cyprodine (Cyproheptadine) Capsules 30\'\",\"unit\":\"1\",\"cost\":\"32.8000\",\"price\":\"32.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2979, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4655\",\"code\":\"151\",\"name\":\"Cytotec\",\"unit\":\"1\",\"cost\":\"269.3000\",\"price\":\"269.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"151\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2980, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4656\",\"code\":\"152\",\"name\":\"Daflon 500mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"107.0000\",\"price\":\"107.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"152\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2981, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4657\",\"code\":\"153\",\"name\":\"Daktarin Cream 15g\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-90.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"153\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2982, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4658\",\"code\":\"154\",\"name\":\"Dalacin C 300mg Capsules 16&apos;s\",\"unit\":\"1\",\"cost\":\"175.6100\",\"price\":\"175.6100\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"154\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2983, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4659\",\"code\":\"155\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"159.5000\",\"price\":\"159.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2984, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4660\",\"code\":\"156\",\"name\":\"Danrub Ointment 40g\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"8.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-76.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"156\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2985, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4661\",\"code\":\"157\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"157\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2986, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4662\",\"code\":\"158\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"158\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2987, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4663\",\"code\":\"159\",\"name\":\"Deep Freez Spray 150ml\",\"unit\":\"1\",\"cost\":\"47.7700\",\"price\":\"47.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-freeze-spray.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"159\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2988, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4520\",\"code\":\"16\",\"name\":\"Acidom 20mg Capsules\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-60.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"16\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2989, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4664\",\"code\":\"160\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2990, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4665\",\"code\":\"161\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"161\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2991, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4666\",\"code\":\"162\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"162\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2992, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4667\",\"code\":\"163\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2993, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4668\",\"code\":\"164\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2994, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4669\",\"code\":\"165\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"165\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2995, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4670\",\"code\":\"166\",\"name\":\"Diazepam 5mg Tablets 500&apos;s\",\"unit\":\"1\",\"cost\":\"21.6000\",\"price\":\"21.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"166\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2996, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4671\",\"code\":\"167\",\"name\":\"Diclo-Denk 100mg Tablet 10x10\",\"unit\":\"1\",\"cost\":\"148.0500\",\"price\":\"148.0500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"167\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2997, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4672\",\"code\":\"168\",\"name\":\"Diclo-Denk100mg  Suppository 10&apos;s\",\"unit\":\"1\",\"cost\":\"26.5000\",\"price\":\"26.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"168\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2998, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4673\",\"code\":\"169\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"169\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2999, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4521\",\"code\":\"17\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"17\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3000, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4674\",\"code\":\"170\",\"name\":\"Diclolex 100mg Tablets 10X10\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"170\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3001, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4675\",\"code\":\"171\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"171\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3002, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4676\",\"code\":\"172\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"172\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3003, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4677\",\"code\":\"173\",\"name\":\"Dicnac 100mg Suppositories\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"dicnac.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"173\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3004, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4678\",\"code\":\"174\",\"name\":\"Diflucan 150mg Capsules 1&apos;s\",\"unit\":\"1\",\"cost\":\"81.2000\",\"price\":\"81.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"DIFLUCAN-150-mg.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"174\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3005, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4679\",\"code\":\"175\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"175\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3006, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4680\",\"code\":\"176\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3007, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4681\",\"code\":\"177\",\"name\":\"Diphex Cough Syrup\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"diphex.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"177\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3008, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4682\",\"code\":\"178\",\"name\":\"Domi 10 Suppositories\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"11.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1676\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"178\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3009, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4683\",\"code\":\"179\",\"name\":\"Domi 30mg Suppositories\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"12.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1676\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"179\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3010, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4522\",\"code\":\"18\",\"name\":\"Addyzoa Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"58.0000\",\"price\":\"58.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"18\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3011, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4684\",\"code\":\"180\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3012, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4685\",\"code\":\"181\",\"name\":\"Doxycycline 100mg Letap\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"DOXY.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"181\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3013, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4686\",\"code\":\"182\",\"name\":\"Dragon Tablets\",\"unit\":\"1\",\"cost\":\"23.4000\",\"price\":\"23.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"DRAGON-TABS.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"182\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3014, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4687\",\"code\":\"183\",\"name\":\"Dragon Spray\",\"unit\":\"1\",\"cost\":\"28.9000\",\"price\":\"28.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"DRAGON.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"183\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3015, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4688\",\"code\":\"184\",\"name\":\"Drez Ointment 10g\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"184\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3016, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4689\",\"code\":\"185\",\"name\":\"Drez Ointment 30mg\",\"unit\":\"1\",\"cost\":\"14.9600\",\"price\":\"14.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"drez-oint-30g.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"185\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3017, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4690\",\"code\":\"186\",\"name\":\"Drez Powder 10g\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"186\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3018, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4691\",\"code\":\"187\",\"name\":\"DUO COTECSON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"187\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3019, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4692\",\"code\":\"188\",\"name\":\"Easy Life Vitamin C+ Zinc Tablets\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"esay-life.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"188\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3020, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4693\",\"code\":\"189\",\"name\":\"Efpac Junior Syrup\",\"unit\":\"1\",\"cost\":\"7.1500\",\"price\":\"7.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"efpac-jnr.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"189\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3021, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4523\",\"code\":\"19\",\"name\":\"Adom W&amp;G Capsules\",\"unit\":\"1\",\"cost\":\"18.7000\",\"price\":\"18.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"wng.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"19\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3022, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4694\",\"code\":\"190\",\"name\":\"Efpac Tablets\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"EFPAC-TAB.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"190\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3023, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4695\",\"code\":\"191\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"191\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3024, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4696\",\"code\":\"192\",\"name\":\"Emgiflox 250mg Capsules 50x10\",\"unit\":\"1\",\"cost\":\"158.6000\",\"price\":\"158.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"192\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3025, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4697\",\"code\":\"193\",\"name\":\"Enacef (Cefuroxime) 250mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"193\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3026, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4698\",\"code\":\"194\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"194\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3027, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4699\",\"code\":\"195\",\"name\":\"Entramol 500mg Tablets 15X12\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"entramol.png\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"195\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3028, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4700\",\"code\":\"196\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3029, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4701\",\"code\":\"197\",\"name\":\"Epiderm Cream 15g\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"197\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3030, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4702\",\"code\":\"198\",\"name\":\"Epiderm Cream 30g\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"epiderm-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"198\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3031, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4703\",\"code\":\"199\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3032, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4506\",\"code\":\"2\",\"name\":\"DAYQUIL 2&apos;s DISP.  (25 CT)\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dayquil-2s-disp-25-ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3033, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4524\",\"code\":\"20\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3034, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4704\",\"code\":\"200\",\"name\":\"Etisala Capsules\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"4.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3035, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4705\",\"code\":\"201\",\"name\":\"Evecare Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"33.8000\",\"price\":\"33.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"evecare-caps.jpeg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"201\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3036, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4706\",\"code\":\"202\",\"name\":\"Evening Primrose 1000mg Tablets Valupak\",\"unit\":\"1\",\"cost\":\"21.5000\",\"price\":\"21.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"evening-primrose.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"202\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3037, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4707\",\"code\":\"203\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"203\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3038, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4708\",\"code\":\"204\",\"name\":\"Ezipen Tablets 5x6\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"ezipen-rotated.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"204\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3039, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4709\",\"code\":\"205\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"205\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3040, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4710\",\"code\":\"206\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3041, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4711\",\"code\":\"207\",\"name\":\"Feroglobin Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"feroglobi.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"207\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3042, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4712\",\"code\":\"208\",\"name\":\"Ferrous Sulphate 200mg Tab 30&apos;s EXE\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1679\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"208\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3043, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4713\",\"code\":\"209\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3044, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4525\",\"code\":\"21\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"21\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3045, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4714\",\"code\":\"210\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"210\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3046, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4715\",\"code\":\"211\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"211\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3047, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4716\",\"code\":\"212\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"212\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3048, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4717\",\"code\":\"213\",\"name\":\"Fisherman&apos;s Friend All Flavours 24&apos;s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"213\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3049, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4718\",\"code\":\"214\",\"name\":\"Flagyl Suspension 100ml\",\"unit\":\"1\",\"cost\":\"39.3000\",\"price\":\"39.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"214\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3050, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4719\",\"code\":\"215\",\"name\":\"Flemex Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"flemex-adult.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"215\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3051, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4720\",\"code\":\"216\",\"name\":\"Flemex Jnr. Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"fle-jnr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"216\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3052, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4721\",\"code\":\"217\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3053, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4722\",\"code\":\"218\",\"name\":\"FLUCOR  NIGHT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3054, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4723\",\"code\":\"219\",\"name\":\"Flucor Day Gel\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"219\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3055, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4526\",\"code\":\"22\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"22\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3056, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4724\",\"code\":\"220\",\"name\":\"Flurest Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"flu.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"220\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3057, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4725\",\"code\":\"221\",\"name\":\"Foligrow Syrup 200ml\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"20.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"folig.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"221\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3058, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4726\",\"code\":\"222\",\"name\":\"Foliron Tonic 200ml\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"222\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3059, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4727\",\"code\":\"223\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3060, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4728\",\"code\":\"224\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"224\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3061, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4729\",\"code\":\"225\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"225\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3062, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4730\",\"code\":\"226\",\"name\":\"Funbact A\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"funbact-a.jpeg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"226\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3063, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4731\",\"code\":\"227\",\"name\":\"Furosemide 40mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"227\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3064, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4732\",\"code\":\"228\",\"name\":\"Gacet 125mg Suppositories\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3065, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4733\",\"code\":\"229\",\"name\":\"Gacet 250mg Suppository\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"229\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3066, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4527\",\"code\":\"23\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"23\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3067, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4734\",\"code\":\"230\",\"name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"unit\":\"1\",\"cost\":\"226.2100\",\"price\":\"226.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"galvus-met.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"230\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3068, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4735\",\"code\":\"231\",\"name\":\"Garlic Pearls Osons\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"osons-garlic.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"231\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3069, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4736\",\"code\":\"232\",\"name\":\"Gastrone Plus 200ml Suspension\",\"unit\":\"1\",\"cost\":\"14.7600\",\"price\":\"14.7600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"232\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3070, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4737\",\"code\":\"233\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"233\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3071, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4738\",\"code\":\"234\",\"name\":\"Gaviscon Peppermint Liquid 200ml\",\"unit\":\"1\",\"cost\":\"27.9800\",\"price\":\"27.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"234\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3072, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4739\",\"code\":\"235\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"235\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3073, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4740\",\"code\":\"236\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3074, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4741\",\"code\":\"237\",\"name\":\"Gebedol Tablet\",\"unit\":\"1\",\"cost\":\"11.1000\",\"price\":\"11.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gebedol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"237\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3075, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4742\",\"code\":\"238\",\"name\":\"Gebedol Extra\",\"unit\":\"1\",\"cost\":\"31.1000\",\"price\":\"31.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-extra.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"238\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3076, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4743\",\"code\":\"239\",\"name\":\"Gebedol Plus Capsule\",\"unit\":\"1\",\"cost\":\"24.4300\",\"price\":\"24.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-plus.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"239\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3077, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4528\",\"code\":\"24\",\"name\":\"Agbeve Tonic\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"agbeve.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3078, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4744\",\"code\":\"240\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"240\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3079, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4745\",\"code\":\"241\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"241\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3080, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4746\",\"code\":\"242\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"242\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3081, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4747\",\"code\":\"243\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3082, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4748\",\"code\":\"244\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"244\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3083, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4749\",\"code\":\"245\",\"name\":\"Givers P Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"245\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3084, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4750\",\"code\":\"246\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"246\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3085, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4751\",\"code\":\"247\",\"name\":\"Glibenil (Glibenclamide) Tablets\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"247\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3086, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4752\",\"code\":\"248\",\"name\":\"Glucose Powder 400mg\",\"unit\":\"1\",\"cost\":\"6.1700\",\"price\":\"6.1700\",\"alert_quantity\":\"20.0000\",\"image\":\"gluc.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"248\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3087, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4753\",\"code\":\"249\",\"name\":\"Roberts Glycerine 90ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1681\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"249\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3088, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4529\",\"code\":\"25\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3089, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4754\",\"code\":\"250\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3090, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4755\",\"code\":\"251\",\"name\":\"Gentian violet (GV PAINT)\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"gv-paint.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3091, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4756\",\"code\":\"252\",\"name\":\"Gvither Forte 80mg Injection 10&apos;s\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"28.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gvither.jpeg\",\"category_id\":\"1682\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"252\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3092, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4757\",\"code\":\"253\",\"name\":\"Gyprone Plus 200ml Syrup\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-68.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"253\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3093, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4758\",\"code\":\"254\",\"name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"4.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemo.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"254\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3094, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4759\",\"code\":\"255\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3095, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4760\",\"code\":\"256\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3096, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4761\",\"code\":\"257\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3097, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4762\",\"code\":\"258\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3098, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4763\",\"code\":\"259\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3099, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4530\",\"code\":\"26\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"26\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3100, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4764\",\"code\":\"260\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3101, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4765\",\"code\":\"261\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"261\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3102, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4766\",\"code\":\"262\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3103, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4767\",\"code\":\"263\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"263\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3104, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4768\",\"code\":\"264\",\"name\":\"Honeykof Herbal Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"honey.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"264\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3105, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4769\",\"code\":\"265\",\"name\":\"HOT WATER BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3106, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4770\",\"code\":\"266\",\"name\":\"HOT WATTLEER BOT COVERED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"266\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3107, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4771\",\"code\":\"267\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"267\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3108, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4772\",\"code\":\"268\",\"name\":\"Hydrogen Peroxide\",\"unit\":\"1\",\"cost\":\"2.1600\",\"price\":\"2.1600\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3109, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4773\",\"code\":\"269\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3110, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4531\",\"code\":\"27\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"27\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3111, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4774\",\"code\":\"270\",\"name\":\"Ibex Capsules 24&apos;s\",\"unit\":\"1\",\"cost\":\"15.2500\",\"price\":\"15.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"270\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3112, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4775\",\"code\":\"271\",\"name\":\"Ibucap Capsules 10C (BamBam)\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"271\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3113, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4776\",\"code\":\"272\",\"name\":\"Ideos\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"65.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"272\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3114, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4777\",\"code\":\"273\",\"name\":\"Imax Delay Spray\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-85.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"273\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3115, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4778\",\"code\":\"274\",\"name\":\"Imboost Herbal Mixture 500ml\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"imboost.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"274\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3116, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4779\",\"code\":\"275\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3117, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4780\",\"code\":\"276\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3118, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4781\",\"code\":\"277\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3119, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4782\",\"code\":\"278\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"278\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3120, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4783\",\"code\":\"279\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"279\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3121, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4532\",\"code\":\"28\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"28\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3122, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4784\",\"code\":\"280\",\"name\":\"Infacol Drops 55ml\",\"unit\":\"1\",\"cost\":\"49.4000\",\"price\":\"49.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"infacol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"280\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3123, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4785\",\"code\":\"281\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3124, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4786\",\"code\":\"282\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"282\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3125, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4787\",\"code\":\"283\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"283\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3126, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4788\",\"code\":\"284\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"284\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3127, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4789\",\"code\":\"285\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3128, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4790\",\"code\":\"286\",\"name\":\"Joy Ointment\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"joyoint.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"286\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3129, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4791\",\"code\":\"287\",\"name\":\"JRA B&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3130, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4792\",\"code\":\"288\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3131, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4793\",\"code\":\"289\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"289\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3132, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4533\",\"code\":\"29\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"29\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3133, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4794\",\"code\":\"290\",\"name\":\"KAMAGRA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"290\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3134, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4795\",\"code\":\"291\",\"name\":\"KEPTRILS LOZENGES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3135, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4796\",\"code\":\"292\",\"name\":\"Ketazol Cream 30g\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ketazol.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"292\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3136, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4797\",\"code\":\"293\",\"name\":\"Kidicare Srup 200ml\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kidicare.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"293\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3137, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4798\",\"code\":\"294\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"294\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3138, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4799\",\"code\":\"295\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"295\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3139, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4800\",\"code\":\"296\",\"name\":\"Kidivite Baby Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"296\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3140, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4801\",\"code\":\"297\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"297\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3141, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4802\",\"code\":\"298\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3142, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4803\",\"code\":\"299\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"299\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3143, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4507\",\"code\":\"3\",\"name\":\"ZANTAC  150  25CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zantac-150-25ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3144, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4534\",\"code\":\"30\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3145, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4804\",\"code\":\"300\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3146, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4805\",\"code\":\"301\",\"name\":\"Koflet Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-59.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"301\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3147, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4806\",\"code\":\"302\",\"name\":\"Kofof Adult Syrup 150ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"302\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3148, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4807\",\"code\":\"303\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3149, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4808\",\"code\":\"304\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3150, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4809\",\"code\":\"305\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3151, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4810\",\"code\":\"306\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"306\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3152, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4811\",\"code\":\"307\",\"name\":\"Leena Capsules\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"4.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"leena.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"307\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3153, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4812\",\"code\":\"308\",\"name\":\"Lemsip Cold and flu Max 10&apos;s\",\"unit\":\"1\",\"cost\":\"44.8000\",\"price\":\"44.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"lemsip-cold-and-flu-max.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"308\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3154, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4813\",\"code\":\"309\",\"name\":\"Lenor\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lenor.jpeg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"309\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3155, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4535\",\"code\":\"31\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"31\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3156, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4814\",\"code\":\"310\",\"name\":\"Letacam (Piroxicam)\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"310\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3157, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4815\",\"code\":\"311\",\"name\":\"Letamol Elixir 125ml\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"letamol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"311\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3158, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4816\",\"code\":\"312\",\"name\":\"Letamox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"13.1400\",\"price\":\"13.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"312\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3159, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4817\",\"code\":\"313\",\"name\":\"Letaron 200ml Syrup\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"313\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3160, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4818\",\"code\":\"314\",\"name\":\"Letavit Syrup\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"2.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"314\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3161, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4819\",\"code\":\"315\",\"name\":\"LEVOTHROXINE 50MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"315\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3162, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4820\",\"code\":\"316\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3163, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4821\",\"code\":\"317\",\"name\":\"Lexsporin Skin Ointment 20g\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexsporin-oint.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"317\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3164, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4822\",\"code\":\"318\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"318\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3165, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4823\",\"code\":\"319\",\"name\":\"LILY  ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"319\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3166, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4536\",\"code\":\"32\",\"name\":\"Amcof Adult Syrup\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"32\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3167, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4824\",\"code\":\"320\",\"name\":\"Bells Liquid Parafin BP 100ml\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-paraffin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"320\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3168, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4825\",\"code\":\"321\",\"name\":\"Lisinopril 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"9.9000\",\"price\":\"9.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"321\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3169, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4826\",\"code\":\"322\",\"name\":\"Lisinopril 20mg Teva\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"322\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3170, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4827\",\"code\":\"323\",\"name\":\"Listerine 250ml all types\",\"unit\":\"1\",\"cost\":\"15.9000\",\"price\":\"15.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"323\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3171, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4828\",\"code\":\"324\",\"name\":\"LIVING BITTERS CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"324\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3172, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4829\",\"code\":\"325\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"325\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3173, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4830\",\"code\":\"326\",\"name\":\"Lofnac 100mg Suppository\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"326\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3174, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4831\",\"code\":\"327\",\"name\":\"Lofnac Gel 30mg\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lofnac.jpeg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"327\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3175, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4832\",\"code\":\"328\",\"name\":\"Lonart DS Tablets\",\"unit\":\"1\",\"cost\":\"17.2000\",\"price\":\"17.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"LONART-DS.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"328\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3176, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4833\",\"code\":\"329\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3177, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4537\",\"code\":\"33\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"33\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3178, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4834\",\"code\":\"330\",\"name\":\"Lubrimax Jelly 50g\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1685\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"330\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3179, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4835\",\"code\":\"331\",\"name\":\"Lubrimax Jelly 70g\",\"unit\":\"1\",\"cost\":\"19.4000\",\"price\":\"19.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"331\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3180, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4836\",\"code\":\"332\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"332\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3181, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4837\",\"code\":\"333\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"333\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3182, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4838\",\"code\":\"334\",\"name\":\"Luex Adult Chesty Cough 150ml syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"334\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3183, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4839\",\"code\":\"335\",\"name\":\"Luex Child Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"luex-child-chesty.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"335\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3184, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4840\",\"code\":\"336\",\"name\":\"Luex Child Dry Cough 150ml Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"336\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3185, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4841\",\"code\":\"337\",\"name\":\"Lufart DS Tablets\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"15.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lufart-ds.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"337\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3186, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4842\",\"code\":\"338\",\"name\":\"LUMETHER  ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3187, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4843\",\"code\":\"339\",\"name\":\"LYRICA 75\",\"unit\":\"1\",\"cost\":\"311.6000\",\"price\":\"311.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"339\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3188, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4538\",\"code\":\"34\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"34\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3189, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4844\",\"code\":\"340\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"340\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3190, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4845\",\"code\":\"341\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3191, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4846\",\"code\":\"342\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"342\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3192, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4847\",\"code\":\"343\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3193, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4848\",\"code\":\"344\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"344\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3194, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4849\",\"code\":\"345\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"345\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3195, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4850\",\"code\":\"346\",\"name\":\"Major Nasal Drops\",\"unit\":\"1\",\"cost\":\"8.1400\",\"price\":\"8.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"major.jpg\",\"category_id\":\"1686\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"346\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3196, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4851\",\"code\":\"347\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"347\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3197, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4852\",\"code\":\"348\",\"name\":\"Malar-2 Forte Tablets 40\\/240mg 12&apos;s\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"348\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3198, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4853\",\"code\":\"349\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"349\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3199, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4539\",\"code\":\"35\",\"name\":\"AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"35\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3200, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4854\",\"code\":\"350\",\"name\":\"Malin Adult\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"350\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3201, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4855\",\"code\":\"351\",\"name\":\"Malin Baby\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"351\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3202, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4856\",\"code\":\"352\",\"name\":\"Malin Lozenges\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"352\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3203, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4857\",\"code\":\"353\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"353\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3204, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4858\",\"code\":\"354\",\"name\":\"Mark 2 Inhaler\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mak-2.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"354\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3205, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4859\",\"code\":\"355\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3206, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4860\",\"code\":\"356\",\"name\":\"Maxitrol Eye 5ml Drops\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"16.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"356\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3207, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4861\",\"code\":\"357\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"357\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3208, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4862\",\"code\":\"358\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"358\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3209, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4863\",\"code\":\"359\",\"name\":\"Mentat Tablets\",\"unit\":\"1\",\"cost\":\"20.7400\",\"price\":\"20.7400\",\"alert_quantity\":\"20.0000\",\"image\":\"mentat-tab.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"359\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3210, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4540\",\"code\":\"36\",\"name\":\"Amoksiklav 1g Tablet 10s\",\"unit\":\"1\",\"cost\":\"48.2000\",\"price\":\"48.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"1000amok.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"36\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3211, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4864\",\"code\":\"360\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3212, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4865\",\"code\":\"361\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"361\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3213, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4866\",\"code\":\"362\",\"name\":\"Metformin Denk 500mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"63.2200\",\"price\":\"63.2200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"362\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3214, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4867\",\"code\":\"363\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3215, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4868\",\"code\":\"364\",\"name\":\"MetroGR-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"364\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3216, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4869\",\"code\":\"365\",\"name\":\"Metronidazole 200mg Tablets 50X10 Letap\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"365\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3217, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4870\",\"code\":\"366\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"366\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3218, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4871\",\"code\":\"367\",\"name\":\"Mist Pot Cit (Potassium Citrate) ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"367\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3219, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4872\",\"code\":\"368\",\"name\":\"Magnesium Trisilicate (MMT)\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"mmt.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"368\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3220, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4873\",\"code\":\"369\",\"name\":\"Mist Mag. Trisilicate 200ml Mal-Titi\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"369\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3221, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4541\",\"code\":\"37\",\"name\":\"Amoxicillin Suspension 100ml (Letap)\",\"unit\":\"1\",\"cost\":\"3.4100\",\"price\":\"3.4100\",\"alert_quantity\":\"20.0000\",\"image\":\"AMOCXI.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"37\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3222, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4874\",\"code\":\"370\",\"name\":\"MOVATE SAPHARMA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"370\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3223, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4875\",\"code\":\"371\",\"name\":\"Mucolex Junior Cough150ml Syrup\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"371\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3224, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4876\",\"code\":\"372\",\"name\":\"Multivite Tablets Letap\",\"unit\":\"1\",\"cost\":\"22.1000\",\"price\":\"22.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"372\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3225, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4877\",\"code\":\"373\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"373\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3226, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4878\",\"code\":\"374\",\"name\":\"Mycocort Cream 20g\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycocort.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"374\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3227, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4879\",\"code\":\"375\",\"name\":\"Mycolex 3 Cream 30gm\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-100.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"375\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3228, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4880\",\"code\":\"376\",\"name\":\"Mycolex Cream 20g\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycolex-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"376\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3229, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4881\",\"code\":\"377\",\"name\":\"Mycovin Tabs 500mg 250\'\",\"unit\":\"1\",\"cost\":\"198.0000\",\"price\":\"198.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mycovin.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"377\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3230, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4882\",\"code\":\"378\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3231, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4883\",\"code\":\"379\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"379\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3232, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4542\",\"code\":\"38\",\"name\":\"Ampicillin 250mg Capsules 50X10 Eskay\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"1.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"38\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3233, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4884\",\"code\":\"380\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3234, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4885\",\"code\":\"381\",\"name\":\"Naprox EC 500mg Tablets 100&apos;s\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"381\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3235, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4886\",\"code\":\"382\",\"name\":\"Natrilix Sr 1.5mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"63.0000\",\"price\":\"63.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"382\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3236, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4887\",\"code\":\"383\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"383\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3237, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4888\",\"code\":\"384\",\"name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"neohycolex.jpg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"384\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3238, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4889\",\"code\":\"385\",\"name\":\"Neovita Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"neovita-30.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"385\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3239, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4890\",\"code\":\"386\",\"name\":\"Nerve and Bone Liniment 100ml\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"11.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1687\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"386\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3240, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4891\",\"code\":\"387\",\"name\":\"Nexium 40mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"149.2800\",\"price\":\"149.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"nexium.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"387\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3241, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4892\",\"code\":\"388\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"388\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3242, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4893\",\"code\":\"389\",\"name\":\"Nifecard XL 30mg Tablets 30&apos;s ECL\",\"unit\":\"1\",\"cost\":\"30.2000\",\"price\":\"30.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"nifecard.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"389\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3243, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4543\",\"code\":\"39\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"39\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3244, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4894\",\"code\":\"390\",\"name\":\"Night Nurse Capsules 10&apos;s\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"47.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"night-nurse.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"390\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3245, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4895\",\"code\":\"391\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"391\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3246, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4896\",\"code\":\"392\",\"name\":\"Nizoral Cream 15gm\",\"unit\":\"1\",\"cost\":\"35.3000\",\"price\":\"35.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-63.jpeg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"392\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3247, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4897\",\"code\":\"393\",\"name\":\"Normal Saline Infusion 500ml\",\"unit\":\"1\",\"cost\":\"4.4800\",\"price\":\"4.4800\",\"alert_quantity\":\"20.0000\",\"image\":\"normal-saline.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"393\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3248, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4898\",\"code\":\"394\",\"name\":\"Normo Tears Eye Drop\",\"unit\":\"1\",\"cost\":\"16.9000\",\"price\":\"16.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"394\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3249, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4899\",\"code\":\"395\",\"name\":\"zincovit\",\"unit\":\"1\",\"cost\":\"19.3400\",\"price\":\"19.3400\",\"alert_quantity\":\"20.0000\",\"image\":\"nugel-scaled.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"395\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3250, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4900\",\"code\":\"396\",\"name\":\"Nugel-O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"20.1300\",\"price\":\"20.1300\",\"alert_quantity\":\"20.0000\",\"image\":\"nugel-o.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"396\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3251, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4901\",\"code\":\"397\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"397\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3252, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4902\",\"code\":\"398\",\"name\":\"O-FORMIN 500\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"398\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3253, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4903\",\"code\":\"399\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"399\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3254, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4508\",\"code\":\"4\",\"name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3255, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4544\",\"code\":\"40\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3256, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4904\",\"code\":\"400\",\"name\":\"Olfen Gel 20gm\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"olfen.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3257, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4905\",\"code\":\"401\",\"name\":\"Omeprazole 20mg Capsules 28&apos;s uk\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"401\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3258, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4906\",\"code\":\"402\",\"name\":\"Omeprazole 20mg Tablets 28&apos;s Teva\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Omeprazole-20mg-Tablets-28s-Teva.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"402\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3259, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4907\",\"code\":\"403\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"403\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3260, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4908\",\"code\":\"404\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"404\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3261, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4909\",\"code\":\"405\",\"name\":\"ORS Orange\",\"unit\":\"1\",\"cost\":\"16.6000\",\"price\":\"16.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"405\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3262, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4910\",\"code\":\"406\",\"name\":\"Osons Cod Liver Capsules\",\"unit\":\"1\",\"cost\":\"15.1000\",\"price\":\"15.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"406\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3263, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4911\",\"code\":\"407\",\"name\":\"Osteocare Chewable Tablets\",\"unit\":\"1\",\"cost\":\"39.7500\",\"price\":\"39.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"osteocare.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"407\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3264, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4912\",\"code\":\"408\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"408\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3265, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4913\",\"code\":\"409\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"409\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3266, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4545\",\"code\":\"41\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"41\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3267, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4914\",\"code\":\"410\",\"name\":\"Paingay Gel 30g\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"410\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3268, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4915\",\"code\":\"411\",\"name\":\"Panadol Advance 500mg 16&apos;s\",\"unit\":\"1\",\"cost\":\"24.0900\",\"price\":\"24.0900\",\"alert_quantity\":\"20.0000\",\"image\":\"panadol-advance-500mg.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"411\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3269, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4916\",\"code\":\"412\",\"name\":\"PARA DENK250 SUPPO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"412\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3270, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4917\",\"code\":\"413\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"413\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3271, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4918\",\"code\":\"414\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"414\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3272, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4919\",\"code\":\"415\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"415\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3273, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4920\",\"code\":\"416\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"416\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3274, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4921\",\"code\":\"417\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"417\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3275, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4922\",\"code\":\"418\",\"name\":\"Pilex Tablets\",\"unit\":\"1\",\"cost\":\"23.7800\",\"price\":\"23.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"pilex-tab.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"418\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3276, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4923\",\"code\":\"419\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"419\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3277, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4546\",\"code\":\"42\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"42\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3278, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4924\",\"code\":\"420\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"420\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3279, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4925\",\"code\":\"421\",\"name\":\"Piriton Original Syrup 150ml\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"piriton-syrup.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"421\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3280, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4926\",\"code\":\"422\",\"name\":\"Piriton Original Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"422\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3281, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4927\",\"code\":\"423\",\"name\":\"Plaster roll Extra care 2Inches\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"423\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3282, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4928\",\"code\":\"424\",\"name\":\"Polyfer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-caps.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"424\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3283, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4929\",\"code\":\"425\",\"name\":\"Polyfer Forte Syrup 150ML\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"425\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3284, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4930\",\"code\":\"426\",\"name\":\"Ponstan 250mg Capsules 50&apos;s\",\"unit\":\"1\",\"cost\":\"37.5000\",\"price\":\"37.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ponstan.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"426\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3285, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4931\",\"code\":\"427\",\"name\":\"Pregnacare Plus\",\"unit\":\"1\",\"cost\":\"108.1000\",\"price\":\"108.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"prenac.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"427\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3286, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4932\",\"code\":\"428\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"428\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3287, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4933\",\"code\":\"429\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3288, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4547\",\"code\":\"43\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"43\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3289, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4934\",\"code\":\"430\",\"name\":\"PROCOLD  SYR 60ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"430\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3290, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4935\",\"code\":\"431\",\"name\":\"Proman Capsules 30s\",\"unit\":\"1\",\"cost\":\"41.5800\",\"price\":\"41.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"proman.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"431\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3291, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4936\",\"code\":\"432\",\"name\":\"Proman 50+ Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"33.9800\",\"price\":\"33.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-58.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"432\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3292, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4937\",\"code\":\"433\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"433\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3293, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4938\",\"code\":\"434\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"434\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3294, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4939\",\"code\":\"435\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3295, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4940\",\"code\":\"436\",\"name\":\"Prostacure Tea\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"PROSTACURE-T.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"436\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3296, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4941\",\"code\":\"437\",\"name\":\"Prostacure X\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"PROSTACURE-1.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"437\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3297, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4942\",\"code\":\"438\",\"name\":\"PROSTAFIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"438\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3298, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4943\",\"code\":\"439\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"439\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3299, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4548\",\"code\":\"44\",\"name\":\"Apetamin Syrup 200ml\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"44\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3300, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4944\",\"code\":\"440\",\"name\":\"Prowoman Caps 30\'\",\"unit\":\"1\",\"cost\":\"52.9200\",\"price\":\"52.9200\",\"alert_quantity\":\"20.0000\",\"image\":\"prowoman.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"440\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3301, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4945\",\"code\":\"441\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"441\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3302, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4946\",\"code\":\"442\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3303, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4947\",\"code\":\"443\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"443\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3304, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4948\",\"code\":\"444\",\"name\":\"Redsun Jelly\",\"unit\":\"1\",\"cost\":\"6.1000\",\"price\":\"6.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"redsun.jpg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"444\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3305, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4949\",\"code\":\"445\",\"name\":\"Relcer Gel\",\"unit\":\"1\",\"cost\":\"8.2800\",\"price\":\"8.2800\",\"alert_quantity\":\"20.0000\",\"image\":\"relcer-gel.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"445\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3306, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4950\",\"code\":\"446\",\"name\":\"Rhizin Syrup\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"3.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-82.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"446\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3307, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4951\",\"code\":\"447\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"447\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3308, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4952\",\"code\":\"448\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3309, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4953\",\"code\":\"449\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3310, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4549\",\"code\":\"45\",\"name\":\"Apetatrust 200ml Syrup\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"45\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3311, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4954\",\"code\":\"450\",\"name\":\"Rooter Mixture\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooter-mixture.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"450\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3312, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4955\",\"code\":\"451\",\"name\":\"Rough Rider Condoms 3&apos;s\",\"unit\":\"1\",\"cost\":\"8.7800\",\"price\":\"8.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"rough-rider.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"451\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3313, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4956\",\"code\":\"452\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"452\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3314, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4957\",\"code\":\"453\",\"name\":\"Rubbing Alcohol 500ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"453\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3315, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4958\",\"code\":\"454\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"454\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3316, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4959\",\"code\":\"455\",\"name\":\"Seven Seas Cod Liver Oil 100ml ECL\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"34.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"455\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3317, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4960\",\"code\":\"456\",\"name\":\"Salamol Inhaler 100mg\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"20.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"456\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3318, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4961\",\"code\":\"457\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3319, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4962\",\"code\":\"458\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"458\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3320, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4963\",\"code\":\"459\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"459\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3321, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4550\",\"code\":\"46\",\"name\":\"Aptizoom Syrup 200ml\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"38.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"aptizoom-syr.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"46\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3322, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4964\",\"code\":\"460\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"460\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3323, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4965\",\"code\":\"461\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"461\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3324, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4966\",\"code\":\"462\",\"name\":\"Secure Contraceptive Pill\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"462\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3325, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4967\",\"code\":\"463\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"463\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3326, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4968\",\"code\":\"464\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"464\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3327, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4969\",\"code\":\"465\",\"name\":\"Septilin Tablet\",\"unit\":\"1\",\"cost\":\"20.1600\",\"price\":\"20.1600\",\"alert_quantity\":\"20.0000\",\"image\":\"septilin.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"465\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3328, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4970\",\"code\":\"466\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"466\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3329, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4971\",\"code\":\"467\",\"name\":\"Shal\'Artem Dispersible Tablets 6\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"2.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"467\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3330, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4972\",\"code\":\"468\",\"name\":\"Shalcip Tablets 500mg 10&apos;s (Ciprofloxacin)\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalcip-500.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"468\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3331, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4973\",\"code\":\"469\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3332, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4551\",\"code\":\"47\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"47\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3333, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4974\",\"code\":\"470\",\"name\":\"Sibi Woman Capsules\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"sibi.jpeg\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"470\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3334, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4975\",\"code\":\"471\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"471\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3335, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4976\",\"code\":\"472\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"472\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3336, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4977\",\"code\":\"473\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"473\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3337, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4978\",\"code\":\"474\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"474\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3338, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4979\",\"code\":\"475\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"475\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3339, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4980\",\"code\":\"476\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3340, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4981\",\"code\":\"477\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"477\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3341, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4982\",\"code\":\"478\",\"name\":\"SOLAK MIX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"478\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3342, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4983\",\"code\":\"479\",\"name\":\"Dispersible Aspirin 75mg Tablets 100&apos;s Aspar\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"11.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"disp-asp.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"479\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3343, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4552\",\"code\":\"48\",\"name\":\"Arfan 20\\/120mg\",\"unit\":\"1\",\"cost\":\"5.8600\",\"price\":\"5.8600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"48\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3344, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4984\",\"code\":\"480\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3345, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4985\",\"code\":\"481\",\"name\":\"Stagyl\",\"unit\":\"1\",\"cost\":\"3.3200\",\"price\":\"3.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"stGLY.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"481\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3346, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4986\",\"code\":\"482\",\"name\":\"Stopkof Children 100ml Syrup\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"482\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3347, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4987\",\"code\":\"483\",\"name\":\"Stopkof Adult Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"483\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3348, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4988\",\"code\":\"484\",\"name\":\"Strepsil Orange +Vitamin C Loz 36&apos;s\",\"unit\":\"1\",\"cost\":\"52.4000\",\"price\":\"52.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"strepsils-orange.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"484\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3349, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4989\",\"code\":\"485\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3350, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4990\",\"code\":\"486\",\"name\":\"Sudocrem 125g cream\",\"unit\":\"1\",\"cost\":\"32.5000\",\"price\":\"32.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"486\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3351, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4991\",\"code\":\"487\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"487\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3352, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4992\",\"code\":\"488\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"488\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3353, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4993\",\"code\":\"489\",\"name\":\"Super Apeti Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"super-apeti-plus-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"489\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3354, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4553\",\"code\":\"49\",\"name\":\"Arziglobin 200ml Syrup\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"8.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-67.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"49\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3355, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4994\",\"code\":\"490\",\"name\":\"Super Apeti Plus Tablets 50X20\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"super-apeti-tbs.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"490\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3356, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4995\",\"code\":\"491\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3357, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4996\",\"code\":\"492\",\"name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"492\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3358, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4997\",\"code\":\"493\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3359, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4998\",\"code\":\"494\",\"name\":\"Syringe and Needle 5ml Letaject\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"494\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3360, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4999\",\"code\":\"495\",\"name\":\"Taabea Herbal Mixture\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-75.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"495\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3361, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5000\",\"code\":\"496\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3362, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5001\",\"code\":\"497\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"497\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3363, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5002\",\"code\":\"498\",\"name\":\"Tavanic 500mg Tablets 5&apos;s\",\"unit\":\"1\",\"cost\":\"134.9600\",\"price\":\"134.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"download-65.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"498\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3364, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5003\",\"code\":\"499\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3365, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4509\",\"code\":\"5\",\"name\":\"ALKA SELTZ PLS COLD 20\\/2&apos;s BOX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"alka-seltz-pls-cold-202s-box.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3366, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4554\",\"code\":\"50\",\"name\":\"Ascoryl Syrup 125ml\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"7.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"Ascorly-C-scaled.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3367, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5004\",\"code\":\"500\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3368, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5005\",\"code\":\"501\",\"name\":\"Tears Natural II Eye Drops\",\"unit\":\"1\",\"cost\":\"24.7000\",\"price\":\"24.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"tears-naturale.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"501\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3369, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5006\",\"code\":\"502\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"502\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3370, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5007\",\"code\":\"503\",\"name\":\"Tetracycline Capsules\",\"unit\":\"1\",\"cost\":\"15.8200\",\"price\":\"15.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"tetra.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"503\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3371, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5008\",\"code\":\"504\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"504\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3372, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5009\",\"code\":\"505\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3373, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5010\",\"code\":\"506\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3374, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5011\",\"code\":\"507\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"507\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3375, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5012\",\"code\":\"508\",\"name\":\"Tinatett Venecare 750ml\",\"unit\":\"1\",\"cost\":\"23.1000\",\"price\":\"23.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"titatet.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"508\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3376, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5013\",\"code\":\"509\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"509\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3377, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4555\",\"code\":\"51\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"51\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3378, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5014\",\"code\":\"510\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3379, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5015\",\"code\":\"511\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3380, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5016\",\"code\":\"512\",\"name\":\"Tranexamic Acid 500mg Tablets 60&apos;s\",\"unit\":\"1\",\"cost\":\"127.0000\",\"price\":\"127.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Tranexamic-Acid-500mg-Tablets-60s.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"512\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3381, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5017\",\"code\":\"513\",\"name\":\"Tres Orix 250ml\",\"unit\":\"1\",\"cost\":\"21.6500\",\"price\":\"21.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"trex-oris.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"513\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3382, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5018\",\"code\":\"514\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"514\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3383, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5019\",\"code\":\"515\",\"name\":\"TRO XIME CEFUROXINE INJ 750\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"515\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3384, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5020\",\"code\":\"516\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"516\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3385, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5021\",\"code\":\"517\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"517\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3386, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5022\",\"code\":\"518\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"518\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3387, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5023\",\"code\":\"519\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"519\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3388, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4556\",\"code\":\"52\",\"name\":\"Asmanol 100mg Tablets\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"16.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"asmanol.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"52\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3389, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5024\",\"code\":\"520\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"520\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3390, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5025\",\"code\":\"521\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"521\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3391, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5026\",\"code\":\"522\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"522\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3392, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5027\",\"code\":\"523\",\"name\":\"Vermox 500mg Tablets\",\"unit\":\"1\",\"cost\":\"10.9000\",\"price\":\"10.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"vermox-tab.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"523\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3393, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5028\",\"code\":\"524\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"524\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3394, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5029\",\"code\":\"525\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"525\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3395, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5030\",\"code\":\"526\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"526\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3396, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5031\",\"code\":\"527\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"527\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3397, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5032\",\"code\":\"528\",\"name\":\"Viscof D 100ml Syrup\",\"unit\":\"1\",\"cost\":\"12.8400\",\"price\":\"12.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"528\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3398, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5033\",\"code\":\"529\",\"name\":\"Viscof Plain 100ml Syrup\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"11.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"529\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3399, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4557\",\"code\":\"53\",\"name\":\"Aspanol All In One Syrup\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"53\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3400, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5034\",\"code\":\"530\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"530\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3401, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5035\",\"code\":\"531\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"531\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3402, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5036\",\"code\":\"532\",\"name\":\"VITAMILK  BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"532\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3403, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5037\",\"code\":\"533\",\"name\":\"Vitane Liquid 200ml\",\"unit\":\"1\",\"cost\":\"45.2400\",\"price\":\"45.2400\",\"alert_quantity\":\"20.0000\",\"image\":\"vitane-liq.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"533\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3404, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5038\",\"code\":\"534\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"534\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3405, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5039\",\"code\":\"535\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3406, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5040\",\"code\":\"536\",\"name\":\"VOLLTFAST 50MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"536\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3407, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5041\",\"code\":\"537\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"537\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3408, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5042\",\"code\":\"538\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3409, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5043\",\"code\":\"539\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"539\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3410, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4558\",\"code\":\"54\",\"name\":\"Aspanol Productive\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"54\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3411, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5044\",\"code\":\"540\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"540\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3412, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5045\",\"code\":\"541\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"541\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3413, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5046\",\"code\":\"542\",\"name\":\"Wellbaby Infant 160ml Syrup\",\"unit\":\"1\",\"cost\":\"74.3000\",\"price\":\"74.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"542\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3414, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5047\",\"code\":\"543\",\"name\":\"Wellman Capsules\",\"unit\":\"1\",\"cost\":\"58.4000\",\"price\":\"58.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"543\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3415, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5048\",\"code\":\"544\",\"name\":\"Wormbase 400mg Tablets\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"13.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"544\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3416, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5049\",\"code\":\"545\",\"name\":\"Wormplex Suspension\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"545\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3417, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5050\",\"code\":\"546\",\"name\":\"Wormplex 400 Tablets\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"wormplex-400.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3418, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5051\",\"code\":\"547\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"547\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3419, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5052\",\"code\":\"548\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"548\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3420, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5053\",\"code\":\"549\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3421, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4559\",\"code\":\"55\",\"name\":\"Aspirin Tab 300mg\",\"unit\":\"1\",\"cost\":\"18.3200\",\"price\":\"18.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"55\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3422, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5054\",\"code\":\"550\",\"name\":\"Zentel 200mg Tablets 2&apos;s\",\"unit\":\"1\",\"cost\":\"10.4800\",\"price\":\"10.4800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-86.jpeg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"550\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3423, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5055\",\"code\":\"551\",\"name\":\"ZESTRIL 20MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"551\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3424, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5056\",\"code\":\"552\",\"name\":\"Zincofer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"17.9000\",\"price\":\"17.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-78.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"552\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3425, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5057\",\"code\":\"553\",\"name\":\"Zincofer Syrup 200ml\",\"unit\":\"1\",\"cost\":\"17.8400\",\"price\":\"17.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"download-77.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"553\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3426, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5058\",\"code\":\"554\",\"name\":\"Zincovit Drops 15ml\",\"unit\":\"1\",\"cost\":\"8.8200\",\"price\":\"8.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"zicovit-drops.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"554\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3427, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5059\",\"code\":\"555\",\"name\":\"Zincovit Syrup 200ml\",\"unit\":\"1\",\"cost\":\"16.1000\",\"price\":\"16.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"zincovit-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"555\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3428, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5060\",\"code\":\"556\",\"name\":\"Zincovit Tablets\",\"unit\":\"1\",\"cost\":\"23.7000\",\"price\":\"23.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"zicovit.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"556\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3429, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5061\",\"code\":\"557\",\"name\":\"Zinnat 500mg Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"135.6500\",\"price\":\"135.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"557\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3430, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5062\",\"code\":\"558\",\"name\":\"ZINVITE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"558\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3431, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5063\",\"code\":\"559\",\"name\":\"Zinvite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.9900\",\"price\":\"6.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"zinvite-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"559\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3432, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4560\",\"code\":\"56\",\"name\":\"Asthalex Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"asthalex.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"56\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3433, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5064\",\"code\":\"560\",\"name\":\"ZIPMAN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"560\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3434, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5065\",\"code\":\"561\",\"name\":\"Zirtek Allegy 10mg Tablets 21&apos;s\",\"unit\":\"1\",\"cost\":\"71.5000\",\"price\":\"71.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"zirtek-allgy.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"561\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3435, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5066\",\"code\":\"562\",\"name\":\"Zubes Expectorant 125ml Syrup\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"562\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3436, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5067\",\"code\":\"563\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"563\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3437, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5068\",\"code\":\"564\",\"name\":\"Zulu 100mg Tablet\",\"unit\":\"1\",\"cost\":\"3.7800\",\"price\":\"3.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"564\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3438, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5069\",\"code\":\"565\",\"name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"unit\":\"1\",\"cost\":\"10.7800\",\"price\":\"10.7800\",\"alert_quantity\":\"20.0000\",\"image\":\"zymax.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"565\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3439, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5070\",\"code\":\"566\",\"name\":\"Teedar Syrup 125ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"teedar-syr.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"566\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3440, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5071\",\"code\":\"567\",\"name\":\"Virol blood tonic 200ml\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"virol.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"567\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3441, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5072\",\"code\":\"568\",\"name\":\"Asmadrin Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"asmadrin-2-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"568\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3442, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5073\",\"code\":\"569\",\"name\":\"Durol Tonic 300ml\",\"unit\":\"1\",\"cost\":\"12.4500\",\"price\":\"12.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"download-2.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"569\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3443, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4561\",\"code\":\"57\",\"name\":\"Atacand Plus 16\\/12.5mg\",\"unit\":\"1\",\"cost\":\"235.7300\",\"price\":\"235.7300\",\"alert_quantity\":\"20.0000\",\"image\":\"atacand.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"57\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3444, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5074\",\"code\":\"570\",\"name\":\"Finelife Blood Tonic 200ml\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"8.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"finelife-blood-tonic.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"570\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3445, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5075\",\"code\":\"571\",\"name\":\"Magacid Susp 200ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"magacid.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"571\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3446, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5076\",\"code\":\"572\",\"name\":\"Durol Tonic 200ml\",\"unit\":\"1\",\"cost\":\"9.1500\",\"price\":\"9.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"med2-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"572\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3447, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5077\",\"code\":\"573\",\"name\":\"Koffex Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"koffex-adt-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"573\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3448, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5078\",\"code\":\"574\",\"name\":\"Samalin Adult Cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-adt-125ml.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"574\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3449, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5079\",\"code\":\"575\",\"name\":\"Magacid Tab 25&apos;s\",\"unit\":\"1\",\"cost\":\"21.3000\",\"price\":\"21.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"Magacid-tab.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"575\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3450, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5080\",\"code\":\"576\",\"name\":\"Menthox Adult Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"menthox-syr.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"576\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3451, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5081\",\"code\":\"577\",\"name\":\"Martins liver salt(Lemon)25&apos;s\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"Martins-Liver-Salt.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"577\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3452, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5082\",\"code\":\"578\",\"name\":\"Magacid Fastmelt(all flavours)35&apos;s\",\"unit\":\"1\",\"cost\":\"12.6500\",\"price\":\"12.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"fastmeltIMG.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"578\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3453, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5083\",\"code\":\"579\",\"name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"unit\":\"1\",\"cost\":\"7.9400\",\"price\":\"7.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"SAMALIN-JNR-COUGH.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"579\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3454, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4562\",\"code\":\"58\",\"name\":\"Atacand 8mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"194.0000\",\"price\":\"194.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"58\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3455, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5084\",\"code\":\"580\",\"name\":\"Rhizin 10mg Tabs10x10\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"rhizin.jpg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"580\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3456, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5085\",\"code\":\"581\",\"name\":\"Starwin Milk of Magnesia 360ml\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"starwin-milk-of-M.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"581\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3457, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5086\",\"code\":\"582\",\"name\":\"APC TABS 10X10\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"apc-10S-2.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"582\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3458, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5087\",\"code\":\"583\",\"name\":\"Rapinol Tab 25X4&apos;s\",\"unit\":\"1\",\"cost\":\"13.7000\",\"price\":\"13.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"rapinol-tab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"583\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3459, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5088\",\"code\":\"584\",\"name\":\"Gluco-Naf C orange 400mg\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"gluconaf-c-orange.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"584\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3460, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5089\",\"code\":\"585\",\"name\":\"Samalin Lozenges 2x10&apos;s\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-loz1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"585\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3461, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5090\",\"code\":\"586\",\"name\":\"APC 50X4 TABS\",\"unit\":\"1\",\"cost\":\"28.1000\",\"price\":\"28.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"APC-Tablets.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"586\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3462, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5091\",\"code\":\"587\",\"name\":\"Whitfield ointment\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"whitfield-oint-40gm.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"587\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3463, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5092\",\"code\":\"588\",\"name\":\"Kwik Action Tablets 50x4\",\"unit\":\"1\",\"cost\":\"37.7000\",\"price\":\"37.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"KA.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"588\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3464, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5093\",\"code\":\"589\",\"name\":\"Dithranol ointment 40mg\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dithranol-oint-40mg.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"589\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3465, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4563\",\"code\":\"59\",\"name\":\"Atenolol 100mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"59\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3466, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5094\",\"code\":\"590\",\"name\":\"Calamine ointment 40mg\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"calamine-oint-40mg.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"590\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3467, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5095\",\"code\":\"591\",\"name\":\"Alugel Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"33.6000\",\"price\":\"33.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ALUGEL.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"591\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3468, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5096\",\"code\":\"592\",\"name\":\"Haemoglobin Syrup Aryton 200ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemo.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"592\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3469, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5097\",\"code\":\"593\",\"name\":\"Malafan Tabs 50&apos;s\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"malafan.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"593\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3470, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5098\",\"code\":\"594\",\"name\":\"Licntus Jnr. syr 100ml\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"594\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3471, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5099\",\"code\":\"595\",\"name\":\"Linctus Adult Cough syr. 100ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"595\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3472, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5100\",\"code\":\"596\",\"name\":\"Antasil Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"25.7000\",\"price\":\"25.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"Antasil-tab..png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"596\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3473, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5101\",\"code\":\"597\",\"name\":\"Vigorix Forte Syr 200ml\",\"unit\":\"1\",\"cost\":\"11.1000\",\"price\":\"11.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"vigorix-styr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"597\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3474, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5102\",\"code\":\"598\",\"name\":\"Paraking Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"paraking-scaled.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"598\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3475, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5103\",\"code\":\"599\",\"name\":\"Ferrodex Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"6.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"599\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3476, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4510\",\"code\":\"6\",\"name\":\"HORNY GOAT WEED 24CT\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"horny-goat-weed-24ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3477, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4564\",\"code\":\"60\",\"name\":\"Atorvastatin 20mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3478, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5104\",\"code\":\"600\",\"name\":\"Bella cough Syr 125ml\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"bella-cough-syr-125ml.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"600\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3479, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5105\",\"code\":\"601\",\"name\":\"PMF 200g\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"PMF.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"601\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3480, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5106\",\"code\":\"602\",\"name\":\"Sulphur Ointment 40g\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"SULPHUR-OINT.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"602\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3481, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5107\",\"code\":\"603\",\"name\":\"Panacin Tabs 25X4\",\"unit\":\"1\",\"cost\":\"10.8300\",\"price\":\"10.8300\",\"alert_quantity\":\"20.0000\",\"image\":\"PANACIN-TAB.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"603\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3482, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5108\",\"code\":\"604\",\"name\":\"Penicillin V 125mg Letap\",\"unit\":\"1\",\"cost\":\"11.3800\",\"price\":\"11.3800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"604\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3483, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5109\",\"code\":\"605\",\"name\":\"Linctus Junior Syr. 100ml\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"linctus-adt-syr-100ml-2.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"605\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3484, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5110\",\"code\":\"606\",\"name\":\"Rooter Life\",\"unit\":\"1\",\"cost\":\"35.9000\",\"price\":\"35.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooterlife.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"606\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3485, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5111\",\"code\":\"607\",\"name\":\"Rooter Tytonic\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"16.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"rooter-tytonic.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"607\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3486, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5112\",\"code\":\"608\",\"name\":\"Scimether Suspension\",\"unit\":\"1\",\"cost\":\"14.2100\",\"price\":\"14.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"scimether.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"608\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3487, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5113\",\"code\":\"609\",\"name\":\"Scimether 80\\/480mg Tablet\",\"unit\":\"1\",\"cost\":\"16.6600\",\"price\":\"16.6600\",\"alert_quantity\":\"20.0000\",\"image\":\"scimether-1.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"609\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3488, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4565\",\"code\":\"61\",\"name\":\"Atorvastatin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"61\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3489, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5114\",\"code\":\"610\",\"name\":\"Coartem 20\\/120mg Tablets 12&apos;s\",\"unit\":\"1\",\"cost\":\"18.3300\",\"price\":\"18.3300\",\"alert_quantity\":\"20.0000\",\"image\":\"coartem-20.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"610\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3490, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5115\",\"code\":\"611\",\"name\":\"Coartem 20\\/120mg Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"10.6800\",\"price\":\"10.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"c6.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"611\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3491, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5116\",\"code\":\"612\",\"name\":\"Sirdalud 2mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"43.7000\",\"price\":\"43.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"images-1.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"612\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3492, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5117\",\"code\":\"613\",\"name\":\"Sirdalud 4mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"92.1000\",\"price\":\"92.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-64.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"613\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3493, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5118\",\"code\":\"614\",\"name\":\"Diclofenac 75mg Tablets Sandoz 20&apos;s\",\"unit\":\"1\",\"cost\":\"15.0200\",\"price\":\"15.0200\",\"alert_quantity\":\"20.0000\",\"image\":\"dicl-sdz.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"614\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3494, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5119\",\"code\":\"615\",\"name\":\"Stericef 1 Gm Injection\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"stericef.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"615\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3495, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5120\",\"code\":\"616\",\"name\":\"Cetapol 500mg Tablet 2X10\",\"unit\":\"1\",\"cost\":\"2.5300\",\"price\":\"2.5300\",\"alert_quantity\":\"20.0000\",\"image\":\"cetapol-tab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"616\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3496, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5121\",\"code\":\"617\",\"name\":\"ORS Plain 25&apos;s\",\"unit\":\"1\",\"cost\":\"16.3100\",\"price\":\"16.3100\",\"alert_quantity\":\"20.0000\",\"image\":\"ors.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"617\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3497, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5122\",\"code\":\"618\",\"name\":\"Rizole Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"rizole-susp.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"618\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3498, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5123\",\"code\":\"619\",\"name\":\"Herbloz Lozenges (Orange) 300PCS\",\"unit\":\"1\",\"cost\":\"55.5400\",\"price\":\"55.5400\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"619\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3499, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4566\",\"code\":\"62\",\"name\":\"Augmentin  625mgTablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"72.6400\",\"price\":\"72.6400\",\"alert_quantity\":\"20.0000\",\"image\":\"images-2.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"62\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3500, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5124\",\"code\":\"620\",\"name\":\"Closol Cream\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"closol-cream.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"620\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3501, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5125\",\"code\":\"621\",\"name\":\"Vaginax Cream 30gm\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"vnax-scaled.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"621\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3502, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5126\",\"code\":\"622\",\"name\":\"Tacizol 400mg Tablet\",\"unit\":\"1\",\"cost\":\"0.7200\",\"price\":\"0.7200\",\"alert_quantity\":\"20.0000\",\"image\":\"tacizol.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"622\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3503, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5127\",\"code\":\"623\",\"name\":\"Tacizol Suspension\",\"unit\":\"1\",\"cost\":\"1.8800\",\"price\":\"1.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"tacizol-sus.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"623\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3504, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5128\",\"code\":\"624\",\"name\":\"Clopimol Tablet\",\"unit\":\"1\",\"cost\":\"17.2600\",\"price\":\"17.2600\",\"alert_quantity\":\"20.0000\",\"image\":\"IMG_20220103_165204_501-rotated.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"624\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3505, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5129\",\"code\":\"625\",\"name\":\"Eurovit Multivitamin Gummies Greeen\",\"unit\":\"1\",\"cost\":\"18.8800\",\"price\":\"18.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3506, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5130\",\"code\":\"626\",\"name\":\"Eurovit Multivitamin Gummies Strawberry\",\"unit\":\"1\",\"cost\":\"18.8800\",\"price\":\"18.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"eurovit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"626\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3507, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5131\",\"code\":\"627\",\"name\":\"Zipferon Capsule\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"4.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"zipferon-cap.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"627\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3508, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5132\",\"code\":\"628\",\"name\":\"Blocold Tablet\",\"unit\":\"1\",\"cost\":\"17.8200\",\"price\":\"17.8200\",\"alert_quantity\":\"20.0000\",\"image\":\"blocold.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"628\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3509, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5133\",\"code\":\"629\",\"name\":\"Gebedol Forte\",\"unit\":\"1\",\"cost\":\"17.2100\",\"price\":\"17.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"gb-forte.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"629\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3510, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4567\",\"code\":\"63\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"63\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3511, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5134\",\"code\":\"630\",\"name\":\"Deep Heat Rub 35g\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"31.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-rub.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"630\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3512, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5135\",\"code\":\"631\",\"name\":\"Deep Heat Spray 150ml\",\"unit\":\"1\",\"cost\":\"41.8000\",\"price\":\"41.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-spray.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"631\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3513, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5136\",\"code\":\"632\",\"name\":\"Fasipro Tablets (1*10)\",\"unit\":\"1\",\"cost\":\"7.9900\",\"price\":\"7.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"deep-heat-spray-1.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"632\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3514, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5137\",\"code\":\"633\",\"name\":\"Leorub Gel 30g\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"4.4300\",\"alert_quantity\":\"20.0000\",\"image\":\"leorub-gel.jpg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"633\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3515, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5138\",\"code\":\"634\",\"name\":\"Kamaclox Mouthwash 300ml\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"9.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"kamaclox-mouth-wash.jpg\",\"category_id\":\"1689\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"634\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3516, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5139\",\"code\":\"635\",\"name\":\"Omega Oil Liniment 50ml\",\"unit\":\"1\",\"cost\":\"8.6400\",\"price\":\"8.6400\",\"alert_quantity\":\"20.0000\",\"image\":\"omega-oil.jpg\",\"category_id\":\"1687\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"635\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3517, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5140\",\"code\":\"636\",\"name\":\"Hot Naso- Ephedrine Nasal Drop\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"4.5500\",\"alert_quantity\":\"20.0000\",\"image\":\"hot-naso.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"636\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3518, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5141\",\"code\":\"637\",\"name\":\"Cold Naso\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"3.0500\",\"alert_quantity\":\"20.0000\",\"image\":\"cold-naso.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"637\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3519, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5142\",\"code\":\"638\",\"name\":\"Calcicare Liquid\",\"unit\":\"1\",\"cost\":\"35.9600\",\"price\":\"35.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"calcicare-liquid.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"638\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3520, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5143\",\"code\":\"639\",\"name\":\"Vitane Drops 30ml\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"VITANE-DROPS.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"639\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3521, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4568\",\"code\":\"64\",\"name\":\"Azilex 250 Capsules 6&apos;s\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"azilex.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"64\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3522, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5144\",\"code\":\"640\",\"name\":\"Dextrose 5% Infusion 500ml\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"5.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"dextrose.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"640\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3523, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5145\",\"code\":\"641\",\"name\":\"Ringers Lactate 500ml\",\"unit\":\"1\",\"cost\":\"3.4600\",\"price\":\"3.4600\",\"alert_quantity\":\"20.0000\",\"image\":\"RINGERS.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"641\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3524, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5146\",\"code\":\"642\",\"name\":\"Omroz Injection- Omeprazol 40mg\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"9.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"omroz-inj.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"642\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3525, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5147\",\"code\":\"643\",\"name\":\"Candid Cream- Clotrimazole 1% 20mg\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"7.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-cream-clotri.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"643\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3526, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5148\",\"code\":\"644\",\"name\":\"Candid B Cream 15mg\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"8.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"CANDID-B.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"644\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3527, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5149\",\"code\":\"645\",\"name\":\"Candid V1-Clotrimazole 500mg Pessary 1&apos;s\",\"unit\":\"1\",\"cost\":\"7.2300\",\"price\":\"7.2300\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-v1-p.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"645\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3528, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5150\",\"code\":\"646\",\"name\":\"Candid V3-Clotrimazole 200mg Pessary\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"7.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"CANDID-V3.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"646\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3529, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5151\",\"code\":\"647\",\"name\":\"Candid V6-Clotrimazole 100mg Pessary\",\"unit\":\"1\",\"cost\":\"6.7700\",\"price\":\"6.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-V6.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"647\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3530, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5152\",\"code\":\"648\",\"name\":\"Candid V Gel 30gms\",\"unit\":\"1\",\"cost\":\"19.6800\",\"price\":\"19.6800\",\"alert_quantity\":\"20.0000\",\"image\":\"candid-v-gel.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"648\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3531, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5153\",\"code\":\"649\",\"name\":\"Candiderm Cream-Triple Action Cream 15mg\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"candiderm-cream.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"649\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3532, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4569\",\"code\":\"65\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"65\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3533, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5154\",\"code\":\"650\",\"name\":\"Bonnisan Syrup 120ml\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"bonnisan-syr.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"650\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3534, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5155\",\"code\":\"651\",\"name\":\"Confido Capsules 60&apos;s\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"confido-caps.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"651\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3535, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5156\",\"code\":\"652\",\"name\":\"Cystone Tablets\",\"unit\":\"1\",\"cost\":\"27.2000\",\"price\":\"27.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cystone.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"652\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3536, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5157\",\"code\":\"653\",\"name\":\"Evecare Syrup 200ml\",\"unit\":\"1\",\"cost\":\"26.9000\",\"price\":\"26.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"evecare-syr.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"653\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3537, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5158\",\"code\":\"654\",\"name\":\"Liv 52 Tablets\",\"unit\":\"1\",\"cost\":\"33.2100\",\"price\":\"33.2100\",\"alert_quantity\":\"20.0000\",\"image\":\"liv-52-tabs.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"654\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3538, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5159\",\"code\":\"655\",\"name\":\"Liv 52 Syrup\",\"unit\":\"1\",\"cost\":\"20.3000\",\"price\":\"20.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"live-52-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"655\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3539, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5160\",\"code\":\"656\",\"name\":\"Mentat Syrup\",\"unit\":\"1\",\"cost\":\"20.4000\",\"price\":\"20.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"mentat-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"656\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3540, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5161\",\"code\":\"657\",\"name\":\"Pilex Ointment\",\"unit\":\"1\",\"cost\":\"21.9000\",\"price\":\"21.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"pilex-oint.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"657\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3541, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5162\",\"code\":\"658\",\"name\":\"Koflet Lozenges (All Flavors)\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"koflet-loz.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"658\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3542, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5163\",\"code\":\"659\",\"name\":\"Renalka Syrup\",\"unit\":\"1\",\"cost\":\"23.8000\",\"price\":\"23.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"renalka.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"659\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3543, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4570\",\"code\":\"66\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"66\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3544, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5164\",\"code\":\"660\",\"name\":\"Speman Tablets\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"speman.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"660\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3545, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5165\",\"code\":\"661\",\"name\":\"Carbozap Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"carbozap-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"661\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3546, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5166\",\"code\":\"662\",\"name\":\"Ferofix Syrup 200ml\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"4.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"ferofix.jpg, ferfix-syr.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"662\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3547, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5167\",\"code\":\"663\",\"name\":\"Ferofix Capsules\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"magt-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"663\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3548, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5168\",\"code\":\"664\",\"name\":\"Azure-Retail\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tablets-medicine-supplement-vitamin-5620566.jpg\",\"category_id\":\"1690\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3549, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5169\",\"code\":\"665\",\"name\":\"GRMox (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"3.7200\",\"price\":\"3.7200\",\"alert_quantity\":\"20.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"665\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3550, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5170\",\"code\":\"666\",\"name\":\"Lumizap 80\\/480mg Tablets\",\"unit\":\"1\",\"cost\":\"5.8800\",\"price\":\"5.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"Lumizap-40-80.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"666\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3551, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5171\",\"code\":\"667\",\"name\":\"Lumizap Suspension 60ml\",\"unit\":\"1\",\"cost\":\"5.1900\",\"price\":\"5.1900\",\"alert_quantity\":\"20.0000\",\"image\":\"Lumizap-suspension.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"667\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3552, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5172\",\"code\":\"668\",\"name\":\"Vin C 100mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"19.6000\",\"price\":\"19.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"Vin-C.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"668\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3553, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5173\",\"code\":\"669\",\"name\":\"Zamac Tablets 100mg\",\"unit\":\"1\",\"cost\":\"3.1400\",\"price\":\"3.1400\",\"alert_quantity\":\"20.0000\",\"image\":\"IMG_20220103_161259_8442.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"669\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3554, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4571\",\"code\":\"67\",\"name\":\"B COMPLEX TAB LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"67\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3555, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5174\",\"code\":\"670\",\"name\":\"GRMox 500mg (Amoxicillin) Capsules 10x15\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"grmox-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"670\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3556, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5175\",\"code\":\"671\",\"name\":\"Lydia Postpill 1Tablet\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lydia-postpil.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"671\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3557, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5176\",\"code\":\"672\",\"name\":\"Kiss Condom Classic\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"kiss-classic.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"672\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3558, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5177\",\"code\":\"673\",\"name\":\"Kiss Condom Strawberry\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"2.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"kiss-strawberry.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"673\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3559, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5178\",\"code\":\"674\",\"name\":\"Fiesta Condom (All Flavours)\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"FIESTA.jpg\",\"category_id\":\"1683\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"674\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3560, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5179\",\"code\":\"675\",\"name\":\"Mr. Q\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"42.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"MR.-Q.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"675\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3561, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5180\",\"code\":\"676\",\"name\":\"Araba Ba Zhen Tablets\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"araba-ba.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"676\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3562, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5181\",\"code\":\"677\",\"name\":\"Potassium Citrate (Pot Cit\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"677\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3563, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5182\",\"code\":\"678\",\"name\":\"X\'mox (Amoxicillin)500mg Capsules 21&apos;s\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"Xmox-500mg-150x150-1.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"678\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3564, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5183\",\"code\":\"679\",\"name\":\"Coldrilif Syrup\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"Coldrilif-Syrup.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"679\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3565, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4572\",\"code\":\"68\",\"name\":\"Baby Cough Lintus 100ml ECL\",\"unit\":\"1\",\"cost\":\"5.0400\",\"price\":\"5.0400\",\"alert_quantity\":\"20.0000\",\"image\":\"BABY-CO.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"68\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3566, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5184\",\"code\":\"680\",\"name\":\"Methylated Spirit 60ml\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"2.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"680\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3567, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5185\",\"code\":\"681\",\"name\":\"Amaryl 2mg Tablet 30&apos;s\",\"unit\":\"1\",\"cost\":\"72.8000\",\"price\":\"72.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"Amaryl-2mg-Tablet.jpg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"681\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3568, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5186\",\"code\":\"682\",\"name\":\"Amaryl 4mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"160.7000\",\"price\":\"160.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"amaryl-4mg.jpg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"682\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3569, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5187\",\"code\":\"683\",\"name\":\"Amedin 10mg Tablets 28&apos;s\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"AMEDIN-10MG.jpg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"683\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3570, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5188\",\"code\":\"684\",\"name\":\"Augmentin 1g Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"75.8000\",\"price\":\"75.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"med3-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"684\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3571, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5189\",\"code\":\"685\",\"name\":\"Bioferon Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"23.5000\",\"price\":\"23.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"bioferon-capsules-30s.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"685\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3572, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5190\",\"code\":\"686\",\"name\":\"Cebrotonin 800mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"73.5000\",\"price\":\"73.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"cebrotonin.jpeg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"686\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3573, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5191\",\"code\":\"687\",\"name\":\"Ciprolex Eye Ointment 5g\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipro-eye-oint.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"687\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3574, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5192\",\"code\":\"688\",\"name\":\"Diclolex Power Heat Gel 30g\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"diclolex-gel.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"688\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3575, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5193\",\"code\":\"689\",\"name\":\"Ferrolex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrolex.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"689\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3576, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4573\",\"code\":\"69\",\"name\":\"Baseboom Gel\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1667\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"69\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3577, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5194\",\"code\":\"690\",\"name\":\"Herbloz Lozenges (Orange) 2*12\",\"unit\":\"1\",\"cost\":\"7.7700\",\"price\":\"7.7700\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"690\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3578, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5195\",\"code\":\"691\",\"name\":\"Herbloz Lozenges (Orange) 20X6\",\"unit\":\"1\",\"cost\":\"31.1000\",\"price\":\"31.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"691\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3579, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5196\",\"code\":\"692\",\"name\":\"Cartef-DS Tablet\",\"unit\":\"1\",\"cost\":\"8.3200\",\"price\":\"8.3200\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"692\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3580, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5197\",\"code\":\"693\",\"name\":\"Mist Sennaco ROKMER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"mist-cenaco.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"693\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3581, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5198\",\"code\":\"694\",\"name\":\"Methylated Spirit 200ml\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"7.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"spirit-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"694\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3582, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5199\",\"code\":\"695\",\"name\":\"Klire Tablet 10&apos;s\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-tab-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"695\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3583, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5200\",\"code\":\"696\",\"name\":\"Clear Inhaler 12&apos;s\",\"unit\":\"1\",\"cost\":\"29.5000\",\"price\":\"29.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"clear-inhaler.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"696\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3584, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5201\",\"code\":\"697\",\"name\":\"Haem Up Syrup 200ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"haemup.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"697\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3585, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5202\",\"code\":\"698\",\"name\":\"Feroclear Syrup 200ml\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"28.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"feroclear.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"698\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3586, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5203\",\"code\":\"699\",\"name\":\"Haemo Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"27.8000\",\"price\":\"27.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"hamforte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"699\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3587, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4511\",\"code\":\"7\",\"name\":\"JAGUAR KING 30000 - 24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"02MJ2.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"7\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3588, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4574\",\"code\":\"70\",\"name\":\"Basecold Syrup\",\"unit\":\"1\",\"cost\":\"3.9600\",\"price\":\"3.9600\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3589, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5204\",\"code\":\"700\",\"name\":\"Klire Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"15.2000\",\"price\":\"15.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-cough.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"700\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3590, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5205\",\"code\":\"701\",\"name\":\"Histergan Cream 25g\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"Histergan-2-cream.jpg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"701\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3591, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5206\",\"code\":\"702\",\"name\":\"Kefrox 125mg\\/5ml suspension 70ml\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"kefrox.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"702\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3592, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5207\",\"code\":\"703\",\"name\":\"Lexocap 20x10\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexocap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"703\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3593, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5208\",\"code\":\"704\",\"name\":\"Lexofen Plus Tablets 2x10\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"lexofen-plus.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"704\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3594, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5209\",\"code\":\"705\",\"name\":\"Klire Antacid Suspension 125ml\",\"unit\":\"1\",\"cost\":\"11.6000\",\"price\":\"11.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"klire-anes-1.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"705\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3595, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5210\",\"code\":\"706\",\"name\":\"Maalox Plus Suspension 250ml\",\"unit\":\"1\",\"cost\":\"40.9400\",\"price\":\"40.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"maalox-plus_5000x.png\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"706\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3596, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5211\",\"code\":\"707\",\"name\":\"Maalox Stick Packs 20&apos;s\",\"unit\":\"1\",\"cost\":\"34.1000\",\"price\":\"34.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"MAALOX-sachet.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"707\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3597, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5212\",\"code\":\"708\",\"name\":\"Ancigel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"14.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ancige.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"708\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3598, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5213\",\"code\":\"709\",\"name\":\"Metrolex F Tablets 21&apos;s\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"metrolex-f.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"709\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3599, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4575\",\"code\":\"71\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"71\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3600, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5214\",\"code\":\"710\",\"name\":\"Plaster roll 3Inches Xtra care\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"710\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3601, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5215\",\"code\":\"711\",\"name\":\"Plaster roll 4Inches Xtra care\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"plaster-2inc.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"711\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3602, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5216\",\"code\":\"712\",\"name\":\"Gudapet Syrup 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gudapet.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"712\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3603, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5217\",\"code\":\"713\",\"name\":\"Norvasc 10mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"272.4000\",\"price\":\"272.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"NORVASC-10.jpg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"713\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3604, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5218\",\"code\":\"714\",\"name\":\"Gudapet Capsules\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"gudapet-caps.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"714\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3605, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5219\",\"code\":\"715\",\"name\":\"Norvasc 5mg Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"172.8000\",\"price\":\"172.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"norvasc-5mg.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"715\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3606, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5220\",\"code\":\"716\",\"name\":\"Otrivin 0.1%Adult Nasal Drop 10ml\",\"unit\":\"1\",\"cost\":\"28.6000\",\"price\":\"28.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"otrivin-adult.jpg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"716\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3607, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5221\",\"code\":\"717\",\"name\":\"Ancigel O Suspension 200ml\",\"unit\":\"1\",\"cost\":\"14.8500\",\"price\":\"14.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"ancigel-o.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"717\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3608, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5222\",\"code\":\"718\",\"name\":\"Strobin Lozenges 25x6\",\"unit\":\"1\",\"cost\":\"25.5000\",\"price\":\"25.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"strobin-LOZ-1.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"718\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3609, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5223\",\"code\":\"719\",\"name\":\"Ventolin Inhaler\",\"unit\":\"1\",\"cost\":\"47.2000\",\"price\":\"47.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"VENT.jpg\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"719\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3610, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4576\",\"code\":\"72\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"72\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3611, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5224\",\"code\":\"720\",\"name\":\"Strobin Lozenges 54X6\",\"unit\":\"1\",\"cost\":\"52.7000\",\"price\":\"52.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"strobin-LOZ.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"720\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3612, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5225\",\"code\":\"721\",\"name\":\"Vitaforce Syrup 250ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitaforce.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"721\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3613, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5226\",\"code\":\"722\",\"name\":\"Lufart Suspension\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"lufart-scaled.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"722\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3614, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5227\",\"code\":\"723\",\"name\":\"Amurox Suspension (Cefuroxime Axetil)\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"amurox-1-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"723\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3615, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5228\",\"code\":\"724\",\"name\":\"X\'Zole F Suspension\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"7.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"exole-scaled.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"724\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3616, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5229\",\"code\":\"725\",\"name\":\"Tobufen (Ibuprofen)Syrup 100ml\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"tobufen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"725\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3617, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5230\",\"code\":\"726\",\"name\":\"Kofof Child Syrup 100ml\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"3.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"726\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3618, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5231\",\"code\":\"727\",\"name\":\"Kofof Family Syrup 150ml\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"6.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"kofof-syr.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"727\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3619, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5232\",\"code\":\"728\",\"name\":\"Drez Solution 100ml\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"DREZ-SOL-100ML.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"728\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3620, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5233\",\"code\":\"729\",\"name\":\"Crepe Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"4.3500\",\"price\":\"4.3500\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"729\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3621, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4577\",\"code\":\"73\",\"name\":\"Borges Olive Oil 125ml\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"borges.jpeg\",\"category_id\":\"1668\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"73\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3622, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5234\",\"code\":\"730\",\"name\":\"Livopat Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"25.9500\",\"price\":\"25.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"livopat.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"730\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3623, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5235\",\"code\":\"731\",\"name\":\"Crepe Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"CREPE-BAND.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"731\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3624, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5236\",\"code\":\"732\",\"name\":\"Neuropat Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"35.6000\",\"price\":\"35.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"neuropat_plus.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"732\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3625, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5237\",\"code\":\"733\",\"name\":\"Chlo Eye (Chloramphenicol) drops\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"chlo-eye.jpeg\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"733\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3626, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5238\",\"code\":\"734\",\"name\":\"Foligrow Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"foligrow-caps.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"734\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3627, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5239\",\"code\":\"735\",\"name\":\"Drez V Gel 30g\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"drez-v-gel.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"735\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3628, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5240\",\"code\":\"736\",\"name\":\"Amino pep Syrup 200ml\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"aminopep.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"736\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3629, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5241\",\"code\":\"737\",\"name\":\"Fabrin Tablets 50X4\",\"unit\":\"1\",\"cost\":\"30.8000\",\"price\":\"30.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"fabrin-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"737\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3630, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5242\",\"code\":\"738\",\"name\":\"Gauze Bandage 6 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"15.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"738\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3631, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5243\",\"code\":\"739\",\"name\":\"Gauze Bandage 3 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"9.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"739\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3632, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4578\",\"code\":\"74\",\"name\":\"Bells Teething Mixture\",\"unit\":\"1\",\"cost\":\"18.3000\",\"price\":\"18.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"bells-teething.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"74\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3633, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5244\",\"code\":\"740\",\"name\":\"Gauze Bandage 4 Inches Xtra Care\",\"unit\":\"1\",\"cost\":\"11.2000\",\"price\":\"11.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"gauze-3.jpg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"740\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3634, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5245\",\"code\":\"741\",\"name\":\"Amoxicillin 250mg Capsules 50x10 M&amp; G\",\"unit\":\"1\",\"cost\":\"88.9000\",\"price\":\"88.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"741\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3635, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5246\",\"code\":\"742\",\"name\":\"Blopen Gel 30g\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"blopen.jpeg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"742\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3636, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5247\",\"code\":\"743\",\"name\":\"Amoxicillin 500mg Capsules M&amp; G 10x10\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"33.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"743\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3637, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5248\",\"code\":\"744\",\"name\":\"Cafalgin Caplets 25x10\",\"unit\":\"1\",\"cost\":\"35.2000\",\"price\":\"35.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"cafalgen-scaled.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"744\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3638, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5249\",\"code\":\"745\",\"name\":\"Tobin&apos;s Cod Liver Oil 10X10\",\"unit\":\"1\",\"cost\":\"24.3000\",\"price\":\"24.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"cod-liver-oil.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"745\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3639, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5250\",\"code\":\"746\",\"name\":\"Emigivit (Multivitamin) Tablets 100x10\",\"unit\":\"1\",\"cost\":\"41.5800\",\"price\":\"41.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"emgivit.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"746\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3640, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5251\",\"code\":\"747\",\"name\":\"Tobcee Tablets 50&apos;s\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tobcee.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"747\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3641, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5252\",\"code\":\"748\",\"name\":\"Jeditone Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"748\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3642, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5253\",\"code\":\"749\",\"name\":\"Heptolif Tablets 50x2x10\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"heptolif-tab.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"749\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3643, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4579\",\"code\":\"75\",\"name\":\"Bendrofluazide 2.5mg Tablets 28s\",\"unit\":\"1\",\"cost\":\"6.7000\",\"price\":\"6.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"Bendrofluazide-2.5mg-Tablets-28s-UK.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3644, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5254\",\"code\":\"750\",\"name\":\"Paracetamol 500mg Tablet M&amp;G 100x10\",\"unit\":\"1\",\"cost\":\"77.0000\",\"price\":\"77.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3645, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5255\",\"code\":\"751\",\"name\":\"Paracetamol 500mg M&amp;G Tablets 50x10\",\"unit\":\"1\",\"cost\":\"39.1000\",\"price\":\"39.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"para.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"751\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3646, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5256\",\"code\":\"752\",\"name\":\"Proxicam  20mg Capsules 10x10\",\"unit\":\"1\",\"cost\":\"8.9400\",\"price\":\"8.9400\",\"alert_quantity\":\"20.0000\",\"image\":\"Piroxicam-Capsules.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"752\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3647, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5257\",\"code\":\"753\",\"name\":\"Zintab 20mg Disp Tablets 100x10\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zintab.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"753\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3648, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5258\",\"code\":\"754\",\"name\":\"Metrolex-F Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"metrolex-f-susp.jpg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"754\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3649, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5259\",\"code\":\"755\",\"name\":\"Ascoryl Plus syrup 125ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"ascoryl-plus.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"755\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3650, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5260\",\"code\":\"756\",\"name\":\"Cafalgin Junior Suspension 100ml\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"8.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"cafalgin-junior.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"756\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3651, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5261\",\"code\":\"757\",\"name\":\"Emigkof D Syrup100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"757\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3652, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5262\",\"code\":\"758\",\"name\":\"Emgiprofen Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgiprofen-scaled.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"758\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3653, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5263\",\"code\":\"759\",\"name\":\"Go Cough Syrup 125ml\",\"unit\":\"1\",\"cost\":\"5.9000\",\"price\":\"5.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"759\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3654, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4580\",\"code\":\"76\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"76\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3655, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5264\",\"code\":\"760\",\"name\":\"Emigkof S Syrup100ml\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"emgikof-d.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"760\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3656, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5265\",\"code\":\"761\",\"name\":\"Heptolif Syrup 200ml\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"11.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"heptolif.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"761\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3657, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5266\",\"code\":\"762\",\"name\":\"Mucosyl Junior Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"762\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3658, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5267\",\"code\":\"763\",\"name\":\"Mucosyl Adult Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"5.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"763\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3659, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5268\",\"code\":\"764\",\"name\":\"Polyfer Forte Syrup 200ml\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"polyfer-forte.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"764\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3660, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5269\",\"code\":\"765\",\"name\":\"Vitaglobin 200ml Syrup M &amp; G\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"8.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"vitaglobin-scaled.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"765\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3661, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5270\",\"code\":\"766\",\"name\":\"Vitamin B-Complex S yrup 125ml M &amp; G\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"766\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3662, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5271\",\"code\":\"767\",\"name\":\"Zerocid Plus Suspension 200ML\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"767\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3663, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5272\",\"code\":\"768\",\"name\":\"Zerocid Suspension 200ML\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"8.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"zerocid-plus.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"768\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3664, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5273\",\"code\":\"769\",\"name\":\"Metro F Suspension 100ml\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"769\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3665, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4581\",\"code\":\"77\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"77\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3666, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5274\",\"code\":\"770\",\"name\":\"Betasol Cream 30g\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"betasol-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"770\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3667, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5275\",\"code\":\"771\",\"name\":\"Diproson Cream 30g\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"3.1500\",\"alert_quantity\":\"20.0000\",\"image\":\"diproson-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"771\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3668, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5276\",\"code\":\"772\",\"name\":\"Diproson Lotion 30ml\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"3.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"diproson-lotion.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"772\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3669, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5277\",\"code\":\"773\",\"name\":\"Gogynax Cream 30g\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"4.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"gogynax-cream.jpg\",\"category_id\":\"1677\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"773\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3670, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5278\",\"code\":\"774\",\"name\":\"Gogynax Tablets 100mg\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"gogynax-tabs.jpg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"774\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3671, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5279\",\"code\":\"775\",\"name\":\"Ibucap Capsules 20&apos;s(Monopack)\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"1.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-cap.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"775\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3672, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5280\",\"code\":\"776\",\"name\":\"Ibucap Forte Capsules\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"2.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"ibucap-forte.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"776\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3673, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5281\",\"code\":\"777\",\"name\":\"Ketazol Shampoo 100ml\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"12.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ketazole.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"777\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3674, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5282\",\"code\":\"778\",\"name\":\"Kifaru 100mg Tablets\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"kifaru-100-1.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"778\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3675, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5283\",\"code\":\"779\",\"name\":\"Kifaru 50mg Tablets\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"kifaru-50.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"779\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3676, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4582\",\"code\":\"78\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"78\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3677, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5284\",\"code\":\"780\",\"name\":\"Leopard Balm 30g\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"5.7500\",\"alert_quantity\":\"20.0000\",\"image\":\"leopard-balm.jpg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3678, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5285\",\"code\":\"781\",\"name\":\"Magnavit Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"magnavit-cap.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"781\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3679, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5286\",\"code\":\"782\",\"name\":\"Magnavit Tonic 200ml\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"7.8500\",\"alert_quantity\":\"20.0000\",\"image\":\"med4.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"782\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3680, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5287\",\"code\":\"783\",\"name\":\"Omeshal Capsule 10X10 (Omeprazole)\",\"unit\":\"1\",\"cost\":\"14.4500\",\"price\":\"14.4500\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"783\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3681, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5288\",\"code\":\"784\",\"name\":\"Omeshal D Capsule (Omeprazole+Domperidone)10&apos;s\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"7.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"omeshal-d.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"784\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3682, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5289\",\"code\":\"785\",\"name\":\"Polygel Suspension 200ml\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"7.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"polygel.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"785\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3683, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5290\",\"code\":\"786\",\"name\":\"Rufedol Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"rufedol.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"786\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3684, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5291\",\"code\":\"787\",\"name\":\"Shal\'Artem Forte 80\\/480mg Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"787\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3685, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5292\",\"code\":\"788\",\"name\":\"Shal\'Artem Dry Syrup\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dry-syrup-1.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"788\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3686, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5293\",\"code\":\"789\",\"name\":\"Shal\'Artem 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"4.2500\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-tabs.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"789\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3687, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4583\",\"code\":\"79\",\"name\":\"Bioferon Syrup 200ml\",\"unit\":\"1\",\"cost\":\"24.1000\",\"price\":\"24.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"BIOFERON-S.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"79\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3688, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5294\",\"code\":\"790\",\"name\":\"Shalcip TZ Tablets 10&apos;s\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"shacip-tz.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"790\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3689, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5295\",\"code\":\"791\",\"name\":\"Shaltoux 4 Way Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-4way.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"791\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3690, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5296\",\"code\":\"792\",\"name\":\"Shaltoux Chesty Cough Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"5.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-cough.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"792\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3691, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5297\",\"code\":\"793\",\"name\":\"Shaltoux Natural Cough Lozenges 20X6\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"19.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"793\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3692, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5298\",\"code\":\"794\",\"name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"unit\":\"1\",\"cost\":\"45.5000\",\"price\":\"45.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"794\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3693, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5299\",\"code\":\"795\",\"name\":\"Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)\",\"unit\":\"1\",\"cost\":\"55.0000\",\"price\":\"55.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"shaltoux-loz-natural.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"795\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3694, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5300\",\"code\":\"796\",\"name\":\"Tanzol (Albendazol) 400mg\\/5ml Suspension 10ml\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"tanzol-susp.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"796\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3695, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5301\",\"code\":\"797\",\"name\":\"Tanzol (Albendazole) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"tanzol-tbs.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"797\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3696, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5302\",\"code\":\"798\",\"name\":\"Samalin Junior cough syrup 125ml\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"6.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"samalin-jnr.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"798\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3697, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5303\",\"code\":\"799\",\"name\":\"Starwin Milk of Magnesia 120ml\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"magacid-60ml.jpg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"799\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3698, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4512\",\"code\":\"8\",\"name\":\"STAMINA- RX   24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"stamina-rx-24ct.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3699, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4584\",\"code\":\"80\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"80\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3700, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5304\",\"code\":\"800\",\"name\":\"Ferrodex Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrodex-200ml.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"800\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3701, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5305\",\"code\":\"801\",\"name\":\"Painoff Tablets 25X4&apos;s\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"15.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"painoff.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"801\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3702, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5306\",\"code\":\"802\",\"name\":\"Citro C Tablets 25&apos;s\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"CITRO-C.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"802\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3703, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5307\",\"code\":\"803\",\"name\":\"Contreg Tablets 10x10\",\"unit\":\"1\",\"cost\":\"7.8400\",\"price\":\"7.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"contreg.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"803\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3704, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5308\",\"code\":\"804\",\"name\":\"Zinol 500mg Tablets (Paracetamol) 50X10\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-12.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"804\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3705, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5309\",\"code\":\"805\",\"name\":\"Luzatil 20\\/120mg Tablets 24&apos;s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"luzatil.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"805\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3706, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5310\",\"code\":\"806\",\"name\":\"Zinol (Paracetamol) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"4.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-15.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"806\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3707, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5311\",\"code\":\"807\",\"name\":\"BX Syrup 200ml\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"807\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3708, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5312\",\"code\":\"808\",\"name\":\"Contreg Syrup 30ml\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"contreg-syrup.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"808\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3709, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5313\",\"code\":\"809\",\"name\":\"Hemoforce Family Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"hemoforce-family.png\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"809\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3710, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4585\",\"code\":\"81\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"81\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3711, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5314\",\"code\":\"810\",\"name\":\"Hemoforce Plus Syrup 200ml\",\"unit\":\"1\",\"cost\":\"6.6500\",\"price\":\"6.6500\",\"alert_quantity\":\"20.0000\",\"image\":\"hemoforce-plus.jpeg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"810\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3712, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5315\",\"code\":\"811\",\"name\":\"Rufenac Gel 30g\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"rufenac-gel.jpeg\",\"category_id\":\"1688\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"811\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3713, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5316\",\"code\":\"812\",\"name\":\"Amciclox 250mg Capsules 10x10 Letap\",\"unit\":\"1\",\"cost\":\"30.6900\",\"price\":\"30.6900\",\"alert_quantity\":\"20.0000\",\"image\":\"amci.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"812\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3714, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5317\",\"code\":\"813\",\"name\":\"Ampicillin 250mg Capsules 50x10 Letap\",\"unit\":\"1\",\"cost\":\"78.1000\",\"price\":\"78.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"ampic.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"813\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3715, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5318\",\"code\":\"814\",\"name\":\"Ascorbin Syrup 100ml\",\"unit\":\"1\",\"cost\":\"2.8800\",\"price\":\"2.8800\",\"alert_quantity\":\"20.0000\",\"image\":\"ascorbin-c-syr.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"814\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3716, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5319\",\"code\":\"815\",\"name\":\"Ascorbin 100mg (Vitamin C) Tablets 30x10\",\"unit\":\"1\",\"cost\":\"13.5800\",\"price\":\"13.5800\",\"alert_quantity\":\"20.0000\",\"image\":\"ASCOBIN.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"815\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3717, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5320\",\"code\":\"816\",\"name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"2.6900\",\"alert_quantity\":\"20.0000\",\"image\":\"chloram.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"816\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3718, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5321\",\"code\":\"817\",\"name\":\"Dynewell Syrup 200ml\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"dynewell-syr.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"817\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3719, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5322\",\"code\":\"818\",\"name\":\"Dynewell Tablet 50x10\",\"unit\":\"1\",\"cost\":\"12.9800\",\"price\":\"12.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"download-4.jpeg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"818\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3720, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5323\",\"code\":\"819\",\"name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"folic.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"819\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3721, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4586\",\"code\":\"82\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"82\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3722, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5324\",\"code\":\"820\",\"name\":\"Indomethacin 25mg Capsules 50x10 Letap\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"indome.jpg\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"820\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3723, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5325\",\"code\":\"821\",\"name\":\"Letafen (Ibuprofen) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"childcare.jpg\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"821\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3724, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5326\",\"code\":\"822\",\"name\":\"Letalin Expectorant Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"letalin-1.jpg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"822\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3725, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5327\",\"code\":\"823\",\"name\":\"Macrafolin Syrup 125ml\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"1.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"macrofolin.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"823\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3726, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5328\",\"code\":\"824\",\"name\":\"Promecine Syrup 125ml\",\"unit\":\"1\",\"cost\":\"2.8400\",\"price\":\"2.8400\",\"alert_quantity\":\"20.0000\",\"image\":\"promecian.jpg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"824\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3727, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5329\",\"code\":\"825\",\"name\":\"Vitamin B-Complex Tablets 100x10 Letap\",\"unit\":\"1\",\"cost\":\"20.9500\",\"price\":\"20.9500\",\"alert_quantity\":\"20.0000\",\"image\":\"vitB.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"825\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3728, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5330\",\"code\":\"826\",\"name\":\"Vitamin B-12 (Finest Nutrition\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"826\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3729, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5331\",\"code\":\"827\",\"name\":\"test\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"827\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3730, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5332\",\"code\":\"828\",\"name\":\"Decatylen Lozenges 20s\",\"unit\":\"1\",\"cost\":\"37.0000\",\"price\":\"37.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"828\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3731, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5333\",\"code\":\"829\",\"name\":\"Amlodipine 10mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"amlodi.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"829\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3732, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4587\",\"code\":\"83\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"83\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3733, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5334\",\"code\":\"830\",\"name\":\"Amlodipine 5mg Tablets 28s Teva\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"amlo-5.jpeg\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"830\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3734, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5335\",\"code\":\"831\",\"name\":\"Amoksiklav 625mg Tablet 14s\",\"unit\":\"1\",\"cost\":\"33.3000\",\"price\":\"33.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"amoksik-1.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"831\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3735, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5336\",\"code\":\"832\",\"name\":\"B-Complex Syrup 100ml (Jacket)\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"4.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"832\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3736, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5337\",\"code\":\"833\",\"name\":\"B-Complex Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"9.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"833\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3737, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5338\",\"code\":\"834\",\"name\":\"Bendrofluazide 5mg Tablets 28s UK\",\"unit\":\"1\",\"cost\":\"11.7000\",\"price\":\"11.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"834\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3738, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5339\",\"code\":\"835\",\"name\":\"Cprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"48.0000\",\"price\":\"48.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"835\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3739, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5340\",\"code\":\"836\",\"name\":\"Clotrimazole 1% Cream 20g ECL\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"2.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"836\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3740, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5341\",\"code\":\"837\",\"name\":\"Metronidazole 400mg tabs 21&apos;s Exeter\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"6.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"metro.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"837\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3741, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5342\",\"code\":\"838\",\"name\":\"Multivitamin Tablets 50x10 Ecl\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"multivi.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"838\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3742, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5343\",\"code\":\"839\",\"name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1675\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"839\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3743, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4588\",\"code\":\"84\",\"name\":\"Bonaplex Syrup 250ml\",\"unit\":\"1\",\"cost\":\"18.9000\",\"price\":\"18.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"BONAPLEX.jpg\",\"category_id\":\"1661\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"84\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3744, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5344\",\"code\":\"840\",\"name\":\"Doxycycline 100mg Capsules 200s ECL\",\"unit\":\"1\",\"cost\":\"57.6000\",\"price\":\"57.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"DOXY.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"840\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3745, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5345\",\"code\":\"841\",\"name\":\"Metoclopramide 10mg Tablets 28&apos;s uk\",\"unit\":\"1\",\"cost\":\"16.7000\",\"price\":\"16.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"841\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3746, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5346\",\"code\":\"842\",\"name\":\"Neflucon(Fluconazole)150mg Capsule\",\"unit\":\"1\",\"cost\":\"2.9900\",\"price\":\"2.9900\",\"alert_quantity\":\"20.0000\",\"image\":\"nefluco.jpeg\",\"category_id\":\"1674\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"842\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3747, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5347\",\"code\":\"843\",\"name\":\"Nexium 20mg Tablets 14&apos;s\",\"unit\":\"1\",\"cost\":\"99.3000\",\"price\":\"99.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1666\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"843\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3748, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5348\",\"code\":\"844\",\"name\":\"Enafen (Ibuprufen) 400mg Tablets\",\"unit\":\"1\",\"cost\":\"78.0000\",\"price\":\"78.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"844\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3749, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5349\",\"code\":\"845\",\"name\":\"Teething Mixture 100ml ECL\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"9.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"ECL-TEETHING.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"845\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3750, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5350\",\"code\":\"846\",\"name\":\"Nodium(Loperamide) Capsules 100&apos;s\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"846\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3751, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5351\",\"code\":\"847\",\"name\":\"Paracetamol 500mg Tablets 16&apos;s uk\",\"unit\":\"1\",\"cost\":\"4.7100\",\"price\":\"4.7100\",\"alert_quantity\":\"20.0000\",\"image\":\"para-16.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"847\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3752, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5352\",\"code\":\"848\",\"name\":\"Exetmomol (Timolol) Eye drops 0.5%\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"4.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1671\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"848\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3753, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5353\",\"code\":\"849\",\"name\":\"Paracetamol Syrup 100ml Exeter\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"4.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"849\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3754, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4589\",\"code\":\"85\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bongela-adult.jpeg\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"85\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3755, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5354\",\"code\":\"850\",\"name\":\"Exforge 10\\/160mg Tablets 28s\",\"unit\":\"1\",\"cost\":\"168.6000\",\"price\":\"168.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1665\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"850\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3756, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5355\",\"code\":\"851\",\"name\":\"Extraflex Glucosamine Chondroitin Capsules 30s\",\"unit\":\"1\",\"cost\":\"36.8000\",\"price\":\"36.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"851\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3757, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5356\",\"code\":\"852\",\"name\":\"Flucloxacillin 500mg Capsules 28s UK\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"13.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"852\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3758, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5357\",\"code\":\"853\",\"name\":\"Folic Acid Tablets 5mg 28s UK\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"7.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"853\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3759, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5358\",\"code\":\"854\",\"name\":\"Histazine (Cetrizine) Tablets 10mg 100s\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"histazine.jpeg\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"854\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3760, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5359\",\"code\":\"855\",\"name\":\"Hydrocortisone 1% Cream (Lavina)\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"4.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"855\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3761, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5360\",\"code\":\"856\",\"name\":\"Kidivite Child Multivitamin Syrup 150ml\",\"unit\":\"1\",\"cost\":\"19.9000\",\"price\":\"19.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"856\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3762, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5361\",\"code\":\"857\",\"name\":\"Hydrogen Peroxide 200ml ECL\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"5.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"857\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3763, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5362\",\"code\":\"858\",\"name\":\"Baby Cough Linctus 125ml ECL\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"5.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"858\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3764, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5363\",\"code\":\"859\",\"name\":\"Neoferon Capsules 30s\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"9.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"859\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3765, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4590\",\"code\":\"86\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"86\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3766, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5364\",\"code\":\"860\",\"name\":\"Nesben (Albendazole) Suspension 100mg\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"5.9800\",\"alert_quantity\":\"20.0000\",\"image\":\"nesben.jpg\",\"category_id\":\"1684\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"860\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3767, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5365\",\"code\":\"861\",\"name\":\"Permoxyl (Amoxicillin) Suspension 100ml\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"6.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"861\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3768, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5366\",\"code\":\"862\",\"name\":\"Folic Acid Tablets 50X10 ECL\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"11.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"862\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3769, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5367\",\"code\":\"863\",\"name\":\"Secnidex 1g Tablets 2s\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"863\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3770, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5368\",\"code\":\"864\",\"name\":\"Stopkof Cold &amp; Catarrh Tablets 12s\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"7.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"864\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3771, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5369\",\"code\":\"865\",\"name\":\"Sildenafil 50mg Tablets Teva 4s\",\"unit\":\"1\",\"cost\":\"10.6000\",\"price\":\"10.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"silf.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"865\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3772, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5370\",\"code\":\"866\",\"name\":\"Glucophage 500mg Tablets 30s\",\"unit\":\"1\",\"cost\":\"23.9000\",\"price\":\"23.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"GLUCOPHAGE.jpeg\",\"category_id\":\"1680\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"866\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3773, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5371\",\"code\":\"867\",\"name\":\"Actifed 60mg Tablets 12s\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"14.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"ACTIFED.jpeg\",\"category_id\":\"1663\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"867\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3774, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5372\",\"code\":\"868\",\"name\":\"Ciprinol 500mg Tablets 10s\",\"unit\":\"1\",\"cost\":\"62.0000\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"cipri.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"868\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3775, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5373\",\"code\":\"869\",\"name\":\"Ferrovita B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"31.5000\",\"price\":\"31.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"ferrovita-B12-200ML-SYRUP-EASYLIFE.jpg\",\"category_id\":\"1662\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"869\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3776, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4591\",\"code\":\"87\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"87\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3777, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5374\",\"code\":\"870\",\"name\":\"Vikil 20\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"26.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"vikil.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"870\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3778, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5375\",\"code\":\"871\",\"name\":\"Gana Balm 100g\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"19.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"gana.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"871\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3779, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5376\",\"code\":\"872\",\"name\":\"Gana Balm 20g\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"4.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"gana-balm.jpeg\",\"category_id\":\"1657\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"872\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3780, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5377\",\"code\":\"873\",\"name\":\"Tinatett Malakare 500ml\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"17.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"malakare.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"873\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3781, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5378\",\"code\":\"874\",\"name\":\"Tinatett Tomac Mixture 500ml\",\"unit\":\"1\",\"cost\":\"22.9000\",\"price\":\"22.9000\",\"alert_quantity\":\"20.0000\",\"image\":\"tomac.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"874\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3782, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5379\",\"code\":\"875\",\"name\":\"Tinatett 230 Herbal Capsules\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"230.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"875\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3783, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5380\",\"code\":\"876\",\"name\":\"Tinatett Bf Bf Capsules\",\"unit\":\"1\",\"cost\":\"26.4000\",\"price\":\"26.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"876\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3784, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5381\",\"code\":\"877\",\"name\":\"Hayan Capsules\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"hayan.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"877\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3785, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5382\",\"code\":\"878\",\"name\":\"Givers Koo Capsules\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"22.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"GIVERS-KOO.jpg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"878\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3786, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5383\",\"code\":\"879\",\"name\":\"Givers Herbal Mixture\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"13.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"GIVERS-HERBAL.jpeg\",\"category_id\":\"1659\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"879\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3787, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4592\",\"code\":\"88\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"88\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3788, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5384\",\"code\":\"880\",\"name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"5.1000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1678\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"880\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3789, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5385\",\"code\":\"881\",\"name\":\"Amoksiklav 228mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"21.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"amok.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"881\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3790, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5386\",\"code\":\"882\",\"name\":\"Auntie Mary Gripewater 150ml\",\"unit\":\"1\",\"cost\":\"9.4700\",\"price\":\"9.4700\",\"alert_quantity\":\"20.0000\",\"image\":\"auntie-mary.jpeg\",\"category_id\":\"1658\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"882\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3791, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5387\",\"code\":\"883\",\"name\":\"Kidivite Syrup 200ml\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"9.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"883\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3792, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5388\",\"code\":\"884\",\"name\":\"Zymax (Azithromycin) Capsules 500mg\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"13.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"zymzx.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"884\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3793, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5389\",\"code\":\"885\",\"name\":\"Tadol 50mg Capsules 20&apos;s\",\"unit\":\"1\",\"cost\":\"56.0000\",\"price\":\"56.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tadol.jpg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"885\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3794, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5390\",\"code\":\"886\",\"name\":\"Fluxamox 500mg Capsules 200&apos;s\",\"unit\":\"1\",\"cost\":\"108.0000\",\"price\":\"108.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"886\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3795, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5391\",\"code\":\"887\",\"name\":\"Fluxacin 500mg Capsules 20X10\",\"unit\":\"1\",\"cost\":\"122.4000\",\"price\":\"122.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"887\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3796, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5392\",\"code\":\"888\",\"name\":\"Metagyl 200mg Tablets 50x10\",\"unit\":\"1\",\"cost\":\"45.6000\",\"price\":\"45.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"metagyl.jpg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"888\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3797, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5393\",\"code\":\"889\",\"name\":\"Fluxacin 100ml Suspension\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"7.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"889\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3798, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4593\",\"code\":\"89\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"89\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3799, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5394\",\"code\":\"890\",\"name\":\"Enacef (Cefuroxime)125ml Suspension\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"14.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"890\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3800, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5395\",\"code\":\"891\",\"name\":\"Menthodex 200ml Syrup\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"images-3.jpeg\",\"category_id\":\"1664\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"891\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3801, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5396\",\"code\":\"892\",\"name\":\"Cyprodine 200ml Syrup\",\"unit\":\"1\",\"cost\":\"32.8000\",\"price\":\"32.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1673\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"892\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3802, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5397\",\"code\":\"893\",\"name\":\"Amoksiklav 457mg\\/5ml Suspension 70ml\",\"unit\":\"1\",\"cost\":\"27.5000\",\"price\":\"27.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-61.jpeg\",\"category_id\":\"1660\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"893\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3803, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5398\",\"code\":\"894\",\"name\":\"Malar-2 Suspension 60ml\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"10.4000\",\"alert_quantity\":\"20.0000\",\"image\":\"malar-2-sus.jpg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"894\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3804, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5399\",\"code\":\"895\",\"name\":\"Malar-2 Forte DS Tablets 6&apos;s\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"10.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"malar-2.jpeg\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"895\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3805, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5400\",\"code\":\"896\",\"name\":\"Nexcofer Capsules 30&apos;s\",\"unit\":\"1\",\"cost\":\"7.1800\",\"price\":\"7.1800\",\"alert_quantity\":\"20.0000\",\"image\":\"nex-cap.jpeg\",\"category_id\":\"1691\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"896\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3806, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5401\",\"code\":\"897\",\"name\":\"BG Glutamin Plus Tablets 30&apos;s\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"14.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"897\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3807, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5402\",\"code\":\"898\",\"name\":\"Comit-50\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"898\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3808, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5403\",\"code\":\"899\",\"name\":\"Klovinal Pessaries\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"23.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"download-2022-04-14T103520.858.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"899\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3809, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4513\",\"code\":\"9\",\"name\":\"AIRHEAD BITES FRUIT 24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"airhead-bites-fruit-24ct.jpg\",\"category_id\":\"1655\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"9\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3810, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4594\",\"code\":\"90\",\"name\":\"BRAINWESE OMEGA 3  150ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"90\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3811, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4595\",\"code\":\"91\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"91\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3812, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4596\",\"code\":\"92\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"92\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3813, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4597\",\"code\":\"93\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"93\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3814, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4598\",\"code\":\"94\",\"name\":\"BX Syrup 100ml\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"5.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"BX-SYRUP.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"94\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3815, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4599\",\"code\":\"95\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"95\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3816, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4600\",\"code\":\"96\",\"name\":\"Calcium B12 Syrup 200ml\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"3.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"cal-b12.jpg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"96\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3817, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4601\",\"code\":\"97\",\"name\":\"Calpol Infant 2+Suspension 100ml\",\"unit\":\"1\",\"cost\":\"46.3000\",\"price\":\"46.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"calpol.jpeg\",\"category_id\":\"1669\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"97\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3818, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4602\",\"code\":\"98\",\"name\":\"Calpol 6+ Suspension 80ml\",\"unit\":\"1\",\"cost\":\"36.4900\",\"price\":\"36.4900\",\"alert_quantity\":\"20.0000\",\"image\":\"cal-6.jpeg\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"98\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3819, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"4603\",\"code\":\"99\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"99\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 02:25:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3820, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5718\",\"code\":\"315\",\"name\":\"LEVOTHROXINE 50MG North Star\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"315\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 10:31:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3821, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5505\",\"code\":\"102\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"102\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-09 11:31:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3822, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5643\",\"code\":\"240\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"240\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-10 06:22:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3823, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5894\",\"code\":\"491\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"491\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-10 06:23:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3824, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5935\",\"code\":\"532\",\"name\":\"VITAMILK  BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"532\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-10 06:23:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3825, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5941\",\"code\":\"538\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-10 06:24:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3826, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5942\",\"code\":\"539\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"539\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-10 06:24:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3827, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"45\",\"date\":\"2022-09-10 17:37:00\",\"reference_no\":\"SALE2022\\/09\\/0009\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cbdfabf9f29bf629a389afa36719dc5393b46a29a6e4852825df3048310299f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"135\",\"sale_id\":\"45\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 13:50:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3828, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"46\",\"date\":\"2022-09-10 17:30:00\",\"reference_no\":\"SALE2022\\/09\\/0010\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"315.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"315.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"aff7a6a21e121eb7111ebb71d0496185899fcfd761394ee75447d86981e834b2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"136\",\"sale_id\":\"46\",\"product_id\":\"5404\",\"product_code\":\"1\",\"product_name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"137\",\"sale_id\":\"46\",\"product_id\":\"5409\",\"product_code\":\"6\",\"product_name\":\"HORNY GOAT WEED 24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"horny-goat-weed-24ct.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"138\",\"sale_id\":\"46\",\"product_id\":\"5467\",\"product_code\":\"64\",\"product_name\":\"Azilex 250 Capsules 6\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"70.0000\",\"serial_no\":\"\",\"real_unit_price\":\"14.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"azilex.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 13:50:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3829, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"44\",\"date\":\"2022-09-10 17:26:00\",\"reference_no\":\"SALE2022\\/09\\/0008\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"288.1000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"288.1000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2022-09-10 17:29:39\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"68859c4d604080d74997fe0783a90927f2ba73c929135e6292d759c388cd3779\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"123\",\"sale_id\":\"44\",\"product_id\":\"5407\",\"product_code\":\"4\",\"product_name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"124\",\"sale_id\":\"44\",\"product_id\":\"5415\",\"product_code\":\"12\",\"product_name\":\"3CP Disinfectant Liquid Original \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"e1cae721320e6e66b16fef807632704d.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"125\",\"sale_id\":\"44\",\"product_id\":\"5448\",\"product_code\":\"45\",\"product_name\":\"Apetatrust 200ml Syrup\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.5000\",\"serial_no\":\"\",\"real_unit_price\":\"14.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"126\",\"sale_id\":\"44\",\"product_id\":\"5572\",\"product_code\":\"169\",\"product_name\":\"DICLOKIN\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"127\",\"sale_id\":\"44\",\"product_id\":\"5723\",\"product_code\":\"320\",\"product_name\":\"Bells Liquid Parafin BP 100ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"bells-paraffin.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"128\",\"sale_id\":\"44\",\"product_id\":\"5817\",\"product_code\":\"414\",\"product_name\":\"PARA UK\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"129\",\"sale_id\":\"44\",\"product_id\":\"6344\",\"product_code\":\"941\",\"product_name\":\"Perfectil platinum 60\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"220.0000\",\"unit_price\":\"220.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"220.0000\",\"serial_no\":\"\",\"real_unit_price\":\"220.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"91d1933823e40564d7a3c8b54c9c0b19.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"130\",\"sale_id\":\"44\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.3000\",\"serial_no\":\"\",\"real_unit_price\":\"2.3000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"kiss-classic.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"131\",\"sale_id\":\"44\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.3000\",\"serial_no\":\"\",\"real_unit_price\":\"2.3000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"kiss-strawberry.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"132\",\"sale_id\":\"44\",\"product_id\":\"5410\",\"product_code\":\"7\",\"product_name\":\"JAGUAR KING 30000 - 24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"02MJ2.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"133\",\"sale_id\":\"44\",\"product_id\":\"5521\",\"product_code\":\"118\",\"product_name\":\"CHOCOLATE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"134\",\"sale_id\":\"44\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 13:50:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3830, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"43\",\"date\":\"2022-09-10 17:09:00\",\"reference_no\":\"SALE2022\\/09\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0e6d1e0f2d0b3c69847b7fc075aa7ff6840bf00c9e5fe5febcd52f26d96ea929\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"113\",\"sale_id\":\"43\",\"product_id\":\"5408\",\"product_code\":\"5\",\"product_name\":\"ALKA SELTZ PLS COLD 20\\/2\'s BOX\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"alka-seltz-pls-cold-202s-box.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"114\",\"sale_id\":\"43\",\"product_id\":\"5404\",\"product_code\":\"1\",\"product_name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 13:50:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3831, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"58\",\"date\":\"2022-09-10 20:04:26\",\"reference_no\":\"FMMS\\/POS0041\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"5b6bc80134bad259330f640b3e049fa21988b298f5ce732289c67339a8c706b3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"150\",\"sale_id\":\"58\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3832, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"57\",\"date\":\"2022-09-10 19:57:39\",\"reference_no\":\"FMMS\\/POS0040\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"49b413369c02e70f2d9b3e60882365808969fbac35c5ef33c31f7ec49cac2e92\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"149\",\"sale_id\":\"57\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3833, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"56\",\"date\":\"2022-09-10 19:48:09\",\"reference_no\":\"FMMS\\/POS0039\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"b4d4bcf6aa3d43b6117efcf6293984c6bc818896c100d4c6fc9939859c114055\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"148\",\"sale_id\":\"56\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3834, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"55\",\"date\":\"2022-09-10 19:45:46\",\"reference_no\":\"SALE\\/POS0038\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"0d12408e4b822c35dcb7473910b35386101d3b221015b0725a2641164bdb9962\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"147\",\"sale_id\":\"55\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3835, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"54\",\"date\":\"2022-09-10 19:43:14\",\"reference_no\":\"FMMS\\/POS0037\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"2782d99d001b54ceec6141bf591381cddc650bd14f3b207ff7c5ed9e0b4c23e2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"146\",\"sale_id\":\"54\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3836, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"53\",\"date\":\"2022-09-10 19:38:25\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0036\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"6a2b45f16031fb8ff4b71894e72b0cae9ffd02e5a511de46774bacb2a7528409\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"145\",\"sale_id\":\"53\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3837, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"52\",\"date\":\"2022-09-10 19:26:48\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0035\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"799758c8028b98aed465f875d46ecfcc5f586c54283bb7b631efdab6bdba369a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"144\",\"sale_id\":\"52\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3838, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"49\",\"date\":\"2022-09-10 18:09:03\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0034\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"61010ed1aaccfcdedb9492a82789977462dff8b668746b5aa067d062718a60f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"141\",\"sale_id\":\"49\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3839, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"48\",\"date\":\"2022-09-10 18:04:49\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0033\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.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\":\"072c8a35974c742f410f7083a5075be9515eca4e114b30cb3e8f22d52b04389d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"140\",\"sale_id\":\"48\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3840, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"42\",\"date\":\"2022-09-10 17:05:36\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0032\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"137.9000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"137.9000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"1\",\"paid\":\"137.9000\",\"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\":\"0f16d9f85f4bfe6f611468568fdc861bc79fb7a57aa1479d56ce3016d572b3d6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"110\",\"sale_id\":\"42\",\"product_id\":\"5968\",\"product_code\":\"565\",\"product_name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.7800\",\"unit_price\":\"10.7800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.9000\",\"serial_no\":\"\",\"real_unit_price\":\"10.7800\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"zymax.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"111\",\"sale_id\":\"42\",\"product_id\":\"5468\",\"product_code\":\"65\",\"product_name\":\"AZIRON 500MG TABS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"112\",\"sale_id\":\"42\",\"product_id\":\"5467\",\"product_code\":\"64\",\"product_name\":\"Azilex 250 Capsules 6\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"real_unit_price\":\"14.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\":\"azilex.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:09:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3841, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"61\",\"date\":\"2022-09-10 20:46:00\",\"reference_no\":\"FMMS0016\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"467a53fb7dcc87b379a53de556591caa37fd58d3d5cd1ee1bfbd8a6bc94a791d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"155\",\"sale_id\":\"61\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3842, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"60\",\"date\":\"2022-09-10 20:43:00\",\"reference_no\":\"FMMS0015\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"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\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"e2eb632a11e62a8ad697456e24d947f4b2e9362281838298256bd1b11f0bf796\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"152\",\"sale_id\":\"60\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"153\",\"sale_id\":\"60\",\"product_id\":\"5782\",\"product_code\":\"379\",\"product_name\":\"NANA ADJEI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"154\",\"sale_id\":\"60\",\"product_id\":\"5405\",\"product_code\":\"2\",\"product_name\":\"DAYQUIL 2\'s DISP.  (25 CT)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"dayquil-2s-disp-25-ct.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3843, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"59\",\"date\":\"2022-09-10 20:09:00\",\"reference_no\":\"FMMS0014\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"30f50837c4569ae4ac099ce842f9f07a254b0b3721daa61da5c7eefb88785559\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"151\",\"sale_id\":\"59\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3844, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"51\",\"date\":\"2022-09-10 18:48:00\",\"reference_no\":\"SALE2022\\/09\\/0013\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9d617d6ee7227eeac4eb6f896ac4b55c9d9c65fafc2e270c0633add78c0e4bbe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"143\",\"sale_id\":\"51\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3845, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"50\",\"date\":\"2022-09-10 18:17:00\",\"reference_no\":\"SALE2022\\/09\\/0012\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"48.2000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"48.2000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2e6c29127d1cb0b4314dea2c82b919183449b866aa8145d7f4b90c0bce5eda3e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"142\",\"sale_id\":\"50\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"48.2000\",\"unit_price\":\"48.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.2000\",\"serial_no\":\"\",\"real_unit_price\":\"48.2000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"1000amok.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3846, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"47\",\"date\":\"2022-09-10 17:51:00\",\"reference_no\":\"SALE2022\\/09\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9164cc2ba395d9262e1e3fa80f9f157fe3c1af10337ad11d44ed3f4c51d593cb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"139\",\"sale_id\":\"47\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-10 16:49:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3847, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"2\",\"date\":\"2022-09-11 20:58:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"48.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"stuhy\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"8\",\"suspend_id\":\"2\",\"product_id\":\"5994\",\"product_code\":\"591\",\"product_name\":\"Alugel Tablets 50\'s\",\"net_unit_price\":\"33.6000\",\"unit_price\":\"33.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"33.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"7\",\"suspend_id\":\"2\",\"product_id\":\"6111\",\"product_code\":\"708\",\"product_name\":\"Ancigel Suspension 200ml\",\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-11 17:01:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3848, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"75\",\"date\":\"2022-09-11 21:17:00\",\"reference_no\":\"FMMS\\/POS0043\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":null,\"total\":\"-33.6000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"-33.6000\",\"sale_status\":\"returned\",\"payment_status\":\"paid\",\"payment_term\":null,\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":null,\"pos\":\"1\",\"paid\":\"-33.6000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR0001\",\"sale_id\":\"74\",\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":null,\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2022-09-11 17:32:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3849, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"74\",\"date\":\"2022-09-11 21:01:00\",\"reference_no\":\"FMMS\\/POS0043\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33.6000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"33.6000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":\"5\",\"updated_at\":\"2022-09-11 21:04:06\",\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"48.1000\",\"return_id\":\"75\",\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR0001\",\"sale_id\":null,\"return_sale_total\":\"-33.6000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"adb3699e1d99aff241868b009c0c65d6faf94d1c044027637a0ff537bcaa30ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"257\",\"sale_id\":\"74\",\"product_id\":\"5994\",\"product_code\":\"591\",\"product_name\":\"Alugel Tablets 50\'s\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"33.6000\",\"unit_price\":\"33.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.6000\",\"serial_no\":\"\",\"real_unit_price\":\"33.6000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"ALUGEL.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"258\",\"sale_id\":\"74\",\"product_id\":\"5620\",\"product_code\":\"217\",\"product_name\":\"FLUCONAT 150\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3850, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"73\",\"date\":\"2022-09-11 20:46:11\",\"reference_no\":\"FMMS\\/POS0042\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"20.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\":\"9adff48dc69346a0a3d46fda618419f63b0a87abb8722c56d9cc049dfc5f454f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"254\",\"sale_id\":\"73\",\"product_id\":\"5412\",\"product_code\":\"9\",\"product_name\":\"AIRHEAD BITES FRUIT 24CT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.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\":\"airhead-bites-fruit-24ct.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3851, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"72\",\"date\":\"2022-09-11 13:59:00\",\"reference_no\":\"FMMS0027\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3376f2c5d1cc654565691443f6cb6e7c497fa9c760e7df5582d797c94b77afe0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"253\",\"sale_id\":\"72\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3852, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"71\",\"date\":\"2022-09-11 13:52:00\",\"reference_no\":\"FMMS0026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ca290b0402744120804c8bb6505a0fa51210344f66889d763f8b8aa32543b8d6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"252\",\"sale_id\":\"71\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3853, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"70\",\"date\":\"2022-09-11 12:17:00\",\"reference_no\":\"FMMS0025\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"013d8b36016d4c08960e5fcb5c16023e55ecfb8ff0e7a86f9a8a9dcfe71ab338\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"213\",\"sale_id\":\"70\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3854, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"69\",\"date\":\"2022-09-11 12:15:00\",\"reference_no\":\"FMMS0024\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2fd8a534199c3aea296504e86fb09638edd1b34324f5794dba6fa6e6dbe23b61\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"212\",\"sale_id\":\"69\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3855, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"68\",\"date\":\"2022-09-11 12:05:00\",\"reference_no\":\"FMMS0023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9d7ed2bd92e40862de8e374118e0087e051ebe03e073bc83a984050ce1689785\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"211\",\"sale_id\":\"68\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3856, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"67\",\"date\":\"2022-09-11 10:46:00\",\"reference_no\":\"FMMS0022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2022-09-11 13:28:51\",\"total_items\":\"21\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"4f4ec8c08e50e83b99c0f368d80a537f76aef6870519af9572f37ce1e7b8f63a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"231\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"232\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"233\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"234\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"235\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"236\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"237\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"238\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"239\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"240\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"241\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"242\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"243\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"244\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"245\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"246\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"247\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"248\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"249\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"250\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"251\",\"sale_id\":\"67\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3857, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"66\",\"date\":\"2022-09-11 09:48:00\",\"reference_no\":\"FMMS0021\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"71fd4b6b1248a73a57098ddc96eb1c3724f4650f6c258e1cebfda00340dd35fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"160\",\"sale_id\":\"66\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3858, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"65\",\"date\":\"2022-09-11 09:34:00\",\"reference_no\":\"FMMS0020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"437ca843b6893d226eb89a36010c5446ec4d9b0748cf53d871f57ba8952706de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"159\",\"sale_id\":\"65\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3859, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"64\",\"date\":\"2022-09-10 20:58:00\",\"reference_no\":\"FMMS0019\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f43c65ca9448015658d52154bd904824f3c426dddcc62b12a9fa70db4a15e09f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"158\",\"sale_id\":\"64\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3860, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"63\",\"date\":\"2022-09-10 20:53:00\",\"reference_no\":\"FMMS0018\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"03e6b03437b04d54a83d878c0a2848b3ec670dc23692e03547d221f3e67c3390\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"157\",\"sale_id\":\"63\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3861, 'Sale is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"62\",\"date\":\"2022-09-10 20:49:00\",\"reference_no\":\"FMMS0017\",\"customer_id\":\"4\",\"customer\":\"Sims Soft\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c34c4a6345316732a2e06678da208599e04b3f6f994f69bb203fea894b1d5e81\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"156\",\"sale_id\":\"62\",\"product_id\":\"5522\",\"product_code\":\"119\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-11 17:32:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3862, 'Return is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-08-27 19:26:00\",\"reference_no\":\"SALE2022\\/08\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"grand_total\":\"40.0000\",\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"paid\":\"0.0000\",\"surcharge\":\"0.0000\",\"attachment\":null,\"hash\":\"699e1bd59e6e4746d905f0171670d4dc77bc71489c30a055975e78b141f343cc\",\"cgst\":null,\"sgst\":null,\"igst\":null,\"shipping\":\"0.0000\"},\"items\":[{\"id\":\"1\",\"return_id\":\"1\",\"product_id\":\"1625\",\"product_code\":\"268\",\"product_name\":\"Cardiofin Tab 20mg 100_ (Nifedipine)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null}]}', '2022-09-12 01:13:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3863, 'Product is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"5522\",\"code\":\"119\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"119\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-12 04:51:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3864, 'Sale is being deleted by appiah (User Id: 2)', '{\"model\":{\"id\":\"76\",\"date\":\"2022-09-12 05:14:00\",\"reference_no\":\"FMMS0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3d0676d6d37a8d4c0f7d5da5581289de56b3ba62db6b81e773578a57a97195cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"260\",\"sale_id\":\"76\",\"product_id\":\"5560\",\"product_code\":\"157\",\"product_name\":\"DARKTACORT CREAM\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-12 04:53:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3865, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"3\",\"date\":\"2022-09-12 09:37:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"136\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2817.3300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"Banni Order\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"11\",\"suspend_id\":\"3\",\"product_id\":\"6445\",\"product_code\":\"1042\",\"product_name\":\"Vermox Suspension\",\"net_unit_price\":\"21.8000\",\"unit_price\":\"21.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"9\",\"suspend_id\":\"3\",\"product_id\":\"6488\",\"product_code\":\"1085\",\"product_name\":\"Levothyroxine 100mg Tablets 28\'s\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"10\",\"suspend_id\":\"3\",\"product_id\":\"6252\",\"product_code\":\"849\",\"product_name\":\"Paracetamol Syrup 100ml Exeter\",\"net_unit_price\":\"4.9800\",\"unit_price\":\"4.9800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"12\",\"suspend_id\":\"3\",\"product_id\":\"5993\",\"product_code\":\"590\",\"product_name\":\"Calamine ointment 40mg\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"13\",\"suspend_id\":\"3\",\"product_id\":\"5634\",\"product_code\":\"231\",\"product_name\":\"Garlic Pearls Osons\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"14\",\"suspend_id\":\"3\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"126.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"15\",\"suspend_id\":\"3\",\"product_id\":\"6434\",\"product_code\":\"1031\",\"product_name\":\"Cotton wool 50g\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"16\",\"suspend_id\":\"3\",\"product_id\":\"6294\",\"product_code\":\"891\",\"product_name\":\"Menthodex 200ml Syrup\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"115.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"17\",\"suspend_id\":\"3\",\"product_id\":\"6658\",\"product_code\":\"1255\",\"product_name\":\"Feroglobin Plus Syrup 200ml\",\"net_unit_price\":\"65.8000\",\"unit_price\":\"65.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"131.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"65.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"18\",\"suspend_id\":\"3\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"226.2100\",\"unit_price\":\"226.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"226.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"226.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"19\",\"suspend_id\":\"3\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"226.2100\",\"unit_price\":\"226.2100\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"452.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"226.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"20\",\"suspend_id\":\"3\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"6.1000\",\"unit_price\":\"6.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"21\",\"suspend_id\":\"3\",\"product_id\":\"5556\",\"product_code\":\"153\",\"product_name\":\"Daktarin Cream 15g\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"22\",\"suspend_id\":\"3\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tot\'hema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"186.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"23\",\"suspend_id\":\"3\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"93.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"24\",\"suspend_id\":\"3\",\"product_id\":\"6053\",\"product_code\":\"650\",\"product_name\":\"Bonnisan Syrup 120ml\",\"net_unit_price\":\"14.9000\",\"unit_price\":\"14.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"25\",\"suspend_id\":\"3\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"9.4700\",\"unit_price\":\"9.4700\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"26\",\"suspend_id\":\"3\",\"product_id\":\"6601\",\"product_code\":\"1198\",\"product_name\":\"Starcold\",\"net_unit_price\":\"44.6000\",\"unit_price\":\"44.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"44.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"27\",\"suspend_id\":\"3\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"310.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"28\",\"suspend_id\":\"3\",\"product_id\":\"6341\",\"product_code\":\"938\",\"product_name\":\"Wellman 50+ Tablets\",\"net_unit_price\":\"62.3000\",\"unit_price\":\"62.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"124.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"29\",\"suspend_id\":\"3\",\"product_id\":\"5793\",\"product_code\":\"390\",\"product_name\":\"Night Nurse Capsules 10\'s\",\"net_unit_price\":\"47.0000\",\"unit_price\":\"47.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"47.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"30\",\"suspend_id\":\"3\",\"product_id\":\"6720\",\"product_code\":\"1317\",\"product_name\":\"B Complex Tablets 60\'s Valupak Vitamin\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"31\",\"suspend_id\":\"3\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"9.9600\",\"unit_price\":\"9.9600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"32\",\"suspend_id\":\"3\",\"product_id\":\"5605\",\"product_code\":\"202\",\"product_name\":\"Evening Primrose 1000mg Tablets Valupak\",\"net_unit_price\":\"21.5000\",\"unit_price\":\"21.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"33\",\"suspend_id\":\"3\",\"product_id\":\"5605\",\"product_code\":\"202\",\"product_name\":\"Evening Primrose 1000mg Tablets Valupak\",\"net_unit_price\":\"21.5000\",\"unit_price\":\"21.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"34\",\"suspend_id\":\"3\",\"product_id\":\"6267\",\"product_code\":\"864\",\"product_name\":\"Stopkof Cold & Catarrh Tablets 12s\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"35\",\"suspend_id\":\"3\",\"product_id\":\"6717\",\"product_code\":\"1314\",\"product_name\":\"Lemsip Cold and flu Original 10\'s\",\"net_unit_price\":\"38.4000\",\"unit_price\":\"38.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"36\",\"suspend_id\":\"3\",\"product_id\":\"5464\",\"product_code\":\"61\",\"product_name\":\"Atorvastatin 10mg Tablets 28\'s\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-12 05:39:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3866, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5468\",\"code\":\"65\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"65\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 09:05:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3867, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5469\",\"code\":\"66\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"66\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 09:06:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3868, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5869\",\"code\":\"466\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"102.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"466\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 09:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3869, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5404\",\"code\":\"1\",\"name\":\"WHITE ALCOHOL 50%  16oz\\/24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"white-alcohol-50-16oz24ct-1.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"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\"}}', '2022-09-13 09:56:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3870, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5413\",\"code\":\"10\",\"name\":\"AMERICAN WHITE VINEGAR  473ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 09:57:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3871, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5512\",\"code\":\"109\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"109\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3872, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5503\",\"code\":\"100\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:12:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3873, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"5\",\"date\":\"2022-09-13 14:10:38\",\"customer_id\":\"291\",\"customer\":\"Health is wealth\",\"count\":\"21\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"229.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"health is wealth\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"69\",\"suspend_id\":\"5\",\"product_id\":\"6765\",\"product_code\":\"1362\",\"product_name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"net_unit_price\":\"59.0000\",\"unit_price\":\"59.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"59.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"70\",\"suspend_id\":\"5\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-13 10:18:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3874, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5414\",\"code\":\"11\",\"name\":\"AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:19:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3875, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5504\",\"code\":\"101\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"101\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:20:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3876, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"4\",\"date\":\"2022-09-13 14:17:54\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"81\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1142.9500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"meira care\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"96\",\"suspend_id\":\"4\",\"product_id\":\"5790\",\"product_code\":\"387\",\"product_name\":\"Nexium 40mg Tablets 14\'s\",\"net_unit_price\":\"149.2800\",\"unit_price\":\"149.2800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"149.2800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"149.2800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"97\",\"suspend_id\":\"4\",\"product_id\":\"6509\",\"product_code\":\"1106\",\"product_name\":\"Gacet 1g Suppository\",\"net_unit_price\":\"13.2500\",\"unit_price\":\"13.2500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.7500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"99\",\"suspend_id\":\"4\",\"product_id\":\"6327\",\"product_code\":\"924\",\"product_name\":\"Flagentyl 500mg Tablets 4\'s secnidazole\",\"net_unit_price\":\"28.6000\",\"unit_price\":\"28.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"98\",\"suspend_id\":\"4\",\"product_id\":\"5733\",\"product_code\":\"330\",\"product_name\":\"Lubrimax Jelly 50g\",\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"95\",\"suspend_id\":\"4\",\"product_id\":\"6777\",\"product_code\":\"1374\",\"product_name\":\"Omecet (Omeprazole) Caps 20mg 100\' ECL\",\"net_unit_price\":\"21.7400\",\"unit_price\":\"21.7400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.7400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"21.7400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"94\",\"suspend_id\":\"4\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"93\",\"suspend_id\":\"4\",\"product_id\":\"5585\",\"product_code\":\"182\",\"product_name\":\"Dragon Tablets\",\"net_unit_price\":\"23.4000\",\"unit_price\":\"23.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"92\",\"suspend_id\":\"4\",\"product_id\":\"6371\",\"product_code\":\"968\",\"product_name\":\"P-trust Pregnancy Test Kit 25\'s\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"91\",\"suspend_id\":\"4\",\"product_id\":\"6863\",\"product_code\":\"59208125\",\"product_name\":\"Fiesta Condom Extra Thin\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"89\",\"suspend_id\":\"4\",\"product_id\":\"6865\",\"product_code\":\"55663121\",\"product_name\":\"Fiesta Condom Dumsor\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"90\",\"suspend_id\":\"4\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"88\",\"suspend_id\":\"4\",\"product_id\":\"6077\",\"product_code\":\"674\",\"product_name\":\"Fiesta Condom All Night\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"87\",\"suspend_id\":\"4\",\"product_id\":\"5453\",\"product_code\":\"50\",\"product_name\":\"Ascoryl Syrup 125ml\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"86\",\"suspend_id\":\"4\",\"product_id\":\"6807\",\"product_code\":\"1404\",\"product_name\":\"Folic Acid 5mg Crescent\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"84\",\"suspend_id\":\"4\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"3.5200\",\"unit_price\":\"3.5200\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"85\",\"suspend_id\":\"4\",\"product_id\":\"6738\",\"product_code\":\"1335\",\"product_name\":\"Eskaron Capsules 10X30\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"83\",\"suspend_id\":\"4\",\"product_id\":\"5617\",\"product_code\":\"214\",\"product_name\":\"Flagyl Suspension 100ml\",\"net_unit_price\":\"39.3000\",\"unit_price\":\"39.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"39.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"82\",\"suspend_id\":\"4\",\"product_id\":\"6823\",\"product_code\":\"1420\",\"product_name\":\"Fluxamox Susp. 250mg\\/5ml ECL 100ml\",\"net_unit_price\":\"10.7800\",\"unit_price\":\"10.7800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.5600\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"81\",\"suspend_id\":\"4\",\"product_id\":\"6850\",\"product_code\":\"1447\",\"product_name\":\"Flucotrust Capsules 150mg\",\"net_unit_price\":\"2.8900\",\"unit_price\":\"2.8900\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.4500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.8900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"80\",\"suspend_id\":\"4\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"79\",\"suspend_id\":\"4\",\"product_id\":\"6306\",\"product_code\":\"903\",\"product_name\":\"Pofakoff Adult\",\"net_unit_price\":\"6.2300\",\"unit_price\":\"6.2300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.6900\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.2300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"77\",\"suspend_id\":\"4\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"78\",\"suspend_id\":\"4\",\"product_id\":\"5580\",\"product_code\":\"177\",\"product_name\":\"Diphex Cough Syrup\",\"net_unit_price\":\"7.7000\",\"unit_price\":\"7.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"75\",\"suspend_id\":\"4\",\"product_id\":\"6329\",\"product_code\":\"926\",\"product_name\":\"Neo Hycolex E\\/E\\/N 5ML Drops\",\"net_unit_price\":\"16.9000\",\"unit_price\":\"16.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"76\",\"suspend_id\":\"4\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"13.7000\",\"unit_price\":\"13.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"74\",\"suspend_id\":\"4\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"73\",\"suspend_id\":\"4\",\"product_id\":\"6110\",\"product_code\":\"707\",\"product_name\":\"Maalox Stick Packs 20\'s\",\"net_unit_price\":\"34.1000\",\"unit_price\":\"34.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"34.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"72\",\"suspend_id\":\"4\",\"product_id\":\"6451\",\"product_code\":\"1048\",\"product_name\":\"Voltfast Powder 50mg 30\'s\",\"net_unit_price\":\"53.2000\",\"unit_price\":\"53.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"53.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"71\",\"suspend_id\":\"4\",\"product_id\":\"6288\",\"product_code\":\"885\",\"product_name\":\"Tadol 50mg Capsules 20\'s\",\"net_unit_price\":\"56.0000\",\"unit_price\":\"56.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"56.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"100\",\"suspend_id\":\"4\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"101\",\"suspend_id\":\"4\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"102\",\"suspend_id\":\"4\",\"product_id\":\"6214\",\"product_code\":\"811\",\"product_name\":\"Rufenac Gel 30g\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"103\",\"suspend_id\":\"4\",\"product_id\":\"6595\",\"product_code\":\"1192\",\"product_name\":\"Azycin 500mg\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-13 10:37:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3877, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5514\",\"code\":\"111\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"111\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:48:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3878, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5517\",\"code\":\"114\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"114\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:49:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3879, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5520\",\"code\":\"117\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"117\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:50:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3880, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5523\",\"code\":\"120\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"120\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:51:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3881, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5524\",\"code\":\"121\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"121\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-13 10:52:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3882, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"6\",\"date\":\"2022-09-14 07:56:45\",\"customer_id\":\"200\",\"customer\":\"Kenneth\",\"count\":\"28\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"163.2100\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"KENNETH\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"111\",\"suspend_id\":\"6\",\"product_id\":\"6697\",\"product_code\":\"1294\",\"product_name\":\"Biva Plus Capsules\",\"net_unit_price\":\"10.1000\",\"unit_price\":\"10.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"112\",\"suspend_id\":\"6\",\"product_id\":\"6352\",\"product_code\":\"949\",\"product_name\":\"Roxidol\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"108\",\"suspend_id\":\"6\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"109\",\"suspend_id\":\"6\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"110\",\"suspend_id\":\"6\",\"product_id\":\"6379\",\"product_code\":\"976\",\"product_name\":\"Dexone 0.5mg\",\"net_unit_price\":\"2.1000\",\"unit_price\":\"2.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"107\",\"suspend_id\":\"6\",\"product_id\":\"5906\",\"product_code\":\"503\",\"product_name\":\"Tetracycline Capsules\",\"net_unit_price\":\"15.8200\",\"unit_price\":\"15.8200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.8200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"106\",\"suspend_id\":\"6\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"105\",\"suspend_id\":\"6\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.3800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"104\",\"suspend_id\":\"6\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-14 03:57:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3883, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"7\",\"date\":\"2022-09-14 10:48:05\",\"customer_id\":\"160\",\"customer\":\"LEXGINA PHARMA\",\"count\":\"97\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"510.0500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"lexgina\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"129\",\"suspend_id\":\"7\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"128\",\"suspend_id\":\"7\",\"product_id\":\"6845\",\"product_code\":\"1442\",\"product_name\":\"Robb Ointment\",\"net_unit_price\":\"34.1000\",\"unit_price\":\"34.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"127\",\"suspend_id\":\"7\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"126\",\"suspend_id\":\"7\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"4.6700\",\"unit_price\":\"4.6700\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.6700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"124\",\"suspend_id\":\"7\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"125\",\"suspend_id\":\"7\",\"product_id\":\"5674\",\"product_code\":\"271\",\"product_name\":\"Ibucap Capsules 10C (BamBam)\",\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"123\",\"suspend_id\":\"7\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"122\",\"suspend_id\":\"7\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"120\",\"suspend_id\":\"7\",\"product_id\":\"5629\",\"product_code\":\"226\",\"product_name\":\"Funbact A\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"121\",\"suspend_id\":\"7\",\"product_id\":\"5730\",\"product_code\":\"327\",\"product_name\":\"Lofnac Gel 30mg\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"117\",\"suspend_id\":\"7\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"118\",\"suspend_id\":\"7\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"119\",\"suspend_id\":\"7\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"116\",\"suspend_id\":\"7\",\"product_id\":\"6511\",\"product_code\":\"1108\",\"product_name\":\"Lofnac P Tablets 50\\/500\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"115\",\"suspend_id\":\"7\",\"product_id\":\"6303\",\"product_code\":\"900\",\"product_name\":\"Lofnac 100mg Tablets\",\"net_unit_price\":\"1.4300\",\"unit_price\":\"1.4300\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.4300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"113\",\"suspend_id\":\"7\",\"product_id\":\"6003\",\"product_code\":\"600\",\"product_name\":\"Bella cough Syr 125ml\",\"net_unit_price\":\"6.7000\",\"unit_price\":\"6.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"114\",\"suspend_id\":\"7\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"9.9600\",\"unit_price\":\"9.9600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.9200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-14 07:09:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3884, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"6067\",\"code\":\"664\",\"name\":\"Azure-Retail\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tablets-medicine-supplement-vitamin-5620566.jpg\",\"category_id\":\"1690\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"664\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:15:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3885, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5474\",\"code\":\"71\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"71\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:17:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3886, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5480\",\"code\":\"77\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"77\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:19:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3887, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5411\",\"code\":\"8\",\"name\":\"STAMINA- RX   24CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"stamina-rx-24ct.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:23:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3888, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5483\",\"code\":\"80\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"80\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:23:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3889, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5484\",\"code\":\"81\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"81\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:24:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3890, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5485\",\"code\":\"82\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"82\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:24:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3891, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"6230\",\"code\":\"827\",\"name\":\"test\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"shalaterm-dis.jpeg\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"827\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:25:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3892, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5486\",\"code\":\"83\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"83\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:26:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3893, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5488\",\"code\":\"85\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"bongela-adult.jpeg\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"85\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:27:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3894, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5489\",\"code\":\"86\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"86\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:28:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3895, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5506\",\"code\":\"103\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"103\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:32:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3896, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5516\",\"code\":\"113\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"113\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:35:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3897, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5518\",\"code\":\"115\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"115\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:35:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3898, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5529\",\"code\":\"126\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"126\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:36:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3899, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5416\",\"code\":\"13\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"13\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:41:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3900, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5533\",\"code\":\"130\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"130\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:42:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3901, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5534\",\"code\":\"131\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"131\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:43:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3902, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5537\",\"code\":\"134\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"134\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:46:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3903, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5538\",\"code\":\"135\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"135\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:46:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3904, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5539\",\"code\":\"136\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"136\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:47:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3905, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5700\",\"code\":\"297\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"297\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:47:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3906, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5766\",\"code\":\"363\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"363\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:48:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3907, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5690\",\"code\":\"287\",\"name\":\"JRA B&apos;s\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"287\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:50:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3908, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5691\",\"code\":\"288\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"288\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:50:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3909, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5786\",\"code\":\"383\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"383\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:51:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3910, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5490\",\"code\":\"87\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"87\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:52:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3911, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5491\",\"code\":\"88\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"88\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:52:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3912, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5492\",\"code\":\"89\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"89\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 08:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3913, 'POS Bill is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"8\",\"date\":\"2022-09-14 13:25:33\",\"customer_id\":\"40\",\"customer\":\"Asamoah Gyan\",\"count\":\"68\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"447.6200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"asamoah gyan\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"145\",\"suspend_id\":\"8\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"144\",\"suspend_id\":\"8\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"143\",\"suspend_id\":\"8\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"142\",\"suspend_id\":\"8\",\"product_id\":\"5451\",\"product_code\":\"48\",\"product_name\":\"Arfan 20\\/120mg\",\"net_unit_price\":\"5.8600\",\"unit_price\":\"5.8600\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.4400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"141\",\"suspend_id\":\"8\",\"product_id\":\"6386\",\"product_code\":\"983\",\"product_name\":\"Paingay Capsules\",\"net_unit_price\":\"3.2000\",\"unit_price\":\"3.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"139\",\"suspend_id\":\"8\",\"product_id\":\"5886\",\"product_code\":\"483\",\"product_name\":\"Stopkof Adult Cough Syrup 100ml\",\"net_unit_price\":\"8.6000\",\"unit_price\":\"8.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"140\",\"suspend_id\":\"8\",\"product_id\":\"6117\",\"product_code\":\"714\",\"product_name\":\"Gudapet Capsules\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"137\",\"suspend_id\":\"8\",\"product_id\":\"6351\",\"product_code\":\"948\",\"product_name\":\"Ronfit Cold D Syrup\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"138\",\"suspend_id\":\"8\",\"product_id\":\"6178\",\"product_code\":\"775\",\"product_name\":\"Ibucap Capsules 20\'s(Monopack)\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"134\",\"suspend_id\":\"8\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.7600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"135\",\"suspend_id\":\"8\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"6.1000\",\"unit_price\":\"6.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"136\",\"suspend_id\":\"8\",\"product_id\":\"6434\",\"product_code\":\"1031\",\"product_name\":\"Cotton wool 50g\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"133\",\"suspend_id\":\"8\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"130\",\"suspend_id\":\"8\",\"product_id\":\"6679\",\"product_code\":\"1276\",\"product_name\":\"Gebediclo 100mg Tablets\",\"net_unit_price\":\"9.9900\",\"unit_price\":\"9.9900\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"199.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"132\",\"suspend_id\":\"8\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"131\",\"suspend_id\":\"8\",\"product_id\":\"6286\",\"product_code\":\"883\",\"product_name\":\"Kidivite Syrup 200ml\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-14 09:48:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3914, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5943\",\"code\":\"540\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"9.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"540\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 10:58:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3915, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5820\",\"code\":\"417\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"417\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 11:00:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3916, 'POS Bill is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"9\",\"date\":\"2022-09-14 15:07:26\",\"customer_id\":\"61\",\"customer\":\"CND\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"97.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"cnd\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"148\",\"suspend_id\":\"9\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"149\",\"suspend_id\":\"9\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30\'s ECL\",\"net_unit_price\":\"30.2000\",\"unit_price\":\"30.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"146\",\"suspend_id\":\"9\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"147\",\"suspend_id\":\"9\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-14 11:24:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3917, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5671\",\"code\":\"268\",\"name\":\"Hydrogen Peroxide\",\"unit\":\"1\",\"cost\":\"2.1600\",\"price\":\"2.1600\",\"alert_quantity\":\"20.0000\",\"image\":\"hydrogen-scaled.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"268\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-14 12:33:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3918, 'Sale is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"232\",\"date\":\"2022-09-15 11:12:47\",\"reference_no\":\"FMMS\\/POS0188\",\"customer_id\":\"84\",\"customer\":\"ELINDA\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"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\":\"0\",\"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\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"5.0000\",\"return_id\":\"233\",\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":\"SR0002\",\"sale_id\":null,\"return_sale_total\":\"-5.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"07fd82ce8d3bc207cefc234fb64ed71f5fa344a2f6b9abb237966dc25bcfeaff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1774\",\"sale_id\":\"232\",\"product_id\":\"6352\",\"product_code\":\"949\",\"product_name\":\"Roxidol\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.5000\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-09-15 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3919, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"10\",\"date\":\"2022-09-15 11:04:13\",\"customer_id\":\"101\",\"customer\":\"FMMS2COMMANDOS\",\"count\":\"127\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1700.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"comanados\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"210\",\"suspend_id\":\"10\",\"product_id\":\"5447\",\"product_code\":\"44\",\"product_name\":\"Apetamin Syrup 200ml\",\"net_unit_price\":\"19.8000\",\"unit_price\":\"19.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"19.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"207\",\"suspend_id\":\"10\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.1400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"208\",\"suspend_id\":\"10\",\"product_id\":\"6764\",\"product_code\":\"1361\",\"product_name\":\"Bells Normal Saline Drops 0.9% 10ml\",\"net_unit_price\":\"6.3000\",\"unit_price\":\"6.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"209\",\"suspend_id\":\"10\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"206\",\"suspend_id\":\"10\",\"product_id\":\"6840\",\"product_code\":\"1437\",\"product_name\":\"Betasol N (Eye,Ear & Nose) Drop\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"205\",\"suspend_id\":\"10\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"204\",\"suspend_id\":\"10\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0600\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"203\",\"suspend_id\":\"10\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"67.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"202\",\"suspend_id\":\"10\",\"product_id\":\"6652\",\"product_code\":\"1249\",\"product_name\":\"Normal Saline Nasal Drops 10ml Lavina\",\"net_unit_price\":\"3.8000\",\"unit_price\":\"3.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"201\",\"suspend_id\":\"10\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"172.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"200\",\"suspend_id\":\"10\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"8.3200\",\"unit_price\":\"8.3200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"199\",\"suspend_id\":\"10\",\"product_id\":\"5509\",\"product_code\":\"106\",\"product_name\":\"Cartef Suspension\",\"net_unit_price\":\"6.8800\",\"unit_price\":\"6.8800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"197\",\"suspend_id\":\"10\",\"product_id\":\"6873\",\"product_code\":\"06796716\",\"product_name\":\"Menazole 500mg 10x1 Ayrtons\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"198\",\"suspend_id\":\"10\",\"product_id\":\"6876\",\"product_code\":\"5402680\",\"product_name\":\"Alazole 400 Tablet\",\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"190\",\"suspend_id\":\"10\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"191\",\"suspend_id\":\"10\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"192\",\"suspend_id\":\"10\",\"product_id\":\"6399\",\"product_code\":\"996\",\"product_name\":\"Nesben (Albendazole) Tablets 200mg\",\"net_unit_price\":\"6.1000\",\"unit_price\":\"6.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"193\",\"suspend_id\":\"10\",\"product_id\":\"6872\",\"product_code\":\"97726773\",\"product_name\":\"Deworme 500mg tablets\",\"net_unit_price\":\"2.2000\",\"unit_price\":\"2.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"194\",\"suspend_id\":\"10\",\"product_id\":\"6445\",\"product_code\":\"1042\",\"product_name\":\"Vermox Suspension\",\"net_unit_price\":\"21.8000\",\"unit_price\":\"21.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"21.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"196\",\"suspend_id\":\"10\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"195\",\"suspend_id\":\"10\",\"product_id\":\"5532\",\"product_code\":\"129\",\"product_name\":\"Coartem 80\\/480 6\'s\",\"net_unit_price\":\"56.1000\",\"unit_price\":\"56.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"561.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"56.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-15 07:17:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3920, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"12\",\"date\":\"2022-09-15 12:20:48\",\"customer_id\":\"79\",\"customer\":\"Dunia Chemical Shop\",\"count\":\"16\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"115.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"ALAJI\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"228\",\"suspend_id\":\"12\",\"product_id\":\"5893\",\"product_code\":\"490\",\"product_name\":\"Super Apeti Plus Tablets 50X20\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"229\",\"suspend_id\":\"12\",\"product_id\":\"5892\",\"product_code\":\"489\",\"product_name\":\"Super Apeti Plus Syrup 200ml\",\"net_unit_price\":\"8.6000\",\"unit_price\":\"8.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"227\",\"suspend_id\":\"12\",\"product_id\":\"5593\",\"product_code\":\"190\",\"product_name\":\"Efpac Tablets\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"226\",\"suspend_id\":\"12\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"225\",\"suspend_id\":\"12\",\"product_id\":\"5865\",\"product_code\":\"462\",\"product_name\":\"Secure Contraceptive Pill\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-15 08:35:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3921, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"11\",\"date\":\"2022-09-15 12:36:59\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"82\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"823.4900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"meiracare\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"253\",\"suspend_id\":\"11\",\"product_id\":\"6181\",\"product_code\":\"778\",\"product_name\":\"Kifaru 100mg Tablets\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"252\",\"suspend_id\":\"11\",\"product_id\":\"5656\",\"product_code\":\"253\",\"product_name\":\"Gyprone Plus 200ml Syrup\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"251\",\"suspend_id\":\"11\",\"product_id\":\"5607\",\"product_code\":\"204\",\"product_name\":\"Ezipen Tablets 5x6\",\"net_unit_price\":\"11.4000\",\"unit_price\":\"11.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"250\",\"suspend_id\":\"11\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.7600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"249\",\"suspend_id\":\"11\",\"product_id\":\"6850\",\"product_code\":\"1447\",\"product_name\":\"Flucotrust Capsules 150mg\",\"net_unit_price\":\"2.8900\",\"unit_price\":\"2.8900\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.5600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"247\",\"suspend_id\":\"11\",\"product_id\":\"5589\",\"product_code\":\"186\",\"product_name\":\"Drez Powder 10g\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"248\",\"suspend_id\":\"11\",\"product_id\":\"5587\",\"product_code\":\"184\",\"product_name\":\"Drez Ointment 10g\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"246\",\"suspend_id\":\"11\",\"product_id\":\"6131\",\"product_code\":\"728\",\"product_name\":\"Drez Solution 100ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"245\",\"suspend_id\":\"11\",\"product_id\":\"6302\",\"product_code\":\"899\",\"product_name\":\"Klovinal Pessaries\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"244\",\"suspend_id\":\"11\",\"product_id\":\"6177\",\"product_code\":\"774\",\"product_name\":\"Gogynax Tablets 100mg\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"243\",\"suspend_id\":\"11\",\"product_id\":\"6037\",\"product_code\":\"634\",\"product_name\":\"Kamaclox Mouthwash 300ml\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"242\",\"suspend_id\":\"11\",\"product_id\":\"5726\",\"product_code\":\"323\",\"product_name\":\"Listerine 250ml all types\",\"net_unit_price\":\"15.9000\",\"unit_price\":\"15.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"241\",\"suspend_id\":\"11\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"240\",\"suspend_id\":\"11\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"239\",\"suspend_id\":\"11\",\"product_id\":\"6738\",\"product_code\":\"1335\",\"product_name\":\"Eskaron Capsules 10X30\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"230\",\"suspend_id\":\"11\",\"product_id\":\"6853\",\"product_code\":\"1450\",\"product_name\":\"Mycolex Powder 50g\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"231\",\"suspend_id\":\"11\",\"product_id\":\"6176\",\"product_code\":\"773\",\"product_name\":\"Gogynax Cream 30g\",\"net_unit_price\":\"4.1000\",\"unit_price\":\"4.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"232\",\"suspend_id\":\"11\",\"product_id\":\"5765\",\"product_code\":\"362\",\"product_name\":\"Metformin Denk 500mg Tablets 100\'s\",\"net_unit_price\":\"63.2200\",\"unit_price\":\"63.2200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.2200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"63.2200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"233\",\"suspend_id\":\"11\",\"product_id\":\"5993\",\"product_code\":\"590\",\"product_name\":\"Calamine ointment 40mg\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"234\",\"suspend_id\":\"11\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"235\",\"suspend_id\":\"11\",\"product_id\":\"6339\",\"product_code\":\"936\",\"product_name\":\"Pregnacare Tablets 19\'s\",\"net_unit_price\":\"60.3000\",\"unit_price\":\"60.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"60.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"236\",\"suspend_id\":\"11\",\"product_id\":\"5970\",\"product_code\":\"567\",\"product_name\":\"Virol blood tonic 200ml\",\"net_unit_price\":\"9.1500\",\"unit_price\":\"9.1500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.4500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"238\",\"suspend_id\":\"11\",\"product_id\":\"5995\",\"product_code\":\"592\",\"product_name\":\"Haemoglobin Syrup Aryton 200ml\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"237\",\"suspend_id\":\"11\",\"product_id\":\"5657\",\"product_code\":\"254\",\"product_name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-15 08:50:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3922, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5423\",\"code\":\"20\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:23:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3923, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5424\",\"code\":\"21\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"21\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:23:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3924, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5425\",\"code\":\"22\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"22\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:24:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3925, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5426\",\"code\":\"23\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"23\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:25:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3926, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5428\",\"code\":\"25\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:27:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3927, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5429\",\"code\":\"26\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"26\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:27:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3928, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5430\",\"code\":\"27\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"27\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:28:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3929, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5431\",\"code\":\"28\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"28\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:29:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3930, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5432\",\"code\":\"29\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"29\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:29:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3931, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5433\",\"code\":\"30\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:30:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3932, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5434\",\"code\":\"31\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"31\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:30:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3933, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5436\",\"code\":\"33\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"33\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:30:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3934, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5437\",\"code\":\"34\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"34\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:31:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3935, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5438\",\"code\":\"35\",\"name\":\"AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"35\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:31:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3936, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5442\",\"code\":\"39\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"39\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3937, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5443\",\"code\":\"40\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:32:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3938, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5444\",\"code\":\"41\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"41\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:33:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3939, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5445\",\"code\":\"42\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"42\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:33:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3940, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5446\",\"code\":\"43\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"43\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:34:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3941, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5450\",\"code\":\"47\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"47\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:35:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3942, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5454\",\"code\":\"51\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"51\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:35:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3943, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5466\",\"code\":\"63\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"63\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:36:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3944, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5479\",\"code\":\"76\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"76\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:36:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3945, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5481\",\"code\":\"78\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"78\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:37:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3946, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5493\",\"code\":\"90\",\"name\":\"BRAINWESE OMEGA 3  150ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"90\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:37:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3947, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5494\",\"code\":\"91\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"91\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:38:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3948, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5495\",\"code\":\"92\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"92\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:40:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3949, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5496\",\"code\":\"93\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"93\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 09:41:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3950, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5498\",\"code\":\"95\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"95\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:04:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3951, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5502\",\"code\":\"99\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"99\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:05:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3952, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5594\",\"code\":\"191\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"191\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:06:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3953, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5597\",\"code\":\"194\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"194\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:06:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3954, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5599\",\"code\":\"196\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"196\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:07:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3955, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5602\",\"code\":\"199\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"199\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:08:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3956, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5664\",\"code\":\"261\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"261\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:08:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3957, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5606\",\"code\":\"203\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"203\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:08:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3958, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5626\",\"code\":\"223\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"223\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:08:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3959, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5914\",\"code\":\"511\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"511\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:09:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3960, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5608\",\"code\":\"205\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"205\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:09:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3961, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5609\",\"code\":\"206\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"206\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:09:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3962, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5612\",\"code\":\"209\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"209\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:10:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3963, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5613\",\"code\":\"210\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"210\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:15:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3964, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5614\",\"code\":\"211\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"211\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:15:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3965, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5615\",\"code\":\"212\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"212\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:16:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3966, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5621\",\"code\":\"218\",\"name\":\"FLUCOR  NIGHT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"218\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:18:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3967, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5627\",\"code\":\"224\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"224\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:20:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3968, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5628\",\"code\":\"225\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"225\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:21:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3969, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5636\",\"code\":\"233\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"233\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:22:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3970, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5638\",\"code\":\"235\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"235\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:23:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3971, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5639\",\"code\":\"236\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"236\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:23:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3972, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5644\",\"code\":\"241\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"241\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:25:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3973, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5645\",\"code\":\"242\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"242\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:25:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3974, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5646\",\"code\":\"243\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"243\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:34:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3975, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5647\",\"code\":\"244\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"244\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:35:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3976, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5530\",\"code\":\"127\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"127\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:41:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3977, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5542\",\"code\":\"139\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"139\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:41:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3978, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5543\",\"code\":\"140\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"140\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:42:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3979, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5544\",\"code\":\"141\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"141\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:42:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3980, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5547\",\"code\":\"144\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"144\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:44:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3981, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5744\",\"code\":\"341\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"60.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"341\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:44:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3982, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5558\",\"code\":\"155\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"159.5000\",\"price\":\"159.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1660\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:46:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3983, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5563\",\"code\":\"160\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 10:47:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3984, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"13\",\"date\":\"2022-09-15 14:46:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"6.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"NYARKO\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"254\",\"suspend_id\":\"13\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"255\",\"suspend_id\":\"13\",\"product_id\":\"6359\",\"product_code\":\"956\",\"product_name\":\"Dipex Capsules\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-15 10:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3985, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5564\",\"code\":\"161\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"161\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:51:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3986, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5565\",\"code\":\"162\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"162\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:52:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3987, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5566\",\"code\":\"163\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"163\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:52:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3988, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5567\",\"code\":\"164\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"164\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:52:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3989, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5568\",\"code\":\"165\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"165\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:53:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3990, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5574\",\"code\":\"171\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"171\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:54:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3991, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5575\",\"code\":\"172\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"172\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:54:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3992, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5578\",\"code\":\"175\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"175\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:54:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3993, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5579\",\"code\":\"176\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"176\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3994, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5583\",\"code\":\"180\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"180\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:56:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3995, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5649\",\"code\":\"246\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"246\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:57:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3996, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5653\",\"code\":\"250\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:57:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3997, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5658\",\"code\":\"255\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"255\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:59:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3998, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5659\",\"code\":\"256\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 11:59:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3999, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5661\",\"code\":\"258\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"258\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:05:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4000, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5662\",\"code\":\"259\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:06:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4001, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5663\",\"code\":\"260\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"260\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:06:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4002, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5660\",\"code\":\"257\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"257\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:09:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4003, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":false}', '2022-09-15 12:09:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4004, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5665\",\"code\":\"262\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"262\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:10:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4005, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5709\",\"code\":\"306\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"306\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:10:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4006, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5666\",\"code\":\"263\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"263\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:14:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4007, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5668\",\"code\":\"265\",\"name\":\"HOT WATER BOTTLE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"265\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:14:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4008, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5669\",\"code\":\"266\",\"name\":\"HOT WATTLEER BOT COVERED\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"266\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:14:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4009, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5407\",\"code\":\"4\",\"name\":\"TWEAKER GRAPE ENERGY SHOTS 12\\/DSP 12 CT 2OZ\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"tweaker-grape-energy-shots-12dsp-12-ct-2oz.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:15:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4010, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5670\",\"code\":\"267\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"267\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:15:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4011, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5672\",\"code\":\"269\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"269\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:16:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4012, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5678\",\"code\":\"275\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"275\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:16:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4013, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5679\",\"code\":\"276\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"276\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:16:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4014, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5680\",\"code\":\"277\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"277\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:16:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4015, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5681\",\"code\":\"278\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"278\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:16:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4016, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5682\",\"code\":\"279\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"279\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:17:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4017, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5684\",\"code\":\"281\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"281\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:17:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4018, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5685\",\"code\":\"282\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"282\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:18:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4019, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5687\",\"code\":\"284\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"284\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:18:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4020, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5688\",\"code\":\"285\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"285\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:18:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4021, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5692\",\"code\":\"289\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"289\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:19:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4022, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5693\",\"code\":\"290\",\"name\":\"KAMAGRA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"290\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:19:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4023, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5694\",\"code\":\"291\",\"name\":\"KEPTRILS LOZENGES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"291\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:19:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4024, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5966\",\"code\":\"563\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"563\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:20:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4025, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5697\",\"code\":\"294\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"294\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:20:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4026, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5698\",\"code\":\"295\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"295\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:21:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4027, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5701\",\"code\":\"298\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"298\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:21:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4028, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5572\",\"code\":\"169\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"169\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:22:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4029, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5831\",\"code\":\"428\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"428\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:22:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4030, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5702\",\"code\":\"299\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"299\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:22:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4031, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5875\",\"code\":\"472\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"472\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:23:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4032, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5752\",\"code\":\"349\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"349\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:23:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4033, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5703\",\"code\":\"300\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:24:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4034, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5706\",\"code\":\"303\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"303\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:24:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4035, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5707\",\"code\":\"304\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"304\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:25:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4036, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5708\",\"code\":\"305\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:25:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4037, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5719\",\"code\":\"316\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"316\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:26:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4038, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5721\",\"code\":\"318\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"318\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:27:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4039, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5722\",\"code\":\"319\",\"name\":\"LILY  ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"319\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:27:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4040, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5727\",\"code\":\"324\",\"name\":\"LIVING BITTERS CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"324\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4041, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5728\",\"code\":\"325\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"325\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:28:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4042, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5732\",\"code\":\"329\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:33:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4043, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5735\",\"code\":\"332\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"332\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:34:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4044, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5736\",\"code\":\"333\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"333\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:34:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4045, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5741\",\"code\":\"338\",\"name\":\"LUMETHER  ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"338\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:35:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4046, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5743\",\"code\":\"340\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"340\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:36:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4047, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5745\",\"code\":\"342\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"342\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:37:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4048, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5746\",\"code\":\"343\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"343\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:37:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4049, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5747\",\"code\":\"344\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"344\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:38:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4050, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5748\",\"code\":\"345\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"345\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:39:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4051, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5750\",\"code\":\"347\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"347\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:39:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4052, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"6662\",\"code\":\"1259\",\"name\":\"Malaria Test Kit\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"4.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"malari.jpeg\",\"category_id\":\"1672\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"591.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1259\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:40:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4053, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5756\",\"code\":\"353\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"353\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:41:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4054, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5758\",\"code\":\"355\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"355\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:41:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4055, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5760\",\"code\":\"357\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"357\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:42:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4056, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5761\",\"code\":\"358\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"358\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:45:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4057, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5763\",\"code\":\"360\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"360\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:46:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4058, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5764\",\"code\":\"361\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"361\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:46:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4059, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5773\",\"code\":\"370\",\"name\":\"MOVATE SAPHARMA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"370\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:47:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4060, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5769\",\"code\":\"366\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"366\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:47:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4061, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5776\",\"code\":\"373\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"373\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:47:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4062, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5781\",\"code\":\"378\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"378\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4063, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5782\",\"code\":\"379\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"379\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:48:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4064, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5791\",\"code\":\"388\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"388\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:48:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4065, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5794\",\"code\":\"391\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"391\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:49:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4066, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5938\",\"code\":\"535\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"535\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:50:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4067, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5800\",\"code\":\"397\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"397\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:50:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4068, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5521\",\"code\":\"118\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:50:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4069, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5802\",\"code\":\"399\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"399\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:50:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4070, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5929\",\"code\":\"526\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"526\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:50:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4071, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5807\",\"code\":\"404\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"404\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:51:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4072, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5806\",\"code\":\"403\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"403\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:51:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4073, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5417\",\"code\":\"14\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"14\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:53:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4074, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5420\",\"code\":\"17\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"17\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:54:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4075, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5475\",\"code\":\"72\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"72\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:55:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4076, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5913\",\"code\":\"510\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"510\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4077, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5860\",\"code\":\"457\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:58:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4078, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5861\",\"code\":\"458\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"458\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 12:59:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4079, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5862\",\"code\":\"459\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"459\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:00:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4080, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5863\",\"code\":\"460\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"460\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:00:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4081, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5864\",\"code\":\"461\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"461\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:00:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4082, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5866\",\"code\":\"463\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"463\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:00:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4083, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5867\",\"code\":\"464\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"464\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:01:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4084, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5872\",\"code\":\"469\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"469\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:01:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4085, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5874\",\"code\":\"471\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"471\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:02:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4086, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5876\",\"code\":\"473\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"473\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:10:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4087, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5877\",\"code\":\"474\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"474\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:10:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4088, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5878\",\"code\":\"475\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"475\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:10:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4089, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5879\",\"code\":\"476\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"476\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:10:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4090, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5880\",\"code\":\"477\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"477\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:10:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4091, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5883\",\"code\":\"480\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:11:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4092, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5888\",\"code\":\"485\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:11:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4093, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5890\",\"code\":\"487\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"487\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:12:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4094, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5891\",\"code\":\"488\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"488\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:12:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4095, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5895\",\"code\":\"492\",\"name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"492\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:13:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4096, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5896\",\"code\":\"493\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"493\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:13:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4097, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5899\",\"code\":\"496\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"496\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:14:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4098, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5900\",\"code\":\"497\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"497\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:14:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4099, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5927\",\"code\":\"524\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"524\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4100, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5902\",\"code\":\"499\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"499\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:14:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4101, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5903\",\"code\":\"500\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4102, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5550\",\"code\":\"147\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"147\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:15:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4103, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5811\",\"code\":\"408\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"408\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:16:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4104, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5812\",\"code\":\"409\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"409\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:16:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4105, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5816\",\"code\":\"413\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"413\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:17:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4106, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5817\",\"code\":\"414\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"414\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:17:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4107, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5818\",\"code\":\"415\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"415\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:18:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4108, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5819\",\"code\":\"416\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"416\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:18:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4109, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5822\",\"code\":\"419\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"419\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:19:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4110, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5823\",\"code\":\"420\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"420\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:19:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4111, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"6080\",\"code\":\"677\",\"name\":\"Potassium Citrate (Pot Cit\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"pot-cit.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"677\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:20:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4112, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5832\",\"code\":\"429\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"429\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:21:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4113, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5833\",\"code\":\"430\",\"name\":\"PROCOLD  SYR 60ML\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"430\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:22:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4114, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5836\",\"code\":\"433\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"433\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-15 13:22:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4115, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5837\",\"code\":\"434\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"434\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:09:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4116, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5838\",\"code\":\"435\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"435\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:09:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4117, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5842\",\"code\":\"439\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"439\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:10:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4118, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5844\",\"code\":\"441\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"441\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:10:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4119, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5845\",\"code\":\"442\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:11:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4120, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5846\",\"code\":\"443\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"443\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:11:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4121, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5850\",\"code\":\"447\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"447\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:12:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4122, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5851\",\"code\":\"448\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"448\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4123, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5852\",\"code\":\"449\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"449\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:13:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4124, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5783\",\"code\":\"380\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:13:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4125, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5918\",\"code\":\"515\",\"name\":\"TRO XIME CEFUROXINE INJ 750\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"515\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:14:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4126, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5855\",\"code\":\"452\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"452\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:15:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4127, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5905\",\"code\":\"502\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"502\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:17:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4128, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5907\",\"code\":\"504\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"504\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:18:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4129, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5908\",\"code\":\"505\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"505\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:18:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4130, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5909\",\"code\":\"506\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"506\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:18:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4131, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5910\",\"code\":\"507\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"507\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:19:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4132, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5912\",\"code\":\"509\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"509\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:19:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4133, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5917\",\"code\":\"514\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"514\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:22:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4134, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5919\",\"code\":\"516\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"516\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:24:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4135, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5920\",\"code\":\"517\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"517\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:27:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4136, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5921\",\"code\":\"518\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"518\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4137, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5922\",\"code\":\"519\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"519\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:28:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4138, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5923\",\"code\":\"520\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"520\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:29:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4139, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5924\",\"code\":\"521\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"521\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:29:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4140, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5925\",\"code\":\"522\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"522\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:30:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4141, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5928\",\"code\":\"525\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"525\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:31:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4142, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5930\",\"code\":\"527\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"527\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:32:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4143, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5933\",\"code\":\"530\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"530\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:33:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4144, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5934\",\"code\":\"531\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"531\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:35:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4145, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5937\",\"code\":\"534\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"534\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:42:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4146, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5940\",\"code\":\"537\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"537\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:42:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4147, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5944\",\"code\":\"541\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"541\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:44:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4148, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5950\",\"code\":\"547\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"547\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:44:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4149, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5951\",\"code\":\"548\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"548\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:44:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4150, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5952\",\"code\":\"549\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"549\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:45:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4151, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5406\",\"code\":\"3\",\"name\":\"ZANTAC  150  25CT\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"zantac-150-25ct.jpg\",\"category_id\":\"1654\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-16 12:46:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4152, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"16\",\"date\":\"2022-09-17 09:54:36\",\"customer_id\":\"202\",\"customer\":\"Osei\",\"count\":\"103\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2605.8400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"evans\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"287\",\"suspend_id\":\"16\",\"product_id\":\"6194\",\"product_code\":\"791\",\"product_name\":\"Shaltoux 4 Way Syrup 100ml\",\"net_unit_price\":\"5.3000\",\"unit_price\":\"5.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"288\",\"suspend_id\":\"16\",\"product_id\":\"6195\",\"product_code\":\"792\",\"product_name\":\"Shaltoux Chesty Cough Syrup 100ml\",\"net_unit_price\":\"5.3000\",\"unit_price\":\"5.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"289\",\"suspend_id\":\"16\",\"product_id\":\"6144\",\"product_code\":\"741\",\"product_name\":\"Amoxicillin 250mg Capsules 50 x10 M&G\",\"net_unit_price\":\"88.9000\",\"unit_price\":\"88.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"444.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"88.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"286\",\"suspend_id\":\"16\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1445.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"285\",\"suspend_id\":\"16\",\"product_id\":\"5657\",\"product_code\":\"254\",\"product_name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"284\",\"suspend_id\":\"16\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"396.2400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"283\",\"suspend_id\":\"16\",\"product_id\":\"6032\",\"product_code\":\"629\",\"product_name\":\"Gebedol Forte\",\"net_unit_price\":\"17.2100\",\"unit_price\":\"17.2100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"172.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-17 08:18:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4153, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"17\",\"date\":\"2022-09-17 12:47:23\",\"customer_id\":\"61\",\"customer\":\"CND\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"79.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"cnd\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"294\",\"suspend_id\":\"17\",\"product_id\":\"5471\",\"product_code\":\"68\",\"product_name\":\"Baby Cough Lintus 100ml ECL\",\"net_unit_price\":\"5.0400\",\"unit_price\":\"5.0400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"295\",\"suspend_id\":\"17\",\"product_id\":\"6890\",\"product_code\":\"15222916\",\"product_name\":\"One-Step Maleria Test Kit\",\"net_unit_price\":\"4.6000\",\"unit_price\":\"4.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"292\",\"suspend_id\":\"17\",\"product_id\":\"5448\",\"product_code\":\"45\",\"product_name\":\"Apetatrust 200ml Syrup\",\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"293\",\"suspend_id\":\"17\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"291\",\"suspend_id\":\"17\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.2500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"290\",\"suspend_id\":\"17\",\"product_id\":\"5625\",\"product_code\":\"222\",\"product_name\":\"Foliron Tonic 200ml\",\"net_unit_price\":\"4.1000\",\"unit_price\":\"4.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-17 08:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4154, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5857\",\"code\":\"454\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"454\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 18:49:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4155, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5470\",\"code\":\"67\",\"name\":\"B COMPLEX TAB LOCAL Letap\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1695\",\"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\":\"67\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 18:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4156, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5560\",\"code\":\"157\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"157\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 18:58:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4157, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5561\",\"code\":\"158\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"158\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 18:59:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4158, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5620\",\"code\":\"217\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 19:28:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4159, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"5686\",\"code\":\"283\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1656\",\"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\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":\"0.0000\",\"supplier3\":null,\"supplier3price\":\"0.0000\",\"supplier4\":null,\"supplier4price\":\"0.0000\",\"supplier5\":null,\"supplier5price\":\"0.0000\",\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":\"\",\"supplier5_part_no\":\"\",\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"283\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 19:29:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4160, 'Product is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"6769\",\"code\":\"1366\",\"name\":\"Metagyl (Metzol) Syrup 200mg\\/5ml 100\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"67.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"<p>Metronidazole is an antibiotic that is <em xss=removed>used<\\/em> to treat a wide variety of infections. It works by stopping the growth of certain bacteria and parasites.<\\/p>\",\"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\":\"1366\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 19:34:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4161, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"19\",\"date\":\"2022-09-19 12:00:19\",\"customer_id\":\"186\",\"customer\":\"NANORMAN PHARMACY\",\"count\":\"493\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"4929.6200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"nanor\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"300\",\"suspend_id\":\"19\",\"product_id\":\"6088\",\"product_code\":\"685\",\"product_name\":\"Bioferon Capsules 30\'s\",\"net_unit_price\":\"23.5000\",\"unit_price\":\"23.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"70.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"301\",\"suspend_id\":\"19\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"218.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"302\",\"suspend_id\":\"19\",\"product_id\":\"6100\",\"product_code\":\"697\",\"product_name\":\"Haem Up Syrup 200ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"303\",\"suspend_id\":\"19\",\"product_id\":\"6852\",\"product_code\":\"1449\",\"product_name\":\"Samalin Adult Syrup (Non Drowsy)\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"304\",\"suspend_id\":\"19\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"10.5500\",\"unit_price\":\"10.5500\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"305\",\"suspend_id\":\"19\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"306\",\"suspend_id\":\"19\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"307\",\"suspend_id\":\"19\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"340.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"308\",\"suspend_id\":\"19\",\"product_id\":\"6233\",\"product_code\":\"830\",\"product_name\":\"Amlodipine 5mg Tablets 28s Teva\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"309\",\"suspend_id\":\"19\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"310\",\"suspend_id\":\"19\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"20.9000\",\"unit_price\":\"20.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"311\",\"suspend_id\":\"19\",\"product_id\":\"6850\",\"product_code\":\"1447\",\"product_name\":\"Flucotrust Capsules 150mg\",\"net_unit_price\":\"2.8900\",\"unit_price\":\"2.8900\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"312\",\"suspend_id\":\"19\",\"product_id\":\"6510\",\"product_code\":\"1107\",\"product_name\":\"GV- Fluc 150mg Capsules\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"313\",\"suspend_id\":\"19\",\"product_id\":\"5826\",\"product_code\":\"423\",\"product_name\":\"Plaster roll Extra care 2Inches\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"314\",\"suspend_id\":\"19\",\"product_id\":\"6125\",\"product_code\":\"722\",\"product_name\":\"Lufart Suspension\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"315\",\"suspend_id\":\"19\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"81.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"316\",\"suspend_id\":\"19\",\"product_id\":\"6211\",\"product_code\":\"808\",\"product_name\":\"Contreg Syrup 30ml\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"317\",\"suspend_id\":\"19\",\"product_id\":\"5849\",\"product_code\":\"446\",\"product_name\":\"Rhizin Syrup\",\"net_unit_price\":\"3.1000\",\"unit_price\":\"3.1000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"318\",\"suspend_id\":\"19\",\"product_id\":\"6636\",\"product_code\":\"1233\",\"product_name\":\"Cetrizan Syrup 5MG\\/5ML 60ML\",\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"319\",\"suspend_id\":\"19\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"320\",\"suspend_id\":\"19\",\"product_id\":\"6684\",\"product_code\":\"1281\",\"product_name\":\"Amoxicillin 500mg Letap\",\"net_unit_price\":\"29.7000\",\"unit_price\":\"29.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"89.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"321\",\"suspend_id\":\"19\",\"product_id\":\"6326\",\"product_code\":\"923\",\"product_name\":\"Ciprolex 500mg Tablets 10\'s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"140.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"322\",\"suspend_id\":\"19\",\"product_id\":\"6243\",\"product_code\":\"840\",\"product_name\":\"Doxycycline 100mg Capsules 200s ECL\",\"net_unit_price\":\"68.5000\",\"unit_price\":\"68.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"68.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"323\",\"suspend_id\":\"19\",\"product_id\":\"6034\",\"product_code\":\"631\",\"product_name\":\"Deep Heat Spray 150ml\",\"net_unit_price\":\"41.8000\",\"unit_price\":\"41.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"41.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"324\",\"suspend_id\":\"19\",\"product_id\":\"6607\",\"product_code\":\"1204\",\"product_name\":\"Skyclav 625\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"96.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"325\",\"suspend_id\":\"19\",\"product_id\":\"6804\",\"product_code\":\"1401\",\"product_name\":\"Buscopan Org.Tabs10mg 56\'s\",\"net_unit_price\":\"54.9000\",\"unit_price\":\"54.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"54.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"326\",\"suspend_id\":\"19\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"327\",\"suspend_id\":\"19\",\"product_id\":\"5576\",\"product_code\":\"173\",\"product_name\":\"Dicnac 100mg Suppositories\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"328\",\"suspend_id\":\"19\",\"product_id\":\"6750\",\"product_code\":\"1347\",\"product_name\":\"Clodol 100mg Suppository (Diclofenac 2X5)\",\"net_unit_price\":\"6.7000\",\"unit_price\":\"6.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"329\",\"suspend_id\":\"19\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"111.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"330\",\"suspend_id\":\"19\",\"product_id\":\"6888\",\"product_code\":\"04578245\",\"product_name\":\"Metronidazole 400mg (O-Metro)\",\"net_unit_price\":\"43.0000\",\"unit_price\":\"43.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"331\",\"suspend_id\":\"19\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"113.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"332\",\"suspend_id\":\"19\",\"product_id\":\"5676\",\"product_code\":\"273\",\"product_name\":\"Imax Delay Spray\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"333\",\"suspend_id\":\"19\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"334\",\"suspend_id\":\"19\",\"product_id\":\"5593\",\"product_code\":\"190\",\"product_name\":\"Efpac Tablets\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"77.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"335\",\"suspend_id\":\"19\",\"product_id\":\"6754\",\"product_code\":\"1351\",\"product_name\":\"Happyrona Forte Tablets 20X1X20\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"336\",\"suspend_id\":\"19\",\"product_id\":\"6204\",\"product_code\":\"801\",\"product_name\":\"Painoff Tablets 25X4\'s\",\"net_unit_price\":\"17.7000\",\"unit_price\":\"17.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"106.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"337\",\"suspend_id\":\"19\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"14.2500\",\"unit_price\":\"14.2500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"338\",\"suspend_id\":\"19\",\"product_id\":\"6207\",\"product_code\":\"804\",\"product_name\":\"Zinol 500mg Tablets (Paracetamol) 50X10\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"339\",\"suspend_id\":\"19\",\"product_id\":\"6286\",\"product_code\":\"883\",\"product_name\":\"Kidivite Syrup 200ml\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"340\",\"suspend_id\":\"19\",\"product_id\":\"5962\",\"product_code\":\"559\",\"product_name\":\"Zinvite Syrup 200ml\",\"net_unit_price\":\"6.9900\",\"unit_price\":\"6.9900\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.9400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"341\",\"suspend_id\":\"19\",\"product_id\":\"6429\",\"product_code\":\"1026\",\"product_name\":\"Onita Syrup 200ml\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"342\",\"suspend_id\":\"19\",\"product_id\":\"5448\",\"product_code\":\"45\",\"product_name\":\"Apetatrust 200ml Syrup\",\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"343\",\"suspend_id\":\"19\",\"product_id\":\"6766\",\"product_code\":\"1363\",\"product_name\":\"Kidivit Syrup 100ML\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"344\",\"suspend_id\":\"19\",\"product_id\":\"6188\",\"product_code\":\"785\",\"product_name\":\"Polygel Suspension 200ml\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"345\",\"suspend_id\":\"19\",\"product_id\":\"6815\",\"product_code\":\"1412\",\"product_name\":\"Zipferon Forte\",\"net_unit_price\":\"9.2100\",\"unit_price\":\"9.2100\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"346\",\"suspend_id\":\"19\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"182.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"347\",\"suspend_id\":\"19\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"198.1200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"348\",\"suspend_id\":\"19\",\"product_id\":\"6272\",\"product_code\":\"869\",\"product_name\":\"Ferrovita B12 Syrup 200ml\",\"net_unit_price\":\"31.5000\",\"unit_price\":\"31.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"349\",\"suspend_id\":\"19\",\"product_id\":\"6033\",\"product_code\":\"630\",\"product_name\":\"Deep Heat Rub 35g\",\"net_unit_price\":\"31.4000\",\"unit_price\":\"31.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"350\",\"suspend_id\":\"19\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"351\",\"suspend_id\":\"19\",\"product_id\":\"6573\",\"product_code\":\"1170\",\"product_name\":\"Zubes Extra Strong Cough Lozenges\",\"net_unit_price\":\"21.4000\",\"unit_price\":\"21.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"352\",\"suspend_id\":\"19\",\"product_id\":\"6818\",\"product_code\":\"1415\",\"product_name\":\"Foliron Capsules\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"353\",\"suspend_id\":\"19\",\"product_id\":\"6517\",\"product_code\":\"1114\",\"product_name\":\"Res-Q Antacid Suspension\",\"net_unit_price\":\"10.4500\",\"unit_price\":\"10.4500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"354\",\"suspend_id\":\"19\",\"product_id\":\"6428\",\"product_code\":\"1025\",\"product_name\":\"Fericon 200ml Syrup\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"355\",\"suspend_id\":\"19\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"356\",\"suspend_id\":\"19\",\"product_id\":\"6593\",\"product_code\":\"1190\",\"product_name\":\"Milk of Magnesia 125ml Letap\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"357\",\"suspend_id\":\"19\",\"product_id\":\"6037\",\"product_code\":\"634\",\"product_name\":\"Kamaclox Mouthwash 300ml\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"358\",\"suspend_id\":\"19\",\"product_id\":\"6538\",\"product_code\":\"1135\",\"product_name\":\"Drez Solution 30ml\",\"net_unit_price\":\"10.3000\",\"unit_price\":\"10.3000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"82.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"359\",\"suspend_id\":\"19\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"360\",\"suspend_id\":\"19\",\"product_id\":\"6877\",\"product_code\":\"13587208\",\"product_name\":\"Actilife multivitamin 30s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"361\",\"suspend_id\":\"19\",\"product_id\":\"6887\",\"product_code\":\"5738767\",\"product_name\":\"Actilife Flex-14 (Glucosamine Chondroitin)\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"362\",\"suspend_id\":\"19\",\"product_id\":\"6283\",\"product_code\":\"880\",\"product_name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"net_unit_price\":\"6.0200\",\"unit_price\":\"6.0200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"363\",\"suspend_id\":\"19\",\"product_id\":\"6547\",\"product_code\":\"1144\",\"product_name\":\"Menthodex Lozenges 80G Sachet 25\' ORIG\",\"net_unit_price\":\"9.8000\",\"unit_price\":\"9.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-19 08:11:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4162, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-09-19 12:02:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"30.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"special\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"364\",\"suspend_id\":\"20\",\"product_id\":\"6880\",\"product_code\":\"88345256\",\"product_name\":\"B-Clar 250 (clarithromycin 250mg)\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-19 08:14:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4163, 'POS Bill is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"18\",\"date\":\"2022-09-19 12:44:30\",\"customer_id\":\"101\",\"customer\":\"FMMS2COMMANDOS\",\"count\":\"150\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1852.8400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"fmms comm\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"403\",\"suspend_id\":\"18\",\"product_id\":\"6474\",\"product_code\":\"1071\",\"product_name\":\"Day Nurse Capsules 20\'s\",\"net_unit_price\":\"71.2000\",\"unit_price\":\"71.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"71.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"397\",\"suspend_id\":\"18\",\"product_id\":\"5619\",\"product_code\":\"216\",\"product_name\":\"Flemex Jnr. Cough Syrup 100ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"398\",\"suspend_id\":\"18\",\"product_id\":\"6451\",\"product_code\":\"1048\",\"product_name\":\"Voltfast Powder 50mg 30\'s\",\"net_unit_price\":\"53.2000\",\"unit_price\":\"53.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"53.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"399\",\"suspend_id\":\"18\",\"product_id\":\"6354\",\"product_code\":\"951\",\"product_name\":\"Parafenac\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"400\",\"suspend_id\":\"18\",\"product_id\":\"6140\",\"product_code\":\"737\",\"product_name\":\"Fabrin Tablets 50X4\",\"net_unit_price\":\"30.8000\",\"unit_price\":\"30.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"30.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"401\",\"suspend_id\":\"18\",\"product_id\":\"6601\",\"product_code\":\"1198\",\"product_name\":\"Starcold\",\"net_unit_price\":\"50.3500\",\"unit_price\":\"50.3500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.3500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"50.3500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"402\",\"suspend_id\":\"18\",\"product_id\":\"6107\",\"product_code\":\"704\",\"product_name\":\"Lexofen Plus Tablets 2x10\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"396\",\"suspend_id\":\"18\",\"product_id\":\"6166\",\"product_code\":\"763\",\"product_name\":\"Mucosyl Adult Syrup 100ml\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"409\",\"suspend_id\":\"18\",\"product_id\":\"6877\",\"product_code\":\"13587208\",\"product_name\":\"Actilife multivitamin 30s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"408\",\"suspend_id\":\"18\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"407\",\"suspend_id\":\"18\",\"product_id\":\"6595\",\"product_code\":\"1192\",\"product_name\":\"Azycin 500mg\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"406\",\"suspend_id\":\"18\",\"product_id\":\"6677\",\"product_code\":\"1274\",\"product_name\":\"Azirocin 250mg Capules\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"405\",\"suspend_id\":\"18\",\"product_id\":\"6678\",\"product_code\":\"1275\",\"product_name\":\"Azirocin Suspension\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"404\",\"suspend_id\":\"18\",\"product_id\":\"5793\",\"product_code\":\"390\",\"product_name\":\"Night Nurse Capsules 10\'s\",\"net_unit_price\":\"47.0000\",\"unit_price\":\"47.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"47.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"395\",\"suspend_id\":\"18\",\"product_id\":\"6819\",\"product_code\":\"1416\",\"product_name\":\"Peladol Junior\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"393\",\"suspend_id\":\"18\",\"product_id\":\"6572\",\"product_code\":\"1169\",\"product_name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"394\",\"suspend_id\":\"18\",\"product_id\":\"6573\",\"product_code\":\"1170\",\"product_name\":\"Zubes Extra Strong Cough Lozenges\",\"net_unit_price\":\"21.4000\",\"unit_price\":\"21.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"21.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"392\",\"suspend_id\":\"18\",\"product_id\":\"6099\",\"product_code\":\"696\",\"product_name\":\"Clear Inhaler 12\'s\",\"net_unit_price\":\"29.5000\",\"unit_price\":\"29.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"29.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"391\",\"suspend_id\":\"18\",\"product_id\":\"6760\",\"product_code\":\"1357\",\"product_name\":\"Tramadol Denk 50 Tabs B\\/10\",\"net_unit_price\":\"45.4900\",\"unit_price\":\"45.4900\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.4900\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"45.4900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"390\",\"suspend_id\":\"18\",\"product_id\":\"6558\",\"product_code\":\"1155\",\"product_name\":\"Zulu MR 100mg Tablet\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"389\",\"suspend_id\":\"18\",\"product_id\":\"6879\",\"product_code\":\"34265543\",\"product_name\":\"Zulu Extra \",\"net_unit_price\":\"4.3000\",\"unit_price\":\"4.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"388\",\"suspend_id\":\"18\",\"product_id\":\"6371\",\"product_code\":\"968\",\"product_name\":\"P-trust Pregnancy Test Kit 25\'s\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"687.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"387\",\"suspend_id\":\"18\",\"product_id\":\"6890\",\"product_code\":\"15222916\",\"product_name\":\"One-Step Maleria Test Kit\",\"net_unit_price\":\"4.6000\",\"unit_price\":\"4.6000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"230.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"386\",\"suspend_id\":\"18\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"384\",\"suspend_id\":\"18\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"385\",\"suspend_id\":\"18\",\"product_id\":\"5623\",\"product_code\":\"220\",\"product_name\":\"Flurest Tablets 10\'s\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-19 10:26:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4164, 'POS Bill is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-09-19 14:55:04\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"374\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"4593.0300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"FMMS LAKESIDE\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"528\",\"suspend_id\":\"21\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"527\",\"suspend_id\":\"21\",\"product_id\":\"5596\",\"product_code\":\"193\",\"product_name\":\"Enacef (Cefuroxime) 250mg Tablets 10s ECL\",\"net_unit_price\":\"16.8000\",\"unit_price\":\"16.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"67.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"526\",\"suspend_id\":\"21\",\"product_id\":\"6126\",\"product_code\":\"723\",\"product_name\":\"Amurox Suspension (Cefuroxime Axetil)\",\"net_unit_price\":\"11.7000\",\"unit_price\":\"11.7000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"525\",\"suspend_id\":\"21\",\"product_id\":\"6105\",\"product_code\":\"702\",\"product_name\":\"Kefrox 125mg\\/5ml suspension 70ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"523\",\"suspend_id\":\"21\",\"product_id\":\"6233\",\"product_code\":\"830\",\"product_name\":\"Amlodipine 5mg Tablets 28s Teva\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"524\",\"suspend_id\":\"21\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"226.2100\",\"unit_price\":\"226.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"226.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"226.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"522\",\"suspend_id\":\"21\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"521\",\"suspend_id\":\"21\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30s ECL\",\"net_unit_price\":\"36.9900\",\"unit_price\":\"36.9900\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"147.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"36.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"520\",\"suspend_id\":\"21\",\"product_id\":\"6741\",\"product_code\":\"1338\",\"product_name\":\"Lisinopril 5mg Tablets 28\'s Teva\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"519\",\"suspend_id\":\"21\",\"product_id\":\"6529\",\"product_code\":\"1126\",\"product_name\":\"Grison Oral Suspension 125mg\\/5ml Griseofulvin\",\"net_unit_price\":\"12.5000\",\"unit_price\":\"12.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"518\",\"suspend_id\":\"21\",\"product_id\":\"6215\",\"product_code\":\"812\",\"product_name\":\"Amciclox 250mg Capsules 10x10 Letap\",\"net_unit_price\":\"30.6900\",\"unit_price\":\"30.6900\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.3800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"517\",\"suspend_id\":\"21\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"515\",\"suspend_id\":\"21\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"516\",\"suspend_id\":\"21\",\"product_id\":\"5515\",\"product_code\":\"112\",\"product_name\":\"Cetapol Syrup\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"514\",\"suspend_id\":\"21\",\"product_id\":\"6053\",\"product_code\":\"650\",\"product_name\":\"Bonnisan Syrup 120ml\",\"net_unit_price\":\"14.9000\",\"unit_price\":\"14.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"513\",\"suspend_id\":\"21\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"87.8400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"512\",\"suspend_id\":\"21\",\"product_id\":\"6194\",\"product_code\":\"791\",\"product_name\":\"Shaltoux 4 Way Syrup 100ml\",\"net_unit_price\":\"5.3000\",\"unit_price\":\"5.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"511\",\"suspend_id\":\"21\",\"product_id\":\"6195\",\"product_code\":\"792\",\"product_name\":\"Shaltoux Chesty Cough Syrup 100ml\",\"net_unit_price\":\"5.3000\",\"unit_price\":\"5.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"510\",\"suspend_id\":\"21\",\"product_id\":\"5459\",\"product_code\":\"56\",\"product_name\":\"Asthalex Syrup 100ml\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"509\",\"suspend_id\":\"21\",\"product_id\":\"6572\",\"product_code\":\"1169\",\"product_name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"508\",\"suspend_id\":\"21\",\"product_id\":\"5619\",\"product_code\":\"216\",\"product_name\":\"Flemex Jnr. Cough Syrup 100ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"507\",\"suspend_id\":\"21\",\"product_id\":\"6368\",\"product_code\":\"965\",\"product_name\":\"Viscof S 100ml Syrup\",\"net_unit_price\":\"12.8400\",\"unit_price\":\"12.8400\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"77.0400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"506\",\"suspend_id\":\"21\",\"product_id\":\"6294\",\"product_code\":\"891\",\"product_name\":\"Menthodex 200ml Syrup ECL\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"505\",\"suspend_id\":\"21\",\"product_id\":\"5704\",\"product_code\":\"301\",\"product_name\":\"Koflet Syrup\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"504\",\"suspend_id\":\"21\",\"product_id\":\"6393\",\"product_code\":\"990\",\"product_name\":\"Luex Baby Cough Syrup 150ml\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"503\",\"suspend_id\":\"21\",\"product_id\":\"6385\",\"product_code\":\"982\",\"product_name\":\"Amcof Junior Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"502\",\"suspend_id\":\"21\",\"product_id\":\"5435\",\"product_code\":\"32\",\"product_name\":\"Amcof Adult Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"500\",\"suspend_id\":\"21\",\"product_id\":\"6201\",\"product_code\":\"798\",\"product_name\":\"Samalin Junior cough syrup 125ml\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"501\",\"suspend_id\":\"21\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"499\",\"suspend_id\":\"21\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"498\",\"suspend_id\":\"21\",\"product_id\":\"6753\",\"product_code\":\"1350\",\"product_name\":\"COA Mixture\",\"net_unit_price\":\"85.0000\",\"unit_price\":\"85.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"255.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"85.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"497\",\"suspend_id\":\"21\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"496\",\"suspend_id\":\"21\",\"product_id\":\"6605\",\"product_code\":\"1202\",\"product_name\":\"Maxmox 500mg (Amoxicillin) Eskay\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"495\",\"suspend_id\":\"21\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"473\",\"suspend_id\":\"21\",\"product_id\":\"6288\",\"product_code\":\"885\",\"product_name\":\"Tadol 50mg Capsules 20\'s\",\"net_unit_price\":\"66.5200\",\"unit_price\":\"66.5200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"199.5600\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"66.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"474\",\"suspend_id\":\"21\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"475\",\"suspend_id\":\"21\",\"product_id\":\"5570\",\"product_code\":\"167\",\"product_name\":\"Diclo Denk 100mg Tablet 10x10\",\"net_unit_price\":\"148.0500\",\"unit_price\":\"148.0500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"148.0500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"148.0500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"476\",\"suspend_id\":\"21\",\"product_id\":\"6509\",\"product_code\":\"1106\",\"product_name\":\"Gacet 1g Suppository\",\"net_unit_price\":\"13.2500\",\"unit_price\":\"13.2500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"477\",\"suspend_id\":\"21\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"478\",\"suspend_id\":\"21\",\"product_id\":\"6505\",\"product_code\":\"1102\",\"product_name\":\"Deep Heat Rub 67g\",\"net_unit_price\":\"30.7000\",\"unit_price\":\"30.7000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"122.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"30.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"479\",\"suspend_id\":\"21\",\"product_id\":\"6033\",\"product_code\":\"630\",\"product_name\":\"Deep Heat Rub 35g\",\"net_unit_price\":\"31.4000\",\"unit_price\":\"31.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"125.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"31.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"480\",\"suspend_id\":\"21\",\"product_id\":\"6561\",\"product_code\":\"1158\",\"product_name\":\"Olfen Gel 50gm\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"481\",\"suspend_id\":\"21\",\"product_id\":\"5730\",\"product_code\":\"327\",\"product_name\":\"Lofnac Gel 30mg\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"482\",\"suspend_id\":\"21\",\"product_id\":\"5629\",\"product_code\":\"226\",\"product_name\":\"Funbact A\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"483\",\"suspend_id\":\"21\",\"product_id\":\"6446\",\"product_code\":\"1043\",\"product_name\":\"Dermiron Plus\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"484\",\"suspend_id\":\"21\",\"product_id\":\"5778\",\"product_code\":\"375\",\"product_name\":\"Mycolex 3 Cream 30gm\",\"net_unit_price\":\"16.9000\",\"unit_price\":\"16.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"485\",\"suspend_id\":\"21\",\"product_id\":\"6370\",\"product_code\":\"967\",\"product_name\":\"Supirocin Ointment 15g\",\"net_unit_price\":\"24.5000\",\"unit_price\":\"24.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"24.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"486\",\"suspend_id\":\"21\",\"product_id\":\"5589\",\"product_code\":\"186\",\"product_name\":\"Drez Powder 10g\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"487\",\"suspend_id\":\"21\",\"product_id\":\"6131\",\"product_code\":\"728\",\"product_name\":\"Drez Solution 100ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"488\",\"suspend_id\":\"21\",\"product_id\":\"5587\",\"product_code\":\"184\",\"product_name\":\"Drez Ointment 10g\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"489\",\"suspend_id\":\"21\",\"product_id\":\"5654\",\"product_code\":\"251\",\"product_name\":\"Gentian violet (GV PAINT)\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"490\",\"suspend_id\":\"21\",\"product_id\":\"6097\",\"product_code\":\"694\",\"product_name\":\"Methylated Spirit 200ml\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"491\",\"suspend_id\":\"21\",\"product_id\":\"6083\",\"product_code\":\"680\",\"product_name\":\"Methylated Spirit Rokmer 60ml\",\"net_unit_price\":\"2.7000\",\"unit_price\":\"2.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"492\",\"suspend_id\":\"21\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"493\",\"suspend_id\":\"21\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"494\",\"suspend_id\":\"21\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"472\",\"suspend_id\":\"21\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"66.5300\",\"unit_price\":\"66.5300\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"266.1200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"66.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"471\",\"suspend_id\":\"21\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"470\",\"suspend_id\":\"21\",\"product_id\":\"6596\",\"product_code\":\"1193\",\"product_name\":\"Epicrom 2% Eye Drop 10ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"469\",\"suspend_id\":\"21\",\"product_id\":\"6690\",\"product_code\":\"1287\",\"product_name\":\"Seclear Eye Drop\",\"net_unit_price\":\"8.2500\",\"unit_price\":\"8.2500\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"468\",\"suspend_id\":\"21\",\"product_id\":\"5581\",\"product_code\":\"178\",\"product_name\":\"Domi 10 Suppositories\",\"net_unit_price\":\"11.3000\",\"unit_price\":\"11.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"467\",\"suspend_id\":\"21\",\"product_id\":\"6436\",\"product_code\":\"1033\",\"product_name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"net_unit_price\":\"5.3200\",\"unit_price\":\"5.3200\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.9200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"466\",\"suspend_id\":\"21\",\"product_id\":\"6188\",\"product_code\":\"785\",\"product_name\":\"Polygel Suspension 200ml\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"465\",\"suspend_id\":\"21\",\"product_id\":\"5723\",\"product_code\":\"320\",\"product_name\":\"Bells Liquid Parafin BP 100ml\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"464\",\"suspend_id\":\"21\",\"product_id\":\"5580\",\"product_code\":\"177\",\"product_name\":\"Diphex Cough Syrup\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"463\",\"suspend_id\":\"21\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"462\",\"suspend_id\":\"21\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"10.5500\",\"unit_price\":\"10.5500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.7500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-19 11:36:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4165, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-09-20 12:14:43\",\"customer_id\":\"232\",\"customer\":\"SAVIOUR\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"264.4100\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"saviour\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"540\",\"suspend_id\":\"23\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"541\",\"suspend_id\":\"23\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"539\",\"suspend_id\":\"23\",\"product_id\":\"6424\",\"product_code\":\"1021\",\"product_name\":\"Durol Tonic  Junior 200ml\",\"net_unit_price\":\"8.5500\",\"unit_price\":\"8.5500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"537\",\"suspend_id\":\"23\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"538\",\"suspend_id\":\"23\",\"product_id\":\"5532\",\"product_code\":\"129\",\"product_name\":\"Coartem 80\\/480 6s\",\"net_unit_price\":\"60.7800\",\"unit_price\":\"60.7800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"121.5600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-20 08:18:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4166, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-09-20 12:18:14\",\"customer_id\":\"283\",\"customer\":\"Empiric \",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"983.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"empiric\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"550\",\"suspend_id\":\"22\",\"product_id\":\"6118\",\"product_code\":\"715\",\"product_name\":\"Norvasc Amlodipine Besylate  5mg Tablets pfizer30\'s\",\"net_unit_price\":\"172.8000\",\"unit_price\":\"172.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"172.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"172.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"549\",\"suspend_id\":\"22\",\"product_id\":\"6717\",\"product_code\":\"1314\",\"product_name\":\"Lemsip Cold and flu Original 10\'s\",\"net_unit_price\":\"38.4000\",\"unit_price\":\"38.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"38.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"548\",\"suspend_id\":\"22\",\"product_id\":\"6703\",\"product_code\":\"1300\",\"product_name\":\"Carvedilol 12.5mg Tablets 28\'s\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"547\",\"suspend_id\":\"22\",\"product_id\":\"5711\",\"product_code\":\"308\",\"product_name\":\"Lemsip Cold and flu Max 10\'s\",\"net_unit_price\":\"44.8000\",\"unit_price\":\"44.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"44.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"546\",\"suspend_id\":\"22\",\"product_id\":\"6552\",\"product_code\":\"1149\",\"product_name\":\"Zithromax 250mg Capsules 6\'s\",\"net_unit_price\":\"186.8000\",\"unit_price\":\"186.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"560.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"186.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"545\",\"suspend_id\":\"22\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"20.9000\",\"unit_price\":\"20.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"542\",\"suspend_id\":\"22\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"544\",\"suspend_id\":\"22\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"543\",\"suspend_id\":\"22\",\"product_id\":\"5675\",\"product_code\":\"272\",\"product_name\":\"Ideos 500mg Calcium, Vitamin D3\",\"net_unit_price\":\"65.0000\",\"unit_price\":\"65.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"65.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-20 08:21:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4167, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-09-20 13:06:50\",\"customer_id\":\"217\",\"customer\":\"Ramatu\",\"count\":\"46\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"342.7600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"ramatu\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"559\",\"suspend_id\":\"24\",\"product_id\":\"5519\",\"product_code\":\"116\",\"product_name\":\"Chlo Ear Chloramphenicol Drops\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"560\",\"suspend_id\":\"24\",\"product_id\":\"5713\",\"product_code\":\"310\",\"product_name\":\"Letacam (Piroxicam)\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"558\",\"suspend_id\":\"24\",\"product_id\":\"6436\",\"product_code\":\"1033\",\"product_name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"net_unit_price\":\"5.3200\",\"unit_price\":\"5.3200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"557\",\"suspend_id\":\"24\",\"product_id\":\"6455\",\"product_code\":\"1052\",\"product_name\":\"Paracetamol 500mg Tablets 100\'s EXE\",\"net_unit_price\":\"19.7300\",\"unit_price\":\"19.7300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.4600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.7300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"556\",\"suspend_id\":\"24\",\"product_id\":\"5582\",\"product_code\":\"179\",\"product_name\":\"Domi 30mg Suppositories\",\"net_unit_price\":\"12.5000\",\"unit_price\":\"12.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"555\",\"suspend_id\":\"24\",\"product_id\":\"5581\",\"product_code\":\"178\",\"product_name\":\"Domi 10 Suppositories\",\"net_unit_price\":\"11.3000\",\"unit_price\":\"11.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"553\",\"suspend_id\":\"24\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"554\",\"suspend_id\":\"24\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"551\",\"suspend_id\":\"24\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"552\",\"suspend_id\":\"24\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-20 09:21:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4168, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-09-20 15:49:09\",\"customer_id\":\"43\",\"customer\":\"Aseye\",\"count\":\"72\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1333.1500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"aseye\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"570\",\"suspend_id\":\"25\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"571\",\"suspend_id\":\"25\",\"product_id\":\"6613\",\"product_code\":\"1210\",\"product_name\":\"Enterogemina 5ml  Ampoles 10\'s\",\"net_unit_price\":\"45.6000\",\"unit_price\":\"45.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"91.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"45.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"572\",\"suspend_id\":\"25\",\"product_id\":\"6779\",\"product_code\":\"1376\",\"product_name\":\"Actifed Multi Action Tabs 12\'s\",\"net_unit_price\":\"46.0000\",\"unit_price\":\"46.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"92.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"46.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"573\",\"suspend_id\":\"25\",\"product_id\":\"6563\",\"product_code\":\"1160\",\"product_name\":\"Polygynax Pessaries 12\'s\",\"net_unit_price\":\"67.0000\",\"unit_price\":\"67.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"67.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"67.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"574\",\"suspend_id\":\"25\",\"product_id\":\"6888\",\"product_code\":\"04578245\",\"product_name\":\"Metronidazole 400mg (O-Metro)\",\"net_unit_price\":\"43.0000\",\"unit_price\":\"43.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"575\",\"suspend_id\":\"25\",\"product_id\":\"6327\",\"product_code\":\"924\",\"product_name\":\"Flagentyl 500mg Tablets 4\'s secnidazole\",\"net_unit_price\":\"28.6000\",\"unit_price\":\"28.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"576\",\"suspend_id\":\"25\",\"product_id\":\"6365\",\"product_code\":\"962\",\"product_name\":\"Enacef (cefuroxime) 500mg Tablets\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"577\",\"suspend_id\":\"25\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.8500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"578\",\"suspend_id\":\"25\",\"product_id\":\"6332\",\"product_code\":\"929\",\"product_name\":\"Adom Koo Capsules\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"579\",\"suspend_id\":\"25\",\"product_id\":\"6364\",\"product_code\":\"961\",\"product_name\":\"Daktacort Cream 15g\",\"net_unit_price\":\"35.9000\",\"unit_price\":\"35.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"35.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"580\",\"suspend_id\":\"25\",\"product_id\":\"6287\",\"product_code\":\"884\",\"product_name\":\"Zymax (Azithromycin) Capsules 500mg ECL\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"568\",\"suspend_id\":\"25\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"569\",\"suspend_id\":\"25\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"567\",\"suspend_id\":\"25\",\"product_id\":\"5757\",\"product_code\":\"354\",\"product_name\":\"Mark 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"566\",\"suspend_id\":\"25\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"565\",\"suspend_id\":\"25\",\"product_id\":\"6475\",\"product_code\":\"1072\",\"product_name\":\"Hyponidd Tablets 20\'s\",\"net_unit_price\":\"33.0000\",\"unit_price\":\"33.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"33.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"561\",\"suspend_id\":\"25\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"562\",\"suspend_id\":\"25\",\"product_id\":\"6037\",\"product_code\":\"634\",\"product_name\":\"Kamaclox Mouthwash 300ml\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"564\",\"suspend_id\":\"25\",\"product_id\":\"6753\",\"product_code\":\"1350\",\"product_name\":\"COA Mixture\",\"net_unit_price\":\"85.0000\",\"unit_price\":\"85.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"85.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"563\",\"suspend_id\":\"25\",\"product_id\":\"6458\",\"product_code\":\"1055\",\"product_name\":\"Infa V Pessaries\",\"net_unit_price\":\"22.9000\",\"unit_price\":\"22.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-20 12:18:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4169, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-09-21 07:56:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"215.9300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"becky\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"584\",\"suspend_id\":\"26\",\"product_id\":\"6241\",\"product_code\":\"838\",\"product_name\":\"Multivitamin Tablets 50x10 Ecl\",\"net_unit_price\":\"14.9800\",\"unit_price\":\"14.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.9800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"583\",\"suspend_id\":\"26\",\"product_id\":\"6236\",\"product_code\":\"833\",\"product_name\":\"B Complex Tablets 50X10 ECL\",\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"582\",\"suspend_id\":\"26\",\"product_id\":\"6534\",\"product_code\":\"1131\",\"product_name\":\"Vitamin B Denk\",\"net_unit_price\":\"142.0500\",\"unit_price\":\"142.0500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"142.0500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"142.0500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"581\",\"suspend_id\":\"26\",\"product_id\":\"6522\",\"product_code\":\"1119\",\"product_name\":\"Menopace Tabs UK\",\"net_unit_price\":\"49.7000\",\"unit_price\":\"49.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 05:00:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4170, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-09-21 09:41:51\",\"customer_id\":\"263\",\"customer\":\"URBAN\",\"count\":\"26\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"236.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"urban\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"589\",\"suspend_id\":\"27\",\"product_id\":\"6243\",\"product_code\":\"840\",\"product_name\":\"Doxycycline 100mg Capsules 200s ECL\",\"net_unit_price\":\"68.5000\",\"unit_price\":\"68.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"68.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"588\",\"suspend_id\":\"27\",\"product_id\":\"5584\",\"product_code\":\"181\",\"product_name\":\"Doxycycline 100mg Letap\",\"net_unit_price\":\"17.5000\",\"unit_price\":\"17.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"587\",\"suspend_id\":\"27\",\"product_id\":\"6445\",\"product_code\":\"1042\",\"product_name\":\"Vermox Suspension\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"586\",\"suspend_id\":\"27\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"585\",\"suspend_id\":\"27\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 05:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4171, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-09-21 11:47:26\",\"customer_id\":\"9\",\"customer\":\"A.Y.D\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"156.2800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"    ayd\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"636\",\"suspend_id\":\"29\",\"product_id\":\"5715\",\"product_code\":\"312\",\"product_name\":\"Letamox 500mg plain Tablets\",\"net_unit_price\":\"13.1400\",\"unit_price\":\"13.1400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.2800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"637\",\"suspend_id\":\"29\",\"product_id\":\"6554\",\"product_code\":\"1151\",\"product_name\":\"Man Up Capsules 60\'s\",\"net_unit_price\":\"130.0000\",\"unit_price\":\"130.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"130.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 07:50:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4172, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-09-21 11:43:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"65\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"379.9100\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"kasba\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"620\",\"suspend_id\":\"28\",\"product_id\":\"6617\",\"product_code\":\"1214\",\"product_name\":\"Babyvite 50ml Drops\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"621\",\"suspend_id\":\"28\",\"product_id\":\"5871\",\"product_code\":\"468\",\"product_name\":\"Shalcip Tablets 500mg 10\'s (Ciprofloxacin)\",\"net_unit_price\":\"4.3000\",\"unit_price\":\"4.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"622\",\"suspend_id\":\"28\",\"product_id\":\"5911\",\"product_code\":\"508\",\"product_name\":\"Tinatett Venecare 750ml\",\"net_unit_price\":\"23.1000\",\"unit_price\":\"23.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"623\",\"suspend_id\":\"28\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"net_unit_price\":\"5.9800\",\"unit_price\":\"5.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.9600\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"624\",\"suspend_id\":\"28\",\"product_id\":\"6267\",\"product_code\":\"864\",\"product_name\":\"Stopkof Cold and Catarrh Tablets 12s\",\"net_unit_price\":\"8.0400\",\"unit_price\":\"8.0400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.0800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.0400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"625\",\"suspend_id\":\"28\",\"product_id\":\"6649\",\"product_code\":\"1246\",\"product_name\":\"Stopkof Cold and Catarrh Syrup\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"626\",\"suspend_id\":\"28\",\"product_id\":\"5716\",\"product_code\":\"313\",\"product_name\":\"Letaron 200ml Syrup\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"627\",\"suspend_id\":\"28\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"628\",\"suspend_id\":\"28\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"629\",\"suspend_id\":\"28\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"630\",\"suspend_id\":\"28\",\"product_id\":\"6888\",\"product_code\":\"04578245\",\"product_name\":\"Metronidazole 400mg (O-Metro)\",\"net_unit_price\":\"43.0000\",\"unit_price\":\"43.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"43.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"631\",\"suspend_id\":\"28\",\"product_id\":\"6222\",\"product_code\":\"819\",\"product_name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"632\",\"suspend_id\":\"28\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"633\",\"suspend_id\":\"28\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"634\",\"suspend_id\":\"28\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"635\",\"suspend_id\":\"28\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"619\",\"suspend_id\":\"28\",\"product_id\":\"5957\",\"product_code\":\"554\",\"product_name\":\"Zincovit Drops 15ml\",\"net_unit_price\":\"8.8200\",\"unit_price\":\"8.8200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.8200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"618\",\"suspend_id\":\"28\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"617\",\"suspend_id\":\"28\",\"product_id\":\"5713\",\"product_code\":\"310\",\"product_name\":\"Letacam (Piroxicam)\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"616\",\"suspend_id\":\"28\",\"product_id\":\"5472\",\"product_code\":\"69\",\"product_name\":\"Baseboom Gel\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"613\",\"suspend_id\":\"28\",\"product_id\":\"6863\",\"product_code\":\"59208125\",\"product_name\":\"Fiesta Condom Extra Thin\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"615\",\"suspend_id\":\"28\",\"product_id\":\"6865\",\"product_code\":\"55663121\",\"product_name\":\"Fiesta Condom Dumsor\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"614\",\"suspend_id\":\"28\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 08:02:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4173, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-09-21 13:04:19\",\"customer_id\":\"102\",\"customer\":\"FMMS 3 PHARMACY ROSAROSA\",\"count\":\"68\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"691.3000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"645\",\"suspend_id\":\"30\",\"product_id\":\"6170\",\"product_code\":\"767\",\"product_name\":\"Zerocid Plus Suspension 200ML\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"646\",\"suspend_id\":\"30\",\"product_id\":\"6108\",\"product_code\":\"705\",\"product_name\":\"Klire Antacid Suspension 125ml\",\"net_unit_price\":\"11.6000\",\"unit_price\":\"11.6000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"69.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"647\",\"suspend_id\":\"30\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"644\",\"suspend_id\":\"30\",\"product_id\":\"6363\",\"product_code\":\"960\",\"product_name\":\"Bells Vitamin C Syrup\",\"net_unit_price\":\"22.7800\",\"unit_price\":\"22.7800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"113.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"643\",\"suspend_id\":\"30\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.2800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"642\",\"suspend_id\":\"30\",\"product_id\":\"6098\",\"product_code\":\"695\",\"product_name\":\"Klire Tablet 10\'s\",\"net_unit_price\":\"5.6000\",\"unit_price\":\"5.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"640\",\"suspend_id\":\"30\",\"product_id\":\"6670\",\"product_code\":\"1267\",\"product_name\":\"Dicnac 75\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"95.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"641\",\"suspend_id\":\"30\",\"product_id\":\"6558\",\"product_code\":\"1155\",\"product_name\":\"Zulu MR 100mg Tablet\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"638\",\"suspend_id\":\"30\",\"product_id\":\"6870\",\"product_code\":\"04973952\",\"product_name\":\"Vinmythro 500 Clarithromycin Tablets  500mg ECL\",\"net_unit_price\":\"40.1400\",\"unit_price\":\"40.1400\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"639\",\"suspend_id\":\"30\",\"product_id\":\"6882\",\"product_code\":\"69020596\",\"product_name\":\"Clopidogrel Frelet 75\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 09:23:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4174, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-09-21 14:26:13\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"99\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1520.2400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"655\",\"suspend_id\":\"31\",\"product_id\":\"6457\",\"product_code\":\"1054\",\"product_name\":\"Naklofen Duo Capsules 75mg 20\'s\",\"net_unit_price\":\"43.9000\",\"unit_price\":\"43.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"219.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"656\",\"suspend_id\":\"31\",\"product_id\":\"6017\",\"product_code\":\"614\",\"product_name\":\"Diclofenac 75mg Tablets Sandoz 20\'s\",\"net_unit_price\":\"15.0200\",\"unit_price\":\"15.0200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"657\",\"suspend_id\":\"31\",\"product_id\":\"6455\",\"product_code\":\"1052\",\"product_name\":\"Paracetamol 500mg Tablets 100\'s EXE\",\"net_unit_price\":\"19.7300\",\"unit_price\":\"19.7300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"98.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.7300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"658\",\"suspend_id\":\"31\",\"product_id\":\"6019\",\"product_code\":\"616\",\"product_name\":\"Cetapol 500mg Tablet 2X10\",\"net_unit_price\":\"2.5300\",\"unit_price\":\"2.5300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"659\",\"suspend_id\":\"31\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"660\",\"suspend_id\":\"31\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"661\",\"suspend_id\":\"31\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"662\",\"suspend_id\":\"31\",\"product_id\":\"6222\",\"product_code\":\"819\",\"product_name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"663\",\"suspend_id\":\"31\",\"product_id\":\"6115\",\"product_code\":\"712\",\"product_name\":\"Gudapet Syrup 200ml\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"664\",\"suspend_id\":\"31\",\"product_id\":\"6184\",\"product_code\":\"781\",\"product_name\":\"Magnavit Capsules 30\'s\",\"net_unit_price\":\"7.8500\",\"unit_price\":\"7.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.2500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"665\",\"suspend_id\":\"31\",\"product_id\":\"6533\",\"product_code\":\"1130\",\"product_name\":\"Atenolol 50mg Tablets 28\'s (ECL)\",\"net_unit_price\":\"3.9000\",\"unit_price\":\"3.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"666\",\"suspend_id\":\"31\",\"product_id\":\"5624\",\"product_code\":\"221\",\"product_name\":\"Foligrow Syrup 200ml\",\"net_unit_price\":\"20.1000\",\"unit_price\":\"20.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"654\",\"suspend_id\":\"31\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"66.5300\",\"unit_price\":\"66.5300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"332.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"66.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"653\",\"suspend_id\":\"31\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"652\",\"suspend_id\":\"31\",\"product_id\":\"5532\",\"product_code\":\"129\",\"product_name\":\"Coartem 80\\/480 6s\",\"net_unit_price\":\"60.7800\",\"unit_price\":\"60.7800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"303.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"648\",\"suspend_id\":\"31\",\"product_id\":\"6663\",\"product_code\":\"1260\",\"product_name\":\"Cotton Wool 25gm\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"649\",\"suspend_id\":\"31\",\"product_id\":\"5548\",\"product_code\":\"145\",\"product_name\":\"Crepe Bandage 2Inches Xtra care\",\"net_unit_price\":\"2.9800\",\"unit_price\":\"2.9800\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.8800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"651\",\"suspend_id\":\"31\",\"product_id\":\"6134\",\"product_code\":\"731\",\"product_name\":\"Crepe Bandage 4 Inches Xtra Care\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"650\",\"suspend_id\":\"31\",\"product_id\":\"5549\",\"product_code\":\"146\",\"product_name\":\"Crepe Bandage 6 Inches Xtra Care\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-21 10:46:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4175, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-09-22 07:38:46\",\"customer_id\":\"202\",\"customer\":\"Osei\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"82.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"osei\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"669\",\"suspend_id\":\"33\",\"product_id\":\"6198\",\"product_code\":\"795\",\"product_name\":\"Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"668\",\"suspend_id\":\"33\",\"product_id\":\"5947\",\"product_code\":\"544\",\"product_name\":\"Wormbase 400mg Tablets\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-22 03:41:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4176, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"32\",\"date\":\"2022-09-22 07:37:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"124.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"cash customer\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"667\",\"suspend_id\":\"32\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tot\'hema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"124.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-22 03:53:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4177, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-09-22 10:08:26\",\"customer_id\":\"284\",\"customer\":\"Dreamland\",\"count\":\"63\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"409.4800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"DREAM\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"677\",\"suspend_id\":\"34\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.1200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"678\",\"suspend_id\":\"34\",\"product_id\":\"5689\",\"product_code\":\"286\",\"product_name\":\"Joy Ointment\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"679\",\"suspend_id\":\"34\",\"product_id\":\"5451\",\"product_code\":\"48\",\"product_name\":\"Arfan 20\\/120mg\",\"net_unit_price\":\"5.8600\",\"unit_price\":\"5.8600\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.1600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"680\",\"suspend_id\":\"34\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"676\",\"suspend_id\":\"34\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"675\",\"suspend_id\":\"34\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"672\",\"suspend_id\":\"34\",\"product_id\":\"6386\",\"product_code\":\"983\",\"product_name\":\"Paingay Capsules\",\"net_unit_price\":\"3.2000\",\"unit_price\":\"3.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"673\",\"suspend_id\":\"34\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"674\",\"suspend_id\":\"34\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"87.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"671\",\"suspend_id\":\"34\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"670\",\"suspend_id\":\"34\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-22 06:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4178, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-09-22 11:38:10\",\"customer_id\":\"105\",\"customer\":\"Fortune\",\"count\":\"24\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"178.9000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"wait\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"703\",\"suspend_id\":\"36\",\"product_id\":\"6705\",\"product_code\":\"1302\",\"product_name\":\"Sildenafil 100mg Tablets 8\'s\",\"net_unit_price\":\"15.8000\",\"unit_price\":\"15.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"702\",\"suspend_id\":\"36\",\"product_id\":\"6706\",\"product_code\":\"1303\",\"product_name\":\"Sildenafil 50mg Tablets 8\'s\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"701\",\"suspend_id\":\"36\",\"product_id\":\"6651\",\"product_code\":\"1248\",\"product_name\":\"Kalamina Lotion 120ml\",\"net_unit_price\":\"7.4400\",\"unit_price\":\"7.4400\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"700\",\"suspend_id\":\"36\",\"product_id\":\"6354\",\"product_code\":\"951\",\"product_name\":\"Parafenac\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"699\",\"suspend_id\":\"36\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"698\",\"suspend_id\":\"36\",\"product_id\":\"5667\",\"product_code\":\"264\",\"product_name\":\"Honeykof Herbal Cough Syrup 100ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"697\",\"suspend_id\":\"36\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-22 07:46:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4179, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"38\",\"date\":\"2022-09-23 10:55:46\",\"customer_id\":\"243\",\"customer\":\"Osuman Sumaila\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"9.2000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"walk\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"721\",\"suspend_id\":\"38\",\"product_id\":\"5453\",\"product_code\":\"50\",\"product_name\":\"Ascoryl Syrup 125ml\",\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-23 06:57:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4180, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"39\",\"date\":\"2022-09-23 13:23:57\",\"customer_id\":\"246\",\"customer\":\"SUCCESS\",\"count\":\"258\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1955.8400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"sucess\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"783\",\"suspend_id\":\"39\",\"product_id\":\"6448\",\"product_code\":\"1045\",\"product_name\":\"Diagellates Elixir 125ml\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"782\",\"suspend_id\":\"39\",\"product_id\":\"6862\",\"product_code\":\"03174833\",\"product_name\":\"Promethazine Syrup 60ml ECL\",\"net_unit_price\":\"4.0200\",\"unit_price\":\"4.0200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"780\",\"suspend_id\":\"39\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"781\",\"suspend_id\":\"39\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"779\",\"suspend_id\":\"39\",\"product_id\":\"6436\",\"product_code\":\"1033\",\"product_name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"net_unit_price\":\"5.3200\",\"unit_price\":\"5.3200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"778\",\"suspend_id\":\"39\",\"product_id\":\"6627\",\"product_code\":\"1224\",\"product_name\":\"Paracetamol 500mg Tablets Ayrton\",\"net_unit_price\":\"79.1500\",\"unit_price\":\"79.1500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.1500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"79.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"777\",\"suspend_id\":\"39\",\"product_id\":\"6339\",\"product_code\":\"936\",\"product_name\":\"Pregnacare Tablets 19\'s\",\"net_unit_price\":\"60.3000\",\"unit_price\":\"60.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"776\",\"suspend_id\":\"39\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"775\",\"suspend_id\":\"39\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"774\",\"suspend_id\":\"39\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"772\",\"suspend_id\":\"39\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"10.5500\",\"unit_price\":\"10.5500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"105.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"773\",\"suspend_id\":\"39\",\"product_id\":\"6569\",\"product_code\":\"1166\",\"product_name\":\"Luex Adult Dry Cough 150ml syrup\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"771\",\"suspend_id\":\"39\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"770\",\"suspend_id\":\"39\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"8.3200\",\"unit_price\":\"8.3200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"769\",\"suspend_id\":\"39\",\"product_id\":\"6298\",\"product_code\":\"895\",\"product_name\":\"Malar-2 Forte DS Tablets 6\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"768\",\"suspend_id\":\"39\",\"product_id\":\"6216\",\"product_code\":\"813\",\"product_name\":\"Ampicillin 250mg Capsules 50x10 Letap\",\"net_unit_price\":\"1.9000\",\"unit_price\":\"1.9000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"95.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"766\",\"suspend_id\":\"39\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.5600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"767\",\"suspend_id\":\"39\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"113.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"765\",\"suspend_id\":\"39\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"764\",\"suspend_id\":\"39\",\"product_id\":\"5559\",\"product_code\":\"156\",\"product_name\":\"Danrub Ointment 40g\",\"net_unit_price\":\"9.9300\",\"unit_price\":\"9.9300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"762\",\"suspend_id\":\"39\",\"product_id\":\"6883\",\"product_code\":\"54358257\",\"product_name\":\"Losartan Potassium 50mg Tablet OA&G\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"763\",\"suspend_id\":\"39\",\"product_id\":\"5993\",\"product_code\":\"590\",\"product_name\":\"Calamine ointment 40mg\",\"net_unit_price\":\"9.2200\",\"unit_price\":\"9.2200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"761\",\"suspend_id\":\"39\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"760\",\"suspend_id\":\"39\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"758\",\"suspend_id\":\"39\",\"product_id\":\"6384\",\"product_code\":\"981\",\"product_name\":\"Gebexime Suspension 50ml\",\"net_unit_price\":\"9.6600\",\"unit_price\":\"9.6600\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"77.2800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"759\",\"suspend_id\":\"39\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"757\",\"suspend_id\":\"39\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"756\",\"suspend_id\":\"39\",\"product_id\":\"6457\",\"product_code\":\"1054\",\"product_name\":\"Naklofen Duo Capsules 75mg 20\'s\",\"net_unit_price\":\"43.9000\",\"unit_price\":\"43.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"131.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-23 09:41:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4181, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"40\",\"date\":\"2022-09-24 09:16:42\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"27.2100\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"sliver\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"785\",\"suspend_id\":\"40\",\"product_id\":\"6032\",\"product_code\":\"629\",\"product_name\":\"Gebedol Forte\",\"net_unit_price\":\"17.2100\",\"unit_price\":\"17.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"784\",\"suspend_id\":\"40\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-24 05:25:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4182, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"41\",\"date\":\"2022-09-24 09:52:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"134\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"877.0700\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"lexgina\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"815\",\"suspend_id\":\"41\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"814\",\"suspend_id\":\"41\",\"product_id\":\"6053\",\"product_code\":\"650\",\"product_name\":\"Bonnisan Syrup 120ml\",\"net_unit_price\":\"16.3700\",\"unit_price\":\"16.3700\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.3700\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.3700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"811\",\"suspend_id\":\"41\",\"product_id\":\"5716\",\"product_code\":\"313\",\"product_name\":\"Letaron 200ml Syrup\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"812\",\"suspend_id\":\"41\",\"product_id\":\"5973\",\"product_code\":\"570\",\"product_name\":\"Finelife Blood Tonic 200ml\",\"net_unit_price\":\"8.3000\",\"unit_price\":\"8.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"813\",\"suspend_id\":\"41\",\"product_id\":\"5956\",\"product_code\":\"553\",\"product_name\":\"Zincofer Syrup 200ml\",\"net_unit_price\":\"17.8400\",\"unit_price\":\"17.8400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.6800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"809\",\"suspend_id\":\"41\",\"product_id\":\"6212\",\"product_code\":\"809\",\"product_name\":\"Hemoforce Family Syrup 200ml\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"810\",\"suspend_id\":\"41\",\"product_id\":\"6213\",\"product_code\":\"810\",\"product_name\":\"Hemoforce Plus Syrup 200ml\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"808\",\"suspend_id\":\"41\",\"product_id\":\"6148\",\"product_code\":\"745\",\"product_name\":\"Tobin\'s Cod Liver Oil 10X10\",\"net_unit_price\":\"24.3000\",\"unit_price\":\"24.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"807\",\"suspend_id\":\"41\",\"product_id\":\"6376\",\"product_code\":\"973\",\"product_name\":\"Letavin (Griseofulvin)125mg Tablets\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"806\",\"suspend_id\":\"41\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"804\",\"suspend_id\":\"41\",\"product_id\":\"5991\",\"product_code\":\"588\",\"product_name\":\"Kwik Action Tablets 50x4\",\"net_unit_price\":\"37.7000\",\"unit_price\":\"37.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"37.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"805\",\"suspend_id\":\"41\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"803\",\"suspend_id\":\"41\",\"product_id\":\"6147\",\"product_code\":\"744\",\"product_name\":\"Cafalgin Caplets 25x10\",\"net_unit_price\":\"35.2000\",\"unit_price\":\"35.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"35.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"802\",\"suspend_id\":\"41\",\"product_id\":\"6573\",\"product_code\":\"1170\",\"product_name\":\"Zubes Extra Strong Cough Lozenges\",\"net_unit_price\":\"21.4000\",\"unit_price\":\"21.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"801\",\"suspend_id\":\"41\",\"product_id\":\"6361\",\"product_code\":\"958\",\"product_name\":\"Basecold Tablets (50x4)\",\"net_unit_price\":\"49.5000\",\"unit_price\":\"49.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"800\",\"suspend_id\":\"41\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"798\",\"suspend_id\":\"41\",\"product_id\":\"6607\",\"product_code\":\"1204\",\"product_name\":\"Skyclav 625\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"799\",\"suspend_id\":\"41\",\"product_id\":\"6096\",\"product_code\":\"693\",\"product_name\":\"Mist Sennaco ROKMER\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"797\",\"suspend_id\":\"41\",\"product_id\":\"6365\",\"product_code\":\"962\",\"product_name\":\"Enacef (cefuroxime) 500mg Tablets\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"795\",\"suspend_id\":\"41\",\"product_id\":\"6592\",\"product_code\":\"1189\",\"product_name\":\"Co-Trimoxazole (Septrin) Suspension 100ml\",\"net_unit_price\":\"3.1800\",\"unit_price\":\"3.1800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"796\",\"suspend_id\":\"41\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"794\",\"suspend_id\":\"41\",\"product_id\":\"6381\",\"product_code\":\"978\",\"product_name\":\"Flucloxacillin 100ml Suspension Letap\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"791\",\"suspend_id\":\"41\",\"product_id\":\"5906\",\"product_code\":\"503\",\"product_name\":\"Tetracycline Capsules\",\"net_unit_price\":\"15.8200\",\"unit_price\":\"15.8200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.4600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"792\",\"suspend_id\":\"41\",\"product_id\":\"6216\",\"product_code\":\"813\",\"product_name\":\"Ampicillin 250mg Capsules 50x10 Letap\",\"net_unit_price\":\"1.9000\",\"unit_price\":\"1.9000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"30.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"793\",\"suspend_id\":\"41\",\"product_id\":\"6491\",\"product_code\":\"1088\",\"product_name\":\"Co-Trimoxazole 80\\/400mg(Septrin)Tablets 100x10\",\"net_unit_price\":\"9.6200\",\"unit_price\":\"9.6200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.2400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"790\",\"suspend_id\":\"41\",\"product_id\":\"6223\",\"product_code\":\"820\",\"product_name\":\"Indomethacin 250mg Capsules 50x10 Letap\",\"net_unit_price\":\"0.6000\",\"unit_price\":\"0.6000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"0.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"787\",\"suspend_id\":\"41\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.1400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"788\",\"suspend_id\":\"41\",\"product_id\":\"6193\",\"product_code\":\"790\",\"product_name\":\"Shalcip TZ Tablets 10\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"789\",\"suspend_id\":\"41\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"786\",\"suspend_id\":\"41\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-24 06:52:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4183, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"43\",\"date\":\"2022-09-24 14:26:27\",\"customer_id\":\"130\",\"customer\":\"isaackwakuasantesk\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"20.9000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"isaac\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"854\",\"suspend_id\":\"43\",\"product_id\":\"5947\",\"product_code\":\"544\",\"product_name\":\"Wormbase 400mg Tablets\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"855\",\"suspend_id\":\"43\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-24 10:28:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4184, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"42\",\"date\":\"2022-09-24 14:25:40\",\"customer_id\":\"217\",\"customer\":\"Ramatu\",\"count\":\"110\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"627.8300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"ramatu\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"852\",\"suspend_id\":\"42\",\"product_id\":\"6213\",\"product_code\":\"810\",\"product_name\":\"Hemoforce Plus Syrup 200ml\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"853\",\"suspend_id\":\"42\",\"product_id\":\"6674\",\"product_code\":\"1271\",\"product_name\":\"Plaster roll Extra care 1Inch\",\"net_unit_price\":\"4.4500\",\"unit_price\":\"4.4500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.4500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"851\",\"suspend_id\":\"42\",\"product_id\":\"6212\",\"product_code\":\"809\",\"product_name\":\"Hemoforce Family Syrup 200ml\",\"net_unit_price\":\"6.6500\",\"unit_price\":\"6.6500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"850\",\"suspend_id\":\"42\",\"product_id\":\"6846\",\"product_code\":\"1443\",\"product_name\":\"Haemo Forte Syrup 100ml\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"849\",\"suspend_id\":\"42\",\"product_id\":\"6430\",\"product_code\":\"1027\",\"product_name\":\"Onidoll Tablets\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"847\",\"suspend_id\":\"42\",\"product_id\":\"6019\",\"product_code\":\"616\",\"product_name\":\"Cetapol 500mg Tablet 2X10\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"848\",\"suspend_id\":\"42\",\"product_id\":\"5598\",\"product_code\":\"195\",\"product_name\":\"Entramol 500mg Tablets 15X12\",\"net_unit_price\":\"4.3000\",\"unit_price\":\"4.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"846\",\"suspend_id\":\"42\",\"product_id\":\"5603\",\"product_code\":\"200\",\"product_name\":\"Etisala Capsules\",\"net_unit_price\":\"4.4000\",\"unit_price\":\"4.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"845\",\"suspend_id\":\"42\",\"product_id\":\"6872\",\"product_code\":\"97726773\",\"product_name\":\"Deworm 500mg tablets\",\"net_unit_price\":\"2.2000\",\"unit_price\":\"2.2000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"843\",\"suspend_id\":\"42\",\"product_id\":\"6777\",\"product_code\":\"1374\",\"product_name\":\"Omecet (Omeprazole) Caps 20mg 100\' ECL\",\"net_unit_price\":\"21.7400\",\"unit_price\":\"21.7400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.7400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"21.7400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"844\",\"suspend_id\":\"42\",\"product_id\":\"6323\",\"product_code\":\"920\",\"product_name\":\"Polygynax Pessaries 6\'s\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"841\",\"suspend_id\":\"42\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"842\",\"suspend_id\":\"42\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"840\",\"suspend_id\":\"42\",\"product_id\":\"6533\",\"product_code\":\"1130\",\"product_name\":\"Atenolol 50mg Tablets 28\'s (ECL)\",\"net_unit_price\":\"3.9000\",\"unit_price\":\"3.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"835\",\"suspend_id\":\"42\",\"product_id\":\"5994\",\"product_code\":\"591\",\"product_name\":\"Alugel Tablets 50\'s\",\"net_unit_price\":\"33.6000\",\"unit_price\":\"33.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"33.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"839\",\"suspend_id\":\"42\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"838\",\"suspend_id\":\"42\",\"product_id\":\"6226\",\"product_code\":\"823\",\"product_name\":\"Macrafolin Syrup 125ml\",\"net_unit_price\":\"1.9000\",\"unit_price\":\"1.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"837\",\"suspend_id\":\"42\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"836\",\"suspend_id\":\"42\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"834\",\"suspend_id\":\"42\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"833\",\"suspend_id\":\"42\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"832\",\"suspend_id\":\"42\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"86.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"831\",\"suspend_id\":\"42\",\"product_id\":\"5509\",\"product_code\":\"106\",\"product_name\":\"Cartef Suspension\",\"net_unit_price\":\"6.8800\",\"unit_price\":\"6.8800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.6400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-24 10:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4185, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"44\",\"date\":\"2022-09-24 14:33:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"42\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"670.4300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"five2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"869\",\"suspend_id\":\"44\",\"product_id\":\"6418\",\"product_code\":\"1015\",\"product_name\":\"Cetrizan 10mg Tablets 20\'s\",\"net_unit_price\":\"6.3800\",\"unit_price\":\"6.3800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"868\",\"suspend_id\":\"44\",\"product_id\":\"5984\",\"product_code\":\"581\",\"product_name\":\"Starwin Milk of Magnesia 360ml\",\"net_unit_price\":\"22.9100\",\"unit_price\":\"22.9100\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.7300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"866\",\"suspend_id\":\"44\",\"product_id\":\"6057\",\"product_code\":\"654\",\"product_name\":\"Liv 52 Tablets\",\"net_unit_price\":\"41.5000\",\"unit_price\":\"41.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"41.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"867\",\"suspend_id\":\"44\",\"product_id\":\"6573\",\"product_code\":\"1170\",\"product_name\":\"Zubes Extra Strong Cough Lozenges\",\"net_unit_price\":\"21.4000\",\"unit_price\":\"21.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"865\",\"suspend_id\":\"44\",\"product_id\":\"5762\",\"product_code\":\"359\",\"product_name\":\"Mentat Tablets\",\"net_unit_price\":\"28.5400\",\"unit_price\":\"28.5400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.5400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"863\",\"suspend_id\":\"44\",\"product_id\":\"6246\",\"product_code\":\"843\",\"product_name\":\"Nexium 20mg Tablets 14\'s\",\"net_unit_price\":\"99.3000\",\"unit_price\":\"99.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"99.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"864\",\"suspend_id\":\"44\",\"product_id\":\"5956\",\"product_code\":\"553\",\"product_name\":\"Zincofer Syrup 200ml\",\"net_unit_price\":\"17.8400\",\"unit_price\":\"17.8400\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.3600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"861\",\"suspend_id\":\"44\",\"product_id\":\"5587\",\"product_code\":\"184\",\"product_name\":\"Drez Ointment 10g\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"862\",\"suspend_id\":\"44\",\"product_id\":\"5720\",\"product_code\":\"317\",\"product_name\":\"Lexsporin Skin Ointment 20g\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"860\",\"suspend_id\":\"44\",\"product_id\":\"6807\",\"product_code\":\"1404\",\"product_name\":\"Folic Acid 5mg Crescent\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"856\",\"suspend_id\":\"44\",\"product_id\":\"5607\",\"product_code\":\"204\",\"product_name\":\"Ezipen Tablets 5x6\",\"net_unit_price\":\"11.4000\",\"unit_price\":\"11.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"857\",\"suspend_id\":\"44\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"net_unit_price\":\"5.9800\",\"unit_price\":\"5.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"858\",\"suspend_id\":\"44\",\"product_id\":\"6882\",\"product_code\":\"69020596\",\"product_name\":\"Clopidogrel Frelet 75\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"859\",\"suspend_id\":\"44\",\"product_id\":\"6326\",\"product_code\":\"923\",\"product_name\":\"Ciprolex 500mg Tablets 10\'s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"70.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-24 10:38:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4186, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"45\",\"date\":\"2022-09-26 12:44:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"20\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"211.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"ban\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"870\",\"suspend_id\":\"45\",\"product_id\":\"6533\",\"product_code\":\"1130\",\"product_name\":\"Atenolol 50mg Tablets 28\'s (ECL)\",\"net_unit_price\":\"3.9000\",\"unit_price\":\"3.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"871\",\"suspend_id\":\"45\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"144.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"872\",\"suspend_id\":\"45\",\"product_id\":\"5600\",\"product_code\":\"197\",\"product_name\":\"Epiderm Cream 15g\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"873\",\"suspend_id\":\"45\",\"product_id\":\"5601\",\"product_code\":\"198\",\"product_name\":\"Epiderm Cream 30g\",\"net_unit_price\":\"5.9500\",\"unit_price\":\"5.9500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-26 09:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4187, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"46\",\"date\":\"2022-09-26 13:40:04\",\"customer_id\":\"40\",\"customer\":\"Asamoah Gyan\",\"count\":\"45\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"293.7400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"asam\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"874\",\"suspend_id\":\"46\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"875\",\"suspend_id\":\"46\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.3800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"876\",\"suspend_id\":\"46\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"877\",\"suspend_id\":\"46\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"878\",\"suspend_id\":\"46\",\"product_id\":\"5886\",\"product_code\":\"483\",\"product_name\":\"Stopkof Adult Cough Syrup 100ml\",\"net_unit_price\":\"8.6000\",\"unit_price\":\"8.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"879\",\"suspend_id\":\"46\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"880\",\"suspend_id\":\"46\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"881\",\"suspend_id\":\"46\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"882\",\"suspend_id\":\"46\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"883\",\"suspend_id\":\"46\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"3.5200\",\"unit_price\":\"3.5200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.5200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"884\",\"suspend_id\":\"46\",\"product_id\":\"5593\",\"product_code\":\"190\",\"product_name\":\"Efpac Tablets\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"885\",\"suspend_id\":\"46\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"886\",\"suspend_id\":\"46\",\"product_id\":\"5689\",\"product_code\":\"286\",\"product_name\":\"Joy Ointment\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-26 09:47:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4188, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"47\",\"date\":\"2022-09-26 16:26:19\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"101\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1411.7000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"fmms lakeside\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"906\",\"suspend_id\":\"47\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"905\",\"suspend_id\":\"47\",\"product_id\":\"6865\",\"product_code\":\"55663121\",\"product_name\":\"Fiesta Condom Dumsor\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"904\",\"suspend_id\":\"47\",\"product_id\":\"6077\",\"product_code\":\"674\",\"product_name\":\"Fiesta Condom All Night\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"903\",\"suspend_id\":\"47\",\"product_id\":\"6122\",\"product_code\":\"719\",\"product_name\":\"Ventolin Inhaler 100 micrograms\",\"net_unit_price\":\"47.2000\",\"unit_price\":\"47.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"47.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"902\",\"suspend_id\":\"47\",\"product_id\":\"6851\",\"product_code\":\"1448\",\"product_name\":\"Cotton 500g\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"901\",\"suspend_id\":\"47\",\"product_id\":\"6357\",\"product_code\":\"954\",\"product_name\":\"Cotton Wool 200g\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"900\",\"suspend_id\":\"47\",\"product_id\":\"6663\",\"product_code\":\"1260\",\"product_name\":\"Cotton Wool 25gm\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"899\",\"suspend_id\":\"47\",\"product_id\":\"5532\",\"product_code\":\"129\",\"product_name\":\"Coartem 80\\/480 6s\",\"net_unit_price\":\"60.7800\",\"unit_price\":\"60.7800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"303.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"898\",\"suspend_id\":\"47\",\"product_id\":\"5623\",\"product_code\":\"220\",\"product_name\":\"Flurest Tablets 10\'s\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"897\",\"suspend_id\":\"47\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"896\",\"suspend_id\":\"47\",\"product_id\":\"6501\",\"product_code\":\"1098\",\"product_name\":\"Heptopep Forte 200ml Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"887\",\"suspend_id\":\"47\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"888\",\"suspend_id\":\"47\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tot\'hema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"124.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"889\",\"suspend_id\":\"47\",\"product_id\":\"6071\",\"product_code\":\"668\",\"product_name\":\"Vin C 100mg Tablets 30\'s\",\"net_unit_price\":\"19.6000\",\"unit_price\":\"19.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"890\",\"suspend_id\":\"47\",\"product_id\":\"6457\",\"product_code\":\"1054\",\"product_name\":\"Naklofen Duo Capsules 75mg 20\'s\",\"net_unit_price\":\"43.9000\",\"unit_price\":\"43.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"87.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"891\",\"suspend_id\":\"47\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"892\",\"suspend_id\":\"47\",\"product_id\":\"6451\",\"product_code\":\"1048\",\"product_name\":\"Voltfast Powder 50mg 30\'s\",\"net_unit_price\":\"53.2000\",\"unit_price\":\"53.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"53.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"893\",\"suspend_id\":\"47\",\"product_id\":\"6433\",\"product_code\":\"1030\",\"product_name\":\"Virest Cream (Aciclovir) 5mg\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"894\",\"suspend_id\":\"47\",\"product_id\":\"5988\",\"product_code\":\"585\",\"product_name\":\"Samalin Lozenges 2x10\'s\",\"net_unit_price\":\"3.4200\",\"unit_price\":\"3.4200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"895\",\"suspend_id\":\"47\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"172.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-26 12:46:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4189, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"48\",\"date\":\"2022-09-26 16:49:02\",\"customer_id\":\"101\",\"customer\":\"FMMS2COMMANDOS\",\"count\":\"36\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"550.3400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"fmms comm\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"920\",\"suspend_id\":\"48\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"921\",\"suspend_id\":\"48\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"922\",\"suspend_id\":\"48\",\"product_id\":\"5955\",\"product_code\":\"552\",\"product_name\":\"Zincofer Capsules 30\'s\",\"net_unit_price\":\"17.9000\",\"unit_price\":\"17.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"923\",\"suspend_id\":\"48\",\"product_id\":\"6184\",\"product_code\":\"781\",\"product_name\":\"Magnavit Capsules 30\'s\",\"net_unit_price\":\"7.8500\",\"unit_price\":\"7.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"924\",\"suspend_id\":\"48\",\"product_id\":\"6185\",\"product_code\":\"782\",\"product_name\":\"Magnavit Tonic 200ml\",\"net_unit_price\":\"7.8500\",\"unit_price\":\"7.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"925\",\"suspend_id\":\"48\",\"product_id\":\"6245\",\"product_code\":\"842\",\"product_name\":\"Neflucon(Fluconazole)150mg Capsule ECL\",\"net_unit_price\":\"2.9900\",\"unit_price\":\"2.9900\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.9500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"926\",\"suspend_id\":\"48\",\"product_id\":\"6490\",\"product_code\":\"1087\",\"product_name\":\"Kefrox 500mg Tablets 10s Luex\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"927\",\"suspend_id\":\"48\",\"product_id\":\"6537\",\"product_code\":\"1134\",\"product_name\":\"Enacin-C (Clindamycin) 300mg Caps 100\'\",\"net_unit_price\":\"93.6000\",\"unit_price\":\"93.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"93.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"93.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"928\",\"suspend_id\":\"48\",\"product_id\":\"6564\",\"product_code\":\"1161\",\"product_name\":\"Proximexa 500mg Tablets\",\"net_unit_price\":\"81.4000\",\"unit_price\":\"81.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"81.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"81.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"929\",\"suspend_id\":\"48\",\"product_id\":\"6606\",\"product_code\":\"1203\",\"product_name\":\"Skyclav 1g\",\"net_unit_price\":\"15.5300\",\"unit_price\":\"15.5300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.5900\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-26 12:59:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4190, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"49\",\"date\":\"2022-09-26 16:48:25\",\"customer_id\":\"190\",\"customer\":\"NLMC\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"63.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"NLMC\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"917\",\"suspend_id\":\"49\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"919\",\"suspend_id\":\"49\",\"product_id\":\"6639\",\"product_code\":\"1236\",\"product_name\":\"Ferrous Sulphate Tablets 500s ECL\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"918\",\"suspend_id\":\"49\",\"product_id\":\"6222\",\"product_code\":\"819\",\"product_name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-26 13:07:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4191, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"50\",\"date\":\"2022-09-27 09:20:29\",\"customer_id\":\"210\",\"customer\":\"PHILYN\",\"count\":\"22\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"188.7400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"PHILYN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"941\",\"suspend_id\":\"50\",\"product_id\":\"5996\",\"product_code\":\"593\",\"product_name\":\"Malafan Tabs 50\'s\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"942\",\"suspend_id\":\"50\",\"product_id\":\"6167\",\"product_code\":\"764\",\"product_name\":\"Polyfer Forte Syrup 200ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"943\",\"suspend_id\":\"50\",\"product_id\":\"6391\",\"product_code\":\"988\",\"product_name\":\"Vaginax-100 Tablets 6\'s\",\"net_unit_price\":\"3.3200\",\"unit_price\":\"3.3200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"944\",\"suspend_id\":\"50\",\"product_id\":\"6686\",\"product_code\":\"1283\",\"product_name\":\"Letaplex Syrup 125ml\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"945\",\"suspend_id\":\"50\",\"product_id\":\"6890\",\"product_code\":\"15222916\",\"product_name\":\"One-Step Maleria Test Kit\",\"net_unit_price\":\"4.6000\",\"unit_price\":\"4.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"938\",\"suspend_id\":\"50\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"940\",\"suspend_id\":\"50\",\"product_id\":\"5946\",\"product_code\":\"543\",\"product_name\":\"Wellman Capsules\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"939\",\"suspend_id\":\"50\",\"product_id\":\"5841\",\"product_code\":\"438\",\"product_name\":\"Prostafit\",\"net_unit_price\":\"19.8000\",\"unit_price\":\"19.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"19.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-27 05:33:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4192, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"51\",\"date\":\"2022-09-27 11:04:34\",\"customer_id\":\"229\",\"customer\":\"samueltetteh\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"45.1600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"SAM\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"946\",\"suspend_id\":\"51\",\"product_id\":\"5655\",\"product_code\":\"252\",\"product_name\":\"Gvither Forte 80mg Injection 10\'s\",\"net_unit_price\":\"28.5000\",\"unit_price\":\"28.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"947\",\"suspend_id\":\"51\",\"product_id\":\"6012\",\"product_code\":\"609\",\"product_name\":\"Scimether 80\\/480mg Tablet\",\"net_unit_price\":\"16.6600\",\"unit_price\":\"16.6600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.6600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.6600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-27 07:08:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4193, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"52\",\"date\":\"2022-09-27 11:26:23\",\"customer_id\":\"164\",\"customer\":\"Lydiachem\",\"count\":\"19\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"142.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"LYDIA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"948\",\"suspend_id\":\"52\",\"product_id\":\"5689\",\"product_code\":\"286\",\"product_name\":\"Joy Ointment\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"949\",\"suspend_id\":\"52\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"950\",\"suspend_id\":\"52\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-27 07:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4194, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"53\",\"date\":\"2022-09-27 14:03:22\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"345.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"stables\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"951\",\"suspend_id\":\"53\",\"product_id\":\"6118\",\"product_code\":\"715\",\"product_name\":\"Norvasc Amlodipine Besylate  5mg Tablets pfizer30\'s\",\"net_unit_price\":\"172.8000\",\"unit_price\":\"172.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"345.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"172.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-27 10:24:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4195, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"55\",\"date\":\"2022-09-28 12:48:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"17.7100\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"emissah\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1029\",\"suspend_id\":\"55\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-28 09:53:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4196, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"57\",\"date\":\"2022-09-29 09:56:47\",\"customer_id\":\"160\",\"customer\":\"LEXGINA PHARMA\",\"count\":\"79\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"628.4200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"lexgina\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1047\",\"suspend_id\":\"57\",\"product_id\":\"6666\",\"product_code\":\"1263\",\"product_name\":\"Examination Gloves\",\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1048\",\"suspend_id\":\"57\",\"product_id\":\"5651\",\"product_code\":\"248\",\"product_name\":\"Glucose Powder 400mg\",\"net_unit_price\":\"6.1700\",\"unit_price\":\"6.1700\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.1700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1049\",\"suspend_id\":\"57\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1050\",\"suspend_id\":\"57\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1051\",\"suspend_id\":\"57\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1052\",\"suspend_id\":\"57\",\"product_id\":\"5451\",\"product_code\":\"48\",\"product_name\":\"Arfan 20\\/120mg\",\"net_unit_price\":\"5.8600\",\"unit_price\":\"5.8600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1053\",\"suspend_id\":\"57\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1054\",\"suspend_id\":\"57\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.1300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1055\",\"suspend_id\":\"57\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1056\",\"suspend_id\":\"57\",\"product_id\":\"5654\",\"product_code\":\"251\",\"product_name\":\"Gentian violet (GV PAINT)\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1057\",\"suspend_id\":\"57\",\"product_id\":\"5730\",\"product_code\":\"327\",\"product_name\":\"Lofnac Gel 30mg\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1058\",\"suspend_id\":\"57\",\"product_id\":\"5581\",\"product_code\":\"178\",\"product_name\":\"Domi 10 Suppositories\",\"net_unit_price\":\"11.3000\",\"unit_price\":\"11.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1059\",\"suspend_id\":\"57\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1060\",\"suspend_id\":\"57\",\"product_id\":\"6193\",\"product_code\":\"790\",\"product_name\":\"Shalcip TZ Tablets 10\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1061\",\"suspend_id\":\"57\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1062\",\"suspend_id\":\"57\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.2800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1063\",\"suspend_id\":\"57\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1064\",\"suspend_id\":\"57\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30s ECL\",\"net_unit_price\":\"36.9900\",\"unit_price\":\"36.9900\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.9900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"36.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-29 06:07:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4197, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"58\",\"date\":\"2022-09-29 12:49:37\",\"customer_id\":\"217\",\"customer\":\"Ramatu\",\"count\":\"86\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"864.8000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"ramatu\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1080\",\"suspend_id\":\"58\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1079\",\"suspend_id\":\"58\",\"product_id\":\"5787\",\"product_code\":\"384\",\"product_name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1078\",\"suspend_id\":\"58\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1077\",\"suspend_id\":\"58\",\"product_id\":\"6865\",\"product_code\":\"55663121\",\"product_name\":\"Fiesta Condom Dumsor\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1076\",\"suspend_id\":\"58\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1075\",\"suspend_id\":\"58\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1074\",\"suspend_id\":\"58\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.9400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1073\",\"suspend_id\":\"58\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1072\",\"suspend_id\":\"58\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1071\",\"suspend_id\":\"58\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1070\",\"suspend_id\":\"58\",\"product_id\":\"6144\",\"product_code\":\"741\",\"product_name\":\"Amoxicillin 250mg Capsules 50 x10 M&G\",\"net_unit_price\":\"88.9000\",\"unit_price\":\"88.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"88.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"88.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1069\",\"suspend_id\":\"58\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1068\",\"suspend_id\":\"58\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1067\",\"suspend_id\":\"58\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1066\",\"suspend_id\":\"58\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1065\",\"suspend_id\":\"58\",\"product_id\":\"6193\",\"product_code\":\"790\",\"product_name\":\"Shalcip TZ Tablets 10\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1081\",\"suspend_id\":\"58\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"net_unit_price\":\"5.9800\",\"unit_price\":\"5.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1082\",\"suspend_id\":\"58\",\"product_id\":\"6391\",\"product_code\":\"988\",\"product_name\":\"Vaginax-100 Tablets 6\'s\",\"net_unit_price\":\"3.3200\",\"unit_price\":\"3.3200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.6400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1083\",\"suspend_id\":\"58\",\"product_id\":\"6024\",\"product_code\":\"621\",\"product_name\":\"Vaginax Cream 30gm\",\"net_unit_price\":\"4.9900\",\"unit_price\":\"4.9900\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1084\",\"suspend_id\":\"58\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1085\",\"suspend_id\":\"58\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1086\",\"suspend_id\":\"58\",\"product_id\":\"6227\",\"product_code\":\"824\",\"product_name\":\"Promecine Syrup 125ml\",\"net_unit_price\":\"2.8400\",\"unit_price\":\"2.8400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.8400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1087\",\"suspend_id\":\"58\",\"product_id\":\"6457\",\"product_code\":\"1054\",\"product_name\":\"Naklofen Duo Capsules 75mg 20\'s\",\"net_unit_price\":\"43.9000\",\"unit_price\":\"43.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-29 09:03:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4198, 'POS Bill is being deleted by appiahs (User Id: 5)', '{\"model\":{\"id\":\"59\",\"date\":\"2022-09-29 13:51:48\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"112\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1807.2000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"5\",\"suspend_note\":\"lakeside\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1109\",\"suspend_id\":\"59\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"175.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1108\",\"suspend_id\":\"59\",\"product_id\":\"6444\",\"product_code\":\"1041\",\"product_name\":\"Stugeron Tablets 50\'s\",\"net_unit_price\":\"25.8000\",\"unit_price\":\"25.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1107\",\"suspend_id\":\"59\",\"product_id\":\"6589\",\"product_code\":\"1186\",\"product_name\":\"Sporanox\",\"net_unit_price\":\"121.9000\",\"unit_price\":\"121.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"121.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"121.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1105\",\"suspend_id\":\"59\",\"product_id\":\"5963\",\"product_code\":\"560\",\"product_name\":\"Zipman Capsules\",\"net_unit_price\":\"15.9500\",\"unit_price\":\"15.9500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1106\",\"suspend_id\":\"59\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1104\",\"suspend_id\":\"59\",\"product_id\":\"5841\",\"product_code\":\"438\",\"product_name\":\"Prostafit\",\"net_unit_price\":\"19.8000\",\"unit_price\":\"19.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1103\",\"suspend_id\":\"59\",\"product_id\":\"6496\",\"product_code\":\"1093\",\"product_name\":\"Dymol 50\\/500 Mg Tablets 10\'s\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1102\",\"suspend_id\":\"59\",\"product_id\":\"5656\",\"product_code\":\"253\",\"product_name\":\"Gyprone Plus 200ml Syrup\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1101\",\"suspend_id\":\"59\",\"product_id\":\"6603\",\"product_code\":\"1200\",\"product_name\":\"Eskaron Blood Tonic 200ml\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1099\",\"suspend_id\":\"59\",\"product_id\":\"6356\",\"product_code\":\"953\",\"product_name\":\"Cotton Wool 100g\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1100\",\"suspend_id\":\"59\",\"product_id\":\"6730\",\"product_code\":\"1327\",\"product_name\":\"Nurofen Syrup Ibuprofen 100ml Orange\",\"net_unit_price\":\"27.3000\",\"unit_price\":\"27.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1098\",\"suspend_id\":\"59\",\"product_id\":\"5501\",\"product_code\":\"98\",\"product_name\":\"Calpol 6+ Suspension 80ml\",\"net_unit_price\":\"49.0000\",\"unit_price\":\"49.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"147.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1097\",\"suspend_id\":\"59\",\"product_id\":\"5500\",\"product_code\":\"97\",\"product_name\":\"Calpol Infant 2+Suspension 100ml\",\"net_unit_price\":\"46.3000\",\"unit_price\":\"46.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"138.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"46.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1096\",\"suspend_id\":\"59\",\"product_id\":\"5465\",\"product_code\":\"62\",\"product_name\":\"Augmentin  625mgTablets 14\'s\",\"net_unit_price\":\"98.6000\",\"unit_price\":\"98.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"197.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"98.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1095\",\"suspend_id\":\"59\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1094\",\"suspend_id\":\"59\",\"product_id\":\"5971\",\"product_code\":\"568\",\"product_name\":\"Asmadrin Tablets 25\'s\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1093\",\"suspend_id\":\"59\",\"product_id\":\"6738\",\"product_code\":\"1335\",\"product_name\":\"Eskaron Capsules 10X30\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1092\",\"suspend_id\":\"59\",\"product_id\":\"5515\",\"product_code\":\"112\",\"product_name\":\"Cetapol Syrup\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1091\",\"suspend_id\":\"59\",\"product_id\":\"6594\",\"product_code\":\"1191\",\"product_name\":\"Malin Baby Plus\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1090\",\"suspend_id\":\"59\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1089\",\"suspend_id\":\"59\",\"product_id\":\"6862\",\"product_code\":\"03174833\",\"product_name\":\"Promethazine Syrup 60ml ECL\",\"net_unit_price\":\"4.0200\",\"unit_price\":\"4.0200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1088\",\"suspend_id\":\"59\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1110\",\"suspend_id\":\"59\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"161.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-29 09:53:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4199, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"60\",\"date\":\"2022-09-30 09:09:39\",\"customer_id\":\"54\",\"customer\":\"Bless\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"63.7000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"bles\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1131\",\"suspend_id\":\"60\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1132\",\"suspend_id\":\"60\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1133\",\"suspend_id\":\"60\",\"product_id\":\"6618\",\"product_code\":\"1215\",\"product_name\":\"Trustzole 400mg Tablets\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1134\",\"suspend_id\":\"60\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-30 05:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4200, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"61\",\"date\":\"2022-09-30 09:29:35\",\"customer_id\":\"135\",\"customer\":\"JC CHEMICALS\",\"count\":\"101\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"648.3000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"jc\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1148\",\"suspend_id\":\"61\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1147\",\"suspend_id\":\"61\",\"product_id\":\"6424\",\"product_code\":\"1021\",\"product_name\":\"Durol Tonic  Junior 200ml\",\"net_unit_price\":\"8.5500\",\"unit_price\":\"8.5500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1146\",\"suspend_id\":\"61\",\"product_id\":\"5657\",\"product_code\":\"254\",\"product_name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1145\",\"suspend_id\":\"61\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"9.9600\",\"unit_price\":\"9.9600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1144\",\"suspend_id\":\"61\",\"product_id\":\"6644\",\"product_code\":\"1241\",\"product_name\":\"Secnidazole 1g Tablets 2\'s (Lavina) ECL\",\"net_unit_price\":\"4.6000\",\"unit_price\":\"4.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1143\",\"suspend_id\":\"61\",\"product_id\":\"5884\",\"product_code\":\"481\",\"product_name\":\"Stagyl secnidazole Tablet (1 gm)\",\"net_unit_price\":\"3.3200\",\"unit_price\":\"3.3200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1142\",\"suspend_id\":\"61\",\"product_id\":\"6267\",\"product_code\":\"864\",\"product_name\":\"Stopkof Cold and Catarrh Tablets 12s\",\"net_unit_price\":\"8.0400\",\"unit_price\":\"8.0400\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.0400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1141\",\"suspend_id\":\"61\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1140\",\"suspend_id\":\"61\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1139\",\"suspend_id\":\"61\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1135\",\"suspend_id\":\"61\",\"product_id\":\"6125\",\"product_code\":\"722\",\"product_name\":\"Lufart Suspension\",\"net_unit_price\":\"12.5000\",\"unit_price\":\"12.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1136\",\"suspend_id\":\"61\",\"product_id\":\"5911\",\"product_code\":\"508\",\"product_name\":\"Tinatett Venecare 750ml\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1137\",\"suspend_id\":\"61\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1138\",\"suspend_id\":\"61\",\"product_id\":\"6297\",\"product_code\":\"894\",\"product_name\":\"Malar-2 Suspension 60ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-30 05:35:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4201, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"56\",\"date\":\"2022-09-29 16:27:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"95\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1233.6400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"computer\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1121\",\"suspend_id\":\"56\",\"product_id\":\"5478\",\"product_code\":\"75\",\"product_name\":\"Bendroflumethiazide 2.5mg Tablets 28s Almus Uk\",\"net_unit_price\":\"6.7000\",\"unit_price\":\"6.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1122\",\"suspend_id\":\"56\",\"product_id\":\"5593\",\"product_code\":\"190\",\"product_name\":\"Efpac Tablets\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"192.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1123\",\"suspend_id\":\"56\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"266.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1124\",\"suspend_id\":\"56\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1125\",\"suspend_id\":\"56\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"227.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1126\",\"suspend_id\":\"56\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"115.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1127\",\"suspend_id\":\"56\",\"product_id\":\"6221\",\"product_code\":\"818\",\"product_name\":\"Dynewell Tablet 50x10\",\"net_unit_price\":\"12.9800\",\"unit_price\":\"12.9800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.9400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1128\",\"suspend_id\":\"56\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1129\",\"suspend_id\":\"56\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"101.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1130\",\"suspend_id\":\"56\",\"product_id\":\"6809\",\"product_code\":\"1406\",\"product_name\":\"Bendroflumethiazide 5mg Tabs Bristol \",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-30 06:22:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4202, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"62\",\"date\":\"2022-09-30 11:25:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"140\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1741.9500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"success\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1172\",\"suspend_id\":\"62\",\"product_id\":\"6248\",\"product_code\":\"845\",\"product_name\":\"Teething Mixture 100ml ECL\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1171\",\"suspend_id\":\"62\",\"product_id\":\"5968\",\"product_code\":\"565\",\"product_name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"net_unit_price\":\"10.7800\",\"unit_price\":\"10.7800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1170\",\"suspend_id\":\"62\",\"product_id\":\"6292\",\"product_code\":\"889\",\"product_name\":\"Fluxacin 100ml Suspension\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1169\",\"suspend_id\":\"62\",\"product_id\":\"6823\",\"product_code\":\"1420\",\"product_name\":\"Fluxamox Susp. 250mg\\/5ml ECL 100ml\",\"net_unit_price\":\"10.7800\",\"unit_price\":\"10.7800\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.6800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1168\",\"suspend_id\":\"62\",\"product_id\":\"5676\",\"product_code\":\"273\",\"product_name\":\"Imax Delay Spray\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1166\",\"suspend_id\":\"62\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1167\",\"suspend_id\":\"62\",\"product_id\":\"6021\",\"product_code\":\"618\",\"product_name\":\"Rizole Suspension 100ml\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1165\",\"suspend_id\":\"62\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"14.2500\",\"unit_price\":\"14.2500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1164\",\"suspend_id\":\"62\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30s ECL\",\"net_unit_price\":\"36.9900\",\"unit_price\":\"36.9900\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.9700\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"36.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1163\",\"suspend_id\":\"62\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1162\",\"suspend_id\":\"62\",\"product_id\":\"5980\",\"product_code\":\"577\",\"product_name\":\"Martins liver salt(Lemon)25\'s\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1161\",\"suspend_id\":\"62\",\"product_id\":\"6605\",\"product_code\":\"1202\",\"product_name\":\"Maxmox 500mg (Amoxicillin) Eskay\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1160\",\"suspend_id\":\"62\",\"product_id\":\"6839\",\"product_code\":\"1436\",\"product_name\":\"Maxmox Suspension 100ml\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1159\",\"suspend_id\":\"62\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1158\",\"suspend_id\":\"62\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1157\",\"suspend_id\":\"62\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1156\",\"suspend_id\":\"62\",\"product_id\":\"5988\",\"product_code\":\"585\",\"product_name\":\"Samalin Lozenges 2x10\'s\",\"net_unit_price\":\"3.4200\",\"unit_price\":\"3.4200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1149\",\"suspend_id\":\"62\",\"product_id\":\"6294\",\"product_code\":\"891\",\"product_name\":\"Menthodex 200ml Syrup ECL\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1150\",\"suspend_id\":\"62\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"161.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1151\",\"suspend_id\":\"62\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"233.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1152\",\"suspend_id\":\"62\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"186.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1153\",\"suspend_id\":\"62\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"136.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1154\",\"suspend_id\":\"62\",\"product_id\":\"6572\",\"product_code\":\"1169\",\"product_name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1155\",\"suspend_id\":\"62\",\"product_id\":\"5965\",\"product_code\":\"562\",\"product_name\":\"Zubes Expectorant 125ml Syrup\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"67.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-30 07:50:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4203, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"63\",\"date\":\"2022-09-30 14:28:09\",\"customer_id\":\"379\",\"customer\":\"Kasba\",\"count\":\"174\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1441.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"kasba\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1257\",\"suspend_id\":\"63\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1256\",\"suspend_id\":\"63\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1255\",\"suspend_id\":\"63\",\"product_id\":\"6778\",\"product_code\":\"1375\",\"product_name\":\"Nugel Susp 200ml\",\"net_unit_price\":\"26.1800\",\"unit_price\":\"26.1800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.1800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"26.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1253\",\"suspend_id\":\"63\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1252\",\"suspend_id\":\"63\",\"product_id\":\"6691\",\"product_code\":\"1288\",\"product_name\":\"Lonart 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1254\",\"suspend_id\":\"63\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1251\",\"suspend_id\":\"63\",\"product_id\":\"6650\",\"product_code\":\"1247\",\"product_name\":\"Nexcofer Blood Tonic 100ml\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1250\",\"suspend_id\":\"63\",\"product_id\":\"6621\",\"product_code\":\"1218\",\"product_name\":\"Lumetrust Suspension 150ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1249\",\"suspend_id\":\"63\",\"product_id\":\"6596\",\"product_code\":\"1193\",\"product_name\":\"Epicrom 2% Eye Drop 10ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"189.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1248\",\"suspend_id\":\"63\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1247\",\"suspend_id\":\"63\",\"product_id\":\"6451\",\"product_code\":\"1048\",\"product_name\":\"Voltfast Powder 50mg 30\'s\",\"net_unit_price\":\"53.2000\",\"unit_price\":\"53.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"106.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"53.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1246\",\"suspend_id\":\"63\",\"product_id\":\"6399\",\"product_code\":\"996\",\"product_name\":\"Nesben (Albendazole) Tablets 200mg\",\"net_unit_price\":\"6.1000\",\"unit_price\":\"6.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1245\",\"suspend_id\":\"63\",\"product_id\":\"6385\",\"product_code\":\"982\",\"product_name\":\"Amcof Junior Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1242\",\"suspend_id\":\"63\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1243\",\"suspend_id\":\"63\",\"product_id\":\"6350\",\"product_code\":\"947\",\"product_name\":\"Ronfit Cold P Junior Syrup\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1244\",\"suspend_id\":\"63\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1241\",\"suspend_id\":\"63\",\"product_id\":\"6302\",\"product_code\":\"899\",\"product_name\":\"Klovinal Pessaries\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1240\",\"suspend_id\":\"63\",\"product_id\":\"6297\",\"product_code\":\"894\",\"product_name\":\"Malar-2 Suspension 60ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1239\",\"suspend_id\":\"63\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1238\",\"suspend_id\":\"63\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1237\",\"suspend_id\":\"63\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1236\",\"suspend_id\":\"63\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1235\",\"suspend_id\":\"63\",\"product_id\":\"6216\",\"product_code\":\"813\",\"product_name\":\"Ampicillin 250mg Capsules 50x10 Letap\",\"net_unit_price\":\"1.9000\",\"unit_price\":\"1.9000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"95.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1234\",\"suspend_id\":\"63\",\"product_id\":\"6210\",\"product_code\":\"807\",\"product_name\":\"BX Syrup 200ml\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1233\",\"suspend_id\":\"63\",\"product_id\":\"6178\",\"product_code\":\"775\",\"product_name\":\"Ibucap Capsules 20\'s(Monopack)\",\"net_unit_price\":\"2.2000\",\"unit_price\":\"2.2000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1232\",\"suspend_id\":\"63\",\"product_id\":\"6171\",\"product_code\":\"768\",\"product_name\":\"Zerocid Suspension 200ML\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1231\",\"suspend_id\":\"63\",\"product_id\":\"6102\",\"product_code\":\"699\",\"product_name\":\"Haemo Forte Syrup 200ml\",\"net_unit_price\":\"27.8000\",\"unit_price\":\"27.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1230\",\"suspend_id\":\"63\",\"product_id\":\"5991\",\"product_code\":\"588\",\"product_name\":\"Kwik Action Tablets 50x4\",\"net_unit_price\":\"37.7000\",\"unit_price\":\"37.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"37.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1229\",\"suspend_id\":\"63\",\"product_id\":\"5975\",\"product_code\":\"572\",\"product_name\":\"Durol Tonic 200ml\",\"net_unit_price\":\"12.2100\",\"unit_price\":\"12.2100\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.4200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1228\",\"suspend_id\":\"63\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1227\",\"suspend_id\":\"63\",\"product_id\":\"5958\",\"product_code\":\"555\",\"product_name\":\"Zincovit Syrup 200ml\",\"net_unit_price\":\"16.1000\",\"unit_price\":\"16.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1225\",\"suspend_id\":\"63\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1226\",\"suspend_id\":\"63\",\"product_id\":\"5956\",\"product_code\":\"553\",\"product_name\":\"Zincofer Syrup 200ml\",\"net_unit_price\":\"17.8400\",\"unit_price\":\"17.8400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.8400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1224\",\"suspend_id\":\"63\",\"product_id\":\"5828\",\"product_code\":\"425\",\"product_name\":\"Polyfer Forte Syrup 150ML\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1223\",\"suspend_id\":\"63\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.2600\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1222\",\"suspend_id\":\"63\",\"product_id\":\"5716\",\"product_code\":\"313\",\"product_name\":\"Letaron 200ml Syrup\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1221\",\"suspend_id\":\"63\",\"product_id\":\"5667\",\"product_code\":\"264\",\"product_name\":\"Honeykof Herbal Cough Syrup 100ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1220\",\"suspend_id\":\"63\",\"product_id\":\"5624\",\"product_code\":\"221\",\"product_name\":\"Foligrow Syrup 200ml\",\"net_unit_price\":\"20.1000\",\"unit_price\":\"20.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1219\",\"suspend_id\":\"63\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1218\",\"suspend_id\":\"63\",\"product_id\":\"5585\",\"product_code\":\"182\",\"product_name\":\"Dragon Tablets\",\"net_unit_price\":\"23.4000\",\"unit_price\":\"23.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1217\",\"suspend_id\":\"63\",\"product_id\":\"5536\",\"product_code\":\"133\",\"product_name\":\"Colestop 10mg 30\'s (Atovastin)\",\"net_unit_price\":\"52.2000\",\"unit_price\":\"52.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"52.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1216\",\"suspend_id\":\"63\",\"product_id\":\"5452\",\"product_code\":\"49\",\"product_name\":\"Arziglobin 200ml Syrup\",\"net_unit_price\":\"8.0000\",\"unit_price\":\"8.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1258\",\"suspend_id\":\"63\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1259\",\"suspend_id\":\"63\",\"product_id\":\"5472\",\"product_code\":\"69\",\"product_name\":\"Baseboom Gel\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-09-30 10:34:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4204, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"65\",\"date\":\"2022-10-01 14:48:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"95.1400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"dunia\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1268\",\"suspend_id\":\"65\",\"product_id\":\"6691\",\"product_code\":\"1288\",\"product_name\":\"Lonart 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1267\",\"suspend_id\":\"65\",\"product_id\":\"5751\",\"product_code\":\"348\",\"product_name\":\"Malar-2 Forte Tablets 40\\/240mg 12\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1266\",\"suspend_id\":\"65\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1264\",\"suspend_id\":\"65\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"3.4100\",\"unit_price\":\"3.4100\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.6400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1265\",\"suspend_id\":\"65\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-01 11:03:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4205, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"67\",\"date\":\"2022-10-03 09:47:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"62\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"467.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"vinc\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1292\",\"suspend_id\":\"67\",\"product_id\":\"6235\",\"product_code\":\"832\",\"product_name\":\"Vitamin B-Complex Syrup 100ml (Jacket) ECL\",\"net_unit_price\":\"5.9800\",\"unit_price\":\"5.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1290\",\"suspend_id\":\"67\",\"product_id\":\"5573\",\"product_code\":\"170\",\"product_name\":\"Diclolex 100mg Tablets 10X10\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1291\",\"suspend_id\":\"67\",\"product_id\":\"5977\",\"product_code\":\"574\",\"product_name\":\"Samalin Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1289\",\"suspend_id\":\"67\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1288\",\"suspend_id\":\"67\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"49.5300\",\"unit_price\":\"49.5300\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1287\",\"suspend_id\":\"67\",\"product_id\":\"6573\",\"product_code\":\"1170\",\"product_name\":\"Zubes Extra Strong Cough Lozenges\",\"net_unit_price\":\"21.4000\",\"unit_price\":\"21.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1286\",\"suspend_id\":\"67\",\"product_id\":\"6385\",\"product_code\":\"982\",\"product_name\":\"Amcof Junior Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1285\",\"suspend_id\":\"67\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1284\",\"suspend_id\":\"67\",\"product_id\":\"5770\",\"product_code\":\"367\",\"product_name\":\"Mist Pot Cit (Potassium Citrate) ROKMER\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1283\",\"suspend_id\":\"67\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1282\",\"suspend_id\":\"67\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1281\",\"suspend_id\":\"67\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1280\",\"suspend_id\":\"67\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1279\",\"suspend_id\":\"67\",\"product_id\":\"6865\",\"product_code\":\"55663121\",\"product_name\":\"Fiesta Condom Dumsor\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1276\",\"suspend_id\":\"67\",\"product_id\":\"5651\",\"product_code\":\"248\",\"product_name\":\"Glucose Powder 400mg\",\"net_unit_price\":\"6.1700\",\"unit_price\":\"6.1700\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.3400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.1700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1277\",\"suspend_id\":\"67\",\"product_id\":\"6077\",\"product_code\":\"674\",\"product_name\":\"Fiesta Condom All Night\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1278\",\"suspend_id\":\"67\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1275\",\"suspend_id\":\"67\",\"product_id\":\"6332\",\"product_code\":\"929\",\"product_name\":\"Adom Koo Capsules\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-03 05:50:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4206, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"68\",\"date\":\"2022-10-04 11:25:50\",\"customer_id\":\"106\",\"customer\":\"francisocloo\",\"count\":\"23\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"195.5800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"Francis\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1313\",\"suspend_id\":\"68\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1314\",\"suspend_id\":\"68\",\"product_id\":\"5710\",\"product_code\":\"307\",\"product_name\":\"Leena Capsules\",\"net_unit_price\":\"4.0200\",\"unit_price\":\"4.0200\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.0800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1315\",\"suspend_id\":\"68\",\"product_id\":\"5970\",\"product_code\":\"567\",\"product_name\":\"Virol blood tonic 200ml\",\"net_unit_price\":\"12.8500\",\"unit_price\":\"12.8500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1316\",\"suspend_id\":\"68\",\"product_id\":\"6895\",\"product_code\":\"49637846\",\"product_name\":\"Zubes Child Cough Syrup\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1317\",\"suspend_id\":\"68\",\"product_id\":\"6608\",\"product_code\":\"1205\",\"product_name\":\"Skyclav 457mg\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1318\",\"suspend_id\":\"68\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"12.7000\",\"unit_price\":\"12.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1319\",\"suspend_id\":\"68\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1320\",\"suspend_id\":\"68\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-04 07:34:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4207, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"69\",\"date\":\"2022-10-04 11:43:22\",\"customer_id\":\"10\",\"customer\":\"ABASS\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"180.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"Abass\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1321\",\"suspend_id\":\"69\",\"product_id\":\"6731\",\"product_code\":\"1328\",\"product_name\":\"Corsodyl Mint 500ml\",\"net_unit_price\":\"43.1000\",\"unit_price\":\"43.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1322\",\"suspend_id\":\"69\",\"product_id\":\"6642\",\"product_code\":\"1239\",\"product_name\":\"Metagyl Syrup (Metzol) Syrp 200mg\\/5ml 100ml\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1323\",\"suspend_id\":\"69\",\"product_id\":\"6264\",\"product_code\":\"861\",\"product_name\":\"Permoxyl (Amoxicillin) Suspension 100ml\",\"net_unit_price\":\"6.8500\",\"unit_price\":\"6.8500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1324\",\"suspend_id\":\"69\",\"product_id\":\"6490\",\"product_code\":\"1087\",\"product_name\":\"Kefrox 500mg Tablets 10s Luex\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1325\",\"suspend_id\":\"69\",\"product_id\":\"6365\",\"product_code\":\"962\",\"product_name\":\"Enacef (cefuroxime) 500mg Tablets\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1326\",\"suspend_id\":\"69\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-04 07:44:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4208, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"70\",\"date\":\"2022-10-05 10:04:57\",\"customer_id\":\"265\",\"customer\":\"VICENTIA CHEMICAL\",\"count\":\"21\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"301.5700\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"VICEN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1339\",\"suspend_id\":\"70\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1338\",\"suspend_id\":\"70\",\"product_id\":\"6218\",\"product_code\":\"815\",\"product_name\":\"Ascorbin 100mg (Vitamin C) Tablets 30x10\",\"net_unit_price\":\"15.0700\",\"unit_price\":\"15.0700\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0700\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1337\",\"suspend_id\":\"70\",\"product_id\":\"5624\",\"product_code\":\"221\",\"product_name\":\"Foligrow Syrup 200ml\",\"net_unit_price\":\"20.1000\",\"unit_price\":\"20.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1336\",\"suspend_id\":\"70\",\"product_id\":\"5456\",\"product_code\":\"53\",\"product_name\":\"Aspanol All In One Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1335\",\"suspend_id\":\"70\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1334\",\"suspend_id\":\"70\",\"product_id\":\"6154\",\"product_code\":\"751\",\"product_name\":\"Paracetamol 500mg M&G Tablets 50x10\",\"net_unit_price\":\"39.1000\",\"unit_price\":\"39.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1333\",\"suspend_id\":\"70\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1332\",\"suspend_id\":\"70\",\"product_id\":\"5839\",\"product_code\":\"436\",\"product_name\":\"Prostacure Tea\",\"net_unit_price\":\"19.0000\",\"unit_price\":\"19.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1331\",\"suspend_id\":\"70\",\"product_id\":\"5497\",\"product_code\":\"94\",\"product_name\":\"BX Syrup 100ml\",\"net_unit_price\":\"5.6000\",\"unit_price\":\"5.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1330\",\"suspend_id\":\"70\",\"product_id\":\"6429\",\"product_code\":\"1026\",\"product_name\":\"Onita Syrup 200ml\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1327\",\"suspend_id\":\"70\",\"product_id\":\"6668\",\"product_code\":\"1265\",\"product_name\":\"Arziglobin Plus 200ml Syrup\",\"net_unit_price\":\"8.9000\",\"unit_price\":\"8.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1328\",\"suspend_id\":\"70\",\"product_id\":\"5828\",\"product_code\":\"425\",\"product_name\":\"Polyfer Forte Syrup 150ML\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1329\",\"suspend_id\":\"70\",\"product_id\":\"6428\",\"product_code\":\"1025\",\"product_name\":\"Fericon 200ml Syrup\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-05 06:08:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4209, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"71\",\"date\":\"2022-10-05 10:37:05\",\"customer_id\":\"210\",\"customer\":\"PHILYN\",\"count\":\"118\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1446.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1359\",\"suspend_id\":\"71\",\"product_id\":\"5619\",\"product_code\":\"216\",\"product_name\":\"Flemex Jnr. Cough Syrup 100ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1358\",\"suspend_id\":\"71\",\"product_id\":\"6210\",\"product_code\":\"807\",\"product_name\":\"BX Syrup 200ml\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1355\",\"suspend_id\":\"71\",\"product_id\":\"6895\",\"product_code\":\"49637846\",\"product_name\":\"Zubes Child Cough Syrup\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1356\",\"suspend_id\":\"71\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1357\",\"suspend_id\":\"71\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1354\",\"suspend_id\":\"71\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"10.5500\",\"unit_price\":\"10.5500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"105.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1353\",\"suspend_id\":\"71\",\"product_id\":\"6064\",\"product_code\":\"661\",\"product_name\":\"Carbozap Junior Syrup 100ml\",\"net_unit_price\":\"4.7000\",\"unit_price\":\"4.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1352\",\"suspend_id\":\"71\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"82.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1351\",\"suspend_id\":\"71\",\"product_id\":\"5754\",\"product_code\":\"351\",\"product_name\":\"Malin Baby\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1350\",\"suspend_id\":\"71\",\"product_id\":\"6381\",\"product_code\":\"978\",\"product_name\":\"Flucloxacillin 100ml Suspension Letap\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1349\",\"suspend_id\":\"71\",\"product_id\":\"6563\",\"product_code\":\"1160\",\"product_name\":\"Polygynax Pessaries 12\'s\",\"net_unit_price\":\"67.0000\",\"unit_price\":\"67.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"134.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"67.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1348\",\"suspend_id\":\"71\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1347\",\"suspend_id\":\"71\",\"product_id\":\"5757\",\"product_code\":\"354\",\"product_name\":\"Mark 2 Inhaler\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1346\",\"suspend_id\":\"71\",\"product_id\":\"6458\",\"product_code\":\"1055\",\"product_name\":\"Infa V Pessaries\",\"net_unit_price\":\"22.9000\",\"unit_price\":\"22.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"114.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1345\",\"suspend_id\":\"71\",\"product_id\":\"6323\",\"product_code\":\"920\",\"product_name\":\"Polygynax Pessaries 6\'s\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1344\",\"suspend_id\":\"71\",\"product_id\":\"5704\",\"product_code\":\"301\",\"product_name\":\"Koflet Syrup\",\"net_unit_price\":\"16.0500\",\"unit_price\":\"16.0500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.2500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1343\",\"suspend_id\":\"71\",\"product_id\":\"6243\",\"product_code\":\"840\",\"product_name\":\"Doxycycline 100mg Capsules 200s ECL\",\"net_unit_price\":\"68.5000\",\"unit_price\":\"68.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"68.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1342\",\"suspend_id\":\"71\",\"product_id\":\"6297\",\"product_code\":\"894\",\"product_name\":\"Malar-2 Suspension 60ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1341\",\"suspend_id\":\"71\",\"product_id\":\"6835\",\"product_code\":\"1432\",\"product_name\":\"Eskypan 10mg (10x1x10)\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1340\",\"suspend_id\":\"71\",\"product_id\":\"5778\",\"product_code\":\"375\",\"product_name\":\"Mycolex 3 Cream 30gm\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-05 06:55:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4210, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"72\",\"date\":\"2022-10-05 13:44:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"176\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1841.1500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1438\",\"suspend_id\":\"72\",\"product_id\":\"6772\",\"product_code\":\"1369\",\"product_name\":\"Hydrolyte ORS 25\' Orange Flav. ECL\",\"net_unit_price\":\"19.2000\",\"unit_price\":\"19.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"19.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1439\",\"suspend_id\":\"72\",\"product_id\":\"6823\",\"product_code\":\"1420\",\"product_name\":\"Fluxamox Susp. 250mg\\/5ml ECL 100ml\",\"net_unit_price\":\"10.7800\",\"unit_price\":\"10.7800\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.6800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1440\",\"suspend_id\":\"72\",\"product_id\":\"6848\",\"product_code\":\"1445\",\"product_name\":\"Kelcuf Baby Syrup 100ml\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1437\",\"suspend_id\":\"72\",\"product_id\":\"6671\",\"product_code\":\"1268\",\"product_name\":\"Kofof Baby\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1436\",\"suspend_id\":\"72\",\"product_id\":\"6640\",\"product_code\":\"1237\",\"product_name\":\"Histazine (Cetrizine) 5mg\\/5ml Syrup 60ml\",\"net_unit_price\":\"4.7000\",\"unit_price\":\"4.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1435\",\"suspend_id\":\"72\",\"product_id\":\"6446\",\"product_code\":\"1043\",\"product_name\":\"Dermiron Plus\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1434\",\"suspend_id\":\"72\",\"product_id\":\"6370\",\"product_code\":\"967\",\"product_name\":\"Supirocin Ointment 15g\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"126.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1433\",\"suspend_id\":\"72\",\"product_id\":\"6365\",\"product_code\":\"962\",\"product_name\":\"Enacef (cefuroxime) 500mg Tablets\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1432\",\"suspend_id\":\"72\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1431\",\"suspend_id\":\"72\",\"product_id\":\"6248\",\"product_code\":\"845\",\"product_name\":\"Teething Mixture 100ml ECL\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1430\",\"suspend_id\":\"72\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1427\",\"suspend_id\":\"72\",\"product_id\":\"6191\",\"product_code\":\"788\",\"product_name\":\"Shal\'Artem Dry Syrup\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1428\",\"suspend_id\":\"72\",\"product_id\":\"6197\",\"product_code\":\"794\",\"product_name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"net_unit_price\":\"45.5000\",\"unit_price\":\"45.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"45.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1429\",\"suspend_id\":\"72\",\"product_id\":\"6209\",\"product_code\":\"806\",\"product_name\":\"Zinol (Paracetamol) Suspension 100ml\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1426\",\"suspend_id\":\"72\",\"product_id\":\"6123\",\"product_code\":\"720\",\"product_name\":\"Strobin Lozenges 54X6\",\"net_unit_price\":\"60.5000\",\"unit_price\":\"60.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"60.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1425\",\"suspend_id\":\"72\",\"product_id\":\"6117\",\"product_code\":\"714\",\"product_name\":\"Gudapet Capsules\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1422\",\"suspend_id\":\"72\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"20.9000\",\"unit_price\":\"20.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1424\",\"suspend_id\":\"72\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1423\",\"suspend_id\":\"72\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"340.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1421\",\"suspend_id\":\"72\",\"product_id\":\"6011\",\"product_code\":\"608\",\"product_name\":\"Scimether Suspension\",\"net_unit_price\":\"14.2100\",\"unit_price\":\"14.2100\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.8400\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1420\",\"suspend_id\":\"72\",\"product_id\":\"6001\",\"product_code\":\"598\",\"product_name\":\"Paraking Syrup 100ml\",\"net_unit_price\":\"6.2000\",\"unit_price\":\"6.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1419\",\"suspend_id\":\"72\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1418\",\"suspend_id\":\"72\",\"product_id\":\"5751\",\"product_code\":\"348\",\"product_name\":\"Malar-2 Forte Tablets 40\\/240mg 12\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1417\",\"suspend_id\":\"72\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1416\",\"suspend_id\":\"72\",\"product_id\":\"5717\",\"product_code\":\"314\",\"product_name\":\"Letavit Syrup\",\"net_unit_price\":\"2.4000\",\"unit_price\":\"2.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1415\",\"suspend_id\":\"72\",\"product_id\":\"5528\",\"product_code\":\"125\",\"product_name\":\"Cirotamin Tonic\",\"net_unit_price\":\"16.6000\",\"unit_price\":\"16.6000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1414\",\"suspend_id\":\"72\",\"product_id\":\"5509\",\"product_code\":\"106\",\"product_name\":\"Cartef Suspension\",\"net_unit_price\":\"6.8800\",\"unit_price\":\"6.8800\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.2800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1413\",\"suspend_id\":\"72\",\"product_id\":\"5507\",\"product_code\":\"104\",\"product_name\":\"Carbozap Syrup Adult 100ml FG\",\"net_unit_price\":\"4.9900\",\"unit_price\":\"4.9900\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.9500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1412\",\"suspend_id\":\"72\",\"product_id\":\"5501\",\"product_code\":\"98\",\"product_name\":\"Calpol 6+ Suspension 80ml\",\"net_unit_price\":\"49.0000\",\"unit_price\":\"49.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"98.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"49.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-05 10:05:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4211, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"74\",\"date\":\"2022-10-05 14:32:32\",\"customer_id\":\"22\",\"customer\":\"Samuel Adu\",\"count\":\"115\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1004.1600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1463\",\"suspend_id\":\"74\",\"product_id\":\"5673\",\"product_code\":\"270\",\"product_name\":\"Ibex Capsules 24\'s\",\"net_unit_price\":\"17.7000\",\"unit_price\":\"17.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"106.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1462\",\"suspend_id\":\"74\",\"product_id\":\"6071\",\"product_code\":\"668\",\"product_name\":\"Vin C 100mg Tablets 30\'s\",\"net_unit_price\":\"19.6000\",\"unit_price\":\"19.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1461\",\"suspend_id\":\"74\",\"product_id\":\"6218\",\"product_code\":\"815\",\"product_name\":\"Ascorbin 100mg (Vitamin C) Tablets 30x10\",\"net_unit_price\":\"15.0700\",\"unit_price\":\"15.0700\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.1400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1460\",\"suspend_id\":\"74\",\"product_id\":\"6320\",\"product_code\":\"917\",\"product_name\":\"Nifedi-Denk 20mg 100\'s\",\"net_unit_price\":\"63.2200\",\"unit_price\":\"63.2200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"126.4400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"63.2200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1458\",\"suspend_id\":\"74\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1459\",\"suspend_id\":\"74\",\"product_id\":\"5650\",\"product_code\":\"247\",\"product_name\":\"Glibenil (Glibenclamide) 5mg Tablets ECL\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1457\",\"suspend_id\":\"74\",\"product_id\":\"6209\",\"product_code\":\"806\",\"product_name\":\"Zinol (Paracetamol) Suspension 100ml\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1456\",\"suspend_id\":\"74\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1455\",\"suspend_id\":\"74\",\"product_id\":\"6409\",\"product_code\":\"1006\",\"product_name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1454\",\"suspend_id\":\"74\",\"product_id\":\"6837\",\"product_code\":\"1434\",\"product_name\":\"Maxmox 250mg (50x10)\",\"net_unit_price\":\"87.4000\",\"unit_price\":\"87.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"87.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"87.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1453\",\"suspend_id\":\"74\",\"product_id\":\"6642\",\"product_code\":\"1239\",\"product_name\":\"Metagyl Syrup (Metzol) Syrp 200mg\\/5ml 100ml\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1452\",\"suspend_id\":\"74\",\"product_id\":\"6360\",\"product_code\":\"957\",\"product_name\":\"Wormbase Suspension\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1451\",\"suspend_id\":\"74\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"134.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1450\",\"suspend_id\":\"74\",\"product_id\":\"6144\",\"product_code\":\"741\",\"product_name\":\"Amoxicillin 250mg Capsules 50 x10 M&G\",\"net_unit_price\":\"88.9000\",\"unit_price\":\"88.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"88.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"88.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1448\",\"suspend_id\":\"74\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1449\",\"suspend_id\":\"74\",\"product_id\":\"6052\",\"product_code\":\"649\",\"product_name\":\"Candiderm Cream-Triple Action Cream 15mg\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-05 10:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4212, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"75\",\"date\":\"2022-10-05 16:24:00\",\"customer_id\":\"101\",\"customer\":\"FMMS2COMMANDOS\",\"count\":\"28\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"158.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1467\",\"suspend_id\":\"75\",\"product_id\":\"6510\",\"product_code\":\"1107\",\"product_name\":\"GV- Fluc 150mg Capsules\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1464\",\"suspend_id\":\"75\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1466\",\"suspend_id\":\"75\",\"product_id\":\"6215\",\"product_code\":\"812\",\"product_name\":\"Amciclox 250mg Capsules 10x10 Letap\",\"net_unit_price\":\"30.6900\",\"unit_price\":\"30.6900\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.3800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1465\",\"suspend_id\":\"75\",\"product_id\":\"6183\",\"product_code\":\"780\",\"product_name\":\"Leopard Balm 30g\",\"net_unit_price\":\"5.7500\",\"unit_price\":\"5.7500\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-05 12:46:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4213, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"73\",\"date\":\"2022-10-06 08:03:12\",\"customer_id\":\"51\",\"customer\":\"BETVEN PHARMACY REDCO\",\"count\":\"72\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"165.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"redco\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1474\",\"suspend_id\":\"73\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1473\",\"suspend_id\":\"73\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"48.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"48.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-06 04:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4214, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"77\",\"date\":\"2022-10-06 10:18:25\",\"customer_id\":\"52\",\"customer\":\"BETVEN PHARMACY MARKET\",\"count\":\"216\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"3235.4800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"market\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1476\",\"suspend_id\":\"77\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1503\",\"suspend_id\":\"77\",\"product_id\":\"6109\",\"product_code\":\"706\",\"product_name\":\"Maalox Plus Suspension 250ml\",\"net_unit_price\":\"53.7000\",\"unit_price\":\"53.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"53.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1478\",\"suspend_id\":\"77\",\"product_id\":\"6286\",\"product_code\":\"883\",\"product_name\":\"Kidivite Syrup 200ml\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1479\",\"suspend_id\":\"77\",\"product_id\":\"6581\",\"product_code\":\"1178\",\"product_name\":\"Cirotamin Caplets 28\'s\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1480\",\"suspend_id\":\"77\",\"product_id\":\"6719\",\"product_code\":\"1316\",\"product_name\":\"Glucose and Chondriton 400mg Tab. Valupak 30\'s\",\"net_unit_price\":\"17.4000\",\"unit_price\":\"17.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1502\",\"suspend_id\":\"77\",\"product_id\":\"6098\",\"product_code\":\"695\",\"product_name\":\"Klire Tablet 10\'s\",\"net_unit_price\":\"5.6000\",\"unit_price\":\"5.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1501\",\"suspend_id\":\"77\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1500\",\"suspend_id\":\"77\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"12.7000\",\"unit_price\":\"12.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1499\",\"suspend_id\":\"77\",\"product_id\":\"6608\",\"product_code\":\"1205\",\"product_name\":\"Skyclav 457mg\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1497\",\"suspend_id\":\"77\",\"product_id\":\"6592\",\"product_code\":\"1189\",\"product_name\":\"Co-Trimoxazole (Septrin) Suspension 100ml\",\"net_unit_price\":\"3.1800\",\"unit_price\":\"3.1800\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.7200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1498\",\"suspend_id\":\"77\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.6400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1496\",\"suspend_id\":\"77\",\"product_id\":\"6485\",\"product_code\":\"1082\",\"product_name\":\"Seven Seas JointCare Active 30\'s\",\"net_unit_price\":\"109.9000\",\"unit_price\":\"109.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"109.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1495\",\"suspend_id\":\"77\",\"product_id\":\"6275\",\"product_code\":\"872\",\"product_name\":\"Gana Balm 20g\",\"net_unit_price\":\"4.7000\",\"unit_price\":\"4.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1494\",\"suspend_id\":\"77\",\"product_id\":\"6765\",\"product_code\":\"1362\",\"product_name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"net_unit_price\":\"59.0000\",\"unit_price\":\"59.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"118.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"59.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1493\",\"suspend_id\":\"77\",\"product_id\":\"6599\",\"product_code\":\"1196\",\"product_name\":\"Dexatrol Eye \\/ Ear Drop 5ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1491\",\"suspend_id\":\"77\",\"product_id\":\"5834\",\"product_code\":\"431\",\"product_name\":\"Proman Capsules 30s\",\"net_unit_price\":\"41.5800\",\"unit_price\":\"41.5800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.5800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"41.5800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1492\",\"suspend_id\":\"77\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1490\",\"suspend_id\":\"77\",\"product_id\":\"6202\",\"product_code\":\"799\",\"product_name\":\"Starwin Milk of Magnesia 120ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1489\",\"suspend_id\":\"77\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1487\",\"suspend_id\":\"77\",\"product_id\":\"5963\",\"product_code\":\"560\",\"product_name\":\"Zipman Capsules\",\"net_unit_price\":\"15.9500\",\"unit_price\":\"15.9500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.9500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1488\",\"suspend_id\":\"77\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1486\",\"suspend_id\":\"77\",\"product_id\":\"5541\",\"product_code\":\"138\",\"product_name\":\"Combact N\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1485\",\"suspend_id\":\"77\",\"product_id\":\"5548\",\"product_code\":\"145\",\"product_name\":\"Crepe Bandage 2Inches Xtra care\",\"net_unit_price\":\"2.9800\",\"unit_price\":\"2.9800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.9400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1484\",\"suspend_id\":\"77\",\"product_id\":\"6132\",\"product_code\":\"729\",\"product_name\":\"Crepe Bandage 3 Inches Xtra Care\",\"net_unit_price\":\"4.3500\",\"unit_price\":\"4.3500\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.3500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1483\",\"suspend_id\":\"77\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1482\",\"suspend_id\":\"77\",\"product_id\":\"6342\",\"product_code\":\"939\",\"product_name\":\"Wellman 70+ Tablets 30\'s\",\"net_unit_price\":\"58.1000\",\"unit_price\":\"58.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1481\",\"suspend_id\":\"77\",\"product_id\":\"5605\",\"product_code\":\"202\",\"product_name\":\"Evening Primrose 1000mg Tablets Valupak\",\"net_unit_price\":\"21.5000\",\"unit_price\":\"21.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"86.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1477\",\"suspend_id\":\"77\",\"product_id\":\"6148\",\"product_code\":\"745\",\"product_name\":\"Tobin\'s Cod Liver Oil 10X10\",\"net_unit_price\":\"24.3000\",\"unit_price\":\"24.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"121.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1475\",\"suspend_id\":\"77\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"340.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1504\",\"suspend_id\":\"77\",\"product_id\":\"6501\",\"product_code\":\"1098\",\"product_name\":\"Heptopep Forte 200ml Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1505\",\"suspend_id\":\"77\",\"product_id\":\"5573\",\"product_code\":\"170\",\"product_name\":\"Diclolex 100mg Tablets 10X10\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1506\",\"suspend_id\":\"77\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"124.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1507\",\"suspend_id\":\"77\",\"product_id\":\"5849\",\"product_code\":\"446\",\"product_name\":\"Rhizin Syrup\",\"net_unit_price\":\"3.1000\",\"unit_price\":\"3.1000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1508\",\"suspend_id\":\"77\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1509\",\"suspend_id\":\"77\",\"product_id\":\"6753\",\"product_code\":\"1350\",\"product_name\":\"COA Mixture\",\"net_unit_price\":\"85.0000\",\"unit_price\":\"85.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"85.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1510\",\"suspend_id\":\"77\",\"product_id\":\"5730\",\"product_code\":\"327\",\"product_name\":\"Lofnac Gel 30mg\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1511\",\"suspend_id\":\"77\",\"product_id\":\"6036\",\"product_code\":\"633\",\"product_name\":\"Leorub Gel 30g\",\"net_unit_price\":\"4.4300\",\"unit_price\":\"4.4300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.8600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.4300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1512\",\"suspend_id\":\"77\",\"product_id\":\"5601\",\"product_code\":\"198\",\"product_name\":\"Epiderm Cream 30g\",\"net_unit_price\":\"5.9500\",\"unit_price\":\"5.9500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.8500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1513\",\"suspend_id\":\"77\",\"product_id\":\"6137\",\"product_code\":\"734\",\"product_name\":\"Foligrow Capsules 30\'s\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1514\",\"suspend_id\":\"77\",\"product_id\":\"6449\",\"product_code\":\"1046\",\"product_name\":\"Diagellates Elixir 250ml\",\"net_unit_price\":\"25.5000\",\"unit_price\":\"25.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"76.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1515\",\"suspend_id\":\"77\",\"product_id\":\"6053\",\"product_code\":\"650\",\"product_name\":\"Bonnisan Syrup 120ml\",\"net_unit_price\":\"16.3700\",\"unit_price\":\"16.3700\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.7400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.3700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1516\",\"suspend_id\":\"77\",\"product_id\":\"6170\",\"product_code\":\"767\",\"product_name\":\"Zerocid Plus Suspension 200ML\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1517\",\"suspend_id\":\"77\",\"product_id\":\"6302\",\"product_code\":\"899\",\"product_name\":\"Klovinal Pessaries\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"69.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1518\",\"suspend_id\":\"77\",\"product_id\":\"6458\",\"product_code\":\"1055\",\"product_name\":\"Infa V Pessaries\",\"net_unit_price\":\"22.9000\",\"unit_price\":\"22.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1519\",\"suspend_id\":\"77\",\"product_id\":\"6394\",\"product_code\":\"991\",\"product_name\":\"Mycostat 150mg Capsules 1\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1520\",\"suspend_id\":\"77\",\"product_id\":\"6861\",\"product_code\":\"52042899\",\"product_name\":\"Prowoman Plus Caps \",\"net_unit_price\":\"83.6400\",\"unit_price\":\"83.6400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.6400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"83.6400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1521\",\"suspend_id\":\"77\",\"product_id\":\"6565\",\"product_code\":\"1162\",\"product_name\":\"Tegretol CR 200mg Divitabs 50\'s\",\"net_unit_price\":\"64.7800\",\"unit_price\":\"64.7800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.7800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"64.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1522\",\"suspend_id\":\"77\",\"product_id\":\"6092\",\"product_code\":\"689\",\"product_name\":\"Ferrolex Syrup 250ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1523\",\"suspend_id\":\"77\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1524\",\"suspend_id\":\"77\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1525\",\"suspend_id\":\"77\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1526\",\"suspend_id\":\"77\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1527\",\"suspend_id\":\"77\",\"product_id\":\"6519\",\"product_code\":\"1116\",\"product_name\":\"Wellwoman Max Caps 28 tabs\",\"net_unit_price\":\"120.3600\",\"unit_price\":\"120.3600\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.3600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"120.3600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-06 06:58:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4215, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"76\",\"date\":\"2022-10-06 07:41:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"54\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"266.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"first close pharmacy\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1472\",\"suspend_id\":\"76\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"156.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1471\",\"suspend_id\":\"76\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1470\",\"suspend_id\":\"76\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-06 07:53:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4216, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"78\",\"date\":\"2022-10-06 13:18:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"40\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"390.0700\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"rosa\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1530\",\"suspend_id\":\"78\",\"product_id\":\"5774\",\"product_code\":\"371\",\"product_name\":\"Mucolex Junior Cough150ml Syrup\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1529\",\"suspend_id\":\"78\",\"product_id\":\"6435\",\"product_code\":\"1032\",\"product_name\":\"Coldiron Syrup 125ml\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1528\",\"suspend_id\":\"78\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1534\",\"suspend_id\":\"78\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"113.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1533\",\"suspend_id\":\"78\",\"product_id\":\"6652\",\"product_code\":\"1249\",\"product_name\":\"Normal Saline Nasal Drops 10ml Lavina\",\"net_unit_price\":\"3.7900\",\"unit_price\":\"3.7900\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.9500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1532\",\"suspend_id\":\"78\",\"product_id\":\"6320\",\"product_code\":\"917\",\"product_name\":\"Nifedi-Denk 20mg 100\'s\",\"net_unit_price\":\"63.2200\",\"unit_price\":\"63.2200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.2200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"63.2200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1531\",\"suspend_id\":\"78\",\"product_id\":\"6677\",\"product_code\":\"1274\",\"product_name\":\"Azirocin 250mg Capules\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-06 09:34:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4217, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"79\",\"date\":\"2022-10-07 09:45:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"160.5500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"kasba\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1539\",\"suspend_id\":\"79\",\"product_id\":\"5904\",\"product_code\":\"501\",\"product_name\":\"Tears Natural II Eye Drops\",\"net_unit_price\":\"24.7000\",\"unit_price\":\"24.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1538\",\"suspend_id\":\"79\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.8500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1536\",\"suspend_id\":\"79\",\"product_id\":\"6765\",\"product_code\":\"1362\",\"product_name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"net_unit_price\":\"59.0000\",\"unit_price\":\"59.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"59.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1537\",\"suspend_id\":\"79\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1535\",\"suspend_id\":\"79\",\"product_id\":\"6433\",\"product_code\":\"1030\",\"product_name\":\"Virest Cream (Aciclovir) 5mg\",\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-07 06:20:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4218, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"80\",\"date\":\"2022-10-07 11:10:13\",\"customer_id\":\"283\",\"customer\":\"Empiric \",\"count\":\"110\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"940.3000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"commandos\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1546\",\"suspend_id\":\"80\",\"product_id\":\"6557\",\"product_code\":\"1154\",\"product_name\":\"Ocip TZ\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1545\",\"suspend_id\":\"80\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1552\",\"suspend_id\":\"80\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"136.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1551\",\"suspend_id\":\"80\",\"product_id\":\"5448\",\"product_code\":\"45\",\"product_name\":\"Apetatrust 200ml Syrup\",\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1550\",\"suspend_id\":\"80\",\"product_id\":\"6699\",\"product_code\":\"1296\",\"product_name\":\"Folic Acid 5mg Tablet 28\'s Accord\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1549\",\"suspend_id\":\"80\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"8.3200\",\"unit_price\":\"8.3200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1548\",\"suspend_id\":\"80\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"132.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1547\",\"suspend_id\":\"80\",\"product_id\":\"6417\",\"product_code\":\"1014\",\"product_name\":\"No. 10 Liver Salt (All Flavors)\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1544\",\"suspend_id\":\"80\",\"product_id\":\"6144\",\"product_code\":\"741\",\"product_name\":\"Amoxicillin 250mg Capsules 50 x10 M&G\",\"net_unit_price\":\"88.9000\",\"unit_price\":\"88.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"88.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"88.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1543\",\"suspend_id\":\"80\",\"product_id\":\"6374\",\"product_code\":\"971\",\"product_name\":\"Amoxicillin 250mg (Letap)\",\"net_unit_price\":\"1.8000\",\"unit_price\":\"1.8000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1540\",\"suspend_id\":\"80\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1541\",\"suspend_id\":\"80\",\"product_id\":\"6377\",\"product_code\":\"974\",\"product_name\":\"Letavin 500mg (Griseofulvin) Tablets\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1542\",\"suspend_id\":\"80\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-07 07:19:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4219, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"81\",\"date\":\"2022-10-07 11:27:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"39\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1104.5900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"commad\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1558\",\"suspend_id\":\"81\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1559\",\"suspend_id\":\"81\",\"product_id\":\"6277\",\"product_code\":\"874\",\"product_name\":\"Tinatett Tomac Mixture 500ml\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1557\",\"suspend_id\":\"81\",\"product_id\":\"5592\",\"product_code\":\"189\",\"product_name\":\"Efpac Junior Syrup\",\"net_unit_price\":\"7.1500\",\"unit_price\":\"7.1500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1553\",\"suspend_id\":\"81\",\"product_id\":\"6474\",\"product_code\":\"1071\",\"product_name\":\"Day Nurse Capsules 20\'s\",\"net_unit_price\":\"71.2000\",\"unit_price\":\"71.2000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"854.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"71.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1556\",\"suspend_id\":\"81\",\"product_id\":\"6368\",\"product_code\":\"965\",\"product_name\":\"Viscof S 100ml Syrup\",\"net_unit_price\":\"12.8400\",\"unit_price\":\"12.8400\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.3600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1555\",\"suspend_id\":\"81\",\"product_id\":\"5931\",\"product_code\":\"528\",\"product_name\":\"Viscof D 100ml Syrup\",\"net_unit_price\":\"12.8400\",\"unit_price\":\"12.8400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.6800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1554\",\"suspend_id\":\"81\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-07 07:32:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4220, 'POS Bill is being deleted by tabitha (User Id: 7)', '{\"model\":{\"id\":\"82\",\"date\":\"2022-10-07 11:37:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"37\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"446.1900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"7\",\"suspend_note\":\"so darko\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1565\",\"suspend_id\":\"82\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"77.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1569\",\"suspend_id\":\"82\",\"product_id\":\"6032\",\"product_code\":\"629\",\"product_name\":\"Gebedol Forte\",\"net_unit_price\":\"17.2100\",\"unit_price\":\"17.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1568\",\"suspend_id\":\"82\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1567\",\"suspend_id\":\"82\",\"product_id\":\"6692\",\"product_code\":\"1289\",\"product_name\":\"Mist Mag. Trisilicate 200ml ROKMER\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1566\",\"suspend_id\":\"82\",\"product_id\":\"6691\",\"product_code\":\"1288\",\"product_name\":\"Lonart 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1563\",\"suspend_id\":\"82\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1564\",\"suspend_id\":\"82\",\"product_id\":\"6228\",\"product_code\":\"825\",\"product_name\":\"Vitamin B-Complex Tablets 100x10 Letap\",\"net_unit_price\":\"20.9500\",\"unit_price\":\"20.9500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.9500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1562\",\"suspend_id\":\"82\",\"product_id\":\"6154\",\"product_code\":\"751\",\"product_name\":\"Paracetamol 500mg M&G Tablets 50x10\",\"net_unit_price\":\"39.1000\",\"unit_price\":\"39.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1560\",\"suspend_id\":\"82\",\"product_id\":\"6323\",\"product_code\":\"920\",\"product_name\":\"Polygynax Pessaries 6\'s\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1561\",\"suspend_id\":\"82\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.1300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-07 07:42:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4221, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"83\",\"date\":\"2022-10-07 13:01:08\",\"customer_id\":\"108\",\"customer\":\"freddi4delord\",\"count\":\"202\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1350.5600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"FRED\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1600\",\"suspend_id\":\"83\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"3.5200\",\"unit_price\":\"3.5200\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1599\",\"suspend_id\":\"83\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1598\",\"suspend_id\":\"83\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"3.4100\",\"unit_price\":\"3.4100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1597\",\"suspend_id\":\"83\",\"product_id\":\"5654\",\"product_code\":\"251\",\"product_name\":\"Gentian violet (GV PAINT)\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1596\",\"suspend_id\":\"83\",\"product_id\":\"6083\",\"product_code\":\"680\",\"product_name\":\"Methylated Spirit Rokmer 60ml\",\"net_unit_price\":\"2.7000\",\"unit_price\":\"2.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1583\",\"suspend_id\":\"83\",\"product_id\":\"6385\",\"product_code\":\"982\",\"product_name\":\"Amcof Junior Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1582\",\"suspend_id\":\"83\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1575\",\"suspend_id\":\"83\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1594\",\"suspend_id\":\"83\",\"product_id\":\"5849\",\"product_code\":\"446\",\"product_name\":\"Rhizin Syrup\",\"net_unit_price\":\"3.1000\",\"unit_price\":\"3.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1595\",\"suspend_id\":\"83\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1593\",\"suspend_id\":\"83\",\"product_id\":\"6297\",\"product_code\":\"894\",\"product_name\":\"Malar-2 Suspension 60ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1592\",\"suspend_id\":\"83\",\"product_id\":\"6136\",\"product_code\":\"733\",\"product_name\":\"Chlo Eye (Chloramphenicol) drops\",\"net_unit_price\":\"3.8000\",\"unit_price\":\"3.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1591\",\"suspend_id\":\"83\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.9100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1590\",\"suspend_id\":\"83\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"62.0000\",\"unit_price\":\"62.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"62.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1589\",\"suspend_id\":\"83\",\"product_id\":\"6144\",\"product_code\":\"741\",\"product_name\":\"Amoxicillin 250mg Capsules 50 x10 M&G\",\"net_unit_price\":\"88.9000\",\"unit_price\":\"88.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"88.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"88.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1588\",\"suspend_id\":\"83\",\"product_id\":\"5906\",\"product_code\":\"503\",\"product_name\":\"Tetracycline Capsules\",\"net_unit_price\":\"15.8200\",\"unit_price\":\"15.8200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1587\",\"suspend_id\":\"83\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"134.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1586\",\"suspend_id\":\"83\",\"product_id\":\"5768\",\"product_code\":\"365\",\"product_name\":\"Metronidazole 200mg Tablets 50X10 Letap\",\"net_unit_price\":\"28.8000\",\"unit_price\":\"28.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1585\",\"suspend_id\":\"83\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1584\",\"suspend_id\":\"83\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1581\",\"suspend_id\":\"83\",\"product_id\":\"5435\",\"product_code\":\"32\",\"product_name\":\"Amcof Adult Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1580\",\"suspend_id\":\"83\",\"product_id\":\"5885\",\"product_code\":\"482\",\"product_name\":\"Stopkof Children 100ml Syrup\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1579\",\"suspend_id\":\"83\",\"product_id\":\"5886\",\"product_code\":\"483\",\"product_name\":\"Stopkof Adult Cough Syrup 100ml\",\"net_unit_price\":\"8.6000\",\"unit_price\":\"8.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1577\",\"suspend_id\":\"83\",\"product_id\":\"5977\",\"product_code\":\"574\",\"product_name\":\"Samalin Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1578\",\"suspend_id\":\"83\",\"product_id\":\"6201\",\"product_code\":\"798\",\"product_name\":\"Samalin Junior cough syrup 125ml\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1576\",\"suspend_id\":\"83\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1573\",\"suspend_id\":\"83\",\"product_id\":\"5631\",\"product_code\":\"228\",\"product_name\":\"Gacet 125mg Suppositories\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1574\",\"suspend_id\":\"83\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1570\",\"suspend_id\":\"83\",\"product_id\":\"6390\",\"product_code\":\"987\",\"product_name\":\"Salocold Tablets\",\"net_unit_price\":\"29.4500\",\"unit_price\":\"29.4500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.4500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1572\",\"suspend_id\":\"83\",\"product_id\":\"6750\",\"product_code\":\"1347\",\"product_name\":\"Clodol 100mg Suppository (Diclofenac 2X5)\",\"net_unit_price\":\"6.7000\",\"unit_price\":\"6.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1571\",\"suspend_id\":\"83\",\"product_id\":\"5576\",\"product_code\":\"173\",\"product_name\":\"Dicnac 100mg Suppositories\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-07 09:10:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4222, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"84\",\"date\":\"2022-10-08 11:35:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"51\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"386.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"HAK \",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1613\",\"suspend_id\":\"84\",\"product_id\":\"5657\",\"product_code\":\"254\",\"product_name\":\"Haemoglobin B12 syrup 200ml (Letap)\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1606\",\"suspend_id\":\"84\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"8.3200\",\"unit_price\":\"8.3200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1621\",\"suspend_id\":\"84\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1620\",\"suspend_id\":\"84\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1619\",\"suspend_id\":\"84\",\"product_id\":\"6112\",\"product_code\":\"709\",\"product_name\":\"Metrolex F Tablets 21\'s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1618\",\"suspend_id\":\"84\",\"product_id\":\"5422\",\"product_code\":\"19\",\"product_name\":\"Adom W&G Capsules\",\"net_unit_price\":\"18.7000\",\"unit_price\":\"18.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1617\",\"suspend_id\":\"84\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1616\",\"suspend_id\":\"84\",\"product_id\":\"6217\",\"product_code\":\"814\",\"product_name\":\"Ascorbin Syrup (Child Care)100ml\",\"net_unit_price\":\"2.8800\",\"unit_price\":\"2.8800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.6400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1614\",\"suspend_id\":\"84\",\"product_id\":\"6117\",\"product_code\":\"714\",\"product_name\":\"Gudapet Capsules\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1615\",\"suspend_id\":\"84\",\"product_id\":\"5754\",\"product_code\":\"351\",\"product_name\":\"Malin Baby\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1612\",\"suspend_id\":\"84\",\"product_id\":\"6667\",\"product_code\":\"1264\",\"product_name\":\"Gyprone Plus Tablets\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1611\",\"suspend_id\":\"84\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1608\",\"suspend_id\":\"84\",\"product_id\":\"6332\",\"product_code\":\"929\",\"product_name\":\"Adom Koo Capsules\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1609\",\"suspend_id\":\"84\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1610\",\"suspend_id\":\"84\",\"product_id\":\"6381\",\"product_code\":\"978\",\"product_name\":\"Flucloxacillin 100ml Suspension Letap\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1607\",\"suspend_id\":\"84\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1603\",\"suspend_id\":\"84\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"3.4100\",\"unit_price\":\"3.4100\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.2300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1604\",\"suspend_id\":\"84\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1605\",\"suspend_id\":\"84\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1601\",\"suspend_id\":\"84\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"3.5200\",\"unit_price\":\"3.5200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.5600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1602\",\"suspend_id\":\"84\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-08 07:38:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4223, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"85\",\"date\":\"2022-10-08 11:37:16\",\"customer_id\":\"377\",\"customer\":\"old soja\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"5.9000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"OLD\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1622\",\"suspend_id\":\"85\",\"product_id\":\"6820\",\"product_code\":\"1417\",\"product_name\":\"Metronidazole 200mg Tablets 10X10 Letap\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-08 07:41:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4224, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"86\",\"date\":\"2022-10-08 15:01:21\",\"customer_id\":\"218\",\"customer\":\"ramatuchem\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"148.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"ramatu\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1626\",\"suspend_id\":\"86\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1627\",\"suspend_id\":\"86\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1628\",\"suspend_id\":\"86\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"12.7000\",\"unit_price\":\"12.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1629\",\"suspend_id\":\"86\",\"product_id\":\"6608\",\"product_code\":\"1205\",\"product_name\":\"Skyclav 457mg\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-08 11:11:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4225, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"87\",\"date\":\"2022-10-10 08:49:51\",\"customer_id\":\"263\",\"customer\":\"URBAN\",\"count\":\"49\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"248.0200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"urban\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1630\",\"suspend_id\":\"87\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1631\",\"suspend_id\":\"87\",\"product_id\":\"6409\",\"product_code\":\"1006\",\"product_name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1632\",\"suspend_id\":\"87\",\"product_id\":\"6202\",\"product_code\":\"799\",\"product_name\":\"Starwin Milk of Magnesia 120ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1633\",\"suspend_id\":\"87\",\"product_id\":\"6099\",\"product_code\":\"696\",\"product_name\":\"Clear Inhaler 12\'s\",\"net_unit_price\":\"29.5000\",\"unit_price\":\"29.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1634\",\"suspend_id\":\"87\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"156.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-10 05:02:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4226, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"88\",\"date\":\"2022-10-11 09:34:53\",\"customer_id\":\"101\",\"customer\":\"FMMS2COMMANDOS\",\"count\":\"128\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2277.7900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"commandos\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1672\",\"suspend_id\":\"88\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1671\",\"suspend_id\":\"88\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1670\",\"suspend_id\":\"88\",\"product_id\":\"5465\",\"product_code\":\"62\",\"product_name\":\"Augmentin  625mgTablets 14\'s\",\"net_unit_price\":\"98.6000\",\"unit_price\":\"98.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"295.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"98.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1669\",\"suspend_id\":\"88\",\"product_id\":\"6103\",\"product_code\":\"700\",\"product_name\":\"Klire 4 Way Cough Syrup 125ml Eskay\",\"net_unit_price\":\"15.2000\",\"unit_price\":\"15.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"76.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1667\",\"suspend_id\":\"88\",\"product_id\":\"6434\",\"product_code\":\"1031\",\"product_name\":\"Cotton wool 50g\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1668\",\"suspend_id\":\"88\",\"product_id\":\"6663\",\"product_code\":\"1260\",\"product_name\":\"Cotton Wool 25gm\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1663\",\"suspend_id\":\"88\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1662\",\"suspend_id\":\"88\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1665\",\"suspend_id\":\"88\",\"product_id\":\"6356\",\"product_code\":\"953\",\"product_name\":\"Cotton Wool 100g\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1666\",\"suspend_id\":\"88\",\"product_id\":\"6357\",\"product_code\":\"954\",\"product_name\":\"Cotton Wool 200g\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1664\",\"suspend_id\":\"88\",\"product_id\":\"6851\",\"product_code\":\"1448\",\"product_name\":\"Cotton 500g\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1661\",\"suspend_id\":\"88\",\"product_id\":\"6143\",\"product_code\":\"740\",\"product_name\":\"Gauze Bandage 4 Inches Xtra Care\",\"net_unit_price\":\"11.2000\",\"unit_price\":\"11.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1660\",\"suspend_id\":\"88\",\"product_id\":\"6141\",\"product_code\":\"738\",\"product_name\":\"Gauze Bandage 6 Inches Xtra Care\",\"net_unit_price\":\"15.9500\",\"unit_price\":\"15.9500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1659\",\"suspend_id\":\"88\",\"product_id\":\"5797\",\"product_code\":\"394\",\"product_name\":\"Normo Tears Eye Drop\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1658\",\"suspend_id\":\"88\",\"product_id\":\"6596\",\"product_code\":\"1193\",\"product_name\":\"Epicrom 2% Eye Drop 10ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1657\",\"suspend_id\":\"88\",\"product_id\":\"5834\",\"product_code\":\"431\",\"product_name\":\"Proman Capsules 30s\",\"net_unit_price\":\"41.5800\",\"unit_price\":\"41.5800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.5800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"41.5800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1656\",\"suspend_id\":\"88\",\"product_id\":\"6088\",\"product_code\":\"685\",\"product_name\":\"Bioferon Capsules 30\'s\",\"net_unit_price\":\"26.8000\",\"unit_price\":\"26.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1655\",\"suspend_id\":\"88\",\"product_id\":\"6122\",\"product_code\":\"719\",\"product_name\":\"Ventolin Inhaler 100 micrograms\",\"net_unit_price\":\"47.2000\",\"unit_price\":\"47.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"188.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"47.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1654\",\"suspend_id\":\"88\",\"product_id\":\"6642\",\"product_code\":\"1239\",\"product_name\":\"Metagyl Syrup (Metzol) Syrp 200mg\\/5ml 100ml\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1653\",\"suspend_id\":\"88\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1652\",\"suspend_id\":\"88\",\"product_id\":\"5562\",\"product_code\":\"159\",\"product_name\":\"Deep Freez Spray 150ml\",\"net_unit_price\":\"58.9000\",\"unit_price\":\"58.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"176.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1651\",\"suspend_id\":\"88\",\"product_id\":\"6702\",\"product_code\":\"1299\",\"product_name\":\"Carvedilol 6.25mg Tablets 28\'s\",\"net_unit_price\":\"12.6000\",\"unit_price\":\"12.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1650\",\"suspend_id\":\"88\",\"product_id\":\"6703\",\"product_code\":\"1300\",\"product_name\":\"Carvedilol 12.5mg Tablets 28\'s\",\"net_unit_price\":\"16.3400\",\"unit_price\":\"16.3400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.3400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.3400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1649\",\"suspend_id\":\"88\",\"product_id\":\"5955\",\"product_code\":\"552\",\"product_name\":\"Zincofer Capsules 30\'s\",\"net_unit_price\":\"17.9000\",\"unit_price\":\"17.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1641\",\"suspend_id\":\"88\",\"product_id\":\"5569\",\"product_code\":\"166\",\"product_name\":\"Diazepam 5mg Tablets 500\'s\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1642\",\"suspend_id\":\"88\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"92.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1643\",\"suspend_id\":\"88\",\"product_id\":\"5762\",\"product_code\":\"359\",\"product_name\":\"Mentat Tablets\",\"net_unit_price\":\"28.5400\",\"unit_price\":\"28.5400\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.6200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.5400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1644\",\"suspend_id\":\"88\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1645\",\"suspend_id\":\"88\",\"product_id\":\"6202\",\"product_code\":\"799\",\"product_name\":\"Starwin Milk of Magnesia 120ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1646\",\"suspend_id\":\"88\",\"product_id\":\"6883\",\"product_code\":\"54358257\",\"product_name\":\"Losartan Potassium 50mg Tablet OA&G\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1647\",\"suspend_id\":\"88\",\"product_id\":\"6167\",\"product_code\":\"764\",\"product_name\":\"Polyfer Forte Syrup 200ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1648\",\"suspend_id\":\"88\",\"product_id\":\"6424\",\"product_code\":\"1021\",\"product_name\":\"Durol Tonic  Junior 200ml\",\"net_unit_price\":\"8.5500\",\"unit_price\":\"8.5500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-11 06:06:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4227, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"89\",\"date\":\"2022-10-11 10:45:11\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"26\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"733.8400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"MEIRACARE.\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1694\",\"suspend_id\":\"89\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1693\",\"suspend_id\":\"89\",\"product_id\":\"6643\",\"product_code\":\"1240\",\"product_name\":\"Metroz Tablets 20\'s\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1692\",\"suspend_id\":\"89\",\"product_id\":\"6245\",\"product_code\":\"842\",\"product_name\":\"Neflucon(Fluconazole)150mg Capsule ECL\",\"net_unit_price\":\"2.9900\",\"unit_price\":\"2.9900\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.9900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1691\",\"suspend_id\":\"89\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1690\",\"suspend_id\":\"89\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1689\",\"suspend_id\":\"89\",\"product_id\":\"5676\",\"product_code\":\"273\",\"product_name\":\"Imax Delay Spray\",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1688\",\"suspend_id\":\"89\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1687\",\"suspend_id\":\"89\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1686\",\"suspend_id\":\"89\",\"product_id\":\"6749\",\"product_code\":\"1346\",\"product_name\":\"Jet 2 Inhaler\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1685\",\"suspend_id\":\"89\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.1400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1684\",\"suspend_id\":\"89\",\"product_id\":\"6445\",\"product_code\":\"1042\",\"product_name\":\"Vermox Suspension\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1683\",\"suspend_id\":\"89\",\"product_id\":\"6321\",\"product_code\":\"918\",\"product_name\":\"Clotri Denk 100mg Pessary\",\"net_unit_price\":\"25.8000\",\"unit_price\":\"25.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1682\",\"suspend_id\":\"89\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1673\",\"suspend_id\":\"89\",\"product_id\":\"5712\",\"product_code\":\"309\",\"product_name\":\"Lenor\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1674\",\"suspend_id\":\"89\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"66.5300\",\"unit_price\":\"66.5300\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.5300\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"66.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1675\",\"suspend_id\":\"89\",\"product_id\":\"6339\",\"product_code\":\"936\",\"product_name\":\"Pregnacare Tablets 19\'s\",\"net_unit_price\":\"60.3000\",\"unit_price\":\"60.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1676\",\"suspend_id\":\"89\",\"product_id\":\"6233\",\"product_code\":\"830\",\"product_name\":\"Amlodipine 5mg Tablets 28s Teva\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1677\",\"suspend_id\":\"89\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1678\",\"suspend_id\":\"89\",\"product_id\":\"5830\",\"product_code\":\"427\",\"product_name\":\"Pregnacare Plus\",\"net_unit_price\":\"108.1000\",\"unit_price\":\"108.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"108.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1679\",\"suspend_id\":\"89\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30s ECL\",\"net_unit_price\":\"36.9900\",\"unit_price\":\"36.9900\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.9800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"36.9900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1680\",\"suspend_id\":\"89\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"74.0000\",\"unit_price\":\"74.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"74.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1681\",\"suspend_id\":\"89\",\"product_id\":\"6442\",\"product_code\":\"1039\",\"product_name\":\"NoSpa 40mg 100\'s\",\"net_unit_price\":\"83.6000\",\"unit_price\":\"83.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"83.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-11 07:05:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4228, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"90\",\"date\":\"2022-10-11 14:56:49\",\"customer_id\":\"99\",\"customer\":\"florencegamali\",\"count\":\"28\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"383.0500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"FLOMENDA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1706\",\"suspend_id\":\"90\",\"product_id\":\"5772\",\"product_code\":\"369\",\"product_name\":\"Mist Mag. Trisilicate 200ml Mal-Titi\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1705\",\"suspend_id\":\"90\",\"product_id\":\"5447\",\"product_code\":\"44\",\"product_name\":\"Apetamin Syrup 200ml\",\"net_unit_price\":\"28.7000\",\"unit_price\":\"28.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1704\",\"suspend_id\":\"90\",\"product_id\":\"6248\",\"product_code\":\"845\",\"product_name\":\"Teething Mixture 100ml ECL\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1695\",\"suspend_id\":\"90\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1703\",\"suspend_id\":\"90\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1702\",\"suspend_id\":\"90\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"74.0000\",\"unit_price\":\"74.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"74.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1701\",\"suspend_id\":\"90\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"31.1000\",\"unit_price\":\"31.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"31.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1700\",\"suspend_id\":\"90\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"14.2500\",\"unit_price\":\"14.2500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.2500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1699\",\"suspend_id\":\"90\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1698\",\"suspend_id\":\"90\",\"product_id\":\"5885\",\"product_code\":\"482\",\"product_name\":\"Stopkof Children 100ml Syrup\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1697\",\"suspend_id\":\"90\",\"product_id\":\"6764\",\"product_code\":\"1361\",\"product_name\":\"Bells Normal Saline Drops 0.9ml\",\"net_unit_price\":\"6.3500\",\"unit_price\":\"6.3500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.3500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1696\",\"suspend_id\":\"90\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-11 11:05:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4229, 'Sale is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"1142\",\"date\":\"2022-10-12 12:06:27\",\"reference_no\":\"FMMS\\/POS1090\",\"customer_id\":\"8\",\"customer\":\"Mercy Arthur\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"125.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"125.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"1\",\"paid\":\"125.5000\",\"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\":\"ef0697eba1170a3951f567d130594ad706e17b3efcd0e8c0b8433c88e638e163\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"12438\",\"sale_id\":\"1142\",\"product_id\":\"6433\",\"product_code\":\"1030\",\"product_name\":\"Virest Cream (Aciclovir) 5mg\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10.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\":\"download-52.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"12439\",\"sale_id\":\"1142\",\"product_id\":\"5531\",\"product_code\":\"128\",\"product_name\":\"Cloxacillin 250mg Letap\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"80.5000\",\"unit_price\":\"80.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.5000\",\"serial_no\":\"\",\"real_unit_price\":\"80.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"12440\",\"sale_id\":\"1142\",\"product_id\":\"6352\",\"product_code\":\"949\",\"product_name\":\"Roxidol\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-10-12 08:09:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4230, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"92\",\"date\":\"2022-10-12 11:30:21\",\"customer_id\":\"52\",\"customer\":\"BETVEN PHARMACY MARKET\",\"count\":\"149\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2577.6800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"BETVEN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1902\",\"suspend_id\":\"92\",\"product_id\":\"6883\",\"product_code\":\"54358257\",\"product_name\":\"Losartan Potassium 50mg Tablet OA&G\",\"net_unit_price\":\"7.0000\",\"unit_price\":\"7.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1901\",\"suspend_id\":\"92\",\"product_id\":\"6882\",\"product_code\":\"69020596\",\"product_name\":\"Clopidogrel Frelet 75\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1899\",\"suspend_id\":\"92\",\"product_id\":\"6851\",\"product_code\":\"1448\",\"product_name\":\"Cotton 500g\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1900\",\"suspend_id\":\"92\",\"product_id\":\"6874\",\"product_code\":\"66699023\",\"product_name\":\"Malar-2 forte DS Tablets 6\\\\\'S\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1898\",\"suspend_id\":\"92\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1895\",\"suspend_id\":\"92\",\"product_id\":\"6694\",\"product_code\":\"1291\",\"product_name\":\"Prowoman 50+ Capsules 30\'s \",\"net_unit_price\":\"52.8000\",\"unit_price\":\"52.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"105.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"52.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1896\",\"suspend_id\":\"92\",\"product_id\":\"6753\",\"product_code\":\"1350\",\"product_name\":\"COA Mixture\",\"net_unit_price\":\"85.0000\",\"unit_price\":\"85.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"85.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1897\",\"suspend_id\":\"92\",\"product_id\":\"6765\",\"product_code\":\"1362\",\"product_name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"net_unit_price\":\"59.0000\",\"unit_price\":\"59.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"59.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1892\",\"suspend_id\":\"92\",\"product_id\":\"6670\",\"product_code\":\"1267\",\"product_name\":\"Dicnac 75\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1893\",\"suspend_id\":\"92\",\"product_id\":\"6674\",\"product_code\":\"1271\",\"product_name\":\"Plaster roll Extra care 1Inch\",\"net_unit_price\":\"4.4500\",\"unit_price\":\"4.4500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1894\",\"suspend_id\":\"92\",\"product_id\":\"6691\",\"product_code\":\"1288\",\"product_name\":\"Lonart 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1891\",\"suspend_id\":\"92\",\"product_id\":\"6603\",\"product_code\":\"1200\",\"product_name\":\"Eskaron Blood Tonic 200ml\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1889\",\"suspend_id\":\"92\",\"product_id\":\"6559\",\"product_code\":\"1156\",\"product_name\":\"Perfectil Capsules 30\'s\",\"net_unit_price\":\"75.0000\",\"unit_price\":\"75.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"75.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1890\",\"suspend_id\":\"92\",\"product_id\":\"6590\",\"product_code\":\"1187\",\"product_name\":\"Peladol Extra\",\"net_unit_price\":\"25.3000\",\"unit_price\":\"25.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.3000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1887\",\"suspend_id\":\"92\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"net_unit_price\":\"5.9800\",\"unit_price\":\"5.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1888\",\"suspend_id\":\"92\",\"product_id\":\"6537\",\"product_code\":\"1134\",\"product_name\":\"Enacin-C (Clindamycin) 300mg Caps 100\'\",\"net_unit_price\":\"93.6000\",\"unit_price\":\"93.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"93.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"93.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1886\",\"suspend_id\":\"92\",\"product_id\":\"6522\",\"product_code\":\"1119\",\"product_name\":\"Menopace Tabs UK\",\"net_unit_price\":\"49.7000\",\"unit_price\":\"49.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"49.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1885\",\"suspend_id\":\"92\",\"product_id\":\"6501\",\"product_code\":\"1098\",\"product_name\":\"Heptopep Forte 200ml Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1884\",\"suspend_id\":\"92\",\"product_id\":\"6479\",\"product_code\":\"1076\",\"product_name\":\"Dulcolax 10mg Suppositories 12\'s\",\"net_unit_price\":\"39.7000\",\"unit_price\":\"39.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"39.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1883\",\"suspend_id\":\"92\",\"product_id\":\"6451\",\"product_code\":\"1048\",\"product_name\":\"Voltfast Powder 50mg 30\'s\",\"net_unit_price\":\"53.2000\",\"unit_price\":\"53.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"53.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1882\",\"suspend_id\":\"92\",\"product_id\":\"6394\",\"product_code\":\"991\",\"product_name\":\"Mycostat 150mg Capsules 1\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1881\",\"suspend_id\":\"92\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1879\",\"suspend_id\":\"92\",\"product_id\":\"6357\",\"product_code\":\"954\",\"product_name\":\"Cotton Wool 200g\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1880\",\"suspend_id\":\"92\",\"product_id\":\"6358\",\"product_code\":\"955\",\"product_name\":\"Fenbase Extra\",\"net_unit_price\":\"2.7500\",\"unit_price\":\"2.7500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1877\",\"suspend_id\":\"92\",\"product_id\":\"6352\",\"product_code\":\"949\",\"product_name\":\"Roxidol\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1878\",\"suspend_id\":\"92\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.7500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1876\",\"suspend_id\":\"92\",\"product_id\":\"6332\",\"product_code\":\"929\",\"product_name\":\"Adom Koo Capsules\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1871\",\"suspend_id\":\"92\",\"product_id\":\"6260\",\"product_code\":\"857\",\"product_name\":\"Hydrogen Peroxide 200ml ECL\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1872\",\"suspend_id\":\"92\",\"product_id\":\"6283\",\"product_code\":\"880\",\"product_name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"net_unit_price\":\"6.0200\",\"unit_price\":\"6.0200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.0200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1873\",\"suspend_id\":\"92\",\"product_id\":\"6314\",\"product_code\":\"911\",\"product_name\":\"Nifedi-Denk 10mg Tablets 10X10\",\"net_unit_price\":\"33.0200\",\"unit_price\":\"33.0200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"33.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1874\",\"suspend_id\":\"92\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"74.0000\",\"unit_price\":\"74.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"148.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"74.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1875\",\"suspend_id\":\"92\",\"product_id\":\"6327\",\"product_code\":\"924\",\"product_name\":\"Flagentyl 500mg Tablets 4\'s secnidazole\",\"net_unit_price\":\"28.6000\",\"unit_price\":\"28.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1870\",\"suspend_id\":\"92\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1868\",\"suspend_id\":\"92\",\"product_id\":\"6202\",\"product_code\":\"799\",\"product_name\":\"Starwin Milk of Magnesia 120ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1869\",\"suspend_id\":\"92\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"2.8000\",\"unit_price\":\"2.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1867\",\"suspend_id\":\"92\",\"product_id\":\"6184\",\"product_code\":\"781\",\"product_name\":\"Magnavit Capsules 30\'s\",\"net_unit_price\":\"7.8500\",\"unit_price\":\"7.8500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1865\",\"suspend_id\":\"92\",\"product_id\":\"6112\",\"product_code\":\"709\",\"product_name\":\"Metrolex F Tablets 21\'s\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1866\",\"suspend_id\":\"92\",\"product_id\":\"6117\",\"product_code\":\"714\",\"product_name\":\"Gudapet Capsules\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1864\",\"suspend_id\":\"92\",\"product_id\":\"6102\",\"product_code\":\"699\",\"product_name\":\"Haemo Forte Syrup 200ml\",\"net_unit_price\":\"27.8000\",\"unit_price\":\"27.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1863\",\"suspend_id\":\"92\",\"product_id\":\"6097\",\"product_code\":\"694\",\"product_name\":\"Methylated Spirit 200ml\",\"net_unit_price\":\"7.2000\",\"unit_price\":\"7.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1862\",\"suspend_id\":\"92\",\"product_id\":\"5975\",\"product_code\":\"572\",\"product_name\":\"Durol Tonic 200ml\",\"net_unit_price\":\"12.2100\",\"unit_price\":\"12.2100\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"97.6800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1861\",\"suspend_id\":\"92\",\"product_id\":\"5915\",\"product_code\":\"512\",\"product_name\":\"Tranexamic Acid 500mg Tablets 60\'s\",\"net_unit_price\":\"130.0000\",\"unit_price\":\"130.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"130.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1860\",\"suspend_id\":\"92\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1859\",\"suspend_id\":\"92\",\"product_id\":\"5835\",\"product_code\":\"432\",\"product_name\":\"Proman 50+ Capsules 30\'s\",\"net_unit_price\":\"33.9800\",\"unit_price\":\"33.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.9800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"33.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1857\",\"suspend_id\":\"92\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1858\",\"suspend_id\":\"92\",\"product_id\":\"5828\",\"product_code\":\"425\",\"product_name\":\"Polyfer Forte Syrup 150ML\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1856\",\"suspend_id\":\"92\",\"product_id\":\"5808\",\"product_code\":\"405\",\"product_name\":\"ORS Flavored\",\"net_unit_price\":\"16.6000\",\"unit_price\":\"16.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1855\",\"suspend_id\":\"92\",\"product_id\":\"5790\",\"product_code\":\"387\",\"product_name\":\"Nexium 40mg Tablets 14\'s\",\"net_unit_price\":\"149.2800\",\"unit_price\":\"149.2800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"149.2800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"149.2800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1854\",\"suspend_id\":\"92\",\"product_id\":\"5787\",\"product_code\":\"384\",\"product_name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1853\",\"suspend_id\":\"92\",\"product_id\":\"5779\",\"product_code\":\"376\",\"product_name\":\"Mycolex Cream 20g\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1852\",\"suspend_id\":\"92\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1851\",\"suspend_id\":\"92\",\"product_id\":\"5656\",\"product_code\":\"253\",\"product_name\":\"Gyprone Plus 200ml Syrup\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1850\",\"suspend_id\":\"92\",\"product_id\":\"5634\",\"product_code\":\"231\",\"product_name\":\"Garlic Pearls Osons\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1849\",\"suspend_id\":\"92\",\"product_id\":\"5629\",\"product_code\":\"226\",\"product_name\":\"Funbact A\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1848\",\"suspend_id\":\"92\",\"product_id\":\"5593\",\"product_code\":\"190\",\"product_name\":\"Efpac Tablets\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"77.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1847\",\"suspend_id\":\"92\",\"product_id\":\"5585\",\"product_code\":\"182\",\"product_name\":\"Dragon Tablets\",\"net_unit_price\":\"23.4000\",\"unit_price\":\"23.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"70.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"23.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1846\",\"suspend_id\":\"92\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-12 08:09:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4231, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"93\",\"date\":\"2022-10-12 11:01:05\",\"customer_id\":\"87\",\"customer\":\"RITA ASHLYN\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"164.7000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"RITA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1783\",\"suspend_id\":\"93\",\"product_id\":\"6121\",\"product_code\":\"718\",\"product_name\":\"Strobin Lozenges 25x6\",\"net_unit_price\":\"29.2000\",\"unit_price\":\"29.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1784\",\"suspend_id\":\"93\",\"product_id\":\"6197\",\"product_code\":\"794\",\"product_name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"net_unit_price\":\"45.5000\",\"unit_price\":\"45.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"45.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1785\",\"suspend_id\":\"93\",\"product_id\":\"6615\",\"product_code\":\"1212\",\"product_name\":\"Fada Martins Herbal Mixture\",\"net_unit_price\":\"11.0000\",\"unit_price\":\"11.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1786\",\"suspend_id\":\"93\",\"product_id\":\"6557\",\"product_code\":\"1154\",\"product_name\":\"Ocip TZ\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1787\",\"suspend_id\":\"93\",\"product_id\":\"5473\",\"product_code\":\"70\",\"product_name\":\"Basecold Syrup\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-12 08:32:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4232, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"94\",\"date\":\"2022-10-12 12:37:30\",\"customer_id\":\"132\",\"customer\":\"jameshph\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"248.8000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"JAMESH\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1903\",\"suspend_id\":\"94\",\"product_id\":\"6598\",\"product_code\":\"1195\",\"product_name\":\"Epifenac Eye 1mg\\/ml Drop\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1904\",\"suspend_id\":\"94\",\"product_id\":\"5787\",\"product_code\":\"384\",\"product_name\":\"Neo-Hycolex e\\/e\\/n Drops 10ml\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1905\",\"suspend_id\":\"94\",\"product_id\":\"6599\",\"product_code\":\"1196\",\"product_name\":\"Dexatrol Eye \\/ Ear Drop 5ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1906\",\"suspend_id\":\"94\",\"product_id\":\"6597\",\"product_code\":\"1194\",\"product_name\":\"Nostamine Eye\\/Nose Drop 10ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-12 08:47:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4233, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"95\",\"date\":\"2022-10-12 13:44:56\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"53\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"574.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"MEIRACARE\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1941\",\"suspend_id\":\"95\",\"product_id\":\"6286\",\"product_code\":\"883\",\"product_name\":\"Kidivite Syrup 200ml\",\"net_unit_price\":\"9.6000\",\"unit_price\":\"9.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1940\",\"suspend_id\":\"95\",\"product_id\":\"5970\",\"product_code\":\"567\",\"product_name\":\"Virol blood tonic 200ml\",\"net_unit_price\":\"12.8500\",\"unit_price\":\"12.8500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1939\",\"suspend_id\":\"95\",\"product_id\":\"5828\",\"product_code\":\"425\",\"product_name\":\"Polyfer Forte Syrup 150ML\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1936\",\"suspend_id\":\"95\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1937\",\"suspend_id\":\"95\",\"product_id\":\"6125\",\"product_code\":\"722\",\"product_name\":\"Lufart Suspension\",\"net_unit_price\":\"12.5000\",\"unit_price\":\"12.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1938\",\"suspend_id\":\"95\",\"product_id\":\"6387\",\"product_code\":\"984\",\"product_name\":\"Cartef 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"7.9300\",\"unit_price\":\"7.9300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1935\",\"suspend_id\":\"95\",\"product_id\":\"5801\",\"product_code\":\"398\",\"product_name\":\"O-Formin 500mg (Metformin)\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1934\",\"suspend_id\":\"95\",\"product_id\":\"5815\",\"product_code\":\"412\",\"product_name\":\"PARA DENK250 SUPPO\",\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"0.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1933\",\"suspend_id\":\"95\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.9500\",\"unit_price\":\"4.9500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1932\",\"suspend_id\":\"95\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"13.0000\",\"unit_price\":\"13.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1931\",\"suspend_id\":\"95\",\"product_id\":\"6591\",\"product_code\":\"1188\",\"product_name\":\"Abyvita Syrup 200ml\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1930\",\"suspend_id\":\"95\",\"product_id\":\"6569\",\"product_code\":\"1166\",\"product_name\":\"Luex Adult Dry Cough 150ml syrup\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1929\",\"suspend_id\":\"95\",\"product_id\":\"6406\",\"product_code\":\"1003\",\"product_name\":\"Celecoxib 200mg Capsules Exeter\",\"net_unit_price\":\"26.1800\",\"unit_price\":\"26.1800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.1800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"26.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1928\",\"suspend_id\":\"95\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1920\",\"suspend_id\":\"95\",\"product_id\":\"5586\",\"product_code\":\"183\",\"product_name\":\"Dragon Spray\",\"net_unit_price\":\"28.9000\",\"unit_price\":\"28.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1927\",\"suspend_id\":\"95\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1926\",\"suspend_id\":\"95\",\"product_id\":\"6024\",\"product_code\":\"621\",\"product_name\":\"Vaginax Cream 30gm\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1925\",\"suspend_id\":\"95\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1924\",\"suspend_id\":\"95\",\"product_id\":\"5778\",\"product_code\":\"375\",\"product_name\":\"Mycolex 3 Cream 30gm\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1923\",\"suspend_id\":\"95\",\"product_id\":\"5689\",\"product_code\":\"286\",\"product_name\":\"Joy Ointment\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1922\",\"suspend_id\":\"95\",\"product_id\":\"5676\",\"product_code\":\"273\",\"product_name\":\"Imax Delay Spray\",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1921\",\"suspend_id\":\"95\",\"product_id\":\"5629\",\"product_code\":\"226\",\"product_name\":\"Funbact A\",\"net_unit_price\":\"8.4000\",\"unit_price\":\"8.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-12 11:11:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4234, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"99\",\"date\":\"2022-10-14 08:40:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"78\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"679.9200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"abass\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1957\",\"suspend_id\":\"99\",\"product_id\":\"6692\",\"product_code\":\"1289\",\"product_name\":\"Mist Mag. Trisilicate 200ml ROKMER\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1956\",\"suspend_id\":\"99\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1955\",\"suspend_id\":\"99\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1954\",\"suspend_id\":\"99\",\"product_id\":\"5588\",\"product_code\":\"185\",\"product_name\":\"Drez Ointment 30mg\",\"net_unit_price\":\"14.9600\",\"unit_price\":\"14.9600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.9200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.9600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1952\",\"suspend_id\":\"99\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1953\",\"suspend_id\":\"99\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1951\",\"suspend_id\":\"99\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1950\",\"suspend_id\":\"99\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1948\",\"suspend_id\":\"99\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1949\",\"suspend_id\":\"99\",\"product_id\":\"6296\",\"product_code\":\"893\",\"product_name\":\"Amoksiklav 457mg\\/5ml Suspension 70ml\",\"net_unit_price\":\"28.5000\",\"unit_price\":\"28.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1947\",\"suspend_id\":\"99\",\"product_id\":\"5589\",\"product_code\":\"186\",\"product_name\":\"Drez Powder 10g\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1946\",\"suspend_id\":\"99\",\"product_id\":\"6538\",\"product_code\":\"1135\",\"product_name\":\"Drez Solution 30ml\",\"net_unit_price\":\"10.3000\",\"unit_price\":\"10.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1945\",\"suspend_id\":\"99\",\"product_id\":\"5906\",\"product_code\":\"503\",\"product_name\":\"Tetracycline Capsules\",\"net_unit_price\":\"15.8200\",\"unit_price\":\"15.8200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-14 05:16:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4235, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"100\",\"date\":\"2022-10-14 09:42:25\",\"customer_id\":\"10\",\"customer\":\"ABASS\",\"count\":\"28\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"542.1800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"REDCO\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1971\",\"suspend_id\":\"100\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1972\",\"suspend_id\":\"100\",\"product_id\":\"6445\",\"product_code\":\"1042\",\"product_name\":\"Vermox Suspension\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1970\",\"suspend_id\":\"100\",\"product_id\":\"6101\",\"product_code\":\"698\",\"product_name\":\"Feroclear Syrup 200ml\",\"net_unit_price\":\"28.5000\",\"unit_price\":\"28.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1969\",\"suspend_id\":\"100\",\"product_id\":\"5971\",\"product_code\":\"568\",\"product_name\":\"Asmadrin Tablets 25\'s\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1968\",\"suspend_id\":\"100\",\"product_id\":\"6518\",\"product_code\":\"1115\",\"product_name\":\"Wellwoman 70+ Capsules 30\'s\",\"net_unit_price\":\"61.2000\",\"unit_price\":\"61.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"61.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1966\",\"suspend_id\":\"100\",\"product_id\":\"5589\",\"product_code\":\"186\",\"product_name\":\"Drez Powder 10g\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1964\",\"suspend_id\":\"100\",\"product_id\":\"5814\",\"product_code\":\"411\",\"product_name\":\"Panadol Advance 500mg 16\'s\",\"net_unit_price\":\"24.0900\",\"unit_price\":\"24.0900\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.1800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1967\",\"suspend_id\":\"100\",\"product_id\":\"6333\",\"product_code\":\"930\",\"product_name\":\"Adom Koo Mixture\",\"net_unit_price\":\"7.7000\",\"unit_price\":\"7.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1965\",\"suspend_id\":\"100\",\"product_id\":\"6456\",\"product_code\":\"1053\",\"product_name\":\"Gastrone Tablets 100\'s\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1963\",\"suspend_id\":\"100\",\"product_id\":\"6574\",\"product_code\":\"1171\",\"product_name\":\"Mucolex Cough Syrup150ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1962\",\"suspend_id\":\"100\",\"product_id\":\"5500\",\"product_code\":\"97\",\"product_name\":\"Calpol Infant 2+Suspension 100ml\",\"net_unit_price\":\"46.3000\",\"unit_price\":\"46.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"92.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"46.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1961\",\"suspend_id\":\"100\",\"product_id\":\"5704\",\"product_code\":\"301\",\"product_name\":\"Koflet Syrup\",\"net_unit_price\":\"16.0500\",\"unit_price\":\"16.0500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1960\",\"suspend_id\":\"100\",\"product_id\":\"6670\",\"product_code\":\"1267\",\"product_name\":\"Dicnac 75\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1958\",\"suspend_id\":\"100\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1959\",\"suspend_id\":\"100\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-14 06:45:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4236, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"101\",\"date\":\"2022-10-14 14:55:41\",\"customer_id\":\"204\",\"customer\":\"GINA\",\"count\":\"51\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1443.3000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"OYARIFA PHARMACY\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1979\",\"suspend_id\":\"101\",\"product_id\":\"6327\",\"product_code\":\"924\",\"product_name\":\"Flagentyl 500mg Tablets 4\'s secnidazole\",\"net_unit_price\":\"28.6000\",\"unit_price\":\"28.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"286.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1978\",\"suspend_id\":\"101\",\"product_id\":\"5585\",\"product_code\":\"182\",\"product_name\":\"Dragon Tablets\",\"net_unit_price\":\"23.4000\",\"unit_price\":\"23.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"117.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"23.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1977\",\"suspend_id\":\"101\",\"product_id\":\"5779\",\"product_code\":\"376\",\"product_name\":\"Mycolex Cream 20g\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"160.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1976\",\"suspend_id\":\"101\",\"product_id\":\"6757\",\"product_code\":\"1354\",\"product_name\":\"HCT Exforge 5\\/160\\/12.5mg 28\'s\",\"net_unit_price\":\"230.8000\",\"unit_price\":\"230.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"230.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"230.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1975\",\"suspend_id\":\"101\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"201.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1973\",\"suspend_id\":\"101\",\"product_id\":\"6102\",\"product_code\":\"699\",\"product_name\":\"Haemo Forte Syrup 200ml\",\"net_unit_price\":\"27.8000\",\"unit_price\":\"27.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"278.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1974\",\"suspend_id\":\"101\",\"product_id\":\"6572\",\"product_code\":\"1169\",\"product_name\":\"Zubes Extra Strong Cough Mixture 125ml\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-14 11:37:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4237, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"102\",\"date\":\"2022-10-15 09:05:08\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"37\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"449.1700\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"mrcar\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1998\",\"suspend_id\":\"102\",\"product_id\":\"6134\",\"product_code\":\"731\",\"product_name\":\"Crepe Bandage 4 Inches Xtra Care\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1996\",\"suspend_id\":\"102\",\"product_id\":\"6141\",\"product_code\":\"738\",\"product_name\":\"Gauze Bandage 6 Inches Xtra Care\",\"net_unit_price\":\"15.9500\",\"unit_price\":\"15.9500\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.9500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1997\",\"suspend_id\":\"102\",\"product_id\":\"6538\",\"product_code\":\"1135\",\"product_name\":\"Drez Solution 30ml\",\"net_unit_price\":\"10.3000\",\"unit_price\":\"10.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1995\",\"suspend_id\":\"102\",\"product_id\":\"6434\",\"product_code\":\"1031\",\"product_name\":\"Cotton wool 50g\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1993\",\"suspend_id\":\"102\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"42.0000\",\"unit_price\":\"42.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"42.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1994\",\"suspend_id\":\"102\",\"product_id\":\"5654\",\"product_code\":\"251\",\"product_name\":\"Gentian violet (GV PAINT)\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1992\",\"suspend_id\":\"102\",\"product_id\":\"6605\",\"product_code\":\"1202\",\"product_name\":\"Maxmox 500mg (Amoxicillin) Eskay\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1991\",\"suspend_id\":\"102\",\"product_id\":\"6378\",\"product_code\":\"975\",\"product_name\":\"Flucloxacillin 250mg Tablets Letap\",\"net_unit_price\":\"26.5000\",\"unit_price\":\"26.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1990\",\"suspend_id\":\"102\",\"product_id\":\"6007\",\"product_code\":\"604\",\"product_name\":\"Penicillin V 125mg Letap\",\"net_unit_price\":\"11.3800\",\"unit_price\":\"11.3800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.3800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1987\",\"suspend_id\":\"102\",\"product_id\":\"6817\",\"product_code\":\"1414\",\"product_name\":\"Basecold 1x6 Tab\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1988\",\"suspend_id\":\"102\",\"product_id\":\"5451\",\"product_code\":\"48\",\"product_name\":\"Arfan 20\\/120mg\",\"net_unit_price\":\"5.8600\",\"unit_price\":\"5.8600\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.5800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1989\",\"suspend_id\":\"102\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1986\",\"suspend_id\":\"102\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.5500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1985\",\"suspend_id\":\"102\",\"product_id\":\"6197\",\"product_code\":\"794\",\"product_name\":\"Shaltoux Natural Cough Lozenges 200pcs (Jar)\",\"net_unit_price\":\"45.5000\",\"unit_price\":\"45.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"45.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1984\",\"suspend_id\":\"102\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1983\",\"suspend_id\":\"102\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"net_unit_price\":\"34.2100\",\"unit_price\":\"34.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1982\",\"suspend_id\":\"102\",\"product_id\":\"6032\",\"product_code\":\"629\",\"product_name\":\"Gebedol Forte\",\"net_unit_price\":\"19.0000\",\"unit_price\":\"19.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1981\",\"suspend_id\":\"102\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1980\",\"suspend_id\":\"102\",\"product_id\":\"5991\",\"product_code\":\"588\",\"product_name\":\"Kwik Action Tablets 50x4\",\"net_unit_price\":\"43.0000\",\"unit_price\":\"43.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"43.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-15 05:13:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4238, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"103\",\"date\":\"2022-10-15 09:38:40\",\"customer_id\":\"128\",\"customer\":\"HOBET\",\"count\":\"33\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"605.1500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"hobet\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2006\",\"suspend_id\":\"103\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"201.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2004\",\"suspend_id\":\"103\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2005\",\"suspend_id\":\"103\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2003\",\"suspend_id\":\"103\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2002\",\"suspend_id\":\"103\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2001\",\"suspend_id\":\"103\",\"product_id\":\"5911\",\"product_code\":\"508\",\"product_name\":\"Tinatett Venecare 750ml\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2000\",\"suspend_id\":\"103\",\"product_id\":\"6276\",\"product_code\":\"873\",\"product_name\":\"Tinatett Malakare 500ml\",\"net_unit_price\":\"17.6000\",\"unit_price\":\"17.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1999\",\"suspend_id\":\"103\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.2500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-15 06:17:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4239, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"104\",\"date\":\"2022-10-17 09:05:58\",\"customer_id\":\"232\",\"customer\":\"SAVIOUR\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"209.2000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"saviour\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2010\",\"suspend_id\":\"104\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.5000\",\"unit_price\":\"18.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2009\",\"suspend_id\":\"104\",\"product_id\":\"5856\",\"product_code\":\"453\",\"product_name\":\"Rubbing Alcohol 500ml\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2007\",\"suspend_id\":\"104\",\"product_id\":\"6829\",\"product_code\":\"1426\",\"product_name\":\"Prostajoy\",\"net_unit_price\":\"29.7000\",\"unit_price\":\"29.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2008\",\"suspend_id\":\"104\",\"product_id\":\"6458\",\"product_code\":\"1055\",\"product_name\":\"Infa V Pessaries\",\"net_unit_price\":\"22.9000\",\"unit_price\":\"22.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-17 05:38:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4240, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"105\",\"date\":\"2022-10-19 07:40:01\",\"customer_id\":\"14\",\"customer\":\"ADAMS\",\"count\":\"48\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"294.0400\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"Adams\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2027\",\"suspend_id\":\"105\",\"product_id\":\"6394\",\"product_code\":\"991\",\"product_name\":\"Mycostat 150mg Capsules 1\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2029\",\"suspend_id\":\"105\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2028\",\"suspend_id\":\"105\",\"product_id\":\"5689\",\"product_code\":\"286\",\"product_name\":\"Joy Ointment\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2024\",\"suspend_id\":\"105\",\"product_id\":\"6209\",\"product_code\":\"806\",\"product_name\":\"Zinol (Paracetamol) Suspension 100ml\",\"net_unit_price\":\"8.3000\",\"unit_price\":\"8.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2025\",\"suspend_id\":\"105\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"12.7000\",\"unit_price\":\"12.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2026\",\"suspend_id\":\"105\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2023\",\"suspend_id\":\"105\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2022\",\"suspend_id\":\"105\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2021\",\"suspend_id\":\"105\",\"product_id\":\"6298\",\"product_code\":\"895\",\"product_name\":\"Malar-2 Forte DS Tablets 6\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2016\",\"suspend_id\":\"105\",\"product_id\":\"5754\",\"product_code\":\"351\",\"product_name\":\"Malin Baby\",\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2017\",\"suspend_id\":\"105\",\"product_id\":\"5971\",\"product_code\":\"568\",\"product_name\":\"Asmadrin Tablets 25\'s\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2018\",\"suspend_id\":\"105\",\"product_id\":\"5714\",\"product_code\":\"311\",\"product_name\":\"Letamol Elixir 125ml\",\"net_unit_price\":\"3.3000\",\"unit_price\":\"3.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2019\",\"suspend_id\":\"105\",\"product_id\":\"6513\",\"product_code\":\"1110\",\"product_name\":\"Vagid CL Suppositories\",\"net_unit_price\":\"14.0000\",\"unit_price\":\"14.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2020\",\"suspend_id\":\"105\",\"product_id\":\"6818\",\"product_code\":\"1415\",\"product_name\":\"Foliron Capsules\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2015\",\"suspend_id\":\"105\",\"product_id\":\"5977\",\"product_code\":\"574\",\"product_name\":\"Samalin Adult Cough Syr 125ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2014\",\"suspend_id\":\"105\",\"product_id\":\"5656\",\"product_code\":\"253\",\"product_name\":\"Gyprone Plus 200ml Syrup\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2013\",\"suspend_id\":\"105\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"3.5200\",\"unit_price\":\"3.5200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.0400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2011\",\"suspend_id\":\"105\",\"product_id\":\"6517\",\"product_code\":\"1114\",\"product_name\":\"Res-Q Antacid Suspension\",\"net_unit_price\":\"10.4500\",\"unit_price\":\"10.4500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2012\",\"suspend_id\":\"105\",\"product_id\":\"6224\",\"product_code\":\"821\",\"product_name\":\"Letafen (Ibuprofen) Suspension 100ml\",\"net_unit_price\":\"1.9000\",\"unit_price\":\"1.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-19 03:41:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4241, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"107\",\"date\":\"2022-10-19 12:56:34\",\"customer_id\":\"198\",\"customer\":\"George Hood\",\"count\":\"269\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1337.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"GEORGE HOOD\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2067\",\"suspend_id\":\"107\",\"product_id\":\"6685\",\"product_code\":\"1282\",\"product_name\":\"Alu Hyd Tablets\",\"net_unit_price\":\"0.5000\",\"unit_price\":\"0.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"0.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"200.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2066\",\"suspend_id\":\"107\",\"product_id\":\"5553\",\"product_code\":\"150\",\"product_name\":\"Cyprodine (Cyproheptadine) Capsules 30\\\\\'\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"195.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2063\",\"suspend_id\":\"107\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"272.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2064\",\"suspend_id\":\"107\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"5.9000\",\"unit_price\":\"5.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2065\",\"suspend_id\":\"107\",\"product_id\":\"5650\",\"product_code\":\"247\",\"product_name\":\"Glibenil (Glibenclamide) 5mg Tablets ECL\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2062\",\"suspend_id\":\"107\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.5000\",\"unit_price\":\"18.5000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"444.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2060\",\"suspend_id\":\"107\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"50.5000\",\"unit_price\":\"50.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"151.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2061\",\"suspend_id\":\"107\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-19 09:15:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4242, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"106\",\"date\":\"2022-10-19 12:50:21\",\"customer_id\":\"51\",\"customer\":\"BETVEN PHARMACY REDCO\",\"count\":\"129\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1915.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"BETVEN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2056\",\"suspend_id\":\"106\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2057\",\"suspend_id\":\"106\",\"product_id\":\"5730\",\"product_code\":\"327\",\"product_name\":\"Lofnac Gel 30mg\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2058\",\"suspend_id\":\"106\",\"product_id\":\"6667\",\"product_code\":\"1264\",\"product_name\":\"Gyprone Plus Tablets\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2059\",\"suspend_id\":\"106\",\"product_id\":\"6907\",\"product_code\":\"01827710\",\"product_name\":\"Congestyl Tablets 12s\",\"net_unit_price\":\"10.2000\",\"unit_price\":\"10.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2053\",\"suspend_id\":\"106\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2055\",\"suspend_id\":\"106\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"82.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2054\",\"suspend_id\":\"106\",\"product_id\":\"5858\",\"product_code\":\"455\",\"product_name\":\"Seven Seas Cod Liver Oil 100ml ECL\",\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2052\",\"suspend_id\":\"106\",\"product_id\":\"6449\",\"product_code\":\"1046\",\"product_name\":\"Diagellates Elixir 250ml\",\"net_unit_price\":\"25.5000\",\"unit_price\":\"25.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2051\",\"suspend_id\":\"106\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2050\",\"suspend_id\":\"106\",\"product_id\":\"6297\",\"product_code\":\"894\",\"product_name\":\"Malar-2 Suspension 60ml\",\"net_unit_price\":\"10.4000\",\"unit_price\":\"10.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2049\",\"suspend_id\":\"106\",\"product_id\":\"5634\",\"product_code\":\"231\",\"product_name\":\"Garlic Pearls Osons\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2048\",\"suspend_id\":\"106\",\"product_id\":\"6765\",\"product_code\":\"1362\",\"product_name\":\"Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL\",\"net_unit_price\":\"59.0000\",\"unit_price\":\"59.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"59.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2046\",\"suspend_id\":\"106\",\"product_id\":\"6046\",\"product_code\":\"643\",\"product_name\":\"Candid Cream- Clotrimazole 1% 20mg\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2047\",\"suspend_id\":\"106\",\"product_id\":\"6812\",\"product_code\":\"1409\",\"product_name\":\"Sudocrem 60g\",\"net_unit_price\":\"34.8000\",\"unit_price\":\"34.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2045\",\"suspend_id\":\"106\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"18.5000\",\"unit_price\":\"18.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2043\",\"suspend_id\":\"106\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"340.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2044\",\"suspend_id\":\"106\",\"product_id\":\"6222\",\"product_code\":\"819\",\"product_name\":\"Folic Acid 5mg Tablets 70x10 Letap\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2042\",\"suspend_id\":\"106\",\"product_id\":\"5487\",\"product_code\":\"84\",\"product_name\":\"Bonaplex Syrup 250ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"113.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2041\",\"suspend_id\":\"106\",\"product_id\":\"6164\",\"product_code\":\"761\",\"product_name\":\"Heptolif Syrup 200ml\",\"net_unit_price\":\"16.0600\",\"unit_price\":\"16.0600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.1200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2035\",\"suspend_id\":\"106\",\"product_id\":\"6136\",\"product_code\":\"733\",\"product_name\":\"Chlo Eye (Chloramphenicol) drops\",\"net_unit_price\":\"3.8000\",\"unit_price\":\"3.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2040\",\"suspend_id\":\"106\",\"product_id\":\"5553\",\"product_code\":\"150\",\"product_name\":\"Cyprodine (Cyproheptadine) Capsules 30\\\\\'\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"117.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2039\",\"suspend_id\":\"106\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"20.9000\",\"unit_price\":\"20.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2038\",\"suspend_id\":\"106\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2037\",\"suspend_id\":\"106\",\"product_id\":\"6478\",\"product_code\":\"1075\",\"product_name\":\"Fluconazole 150mg Capsules Teva\",\"net_unit_price\":\"9.7200\",\"unit_price\":\"9.7200\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.8800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.7200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2036\",\"suspend_id\":\"106\",\"product_id\":\"6510\",\"product_code\":\"1107\",\"product_name\":\"GV- Fluc 150mg Capsules\",\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2034\",\"suspend_id\":\"106\",\"product_id\":\"5955\",\"product_code\":\"552\",\"product_name\":\"Zincofer Capsules 30\'s\",\"net_unit_price\":\"25.9000\",\"unit_price\":\"25.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2033\",\"suspend_id\":\"106\",\"product_id\":\"6666\",\"product_code\":\"1263\",\"product_name\":\"Examination Gloves\",\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2032\",\"suspend_id\":\"106\",\"product_id\":\"6456\",\"product_code\":\"1053\",\"product_name\":\"Gastrone Tablets 100\'s\",\"net_unit_price\":\"21.6000\",\"unit_price\":\"21.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2031\",\"suspend_id\":\"106\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"226.2100\",\"unit_price\":\"226.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"226.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"226.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2030\",\"suspend_id\":\"106\",\"product_id\":\"6626\",\"product_code\":\"1223\",\"product_name\":\"Zithromax  200mg\\/5ml 15ml Susp. Pfizer\",\"net_unit_price\":\"99.3000\",\"unit_price\":\"99.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"99.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-19 10:13:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4243, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"108\",\"date\":\"2022-10-19 14:33:45\",\"customer_id\":\"190\",\"customer\":\"NLMC\",\"count\":\"22\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"118.8000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"NLMC\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2068\",\"suspend_id\":\"108\",\"product_id\":\"6043\",\"product_code\":\"640\",\"product_name\":\"5D Dextrose 5% Infusion 500ml\",\"net_unit_price\":\"5.4000\",\"unit_price\":\"5.4000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"118.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"22.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-19 10:38:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4244, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"109\",\"date\":\"2022-10-19 15:37:00\",\"customer_id\":\"102\",\"customer\":\"FMMS 3 PHARMACY ROSAROSA\",\"count\":\"461\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"6174.5900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"FMMS\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2119\",\"suspend_id\":\"109\",\"product_id\":\"5848\",\"product_code\":\"445\",\"product_name\":\"Relcer Gel\",\"net_unit_price\":\"8.2800\",\"unit_price\":\"8.2800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.8400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.2800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2122\",\"suspend_id\":\"109\",\"product_id\":\"5795\",\"product_code\":\"392\",\"product_name\":\"Nizoral Cream 15gm\",\"net_unit_price\":\"35.0000\",\"unit_price\":\"35.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"105.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"35.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2121\",\"suspend_id\":\"109\",\"product_id\":\"6180\",\"product_code\":\"777\",\"product_name\":\"Ketazol Shampoo 100ml\",\"net_unit_price\":\"17.1500\",\"unit_price\":\"17.1500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.7500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.1500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2120\",\"suspend_id\":\"109\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2118\",\"suspend_id\":\"109\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2117\",\"suspend_id\":\"109\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2116\",\"suspend_id\":\"109\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"74.0000\",\"unit_price\":\"74.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"222.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"74.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2115\",\"suspend_id\":\"109\",\"product_id\":\"5610\",\"product_code\":\"207\",\"product_name\":\"Feroglobin Capsules 30\'s\",\"net_unit_price\":\"60.5000\",\"unit_price\":\"60.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"302.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2114\",\"suspend_id\":\"109\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"56.2000\",\"unit_price\":\"56.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"281.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"56.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2113\",\"suspend_id\":\"109\",\"product_id\":\"6213\",\"product_code\":\"810\",\"product_name\":\"Hemoforce Plus Syrup 200ml\",\"net_unit_price\":\"9.3000\",\"unit_price\":\"9.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2111\",\"suspend_id\":\"109\",\"product_id\":\"6353\",\"product_code\":\"950\",\"product_name\":\"Ronfit Forte Tablets\",\"net_unit_price\":\"3.7500\",\"unit_price\":\"3.7500\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2112\",\"suspend_id\":\"109\",\"product_id\":\"5576\",\"product_code\":\"173\",\"product_name\":\"Dicnac 100mg Suppositories\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2110\",\"suspend_id\":\"109\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"184.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2109\",\"suspend_id\":\"109\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"310.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2108\",\"suspend_id\":\"109\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"327.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"30.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2107\",\"suspend_id\":\"109\",\"product_id\":\"5724\",\"product_code\":\"321\",\"product_name\":\"Lisinopril 10mg Tablets Teva\",\"net_unit_price\":\"16.7000\",\"unit_price\":\"16.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2106\",\"suspend_id\":\"109\",\"product_id\":\"6221\",\"product_code\":\"818\",\"product_name\":\"Dynewell Tablet 50x10\",\"net_unit_price\":\"12.9800\",\"unit_price\":\"12.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.9800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2105\",\"suspend_id\":\"109\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"117.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"30.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2102\",\"suspend_id\":\"109\",\"product_id\":\"6514\",\"product_code\":\"1111\",\"product_name\":\"Salicylics Ointment 40g\",\"net_unit_price\":\"9.3100\",\"unit_price\":\"9.3100\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.5500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.3100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2103\",\"suspend_id\":\"109\",\"product_id\":\"5589\",\"product_code\":\"186\",\"product_name\":\"Drez Powder 10g\",\"net_unit_price\":\"9.4000\",\"unit_price\":\"9.4000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"56.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2104\",\"suspend_id\":\"109\",\"product_id\":\"6538\",\"product_code\":\"1135\",\"product_name\":\"Drez Solution 30ml\",\"net_unit_price\":\"10.3000\",\"unit_price\":\"10.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2100\",\"suspend_id\":\"109\",\"product_id\":\"6421\",\"product_code\":\"1018\",\"product_name\":\"Martins liver salt Plain\",\"net_unit_price\":\"13.1000\",\"unit_price\":\"13.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2094\",\"suspend_id\":\"109\",\"product_id\":\"6344\",\"product_code\":\"941\",\"product_name\":\"Perfectil platinum 60\'s\",\"net_unit_price\":\"292.4000\",\"unit_price\":\"292.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"584.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"292.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2095\",\"suspend_id\":\"109\",\"product_id\":\"6338\",\"product_code\":\"935\",\"product_name\":\"Osteocare Tablets UK\",\"net_unit_price\":\"53.5000\",\"unit_price\":\"53.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"160.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"53.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2099\",\"suspend_id\":\"109\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2098\",\"suspend_id\":\"109\",\"product_id\":\"6207\",\"product_code\":\"804\",\"product_name\":\"Zinol 500mg Tablets (Paracetamol) 50X10\",\"net_unit_price\":\"38.5000\",\"unit_price\":\"38.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2097\",\"suspend_id\":\"109\",\"product_id\":\"5814\",\"product_code\":\"411\",\"product_name\":\"Panadol Advance 500mg 16\'s\",\"net_unit_price\":\"24.0900\",\"unit_price\":\"24.0900\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.2700\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2101\",\"suspend_id\":\"109\",\"product_id\":\"5980\",\"product_code\":\"577\",\"product_name\":\"Martins liver salt(Lemon)25\'s\",\"net_unit_price\":\"13.1000\",\"unit_price\":\"13.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2096\",\"suspend_id\":\"109\",\"product_id\":\"6188\",\"product_code\":\"785\",\"product_name\":\"Polygel Suspension 200ml\",\"net_unit_price\":\"9.8000\",\"unit_price\":\"9.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2092\",\"suspend_id\":\"109\",\"product_id\":\"6581\",\"product_code\":\"1178\",\"product_name\":\"Cirotamin Caplets 28\'s\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"115.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2093\",\"suspend_id\":\"109\",\"product_id\":\"5830\",\"product_code\":\"427\",\"product_name\":\"Pregnacare Plus\",\"net_unit_price\":\"143.3000\",\"unit_price\":\"143.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"286.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"143.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2091\",\"suspend_id\":\"109\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2090\",\"suspend_id\":\"109\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2089\",\"suspend_id\":\"109\",\"product_id\":\"6379\",\"product_code\":\"976\",\"product_name\":\"Dexone 0.5mg\",\"net_unit_price\":\"2.1000\",\"unit_price\":\"2.1000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2088\",\"suspend_id\":\"109\",\"product_id\":\"5656\",\"product_code\":\"253\",\"product_name\":\"Gyprone Plus 200ml Syrup\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2086\",\"suspend_id\":\"109\",\"product_id\":\"6667\",\"product_code\":\"1264\",\"product_name\":\"Gyprone Plus Tablets\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2084\",\"suspend_id\":\"109\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"3.4100\",\"unit_price\":\"3.4100\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.4600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2087\",\"suspend_id\":\"109\",\"product_id\":\"6115\",\"product_code\":\"712\",\"product_name\":\"Gudapet Syrup 200ml\",\"net_unit_price\":\"7.1000\",\"unit_price\":\"7.1000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"42.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2085\",\"suspend_id\":\"109\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2082\",\"suspend_id\":\"109\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"66.5300\",\"unit_price\":\"66.5300\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"399.1800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"66.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2083\",\"suspend_id\":\"109\",\"product_id\":\"5911\",\"product_code\":\"508\",\"product_name\":\"Tinatett Venecare 750ml\",\"net_unit_price\":\"26.0000\",\"unit_price\":\"26.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2081\",\"suspend_id\":\"109\",\"product_id\":\"6535\",\"product_code\":\"1132\",\"product_name\":\"Clotrimazole Cream 0.01 20g\",\"net_unit_price\":\"3.8000\",\"unit_price\":\"3.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2079\",\"suspend_id\":\"109\",\"product_id\":\"6250\",\"product_code\":\"847\",\"product_name\":\"Paracetamol 500mg Tablets 16\'s uk\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2080\",\"suspend_id\":\"109\",\"product_id\":\"6812\",\"product_code\":\"1409\",\"product_name\":\"Sudocrem 60g\",\"net_unit_price\":\"34.8000\",\"unit_price\":\"34.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"104.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2078\",\"suspend_id\":\"109\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2077\",\"suspend_id\":\"109\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"123.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2076\",\"suspend_id\":\"109\",\"product_id\":\"6457\",\"product_code\":\"1054\",\"product_name\":\"Naklofen Duo Capsules 75mg 20\'s\",\"net_unit_price\":\"46.5000\",\"unit_price\":\"46.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"279.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"46.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2074\",\"suspend_id\":\"109\",\"product_id\":\"5956\",\"product_code\":\"553\",\"product_name\":\"Zincofer Syrup 200ml\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"144.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2075\",\"suspend_id\":\"109\",\"product_id\":\"5975\",\"product_code\":\"572\",\"product_name\":\"Durol Tonic 200ml\",\"net_unit_price\":\"12.2100\",\"unit_price\":\"12.2100\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"73.2600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2073\",\"suspend_id\":\"109\",\"product_id\":\"5958\",\"product_code\":\"555\",\"product_name\":\"Zincovit Syrup 200ml\",\"net_unit_price\":\"21.7000\",\"unit_price\":\"21.7000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"130.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2072\",\"suspend_id\":\"109\",\"product_id\":\"6418\",\"product_code\":\"1015\",\"product_name\":\"Cetrizan 10mg Tablets 20\'s\",\"net_unit_price\":\"6.3800\",\"unit_price\":\"6.3800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2071\",\"suspend_id\":\"109\",\"product_id\":\"6708\",\"product_code\":\"1305\",\"product_name\":\"Loratadine 10mg Tablets 30\'s\",\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2069\",\"suspend_id\":\"109\",\"product_id\":\"6386\",\"product_code\":\"983\",\"product_name\":\"Paingay Capsules\",\"net_unit_price\":\"4.2000\",\"unit_price\":\"4.2000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2070\",\"suspend_id\":\"109\",\"product_id\":\"6454\",\"product_code\":\"1051\",\"product_name\":\"C-Pheniramine Syrup 100ml (Piriton)\",\"net_unit_price\":\"4.3000\",\"unit_price\":\"4.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-19 12:04:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4245, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"110\",\"date\":\"2022-10-21 11:08:26\",\"customer_id\":\"161\",\"customer\":\"LIM PHARMACY\",\"count\":\"199\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2723.7300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"lim pharmacy\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2163\",\"suspend_id\":\"110\",\"product_id\":\"6615\",\"product_code\":\"1212\",\"product_name\":\"Fada Martins Herbal Mixture\",\"net_unit_price\":\"11.0000\",\"unit_price\":\"11.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2162\",\"suspend_id\":\"110\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2161\",\"suspend_id\":\"110\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2160\",\"suspend_id\":\"110\",\"product_id\":\"6265\",\"product_code\":\"862\",\"product_name\":\"Folic Acid Tablets 50X10 ECL\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2159\",\"suspend_id\":\"110\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2149\",\"suspend_id\":\"110\",\"product_id\":\"5545\",\"product_code\":\"142\",\"product_name\":\"Cororange Drops\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2150\",\"suspend_id\":\"110\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"56.2000\",\"unit_price\":\"56.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"112.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"56.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2151\",\"suspend_id\":\"110\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"38.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2152\",\"suspend_id\":\"110\",\"product_id\":\"6409\",\"product_code\":\"1006\",\"product_name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.1500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2153\",\"suspend_id\":\"110\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.1500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2158\",\"suspend_id\":\"110\",\"product_id\":\"6608\",\"product_code\":\"1205\",\"product_name\":\"Skyclav 457mg\",\"net_unit_price\":\"16.8800\",\"unit_price\":\"16.8800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"84.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.8800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2156\",\"suspend_id\":\"110\",\"product_id\":\"6496\",\"product_code\":\"1093\",\"product_name\":\"Dymol 50\\/500 Mg Tablets 10\'s\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2157\",\"suspend_id\":\"110\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"15.0700\",\"unit_price\":\"15.0700\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.3500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2155\",\"suspend_id\":\"110\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"3.4100\",\"unit_price\":\"3.4100\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.4100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2154\",\"suspend_id\":\"110\",\"product_id\":\"6283\",\"product_code\":\"880\",\"product_name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"net_unit_price\":\"6.0200\",\"unit_price\":\"6.0200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2148\",\"suspend_id\":\"110\",\"product_id\":\"6414\",\"product_code\":\"1011\",\"product_name\":\"Infa V Wash 50ml\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2147\",\"suspend_id\":\"110\",\"product_id\":\"6411\",\"product_code\":\"1008\",\"product_name\":\"Infa V Wash 100ml\",\"net_unit_price\":\"17.6000\",\"unit_price\":\"17.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2146\",\"suspend_id\":\"110\",\"product_id\":\"6034\",\"product_code\":\"631\",\"product_name\":\"Deep Heat Spray 150ml\",\"net_unit_price\":\"48.0000\",\"unit_price\":\"48.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"48.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2145\",\"suspend_id\":\"110\",\"product_id\":\"6396\",\"product_code\":\"993\",\"product_name\":\"Menthodex 100ml Syrup\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2144\",\"suspend_id\":\"110\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2143\",\"suspend_id\":\"110\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2139\",\"suspend_id\":\"110\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2142\",\"suspend_id\":\"110\",\"product_id\":\"6298\",\"product_code\":\"895\",\"product_name\":\"Malar-2 Forte DS Tablets 6\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2141\",\"suspend_id\":\"110\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2140\",\"suspend_id\":\"110\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"226.2100\",\"unit_price\":\"226.2100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"226.2100\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"226.2100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2138\",\"suspend_id\":\"110\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"10.9800\",\"unit_price\":\"10.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2136\",\"suspend_id\":\"110\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"17.2000\",\"unit_price\":\"17.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"86.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2137\",\"suspend_id\":\"110\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2135\",\"suspend_id\":\"110\",\"product_id\":\"6220\",\"product_code\":\"817\",\"product_name\":\"Dynewell Syrup 200ml\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2133\",\"suspend_id\":\"110\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"201.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2134\",\"suspend_id\":\"110\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"175.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2132\",\"suspend_id\":\"110\",\"product_id\":\"5797\",\"product_code\":\"394\",\"product_name\":\"Normo Tears Eye Drop\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2131\",\"suspend_id\":\"110\",\"product_id\":\"5749\",\"product_code\":\"346\",\"product_name\":\"Major Nasal Drops\",\"net_unit_price\":\"8.1400\",\"unit_price\":\"8.1400\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.1400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2128\",\"suspend_id\":\"110\",\"product_id\":\"6365\",\"product_code\":\"962\",\"product_name\":\"Enacef (cefuroxime) 500mg Tablets\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2130\",\"suspend_id\":\"110\",\"product_id\":\"6295\",\"product_code\":\"892\",\"product_name\":\"Cyprodine 200ml Syrup\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"195.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2129\",\"suspend_id\":\"110\",\"product_id\":\"6415\",\"product_code\":\"1012\",\"product_name\":\"Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml\",\"net_unit_price\":\"4.6200\",\"unit_price\":\"4.6200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.6200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2127\",\"suspend_id\":\"110\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2126\",\"suspend_id\":\"110\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2123\",\"suspend_id\":\"110\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.0400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2124\",\"suspend_id\":\"110\",\"product_id\":\"6316\",\"product_code\":\"913\",\"product_name\":\"Tothema Box of 20 Bulbs\",\"net_unit_price\":\"74.0000\",\"unit_price\":\"74.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"148.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"74.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2125\",\"suspend_id\":\"110\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"14.6000\",\"unit_price\":\"14.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-21 07:24:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4246, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"111\",\"date\":\"2022-10-21 11:41:30\",\"customer_id\":\"174\",\"customer\":\"MEIRACARE PHARMACY\",\"count\":\"35\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"404.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"MEIRACARE PHARMACY\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2176\",\"suspend_id\":\"111\",\"product_id\":\"5968\",\"product_code\":\"565\",\"product_name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2174\",\"suspend_id\":\"111\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2175\",\"suspend_id\":\"111\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"50.5000\",\"unit_price\":\"50.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2173\",\"suspend_id\":\"111\",\"product_id\":\"6303\",\"product_code\":\"900\",\"product_name\":\"Lofnac 100mg Tablets\",\"net_unit_price\":\"2.2000\",\"unit_price\":\"2.2000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2171\",\"suspend_id\":\"111\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2172\",\"suspend_id\":\"111\",\"product_id\":\"5576\",\"product_code\":\"173\",\"product_name\":\"Dicnac 100mg Suppositories\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2169\",\"suspend_id\":\"111\",\"product_id\":\"6102\",\"product_code\":\"699\",\"product_name\":\"Haemo Forte Syrup 200ml\",\"net_unit_price\":\"27.8000\",\"unit_price\":\"27.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2170\",\"suspend_id\":\"111\",\"product_id\":\"5624\",\"product_code\":\"221\",\"product_name\":\"Foligrow Syrup 200ml\",\"net_unit_price\":\"20.1000\",\"unit_price\":\"20.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2168\",\"suspend_id\":\"111\",\"product_id\":\"5828\",\"product_code\":\"425\",\"product_name\":\"Polyfer Forte Syrup 150ML\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2164\",\"suspend_id\":\"111\",\"product_id\":\"6421\",\"product_code\":\"1018\",\"product_name\":\"Martins liver salt Plain\",\"net_unit_price\":\"13.1000\",\"unit_price\":\"13.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2165\",\"suspend_id\":\"111\",\"product_id\":\"6417\",\"product_code\":\"1014\",\"product_name\":\"No. 10 Liver Salt (All Flavors)\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2166\",\"suspend_id\":\"111\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2167\",\"suspend_id\":\"111\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-21 07:47:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4247, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"112\",\"date\":\"2022-10-21 12:19:14\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"94\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2319.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"FMMS1LAKESIDE\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2199\",\"suspend_id\":\"112\",\"product_id\":\"6914\",\"product_code\":\"98729079\",\"product_name\":\"Listerine Gin\\/Fresh Burst 500ml\",\"net_unit_price\":\"34.6000\",\"unit_price\":\"34.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"103.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2198\",\"suspend_id\":\"112\",\"product_id\":\"5979\",\"product_code\":\"576\",\"product_name\":\"Menthox Adult Cough Syrup 125ml\",\"net_unit_price\":\"6.8000\",\"unit_price\":\"6.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2197\",\"suspend_id\":\"112\",\"product_id\":\"5418\",\"product_code\":\"15\",\"product_name\":\"Aboniki\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2192\",\"suspend_id\":\"112\",\"product_id\":\"5724\",\"product_code\":\"321\",\"product_name\":\"Lisinopril 10mg Tablets Teva\",\"net_unit_price\":\"16.7000\",\"unit_price\":\"16.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2196\",\"suspend_id\":\"112\",\"product_id\":\"5595\",\"product_code\":\"192\",\"product_name\":\"Emgiflox 250mg Capsules 50x10\",\"net_unit_price\":\"158.6000\",\"unit_price\":\"158.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"158.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"158.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2194\",\"suspend_id\":\"112\",\"product_id\":\"6910\",\"product_code\":\"52852667\",\"product_name\":\"Osteocare Liquid 200ml \",\"net_unit_price\":\"13.4000\",\"unit_price\":\"13.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2195\",\"suspend_id\":\"112\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"56.2000\",\"unit_price\":\"56.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"281.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"56.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2193\",\"suspend_id\":\"112\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2190\",\"suspend_id\":\"112\",\"product_id\":\"6786\",\"product_code\":\"1383\",\"product_name\":\"Femfresh Wash 250ml\",\"net_unit_price\":\"37.7000\",\"unit_price\":\"37.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"37.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2191\",\"suspend_id\":\"112\",\"product_id\":\"6785\",\"product_code\":\"1382\",\"product_name\":\"Femfresh Wash 150ml\",\"net_unit_price\":\"14.8000\",\"unit_price\":\"14.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2189\",\"suspend_id\":\"112\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"50.5000\",\"unit_price\":\"50.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"151.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2187\",\"suspend_id\":\"112\",\"product_id\":\"6912\",\"product_code\":\"12236473\",\"product_name\":\"Wellwoman Drink\",\"net_unit_price\":\"11.7000\",\"unit_price\":\"11.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2188\",\"suspend_id\":\"112\",\"product_id\":\"5956\",\"product_code\":\"553\",\"product_name\":\"Zincofer Syrup 200ml\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"96.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2185\",\"suspend_id\":\"112\",\"product_id\":\"5610\",\"product_code\":\"207\",\"product_name\":\"Feroglobin Capsules 30\'s\",\"net_unit_price\":\"60.5000\",\"unit_price\":\"60.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"181.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2182\",\"suspend_id\":\"112\",\"product_id\":\"5463\",\"product_code\":\"60\",\"product_name\":\"Atorvastatin 20mg Tablets 28\'s\",\"net_unit_price\":\"12.4000\",\"unit_price\":\"12.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2186\",\"suspend_id\":\"112\",\"product_id\":\"6526\",\"product_code\":\"1123\",\"product_name\":\"Pregnacare Max\",\"net_unit_price\":\"175.5000\",\"unit_price\":\"175.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"175.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"175.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2184\",\"suspend_id\":\"112\",\"product_id\":\"6917\",\"product_code\":\"81980248\",\"product_name\":\"Atorvastatin 40mg Tablets 28s WOCKHARDT\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2183\",\"suspend_id\":\"112\",\"product_id\":\"6725\",\"product_code\":\"1322\",\"product_name\":\"Bonjela Adult Gel 15g\",\"net_unit_price\":\"71.1000\",\"unit_price\":\"71.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"71.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2181\",\"suspend_id\":\"112\",\"product_id\":\"6467\",\"product_code\":\"1064\",\"product_name\":\"Benylin Infant 125ml\",\"net_unit_price\":\"50.6000\",\"unit_price\":\"50.6000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"202.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2177\",\"suspend_id\":\"112\",\"product_id\":\"6906\",\"product_code\":\"43254936\",\"product_name\":\"Amcof Chesty Cough and Cold 200ml Syrup\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2180\",\"suspend_id\":\"112\",\"product_id\":\"6908\",\"product_code\":\"78818546\",\"product_name\":\"Congestyl Syrup 60ml\",\"net_unit_price\":\"18.4000\",\"unit_price\":\"18.4000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"184.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2179\",\"suspend_id\":\"112\",\"product_id\":\"6907\",\"product_code\":\"01827710\",\"product_name\":\"Congestyl Tablets 12s\",\"net_unit_price\":\"10.2000\",\"unit_price\":\"10.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"102.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2178\",\"suspend_id\":\"112\",\"product_id\":\"5419\",\"product_code\":\"16\",\"product_name\":\"Acidom 20mg Capsules\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"94.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-21 09:03:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4248, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"114\",\"date\":\"2022-10-21 15:55:57\",\"customer_id\":\"102\",\"customer\":\"FMMS 3 PHARMACY ROSAROSA\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"83.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"ROSAROSA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2222\",\"suspend_id\":\"114\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2221\",\"suspend_id\":\"114\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"9.7000\",\"unit_price\":\"9.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-21 12:44:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4249, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"116\",\"date\":\"2022-10-24 09:49:53\",\"customer_id\":\"263\",\"customer\":\"URBAN\",\"count\":\"60\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"584.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"URBAN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2241\",\"suspend_id\":\"116\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2240\",\"suspend_id\":\"116\",\"product_id\":\"5965\",\"product_code\":\"562\",\"product_name\":\"Zubes Expectorant 125ml Syrup\",\"net_unit_price\":\"13.5000\",\"unit_price\":\"13.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2239\",\"suspend_id\":\"116\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2233\",\"suspend_id\":\"116\",\"product_id\":\"5974\",\"product_code\":\"571\",\"product_name\":\"Magacid Susp 200ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2234\",\"suspend_id\":\"116\",\"product_id\":\"5515\",\"product_code\":\"112\",\"product_name\":\"Cetapol Syrup\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2235\",\"suspend_id\":\"116\",\"product_id\":\"6295\",\"product_code\":\"892\",\"product_name\":\"Cyprodine 200ml Syrup\",\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"39.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2236\",\"suspend_id\":\"116\",\"product_id\":\"6455\",\"product_code\":\"1052\",\"product_name\":\"Paracetamol 500mg Tablets 100\'s EXE\",\"net_unit_price\":\"21.7000\",\"unit_price\":\"21.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2237\",\"suspend_id\":\"116\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2238\",\"suspend_id\":\"116\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2232\",\"suspend_id\":\"116\",\"product_id\":\"6778\",\"product_code\":\"1375\",\"product_name\":\"Nugel Susp 200ml\",\"net_unit_price\":\"26.1800\",\"unit_price\":\"26.1800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.3600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2230\",\"suspend_id\":\"116\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2231\",\"suspend_id\":\"116\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2229\",\"suspend_id\":\"116\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 05:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4250, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"117\",\"date\":\"2022-10-24 10:38:09\",\"customer_id\":\"379\",\"customer\":\"Kasba\",\"count\":\"65\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"590.7600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"KASBA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2267\",\"suspend_id\":\"117\",\"product_id\":\"6077\",\"product_code\":\"674\",\"product_name\":\"Fiesta Condom All Night\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2266\",\"suspend_id\":\"117\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2265\",\"suspend_id\":\"117\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2263\",\"suspend_id\":\"117\",\"product_id\":\"6037\",\"product_code\":\"634\",\"product_name\":\"Kamaclox Mouthwash 300ml\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2264\",\"suspend_id\":\"117\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2262\",\"suspend_id\":\"117\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2261\",\"suspend_id\":\"117\",\"product_id\":\"6332\",\"product_code\":\"929\",\"product_name\":\"Adom Koo Capsules\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2260\",\"suspend_id\":\"117\",\"product_id\":\"5610\",\"product_code\":\"207\",\"product_name\":\"Feroglobin Capsules 30\'s\",\"net_unit_price\":\"60.5000\",\"unit_price\":\"60.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2259\",\"suspend_id\":\"117\",\"product_id\":\"6024\",\"product_code\":\"621\",\"product_name\":\"Vaginax Cream 30gm\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2258\",\"suspend_id\":\"117\",\"product_id\":\"6176\",\"product_code\":\"773\",\"product_name\":\"Gogynax Cream 30g\",\"net_unit_price\":\"5.7400\",\"unit_price\":\"5.7400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.4800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2257\",\"suspend_id\":\"117\",\"product_id\":\"6501\",\"product_code\":\"1098\",\"product_name\":\"Heptopep Forte 200ml Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2251\",\"suspend_id\":\"117\",\"product_id\":\"5906\",\"product_code\":\"503\",\"product_name\":\"Tetracycline Capsules\",\"net_unit_price\":\"15.8200\",\"unit_price\":\"15.8200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.8200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2252\",\"suspend_id\":\"117\",\"product_id\":\"5971\",\"product_code\":\"568\",\"product_name\":\"Asmadrin Tablets 25\'s\",\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"25.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2253\",\"suspend_id\":\"117\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2254\",\"suspend_id\":\"117\",\"product_id\":\"5642\",\"product_code\":\"239\",\"product_name\":\"Gebedol Plus Capsule\",\"net_unit_price\":\"26.9000\",\"unit_price\":\"26.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2255\",\"suspend_id\":\"117\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2256\",\"suspend_id\":\"117\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2247\",\"suspend_id\":\"117\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2250\",\"suspend_id\":\"117\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"9.8000\",\"unit_price\":\"9.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2249\",\"suspend_id\":\"117\",\"product_id\":\"6363\",\"product_code\":\"960\",\"product_name\":\"Bells Vitamin C Syrup\",\"net_unit_price\":\"22.7800\",\"unit_price\":\"22.7800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.7800\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.7800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2248\",\"suspend_id\":\"117\",\"product_id\":\"6240\",\"product_code\":\"837\",\"product_name\":\"Metronidazole 400mg tabs 21\'s Exeter\",\"net_unit_price\":\"11.9500\",\"unit_price\":\"11.9500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.9000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 06:48:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4251, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"118\",\"date\":\"2022-10-24 12:02:49\",\"customer_id\":\"217\",\"customer\":\"Ramatu\",\"count\":\"19\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"359.3600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"RAMATU\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2271\",\"suspend_id\":\"118\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2272\",\"suspend_id\":\"118\",\"product_id\":\"6843\",\"product_code\":\"1440\",\"product_name\":\"Robb Inhaler\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2273\",\"suspend_id\":\"118\",\"product_id\":\"5587\",\"product_code\":\"184\",\"product_name\":\"Drez Ointment 10g\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2270\",\"suspend_id\":\"118\",\"product_id\":\"6929\",\"product_code\":\"32027899\",\"product_name\":\"Gynicare\",\"net_unit_price\":\"52.0000\",\"unit_price\":\"52.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"104.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"52.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2268\",\"suspend_id\":\"118\",\"product_id\":\"6010\",\"product_code\":\"607\",\"product_name\":\"Rooter Tytonic\",\"net_unit_price\":\"16.5000\",\"unit_price\":\"16.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"99.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2269\",\"suspend_id\":\"118\",\"product_id\":\"6612\",\"product_code\":\"1209\",\"product_name\":\"Skycef 500mg (Cefuroxime) 1X10\",\"net_unit_price\":\"20.9200\",\"unit_price\":\"20.9200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.7600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.9200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 08:18:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4252, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"119\",\"date\":\"2022-10-24 12:08:33\",\"customer_id\":\"198\",\"customer\":\"George Hood\",\"count\":\"154\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1167.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"GEORGE HOOD\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2283\",\"suspend_id\":\"119\",\"product_id\":\"6933\",\"product_code\":\"39183320\",\"product_name\":\"Letafen 400mg Tablets\",\"net_unit_price\":\"1.2000\",\"unit_price\":\"1.2000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2282\",\"suspend_id\":\"119\",\"product_id\":\"6928\",\"product_code\":\"72296204\",\"product_name\":\"Impressor Oil\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2281\",\"suspend_id\":\"119\",\"product_id\":\"6893\",\"product_code\":\"233\",\"product_name\":\"Impressor Capsules\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2280\",\"suspend_id\":\"119\",\"product_id\":\"5472\",\"product_code\":\"69\",\"product_name\":\"Baseboom Gel\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2279\",\"suspend_id\":\"119\",\"product_id\":\"5477\",\"product_code\":\"74\",\"product_name\":\"Bells Teething Mixture\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"275.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2278\",\"suspend_id\":\"119\",\"product_id\":\"6248\",\"product_code\":\"845\",\"product_name\":\"Teething Mixture 100ml ECL\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"216.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2274\",\"suspend_id\":\"119\",\"product_id\":\"6409\",\"product_code\":\"1006\",\"product_name\":\"E-Panol 100ml Syrup Strawberry Flav\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2275\",\"suspend_id\":\"119\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"E-Panol 100ml Syrup Plain\",\"net_unit_price\":\"6.0300\",\"unit_price\":\"6.0300\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2276\",\"suspend_id\":\"119\",\"product_id\":\"5515\",\"product_code\":\"112\",\"product_name\":\"Cetapol Syrup\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2277\",\"suspend_id\":\"119\",\"product_id\":\"6283\",\"product_code\":\"880\",\"product_name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"net_unit_price\":\"6.0200\",\"unit_price\":\"6.0200\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"120.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 08:46:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4253, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"120\",\"date\":\"2022-10-24 12:52:13\",\"customer_id\":\"136\",\"customer\":\"JESS\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"173.4600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"JESS\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2284\",\"suspend_id\":\"120\",\"product_id\":\"6209\",\"product_code\":\"806\",\"product_name\":\"Zinol (Paracetamol) Suspension 100ml\",\"net_unit_price\":\"8.3000\",\"unit_price\":\"8.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2285\",\"suspend_id\":\"120\",\"product_id\":\"6902\",\"product_code\":\"06640421\",\"product_name\":\"Grandpa Syrup\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2286\",\"suspend_id\":\"120\",\"product_id\":\"5632\",\"product_code\":\"229\",\"product_name\":\"Gacet 250mg Suppository\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2287\",\"suspend_id\":\"120\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2288\",\"suspend_id\":\"120\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2289\",\"suspend_id\":\"120\",\"product_id\":\"6848\",\"product_code\":\"1445\",\"product_name\":\"Kelcuf Baby Syrup 100ml\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2290\",\"suspend_id\":\"120\",\"product_id\":\"6154\",\"product_code\":\"751\",\"product_name\":\"Paracetamol 500mg M&G Tablets 50x10\",\"net_unit_price\":\"45.0000\",\"unit_price\":\"45.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"45.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2291\",\"suspend_id\":\"120\",\"product_id\":\"6556\",\"product_code\":\"1153\",\"product_name\":\"TSec 1g Tablets\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2292\",\"suspend_id\":\"120\",\"product_id\":\"6555\",\"product_code\":\"1152\",\"product_name\":\"Ocip 500mg Tablets 10\'s\",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2293\",\"suspend_id\":\"120\",\"product_id\":\"6592\",\"product_code\":\"1189\",\"product_name\":\"Co-Trimoxazole (Septrin) Suspension 100ml\",\"net_unit_price\":\"3.1800\",\"unit_price\":\"3.1800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.3600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 09:08:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4254, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"121\",\"date\":\"2022-10-24 13:29:37\",\"customer_id\":\"115\",\"customer\":\"GINAD PHARMACY\",\"count\":\"161\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"803.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"GINAD\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2308\",\"suspend_id\":\"121\",\"product_id\":\"5841\",\"product_code\":\"438\",\"product_name\":\"Prostafit\",\"net_unit_price\":\"19.8000\",\"unit_price\":\"19.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2307\",\"suspend_id\":\"121\",\"product_id\":\"6873\",\"product_code\":\"06796716\",\"product_name\":\"Menazole 500mg (Mebenazole)10x1 Ayrtons\",\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2306\",\"suspend_id\":\"121\",\"product_id\":\"6374\",\"product_code\":\"971\",\"product_name\":\"Amoxicillin 250mg (Letap)\",\"net_unit_price\":\"1.8000\",\"unit_price\":\"1.8000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2305\",\"suspend_id\":\"121\",\"product_id\":\"6088\",\"product_code\":\"685\",\"product_name\":\"Bioferon Capsules 30\'s\",\"net_unit_price\":\"26.8000\",\"unit_price\":\"26.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2304\",\"suspend_id\":\"121\",\"product_id\":\"6667\",\"product_code\":\"1264\",\"product_name\":\"Gyprone Plus Tablets\",\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2303\",\"suspend_id\":\"121\",\"product_id\":\"5985\",\"product_code\":\"582\",\"product_name\":\"APC TABS 10X10\",\"net_unit_price\":\"12.2000\",\"unit_price\":\"12.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2302\",\"suspend_id\":\"121\",\"product_id\":\"5974\",\"product_code\":\"571\",\"product_name\":\"Magacid Susp 200ml\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2301\",\"suspend_id\":\"121\",\"product_id\":\"5854\",\"product_code\":\"451\",\"product_name\":\"Rough Rider Condoms 3\'s\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2300\",\"suspend_id\":\"121\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2299\",\"suspend_id\":\"121\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2298\",\"suspend_id\":\"121\",\"product_id\":\"5427\",\"product_code\":\"24\",\"product_name\":\"Agbeve Tonic\",\"net_unit_price\":\"13.2000\",\"unit_price\":\"13.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2297\",\"suspend_id\":\"121\",\"product_id\":\"6076\",\"product_code\":\"673\",\"product_name\":\"Kiss Condom Strawberry\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2296\",\"suspend_id\":\"121\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2295\",\"suspend_id\":\"121\",\"product_id\":\"6501\",\"product_code\":\"1098\",\"product_name\":\"Heptopep Forte 200ml Syrup\",\"net_unit_price\":\"10.6000\",\"unit_price\":\"10.6000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2294\",\"suspend_id\":\"121\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-24 10:01:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4255, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"122\",\"date\":\"2022-10-24 16:47:12\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"230\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"4388.5500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"LAKESIDE\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2336\",\"suspend_id\":\"122\",\"product_id\":\"6812\",\"product_code\":\"1409\",\"product_name\":\"Sudocrem 60g\",\"net_unit_price\":\"34.8000\",\"unit_price\":\"34.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"69.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2340\",\"suspend_id\":\"122\",\"product_id\":\"6929\",\"product_code\":\"32027899\",\"product_name\":\"Gynicare\",\"net_unit_price\":\"52.0000\",\"unit_price\":\"52.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"52.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2339\",\"suspend_id\":\"122\",\"product_id\":\"6446\",\"product_code\":\"1043\",\"product_name\":\"Dermiron Plus\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2337\",\"suspend_id\":\"122\",\"product_id\":\"6435\",\"product_code\":\"1032\",\"product_name\":\"Coldiron Syrup 125ml\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2338\",\"suspend_id\":\"122\",\"product_id\":\"6849\",\"product_code\":\"1446\",\"product_name\":\"Kelcuf Junior Syrup 100ml\",\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2335\",\"suspend_id\":\"122\",\"product_id\":\"6389\",\"product_code\":\"986\",\"product_name\":\"Salocold Syrup\",\"net_unit_price\":\"9.7000\",\"unit_price\":\"9.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"97.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2334\",\"suspend_id\":\"122\",\"product_id\":\"6581\",\"product_code\":\"1178\",\"product_name\":\"Cirotamin Caplets 28\'s\",\"net_unit_price\":\"11.5000\",\"unit_price\":\"11.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2333\",\"suspend_id\":\"122\",\"product_id\":\"6082\",\"product_code\":\"679\",\"product_name\":\"Coldrilif Syrup\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2332\",\"suspend_id\":\"122\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2331\",\"suspend_id\":\"122\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2330\",\"suspend_id\":\"122\",\"product_id\":\"6514\",\"product_code\":\"1111\",\"product_name\":\"Salicylics Ointment 40g\",\"net_unit_price\":\"9.3100\",\"unit_price\":\"9.3100\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.8600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.3100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2329\",\"suspend_id\":\"122\",\"product_id\":\"6418\",\"product_code\":\"1015\",\"product_name\":\"Cetrizan 10mg Tablets 20\'s\",\"net_unit_price\":\"6.3800\",\"unit_price\":\"6.3800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.3800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2328\",\"suspend_id\":\"122\",\"product_id\":\"6455\",\"product_code\":\"1052\",\"product_name\":\"Paracetamol 500mg Tablets 100\'s EXE\",\"net_unit_price\":\"21.7000\",\"unit_price\":\"21.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"108.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2327\",\"suspend_id\":\"122\",\"product_id\":\"6250\",\"product_code\":\"847\",\"product_name\":\"Paracetamol 500mg Tablets 16\'s uk\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2324\",\"suspend_id\":\"122\",\"product_id\":\"6095\",\"product_code\":\"692\",\"product_name\":\"Cartef-DS Tablet\",\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"92.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2325\",\"suspend_id\":\"122\",\"product_id\":\"6213\",\"product_code\":\"810\",\"product_name\":\"Hemoforce Plus Syrup 200ml\",\"net_unit_price\":\"9.3000\",\"unit_price\":\"9.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"46.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2326\",\"suspend_id\":\"122\",\"product_id\":\"6242\",\"product_code\":\"839\",\"product_name\":\"Doreta 37.5\\/325mg Tablets 20s\",\"net_unit_price\":\"66.5300\",\"unit_price\":\"66.5300\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"199.5900\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"66.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2322\",\"suspend_id\":\"122\",\"product_id\":\"5830\",\"product_code\":\"427\",\"product_name\":\"Pregnacare Plus\",\"net_unit_price\":\"143.3000\",\"unit_price\":\"143.3000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"286.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"143.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2323\",\"suspend_id\":\"122\",\"product_id\":\"5959\",\"product_code\":\"556\",\"product_name\":\"Zincovit Tablets\",\"net_unit_price\":\"29.8000\",\"unit_price\":\"29.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"149.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"29.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2321\",\"suspend_id\":\"122\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2320\",\"suspend_id\":\"122\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2319\",\"suspend_id\":\"122\",\"product_id\":\"5535\",\"product_code\":\"132\",\"product_name\":\"Coldrilif Capsules 10X10\",\"net_unit_price\":\"3.9100\",\"unit_price\":\"3.9100\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2318\",\"suspend_id\":\"122\",\"product_id\":\"6936\",\"product_code\":\"65328927\",\"product_name\":\"Bestvit C (Vitamin C Effervescent)\",\"net_unit_price\":\"22.3000\",\"unit_price\":\"22.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"133.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2317\",\"suspend_id\":\"122\",\"product_id\":\"6860\",\"product_code\":\"1457\",\"product_name\":\"Bestvit C (Vitamin C with Zinc)\",\"net_unit_price\":\"22.3000\",\"unit_price\":\"22.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"133.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2316\",\"suspend_id\":\"122\",\"product_id\":\"6879\",\"product_code\":\"34265543\",\"product_name\":\"Zulu Extra \",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2315\",\"suspend_id\":\"122\",\"product_id\":\"6744\",\"product_code\":\"1341\",\"product_name\":\"Nexcofer Blood Tonic 200ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2314\",\"suspend_id\":\"122\",\"product_id\":\"6453\",\"product_code\":\"1050\",\"product_name\":\"Primolut N 5mg 30\'s\",\"net_unit_price\":\"60.8000\",\"unit_price\":\"60.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2313\",\"suspend_id\":\"122\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"58.4000\",\"unit_price\":\"58.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"292.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"58.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2312\",\"suspend_id\":\"122\",\"product_id\":\"5858\",\"product_code\":\"455\",\"product_name\":\"Seven Seas Cod Liver Oil 100ml ECL\",\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"190.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"38.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2311\",\"suspend_id\":\"122\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"40.3000\",\"unit_price\":\"40.3000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"282.1000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"40.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2310\",\"suspend_id\":\"122\",\"product_id\":\"6286\",\"product_code\":\"883\",\"product_name\":\"Kidivite Syrup 200ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"59.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2309\",\"suspend_id\":\"122\",\"product_id\":\"6158\",\"product_code\":\"755\",\"product_name\":\"Ascoryl Plus syrup 125ml\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2341\",\"suspend_id\":\"122\",\"product_id\":\"6930\",\"product_code\":\"68829408\",\"product_name\":\"Pylin Capsules \",\"net_unit_price\":\"44.0000\",\"unit_price\":\"44.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"220.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"44.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2342\",\"suspend_id\":\"122\",\"product_id\":\"6931\",\"product_code\":\"90823267\",\"product_name\":\"Pylin Ointment \",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2343\",\"suspend_id\":\"122\",\"product_id\":\"6893\",\"product_code\":\"233\",\"product_name\":\"Impressor Capsules\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"165.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2344\",\"suspend_id\":\"122\",\"product_id\":\"6928\",\"product_code\":\"72296204\",\"product_name\":\"Impressor Oil\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"165.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2345\",\"suspend_id\":\"122\",\"product_id\":\"6260\",\"product_code\":\"857\",\"product_name\":\"Hydrogen Peroxide 200ml ECL\",\"net_unit_price\":\"6.4000\",\"unit_price\":\"6.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2346\",\"suspend_id\":\"122\",\"product_id\":\"5967\",\"product_code\":\"564\",\"product_name\":\"Zulu 100mg Tablet\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 03:44:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4256, 'Product is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"6874\",\"code\":\"66699023\",\"name\":\"Malar-2 forte DS Tablets 6\\\\\'S\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"10.8000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1670\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"91.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\":\"66699023\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-25 04:53:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4257, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"124\",\"date\":\"2022-10-25 08:59:42\",\"customer_id\":\"411\",\"customer\":\"DEMARYDAN PHARMACY\",\"count\":\"111\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1781.9200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"DEMARYDAN\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2405\",\"suspend_id\":\"124\",\"product_id\":\"6509\",\"product_code\":\"1106\",\"product_name\":\"Gacet 1g Suppository\",\"net_unit_price\":\"13.2500\",\"unit_price\":\"13.2500\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.2500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2406\",\"suspend_id\":\"124\",\"product_id\":\"6258\",\"product_code\":\"855\",\"product_name\":\"Hydrocortisone 1% Cream (Lavina)\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2407\",\"suspend_id\":\"124\",\"product_id\":\"5714\",\"product_code\":\"311\",\"product_name\":\"Letamol Elixir 125ml\",\"net_unit_price\":\"3.9600\",\"unit_price\":\"3.9600\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.9600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2404\",\"suspend_id\":\"124\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"EPanol 100ml Syrup Plain\",\"net_unit_price\":\"7.9800\",\"unit_price\":\"7.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2403\",\"suspend_id\":\"124\",\"product_id\":\"6409\",\"product_code\":\"1006\",\"product_name\":\"EPanol 100ml Syrup Strawberry Flav\",\"net_unit_price\":\"7.9800\",\"unit_price\":\"7.9800\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2402\",\"suspend_id\":\"124\",\"product_id\":\"6778\",\"product_code\":\"1375\",\"product_name\":\"Nugel Susp 200ml\",\"net_unit_price\":\"26.1800\",\"unit_price\":\"26.1800\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"392.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"26.1800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2401\",\"suspend_id\":\"124\",\"product_id\":\"6250\",\"product_code\":\"847\",\"product_name\":\"Paracetamol 500mg Tablets 16\'s uk\",\"net_unit_price\":\"5.5000\",\"unit_price\":\"5.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2400\",\"suspend_id\":\"124\",\"product_id\":\"6455\",\"product_code\":\"1052\",\"product_name\":\"Paracetamol 500mg Tablets 100\'s EXE\",\"net_unit_price\":\"21.7000\",\"unit_price\":\"21.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"21.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"21.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2399\",\"suspend_id\":\"124\",\"product_id\":\"6907\",\"product_code\":\"01827710\",\"product_name\":\"Congestyl Tablets 12s\",\"net_unit_price\":\"10.2000\",\"unit_price\":\"10.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2398\",\"suspend_id\":\"124\",\"product_id\":\"5623\",\"product_code\":\"220\",\"product_name\":\"Flurest Tablets 10\'s\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.9000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2397\",\"suspend_id\":\"124\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"136.3000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2396\",\"suspend_id\":\"124\",\"product_id\":\"6176\",\"product_code\":\"773\",\"product_name\":\"Gogynax Cream 30g\",\"net_unit_price\":\"5.7400\",\"unit_price\":\"5.7400\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"11.4800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2395\",\"suspend_id\":\"124\",\"product_id\":\"6391\",\"product_code\":\"988\",\"product_name\":\"Vaginax-100 Tablets 6\'s\",\"net_unit_price\":\"3.7000\",\"unit_price\":\"3.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2394\",\"suspend_id\":\"124\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2393\",\"suspend_id\":\"124\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2392\",\"suspend_id\":\"124\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"3.0800\",\"unit_price\":\"3.0800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.0800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2391\",\"suspend_id\":\"124\",\"product_id\":\"6678\",\"product_code\":\"1275\",\"product_name\":\"Azirocin Suspension\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2390\",\"suspend_id\":\"124\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"19.9800\",\"unit_price\":\"19.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2389\",\"suspend_id\":\"124\",\"product_id\":\"6384\",\"product_code\":\"981\",\"product_name\":\"Gebexime Suspension 50ml\",\"net_unit_price\":\"9.6600\",\"unit_price\":\"9.6600\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"57.9600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.6600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2388\",\"suspend_id\":\"124\",\"product_id\":\"5610\",\"product_code\":\"207\",\"product_name\":\"Feroglobin Capsules 30\'s\",\"net_unit_price\":\"60.5000\",\"unit_price\":\"60.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"60.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2387\",\"suspend_id\":\"124\",\"product_id\":\"6296\",\"product_code\":\"893\",\"product_name\":\"Amoksiklav 457mg\\/5ml Suspension 70ml\",\"net_unit_price\":\"28.5000\",\"unit_price\":\"28.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"114.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"28.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2386\",\"suspend_id\":\"124\",\"product_id\":\"6609\",\"product_code\":\"1206\",\"product_name\":\"Skyclav 228.5mg\",\"net_unit_price\":\"15.0700\",\"unit_price\":\"15.0700\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.4200\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0700\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2385\",\"suspend_id\":\"124\",\"product_id\":\"5595\",\"product_code\":\"192\",\"product_name\":\"Emgiflox 250mg Capsules 50x10\",\"net_unit_price\":\"158.6000\",\"unit_price\":\"158.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"158.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"158.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 05:16:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4258, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"126\",\"date\":\"2022-10-25 09:27:32\",\"customer_id\":\"164\",\"customer\":\"Lydiachem\",\"count\":\"95\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"827.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"LYDIA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2445\",\"suspend_id\":\"126\",\"product_id\":\"6663\",\"product_code\":\"1260\",\"product_name\":\"Cotton Wool 25gm\",\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2444\",\"suspend_id\":\"126\",\"product_id\":\"5797\",\"product_code\":\"394\",\"product_name\":\"Normo Tears Eye Drop\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2443\",\"suspend_id\":\"126\",\"product_id\":\"6431\",\"product_code\":\"1028\",\"product_name\":\"Ladinas 2X10\",\"net_unit_price\":\"5.3000\",\"unit_price\":\"5.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2442\",\"suspend_id\":\"126\",\"product_id\":\"6617\",\"product_code\":\"1214\",\"product_name\":\"Babyvite 50ml Drops\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2441\",\"suspend_id\":\"126\",\"product_id\":\"6427\",\"product_code\":\"1024\",\"product_name\":\"Azilex Suspension 15ml\",\"net_unit_price\":\"17.5000\",\"unit_price\":\"17.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2440\",\"suspend_id\":\"126\",\"product_id\":\"5968\",\"product_code\":\"565\",\"product_name\":\"Zymax 200mg\\/5ml Suspension 15ml\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2439\",\"suspend_id\":\"126\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"EPanol 100ml Syrup Plain\",\"net_unit_price\":\"7.9800\",\"unit_price\":\"7.9800\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"79.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2438\",\"suspend_id\":\"126\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2437\",\"suspend_id\":\"126\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"170.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2436\",\"suspend_id\":\"126\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"33.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2435\",\"suspend_id\":\"126\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2433\",\"suspend_id\":\"126\",\"product_id\":\"6436\",\"product_code\":\"1033\",\"product_name\":\"Genda Eye\\/Ear Drops (Gentamycin Sulphate 0.3%\",\"net_unit_price\":\"5.8000\",\"unit_price\":\"5.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"58.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2434\",\"suspend_id\":\"126\",\"product_id\":\"5729\",\"product_code\":\"326\",\"product_name\":\"Lofnac 100mg Suppository\",\"net_unit_price\":\"13.8000\",\"unit_price\":\"13.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"69.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 05:45:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4259, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"125\",\"date\":\"2022-10-25 10:57:20\",\"customer_id\":\"100\",\"customer\":\"FMMS1LAKESIDE\",\"count\":\"186\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2533.6000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"LAKESIDE\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2476\",\"suspend_id\":\"125\",\"product_id\":\"6813\",\"product_code\":\"1410\",\"product_name\":\"Becoatin Syrup 200ml\",\"net_unit_price\":\"14.3000\",\"unit_price\":\"14.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"71.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2475\",\"suspend_id\":\"125\",\"product_id\":\"5448\",\"product_code\":\"45\",\"product_name\":\"Apetatrust 200ml Syrup\",\"net_unit_price\":\"14.5000\",\"unit_price\":\"14.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"72.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"14.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2474\",\"suspend_id\":\"125\",\"product_id\":\"6890\",\"product_code\":\"15222916\",\"product_name\":\"One-Step Maleria Test Kit\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"330.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2473\",\"suspend_id\":\"125\",\"product_id\":\"5576\",\"product_code\":\"173\",\"product_name\":\"Dicnac 100mg Suppositories\",\"net_unit_price\":\"8.7000\",\"unit_price\":\"8.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2472\",\"suspend_id\":\"125\",\"product_id\":\"6218\",\"product_code\":\"815\",\"product_name\":\"Ascorbin 100mg (Vitamin C) Tablets 30x10\",\"net_unit_price\":\"17.8000\",\"unit_price\":\"17.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2470\",\"suspend_id\":\"125\",\"product_id\":\"6906\",\"product_code\":\"43254936\",\"product_name\":\"Amcof Chesty Cough and Cold 200ml Syrup\",\"net_unit_price\":\"12.0000\",\"unit_price\":\"12.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2471\",\"suspend_id\":\"125\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"61.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2469\",\"suspend_id\":\"125\",\"product_id\":\"6895\",\"product_code\":\"49637846\",\"product_name\":\"Zubes Child Cough Syrup\",\"net_unit_price\":\"10.8000\",\"unit_price\":\"10.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2468\",\"suspend_id\":\"125\",\"product_id\":\"6666\",\"product_code\":\"1263\",\"product_name\":\"Examination Gloves\",\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"50.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2467\",\"suspend_id\":\"125\",\"product_id\":\"6610\",\"product_code\":\"1207\",\"product_name\":\"Paracetamol 500mg Tablets 100x10 Eskay\",\"net_unit_price\":\"81.5000\",\"unit_price\":\"81.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"81.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"81.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2466\",\"suspend_id\":\"125\",\"product_id\":\"6442\",\"product_code\":\"1039\",\"product_name\":\"NoSpa 40mg 100\'s\",\"net_unit_price\":\"83.6000\",\"unit_price\":\"83.6000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"83.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"83.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2462\",\"suspend_id\":\"125\",\"product_id\":\"6371\",\"product_code\":\"968\",\"product_name\":\"P-trust Pregnancy Test Kit 25\'s\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2463\",\"suspend_id\":\"125\",\"product_id\":\"6383\",\"product_code\":\"980\",\"product_name\":\"Amcof Baby Syrup\",\"net_unit_price\":\"9.8000\",\"unit_price\":\"9.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2464\",\"suspend_id\":\"125\",\"product_id\":\"6385\",\"product_code\":\"982\",\"product_name\":\"Amcof Junior Syrup\",\"net_unit_price\":\"7.4000\",\"unit_price\":\"7.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2465\",\"suspend_id\":\"125\",\"product_id\":\"6393\",\"product_code\":\"990\",\"product_name\":\"Luex Baby Cough Syrup 150ml\",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2457\",\"suspend_id\":\"125\",\"product_id\":\"6256\",\"product_code\":\"853\",\"product_name\":\"Folic Acid Tablets 5mg 28s UK\",\"net_unit_price\":\"7.9000\",\"unit_price\":\"7.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"47.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2458\",\"suspend_id\":\"125\",\"product_id\":\"6258\",\"product_code\":\"855\",\"product_name\":\"Hydrocortisone 1% Cream (Lavina)\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2459\",\"suspend_id\":\"125\",\"product_id\":\"6290\",\"product_code\":\"887\",\"product_name\":\"Fluxacin 500mg Capsules 20X10\",\"net_unit_price\":\"168.0000\",\"unit_price\":\"168.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"168.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"168.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2460\",\"suspend_id\":\"125\",\"product_id\":\"6328\",\"product_code\":\"925\",\"product_name\":\"Gynomycolex 400mg Pessaries 3\'s\",\"net_unit_price\":\"26.9000\",\"unit_price\":\"26.9000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"26.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2461\",\"suspend_id\":\"125\",\"product_id\":\"6368\",\"product_code\":\"965\",\"product_name\":\"Viscof S 100ml Syrup\",\"net_unit_price\":\"12.8400\",\"unit_price\":\"12.8400\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.8400\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2456\",\"suspend_id\":\"125\",\"product_id\":\"6151\",\"product_code\":\"748\",\"product_name\":\"Jeditone Syrup 200ml\",\"net_unit_price\":\"12.6000\",\"unit_price\":\"12.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2455\",\"suspend_id\":\"125\",\"product_id\":\"6078\",\"product_code\":\"675\",\"product_name\":\"Mr. Q\",\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"165.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"55.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2454\",\"suspend_id\":\"125\",\"product_id\":\"6008\",\"product_code\":\"605\",\"product_name\":\"Linctus Junior Syr. 100ml ECL\",\"net_unit_price\":\"4.9000\",\"unit_price\":\"4.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2453\",\"suspend_id\":\"125\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"20.2000\",\"unit_price\":\"20.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"101.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2452\",\"suspend_id\":\"125\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"63.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2451\",\"suspend_id\":\"125\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2450\",\"suspend_id\":\"125\",\"product_id\":\"5775\",\"product_code\":\"372\",\"product_name\":\"Multivite Tablets Letap\",\"net_unit_price\":\"22.1000\",\"unit_price\":\"22.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"22.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2449\",\"suspend_id\":\"125\",\"product_id\":\"5555\",\"product_code\":\"152\",\"product_name\":\"Daflon 500mg Tablets 30\'s\",\"net_unit_price\":\"107.0000\",\"unit_price\":\"107.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"107.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"107.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2448\",\"suspend_id\":\"125\",\"product_id\":\"5472\",\"product_code\":\"69\",\"product_name\":\"Baseboom Gel\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2447\",\"suspend_id\":\"125\",\"product_id\":\"5451\",\"product_code\":\"48\",\"product_name\":\"Arfan 20\\/120mg\",\"net_unit_price\":\"7.3200\",\"unit_price\":\"7.3200\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"109.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.3200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2446\",\"suspend_id\":\"125\",\"product_id\":\"5447\",\"product_code\":\"44\",\"product_name\":\"Apetamin Syrup 200ml\",\"net_unit_price\":\"28.7000\",\"unit_price\":\"28.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"143.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 07:03:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4260, 'Product is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"6941\",\"code\":\"82254208\",\"name\":\"Amcof Junior Syrup\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"1654\",\"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\":\"82254208\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-25 07:06:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4261, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"127\",\"date\":\"2022-10-25 10:58:55\",\"customer_id\":\"201\",\"customer\":\"OPTIMAX PHARMACY\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"224.8000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"OPTIMAX\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2477\",\"suspend_id\":\"127\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"56.2000\",\"unit_price\":\"56.2000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"224.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"56.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 07:08:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4262, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"128\",\"date\":\"2022-10-25 11:53:46\",\"customer_id\":\"198\",\"customer\":\"George Hood\",\"count\":\"59\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1317.7000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"GEORGE HOOD\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2478\",\"suspend_id\":\"128\",\"product_id\":\"5487\",\"product_code\":\"84\",\"product_name\":\"Bonaplex Syrup 250ml\",\"net_unit_price\":\"18.9000\",\"unit_price\":\"18.9000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"189.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"18.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2482\",\"suspend_id\":\"128\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"net_unit_price\":\"50.5000\",\"unit_price\":\"50.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"252.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2481\",\"suspend_id\":\"128\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"275.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2480\",\"suspend_id\":\"128\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"66.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2479\",\"suspend_id\":\"128\",\"product_id\":\"6936\",\"product_code\":\"65328927\",\"product_name\":\"Bestvit C (Vitamin C Effervescent)\",\"net_unit_price\":\"22.3000\",\"unit_price\":\"22.3000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"535.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-25 08:12:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4263, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"129\",\"date\":\"2022-10-25 14:41:16\",\"customer_id\":\"160\",\"customer\":\"LEXGINA PHARMA\",\"count\":\"32\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"163.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"LEXGINA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2485\",\"suspend_id\":\"129\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"43.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2483\",\"suspend_id\":\"129\",\"product_id\":\"6219\",\"product_code\":\"816\",\"product_name\":\"Chloramphenicol 250mg Capsules Letap 50x10\",\"net_unit_price\":\"2.6900\",\"unit_price\":\"2.6900\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.6900\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2484\",\"suspend_id\":\"129\",\"product_id\":\"5926\",\"product_code\":\"523\",\"product_name\":\"Vermox 500mg Tablets\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"65.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 05:03:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4264, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"131\",\"date\":\"2022-10-26 11:25:58\",\"customer_id\":\"6\",\"customer\":\"Banni \",\"count\":\"79\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1845.1000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"banni\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2521\",\"suspend_id\":\"131\",\"product_id\":\"6910\",\"product_code\":\"52852667\",\"product_name\":\"Osteocare Liquid 200ml \",\"net_unit_price\":\"16.0000\",\"unit_price\":\"16.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2520\",\"suspend_id\":\"131\",\"product_id\":\"6694\",\"product_code\":\"1291\",\"product_name\":\"Prowoman 50+ Capsules 30\'s \",\"net_unit_price\":\"52.8000\",\"unit_price\":\"52.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"158.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"52.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2519\",\"suspend_id\":\"131\",\"product_id\":\"6674\",\"product_code\":\"1271\",\"product_name\":\"Plaster roll Extra care 1Inch\",\"net_unit_price\":\"4.4500\",\"unit_price\":\"4.4500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.4500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2513\",\"suspend_id\":\"131\",\"product_id\":\"6131\",\"product_code\":\"728\",\"product_name\":\"Drez Solution 100ml\",\"net_unit_price\":\"18.0000\",\"unit_price\":\"18.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2514\",\"suspend_id\":\"131\",\"product_id\":\"6273\",\"product_code\":\"870\",\"product_name\":\"Vikil 20\",\"net_unit_price\":\"27.5000\",\"unit_price\":\"27.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"137.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2515\",\"suspend_id\":\"131\",\"product_id\":\"6337\",\"product_code\":\"934\",\"product_name\":\"Feroglobin Syrup 200ml\",\"net_unit_price\":\"56.2000\",\"unit_price\":\"56.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"281.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"56.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2516\",\"suspend_id\":\"131\",\"product_id\":\"6472\",\"product_code\":\"1069\",\"product_name\":\"Canesten 20mg Cream\",\"net_unit_price\":\"28.0000\",\"unit_price\":\"28.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"140.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"28.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2517\",\"suspend_id\":\"131\",\"product_id\":\"6538\",\"product_code\":\"1135\",\"product_name\":\"Drez Solution 30ml\",\"net_unit_price\":\"10.3000\",\"unit_price\":\"10.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"51.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2518\",\"suspend_id\":\"131\",\"product_id\":\"6640\",\"product_code\":\"1237\",\"product_name\":\"Histazine (Cetrizine) 5mg\\/5ml Syrup 60ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"78.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2512\",\"suspend_id\":\"131\",\"product_id\":\"6113\",\"product_code\":\"710\",\"product_name\":\"Plaster roll 3Inches Xtra care\",\"net_unit_price\":\"9.8000\",\"unit_price\":\"9.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2511\",\"suspend_id\":\"131\",\"product_id\":\"5881\",\"product_code\":\"478\",\"product_name\":\"Solak Mixture\",\"net_unit_price\":\"14.8500\",\"unit_price\":\"14.8500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"74.2500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"14.8500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2509\",\"suspend_id\":\"131\",\"product_id\":\"5655\",\"product_code\":\"252\",\"product_name\":\"Gvither Forte 80mg Injection 10\'s\",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2510\",\"suspend_id\":\"131\",\"product_id\":\"5841\",\"product_code\":\"438\",\"product_name\":\"Prostafit\",\"net_unit_price\":\"19.8000\",\"unit_price\":\"19.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"198.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"19.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2508\",\"suspend_id\":\"131\",\"product_id\":\"5619\",\"product_code\":\"216\",\"product_name\":\"Flemex Jnr. Cough Syrup 100ml\",\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"39.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2506\",\"suspend_id\":\"131\",\"product_id\":\"5463\",\"product_code\":\"60\",\"product_name\":\"Atorvastatin 20mg Tablets 28\'s\",\"net_unit_price\":\"12.4000\",\"unit_price\":\"12.4000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2507\",\"suspend_id\":\"131\",\"product_id\":\"5554\",\"product_code\":\"151\",\"product_name\":\"Cytotec\",\"net_unit_price\":\"341.0000\",\"unit_price\":\"341.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"341.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"341.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 07:33:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4265, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"132\",\"date\":\"2022-10-26 11:33:46\",\"customer_id\":\"204\",\"customer\":\"GINA\",\"count\":\"108\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"2094.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"gina\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2525\",\"suspend_id\":\"132\",\"product_id\":\"5795\",\"product_code\":\"392\",\"product_name\":\"Nizoral Cream 15gm\",\"net_unit_price\":\"35.0000\",\"unit_price\":\"35.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"35.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2527\",\"suspend_id\":\"132\",\"product_id\":\"5799\",\"product_code\":\"396\",\"product_name\":\"Nugel-O Suspension 200ml\",\"net_unit_price\":\"27.2600\",\"unit_price\":\"27.2600\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"681.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"27.2600\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2526\",\"suspend_id\":\"132\",\"product_id\":\"5556\",\"product_code\":\"153\",\"product_name\":\"Daktarin Cream 15g\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"30.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2522\",\"suspend_id\":\"132\",\"product_id\":\"6295\",\"product_code\":\"892\",\"product_name\":\"Cyprodine 200ml Syrup\",\"net_unit_price\":\"59.8000\",\"unit_price\":\"59.8000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"598.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"59.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2524\",\"suspend_id\":\"132\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"48.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"110.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"48.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2523\",\"suspend_id\":\"132\",\"product_id\":\"6258\",\"product_code\":\"855\",\"product_name\":\"Hydrocortisone 1% Cream (Lavina)\",\"net_unit_price\":\"10.9000\",\"unit_price\":\"10.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"54.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 08:43:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4266, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"134\",\"date\":\"2022-10-26 12:51:01\",\"customer_id\":\"190\",\"customer\":\"NLMC\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"68.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"9\",\"suspend_note\":\"NLMC\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2537\",\"suspend_id\":\"134\",\"product_id\":\"5655\",\"product_code\":\"252\",\"product_name\":\"Gvither Forte 80mg Injection 10\'s\",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 09:25:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4267, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"133\",\"date\":\"2022-10-26 11:38:23\",\"customer_id\":\"210\",\"customer\":\"PHILYN\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"160.9900\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"philyn\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2536\",\"suspend_id\":\"133\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2534\",\"suspend_id\":\"133\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2529\",\"suspend_id\":\"133\",\"product_id\":\"6839\",\"product_code\":\"1436\",\"product_name\":\"Maxmox Suspension 100ml\",\"net_unit_price\":\"6.4300\",\"unit_price\":\"6.4300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.8600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6.4300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2530\",\"suspend_id\":\"133\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2531\",\"suspend_id\":\"133\",\"product_id\":\"6696\",\"product_code\":\"1293\",\"product_name\":\"Abyvita Capsules\",\"net_unit_price\":\"4.9500\",\"unit_price\":\"4.9500\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"14.8500\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2532\",\"suspend_id\":\"133\",\"product_id\":\"6754\",\"product_code\":\"1351\",\"product_name\":\"Happyrona Forte Tablets 20X1X20\",\"net_unit_price\":\"4.5000\",\"unit_price\":\"4.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2533\",\"suspend_id\":\"133\",\"product_id\":\"5677\",\"product_code\":\"274\",\"product_name\":\"Imboost Herbal Mixture 500ml\",\"net_unit_price\":\"15.4000\",\"unit_price\":\"15.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.4000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2535\",\"suspend_id\":\"133\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2528\",\"suspend_id\":\"133\",\"product_id\":\"6293\",\"product_code\":\"890\",\"product_name\":\"Enacef (Cefuroxime)125ml Suspension\",\"net_unit_price\":\"19.9800\",\"unit_price\":\"19.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.9800\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"19.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 10:16:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4268, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"135\",\"date\":\"2022-10-26 14:58:45\",\"customer_id\":\"95\",\"customer\":\"FAIRGOLD PHARMACY\",\"count\":\"51\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"826.5200\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"fairgold\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2546\",\"suspend_id\":\"135\",\"product_id\":\"5536\",\"product_code\":\"133\",\"product_name\":\"Colestop 10mg 30\'s (Atovastin)\",\"net_unit_price\":\"87.0000\",\"unit_price\":\"87.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"87.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"87.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2547\",\"suspend_id\":\"135\",\"product_id\":\"5633\",\"product_code\":\"230\",\"product_name\":\"Galvus Met 50\\/1000mg Tablets 60s\",\"net_unit_price\":\"377.0200\",\"unit_price\":\"377.0200\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"377.0200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"377.0200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2548\",\"suspend_id\":\"135\",\"product_id\":\"5948\",\"product_code\":\"545\",\"product_name\":\"Wormplex Suspension\",\"net_unit_price\":\"9.0000\",\"unit_price\":\"9.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2553\",\"suspend_id\":\"135\",\"product_id\":\"6931\",\"product_code\":\"90823267\",\"product_name\":\"Pylin Ointment \",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"68.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2552\",\"suspend_id\":\"135\",\"product_id\":\"6930\",\"product_code\":\"68829408\",\"product_name\":\"Pylin Capsules \",\"net_unit_price\":\"44.0000\",\"unit_price\":\"44.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"88.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"44.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2551\",\"suspend_id\":\"135\",\"product_id\":\"6664\",\"product_code\":\"1261\",\"product_name\":\"Pregnancy Test Kit One-Step\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2550\",\"suspend_id\":\"135\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"85.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2549\",\"suspend_id\":\"135\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-26 11:06:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4269, 'Sale is being deleted by stellappiah (User Id: 9)', '{\"model\":{\"id\":\"1639\",\"date\":\"2022-10-27 08:52:56\",\"reference_no\":\"FMMS\\/POS1587\",\"customer_id\":\"170\",\"customer\":\"MAWUDOR CHEMICAL SHOP\",\"biller_id\":\"3\",\"biller\":\"FMMS MADINA WHOLESALE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"968.2600\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"0\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"968.2600\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"81\",\"pos\":\"1\",\"paid\":\"968.2600\",\"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\":\"ee852696a4a14b3f4022f7416e2a5655f1d28896b4a411e4fd3519e369a2c770\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"18227\",\"sale_id\":\"1639\",\"product_id\":\"5792\",\"product_code\":\"389\",\"product_name\":\"Nifecard XL 30mg Tablets 30s ECL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.4000\",\"unit_price\":\"50.4000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"100.8000\",\"serial_no\":\"\",\"real_unit_price\":\"50.4000\",\"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\":\"nifecard.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18228\",\"sale_id\":\"1639\",\"product_id\":\"6283\",\"product_code\":\"880\",\"product_name\":\"Enafen (Ibuprufen) 60ml Syrup\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7.5000\",\"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\"},{\"id\":\"18229\",\"sale_id\":\"1639\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"EPanol 100ml Syrup Plain\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.9800\",\"unit_price\":\"7.9800\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.9600\",\"serial_no\":\"\",\"real_unit_price\":\"7.9800\",\"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\":\"e-panol-plain.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18230\",\"sale_id\":\"1639\",\"product_id\":\"6205\",\"product_code\":\"802\",\"product_name\":\"Citro C Tablets 25\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"real_unit_price\":\"55.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\":\"CITRO-C.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18231\",\"sale_id\":\"1639\",\"product_id\":\"6838\",\"product_code\":\"1435\",\"product_name\":\"Maxmox 250mg (10x10)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"real_unit_price\":\"17.7100\",\"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\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18232\",\"sale_id\":\"1639\",\"product_id\":\"6359\",\"product_code\":\"956\",\"product_name\":\"Dipex Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.5000\",\"unit_price\":\"2.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.5000\",\"serial_no\":\"\",\"real_unit_price\":\"2.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"dipex.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18233\",\"sale_id\":\"1639\",\"product_id\":\"6358\",\"product_code\":\"955\",\"product_name\":\"Fenbase Extra\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.4000\",\"unit_price\":\"3.4000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.4000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"fenbase-extra.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18234\",\"sale_id\":\"1639\",\"product_id\":\"5640\",\"product_code\":\"237\",\"product_name\":\"Gebedol Tablet\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"12.3000\",\"unit_price\":\"12.3000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"36.9000\",\"serial_no\":\"\",\"real_unit_price\":\"12.3000\",\"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\":\"gebedol.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18235\",\"sale_id\":\"1639\",\"product_id\":\"5642\",\"product_code\":\"239\",\"product_name\":\"Gebedol Plus Capsule\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"26.9000\",\"unit_price\":\"26.9000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"134.5000\",\"serial_no\":\"\",\"real_unit_price\":\"26.9000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"gb-plus.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18236\",\"sale_id\":\"1639\",\"product_id\":\"5641\",\"product_code\":\"238\",\"product_name\":\"Gebedol Extra\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"34.2100\",\"unit_price\":\"34.2100\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"171.0500\",\"serial_no\":\"\",\"real_unit_price\":\"34.2100\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"gb-extra.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18237\",\"sale_id\":\"1639\",\"product_id\":\"6528\",\"product_code\":\"1125\",\"product_name\":\"Levon 2 Postpill CRD\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.5000\",\"serial_no\":\"\",\"real_unit_price\":\"7.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.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\":\"18238\",\"sale_id\":\"1639\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"real_unit_price\":\"8.2000\",\"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\":\"koffex-adt-1.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18239\",\"sale_id\":\"1639\",\"product_id\":\"6201\",\"product_code\":\"798\",\"product_name\":\"Samalin Junior cough syrup 125ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.2000\",\"serial_no\":\"\",\"real_unit_price\":\"9.1000\",\"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\":\"samalin-jnr.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18240\",\"sale_id\":\"1639\",\"product_id\":\"5977\",\"product_code\":\"574\",\"product_name\":\"Samalin Adult Cough Syr 125ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"real_unit_price\":\"7.8000\",\"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\":\"samalin-adt-125ml.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18241\",\"sale_id\":\"1639\",\"product_id\":\"6640\",\"product_code\":\"1237\",\"product_name\":\"Histazine (Cetrizine) 5mg\\/5ml Syrup 60ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7.8000\",\"unit_price\":\"7.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.6000\",\"serial_no\":\"\",\"real_unit_price\":\"7.8000\",\"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\":\"histazine-syr.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18242\",\"sale_id\":\"1639\",\"product_id\":\"6418\",\"product_code\":\"1015\",\"product_name\":\"Cetrizan 10mg Tablets 20\'s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.3800\",\"unit_price\":\"6.3800\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.1400\",\"serial_no\":\"\",\"real_unit_price\":\"6.3800\",\"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\"},{\"id\":\"18243\",\"sale_id\":\"1639\",\"product_id\":\"6232\",\"product_code\":\"829\",\"product_name\":\"Amlodipine 10mg Tablets 28s Teva\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.7000\",\"serial_no\":\"\",\"real_unit_price\":\"9.9000\",\"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\":\"amlodi.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18244\",\"sale_id\":\"1639\",\"product_id\":\"6478\",\"product_code\":\"1075\",\"product_name\":\"Fluconazole 150mg Capsules Teva\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.7200\",\"unit_price\":\"9.7200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"48.6000\",\"serial_no\":\"\",\"real_unit_price\":\"9.7200\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"fluconazole.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18245\",\"sale_id\":\"1639\",\"product_id\":\"5585\",\"product_code\":\"182\",\"product_name\":\"Dragon Tablets\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"28.5000\",\"unit_price\":\"28.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"real_unit_price\":\"28.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\":\"DRAGON-TABS.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18246\",\"sale_id\":\"1639\",\"product_id\":\"6893\",\"product_code\":\"233\",\"product_name\":\"Impressor Capsules\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"55.0000\",\"unit_price\":\"55.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.0000\",\"serial_no\":\"\",\"real_unit_price\":\"55.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\":\"18247\",\"sale_id\":\"1639\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"32.1000\",\"serial_no\":\"\",\"real_unit_price\":\"10.7000\",\"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\":\"teedar-syr.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18248\",\"sale_id\":\"1639\",\"product_id\":\"5453\",\"product_code\":\"50\",\"product_name\":\"Ascoryl Syrup 125ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9.2000\",\"unit_price\":\"9.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.4000\",\"serial_no\":\"\",\"real_unit_price\":\"9.2000\",\"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\":\"Ascorly-C-scaled.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18249\",\"sale_id\":\"1639\",\"product_id\":\"6136\",\"product_code\":\"733\",\"product_name\":\"Chlo Eye (Chloramphenicol) drops\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.8000\",\"unit_price\":\"3.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"19.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.8000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"chlo-eye.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"18250\",\"sale_id\":\"1639\",\"product_id\":\"6075\",\"product_code\":\"672\",\"product_name\":\"Kiss Condom Classic\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.3000\",\"unit_price\":\"2.3000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.9000\",\"serial_no\":\"\",\"real_unit_price\":\"2.3000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"kiss-classic.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2022-10-27 12:49:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4270, 'POS Bill is being deleted by nanayaa (User Id: 10)', '{\"model\":{\"id\":\"140\",\"date\":\"2022-10-28 10:27:02\",\"customer_id\":\"379\",\"customer\":\"Kasba\",\"count\":\"63\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"578.8000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"10\",\"suspend_note\":\"KASBA\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2642\",\"suspend_id\":\"140\",\"product_id\":\"6864\",\"product_code\":\"98367406\",\"product_name\":\"Fiesta Condom Strawberry \",\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2641\",\"suspend_id\":\"140\",\"product_id\":\"6830\",\"product_code\":\"1427\",\"product_name\":\"Ganaman Capsules\",\"net_unit_price\":\"29.7000\",\"unit_price\":\"29.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"29.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2640\",\"suspend_id\":\"140\",\"product_id\":\"6691\",\"product_code\":\"1288\",\"product_name\":\"Lonart 20\\/120mg Tablets 24\'s\",\"net_unit_price\":\"8.8000\",\"unit_price\":\"8.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"44.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2639\",\"suspend_id\":\"140\",\"product_id\":\"6649\",\"product_code\":\"1246\",\"product_name\":\"Stopkof Cold and Catarrh Syrup\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2638\",\"suspend_id\":\"140\",\"product_id\":\"6617\",\"product_code\":\"1214\",\"product_name\":\"Babyvite 50ml Drops\",\"net_unit_price\":\"9.5000\",\"unit_price\":\"9.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2637\",\"suspend_id\":\"140\",\"product_id\":\"6607\",\"product_code\":\"1204\",\"product_name\":\"Skyclav 625\",\"net_unit_price\":\"17.7100\",\"unit_price\":\"17.7100\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"17.7100\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.7100\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2636\",\"suspend_id\":\"140\",\"product_id\":\"6421\",\"product_code\":\"1018\",\"product_name\":\"Martins liver salt Plain\",\"net_unit_price\":\"13.1000\",\"unit_price\":\"13.1000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.1000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2635\",\"suspend_id\":\"140\",\"product_id\":\"6408\",\"product_code\":\"1005\",\"product_name\":\"EPanol 100ml Syrup Plain\",\"net_unit_price\":\"7.9800\",\"unit_price\":\"7.9800\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.9200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.9800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2634\",\"suspend_id\":\"140\",\"product_id\":\"6348\",\"product_code\":\"945\",\"product_name\":\"Loperon\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"10.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2633\",\"suspend_id\":\"140\",\"product_id\":\"6333\",\"product_code\":\"930\",\"product_name\":\"Adom Koo Mixture\",\"net_unit_price\":\"7.7000\",\"unit_price\":\"7.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2632\",\"suspend_id\":\"140\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2631\",\"suspend_id\":\"140\",\"product_id\":\"6285\",\"product_code\":\"882\",\"product_name\":\"Auntie Mary Gripewater 150ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2630\",\"suspend_id\":\"140\",\"product_id\":\"6225\",\"product_code\":\"822\",\"product_name\":\"Letalin Expectorant Syrup 125ml\",\"net_unit_price\":\"3.0800\",\"unit_price\":\"3.0800\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.3200\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3.0800\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2629\",\"suspend_id\":\"140\",\"product_id\":\"6074\",\"product_code\":\"671\",\"product_name\":\"Lydia Postpill 1Tablet\",\"net_unit_price\":\"8.5000\",\"unit_price\":\"8.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.5000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2628\",\"suspend_id\":\"140\",\"product_id\":\"5983\",\"product_code\":\"580\",\"product_name\":\"Rhizin 10mg Tabs10x10\",\"net_unit_price\":\"6.9000\",\"unit_price\":\"6.9000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.8000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2627\",\"suspend_id\":\"140\",\"product_id\":\"5976\",\"product_code\":\"573\",\"product_name\":\"Koffex Adult Cough Syr 125ml\",\"net_unit_price\":\"8.2000\",\"unit_price\":\"8.2000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"16.4000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2626\",\"suspend_id\":\"140\",\"product_id\":\"5949\",\"product_code\":\"546\",\"product_name\":\"Wormplex 400 Tablets\",\"net_unit_price\":\"7.3000\",\"unit_price\":\"7.3000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.3000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2625\",\"suspend_id\":\"140\",\"product_id\":\"5847\",\"product_code\":\"444\",\"product_name\":\"Redsun Jelly\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2624\",\"suspend_id\":\"140\",\"product_id\":\"5827\",\"product_code\":\"424\",\"product_name\":\"Polyfer Capsules 30\'s\",\"net_unit_price\":\"6.6000\",\"unit_price\":\"6.6000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13.2000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2623\",\"suspend_id\":\"140\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2622\",\"suspend_id\":\"140\",\"product_id\":\"5716\",\"product_code\":\"313\",\"product_name\":\"Letaron 200ml Syrup\",\"net_unit_price\":\"7.5500\",\"unit_price\":\"7.5500\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"37.7500\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7.5500\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2621\",\"suspend_id\":\"140\",\"product_id\":\"5676\",\"product_code\":\"273\",\"product_name\":\"Imax Delay Spray\",\"net_unit_price\":\"34.0000\",\"unit_price\":\"34.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"34.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2643\",\"suspend_id\":\"140\",\"product_id\":\"6927\",\"product_code\":\"19085995\",\"product_name\":\"Ayulabs Gripe Water\",\"net_unit_price\":\"9.9000\",\"unit_price\":\"9.9000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.7000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9.9000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2644\",\"suspend_id\":\"140\",\"product_id\":\"6191\",\"product_code\":\"788\",\"product_name\":\"Shal\\\\\'Artem Dry Syrup\",\"net_unit_price\":\"7.7000\",\"unit_price\":\"7.7000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2645\",\"suspend_id\":\"140\",\"product_id\":\"6496\",\"product_code\":\"1093\",\"product_name\":\"Dymol 50\\/500 Mg Tablets 10\'s\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.7000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-28 06:39:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4271, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"141\",\"date\":\"2022-10-29 12:03:45\",\"customer_id\":\"291\",\"customer\":\"Health is wealth\",\"count\":\"33\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"438.4000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"6\",\"suspend_note\":\"HEALTH\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2654\",\"suspend_id\":\"141\",\"product_id\":\"5751\",\"product_code\":\"348\",\"product_name\":\"Malar-2 Forte Tablets 40\\/240mg 12\'s\",\"net_unit_price\":\"12.8000\",\"unit_price\":\"12.8000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"12.8000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2653\",\"suspend_id\":\"141\",\"product_id\":\"6298\",\"product_code\":\"895\",\"product_name\":\"Malar-2 Forte DS Tablets 80\\/480 6s\",\"net_unit_price\":\"12.8000\",\"unit_price\":\"12.8000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"64.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2652\",\"suspend_id\":\"141\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"62.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2651\",\"suspend_id\":\"141\",\"product_id\":\"6304\",\"product_code\":\"901\",\"product_name\":\"Lonart Suspension\",\"net_unit_price\":\"17.0000\",\"unit_price\":\"17.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"34.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"17.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2649\",\"suspend_id\":\"141\",\"product_id\":\"5632\",\"product_code\":\"229\",\"product_name\":\"Gacet 250mg Suppository\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2650\",\"suspend_id\":\"141\",\"product_id\":\"5731\",\"product_code\":\"328\",\"product_name\":\"Lonart DS Tablets\",\"net_unit_price\":\"24.0000\",\"unit_price\":\"24.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"168.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"24.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2648\",\"suspend_id\":\"141\",\"product_id\":\"6454\",\"product_code\":\"1051\",\"product_name\":\"C-Pheniramine Syrup 100ml (Piriton)\",\"net_unit_price\":\"5.2000\",\"unit_price\":\"5.2000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"26.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2647\",\"suspend_id\":\"141\",\"product_id\":\"5849\",\"product_code\":\"446\",\"product_name\":\"Rhizin Syrup\",\"net_unit_price\":\"3.6000\",\"unit_price\":\"3.6000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"18.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3.6000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2646\",\"suspend_id\":\"141\",\"product_id\":\"5986\",\"product_code\":\"583\",\"product_name\":\"Rapinol Tab 25X4\'s\",\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-29 08:28:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4272, 'POS Bill is being deleted by grace (User Id: 6)', '{\"model\":{\"id\":\"142\",\"date\":\"2022-10-29 12:42:37\",\"customer_id\":\"217\",\"customer\":\"Ramatu\",\"count\":\"75\",\"order_discount_id\":\"\",\"order_tax_id\":\"0\",\"total\":\"1017.3600\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"10\",\"suspend_note\":\"RAMATU\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2673\",\"suspend_id\":\"142\",\"product_id\":\"6612\",\"product_code\":\"1209\",\"product_name\":\"Skycef 500mg (Cefuroxime) 1X10\",\"net_unit_price\":\"20.9200\",\"unit_price\":\"20.9200\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"41.8400\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.9200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2672\",\"suspend_id\":\"142\",\"product_id\":\"6611\",\"product_code\":\"1208\",\"product_name\":\"Skycef 250mg (Cefuroxime) 1X10\",\"net_unit_price\":\"11.5300\",\"unit_price\":\"11.5300\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.5300\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2671\",\"suspend_id\":\"142\",\"product_id\":\"6478\",\"product_code\":\"1075\",\"product_name\":\"Fluconazole 150mg Capsules Teva\",\"net_unit_price\":\"9.7200\",\"unit_price\":\"9.7200\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"29.1600\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.7200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2670\",\"suspend_id\":\"142\",\"product_id\":\"6020\",\"product_code\":\"617\",\"product_name\":\"ORS Plain 25\'s\",\"net_unit_price\":\"22.0000\",\"unit_price\":\"22.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"22.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2668\",\"suspend_id\":\"142\",\"product_id\":\"5886\",\"product_code\":\"483\",\"product_name\":\"Stopkof Adult Cough Syrup 100ml\",\"net_unit_price\":\"11.8000\",\"unit_price\":\"11.8000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"35.4000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.8000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2669\",\"suspend_id\":\"142\",\"product_id\":\"6377\",\"product_code\":\"974\",\"product_name\":\"Letavin 500mg (Griseofulvin) Tablets\",\"net_unit_price\":\"96.2000\",\"unit_price\":\"96.2000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"96.2000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"96.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2667\",\"suspend_id\":\"142\",\"product_id\":\"6201\",\"product_code\":\"798\",\"product_name\":\"Samalin Junior cough syrup 125ml\",\"net_unit_price\":\"9.1000\",\"unit_price\":\"9.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"45.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2666\",\"suspend_id\":\"142\",\"product_id\":\"5982\",\"product_code\":\"579\",\"product_name\":\"Samalin Jnr cough syr. non-drowsy 125ml\",\"net_unit_price\":\"11.1000\",\"unit_price\":\"11.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"55.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"11.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2665\",\"suspend_id\":\"142\",\"product_id\":\"5969\",\"product_code\":\"566\",\"product_name\":\"Teedar Syrup 125ml\",\"net_unit_price\":\"10.7000\",\"unit_price\":\"10.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"53.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2664\",\"suspend_id\":\"142\",\"product_id\":\"6312\",\"product_code\":\"909\",\"product_name\":\"Malin Junior\",\"net_unit_price\":\"7.5000\",\"unit_price\":\"7.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"22.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2663\",\"suspend_id\":\"142\",\"product_id\":\"5853\",\"product_code\":\"450\",\"product_name\":\"Rooter Mixture\",\"net_unit_price\":\"10.5000\",\"unit_price\":\"10.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"31.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2661\",\"suspend_id\":\"142\",\"product_id\":\"5740\",\"product_code\":\"337\",\"product_name\":\"Lufart DS Tablets\",\"net_unit_price\":\"15.5000\",\"unit_price\":\"15.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"155.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15.5000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2662\",\"suspend_id\":\"142\",\"product_id\":\"5898\",\"product_code\":\"495\",\"product_name\":\"Taabea Herbal Mixture\",\"net_unit_price\":\"20.2000\",\"unit_price\":\"20.2000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"60.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20.2000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2660\",\"suspend_id\":\"142\",\"product_id\":\"6083\",\"product_code\":\"680\",\"product_name\":\"Methylated Spirit Rokmer 60ml\",\"net_unit_price\":\"2.7000\",\"unit_price\":\"2.7000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"27.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2657\",\"suspend_id\":\"142\",\"product_id\":\"5439\",\"product_code\":\"36\",\"product_name\":\"Amoksiklav 1g Tablet 10s\",\"net_unit_price\":\"71.0000\",\"unit_price\":\"71.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"142.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"71.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2658\",\"suspend_id\":\"142\",\"product_id\":\"6234\",\"product_code\":\"831\",\"product_name\":\"Amoksiklav 625mg Tablet 14s\",\"net_unit_price\":\"49.0000\",\"unit_price\":\"49.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"98.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"49.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2659\",\"suspend_id\":\"142\",\"product_id\":\"6496\",\"product_code\":\"1093\",\"product_name\":\"Dymol 50\\/500 Mg Tablets 10\'s\",\"net_unit_price\":\"5.7000\",\"unit_price\":\"5.7000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"28.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.7000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2656\",\"suspend_id\":\"142\",\"product_id\":\"5440\",\"product_code\":\"37\",\"product_name\":\"Amoxicillin Suspension 100ml 125mg\\/5ml(Letap)\",\"net_unit_price\":\"4.9200\",\"unit_price\":\"4.9200\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"24.6000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4.9200\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2655\",\"suspend_id\":\"142\",\"product_id\":\"6375\",\"product_code\":\"972\",\"product_name\":\"Metronidazole 100ml Suspension Letap\",\"net_unit_price\":\"5.1000\",\"unit_price\":\"5.1000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.5000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5.1000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2022-10-29 09:15:00');


#
# TABLE STRUCTURE FOR: sma_migrations
#

DROP TABLE IF EXISTS `sma_migrations`;

CREATE TABLE `sma_migrations` (
  `version` bigint(20) NOT NULL
) ENGINE=MyISAM 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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

#
# 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=MyISAM 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', 39, 1, 66, 1, 1722, 1, 1404, 2, 1, 1, 20, 3);


#
# TABLE STRUCTURE FOR: sma_pages
#

DROP TABLE IF EXISTS `sma_pages`;

CREATE TABLE `sma_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(15) NOT NULL,
  `title` varchar(60) NOT NULL,
  `description` varchar(180) NOT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `body` text NOT NULL,
  `active` tinyint(1) NOT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `order_no` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# 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=MyISAM AUTO_INCREMENT=1686 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 (70, '2022-09-12 16:55:24', 112, NULL, NULL, 'IPAY0066', NULL, 'cash', '', '', '', '', '', '', '10.7000', NULL, 5, 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 (69, '2022-09-12 16:46:28', 111, NULL, NULL, 'IPAY0065', NULL, 'cash', '', '', '', '', '', '', '400.7000', NULL, 5, 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 (68, '2022-09-12 16:36:51', 110, NULL, NULL, 'IPAY0064', NULL, 'cash', '', '', '', '', '', '', '52.5600', NULL, 5, NULL, 'received', '', '52.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 (43, '2022-09-12 09:07:22', 77, NULL, NULL, 'IPAY0039', NULL, 'cash', '', '', '', '', '', '', '33.3000', NULL, 6, NULL, 'received', '', '33.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 09:24:53', 78, NULL, NULL, 'IPAY0040', NULL, 'cash', '', '', '', '', '', '', '66.7000', NULL, 6, NULL, 'received', '', '66.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 09:33:57', 79, NULL, NULL, 'IPAY0041', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, 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 (46, '2022-09-12 09:39:42', 80, NULL, NULL, 'IPAY0042', NULL, 'cash', '', '', '', '', '', '', '2817.3300', NULL, 7, NULL, 'received', '', '2817.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 (47, '2022-09-12 09:53:11', 81, NULL, NULL, 'IPAY0043', NULL, 'cash', '', '', '', '', '', '', '410.8000', NULL, 6, NULL, 'received', '', '410.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 10:17:07', 83, NULL, NULL, 'IPAY0044', 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 (49, '2022-09-12 10:21:45', 84, NULL, NULL, 'IPAY0045', NULL, 'cash', '', '', '', '', '', '', '85.3800', NULL, 6, NULL, 'received', '', '100.0000', '14.6200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 10:44:00', 85, NULL, NULL, 'IPAY0046', NULL, 'cash', '', '', '', '', '', '', '60.8400', NULL, 5, NULL, 'received', '', '60.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 (51, '2022-09-12 11:44:00', 90, NULL, NULL, 'IPAY0047', NULL, 'cash', '', '', '', '', '', 'Visa', '248.1000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (52, '2022-09-12 12:01:43', 93, NULL, NULL, 'IPAY0048', NULL, 'cash', '', '', '', '', '', '', '121.8200', NULL, 6, NULL, 'received', '', '122.0000', '0.1800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 12:11:45', 94, NULL, NULL, 'IPAY0049', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 6, NULL, 'received', '', '15.0000', '1.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 12:38:00', 89, NULL, NULL, 'IPAY0050', NULL, 'cash', '', '', '', '', '', 'Visa', '1237.4400', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (55, '2022-09-12 12:46:45', 96, NULL, NULL, 'IPAY0051', NULL, 'cash', '', '', '', '', '', '', '8.4000', NULL, 5, 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 (56, '2022-09-12 12:53:04', 97, NULL, NULL, 'IPAY0052', NULL, 'cash', '', '', '', '', '', '', '278.0800', NULL, 5, NULL, 'received', '', '278.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 (57, '2022-09-12 12:57:38', 98, NULL, NULL, 'IPAY0053', NULL, 'cash', '', '', '', '', '', '', '148.4000', NULL, 5, NULL, 'received', '', '148.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 13:45:58', 99, NULL, NULL, 'IPAY0054', NULL, 'cash', '', '', '', '', '', '', '126.5200', NULL, 5, NULL, 'received', '', '126.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 (59, '2022-09-12 14:18:36', 100, NULL, NULL, 'IPAY0055', NULL, 'cash', '', '', '', '', '', '', '406.6800', NULL, 6, NULL, 'received', '', '406.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 (60, '2022-09-12 14:28:50', 101, NULL, NULL, 'IPAY0056', NULL, 'cash', '', '', '', '', '', '', '23.3500', NULL, 5, NULL, 'received', '', '23.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 (61, '2022-09-12 14:41:52', 102, NULL, NULL, 'IPAY0057', NULL, 'cash', '', '', '', '', '', '', '350.8500', NULL, 5, NULL, 'received', '', '350.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 (62, '2022-09-12 14:57:27', 103, NULL, NULL, 'IPAY0058', NULL, 'cash', '', '', '', '', '', '', '261.5800', NULL, 5, NULL, 'received', '', '261.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 (63, '2022-09-12 15:51:37', 104, NULL, NULL, 'IPAY0059', NULL, 'cash', '', '', '', '', '', '', '189.8000', NULL, 7, NULL, 'received', '', '189.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 15:58:43', 105, NULL, NULL, 'IPAY0060', NULL, 'cash', '', '', '', '', '', '', '153.6000', NULL, 7, NULL, 'received', '', '153.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 16:00:35', 106, NULL, NULL, 'IPAY0061', NULL, 'cash', '', '', '', '', '', '', '10.8900', NULL, 7, NULL, 'received', '', '10.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 (66, '2022-09-12 16:24:29', 107, NULL, NULL, 'IPAY0062', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 5, NULL, 'received', '', '50.0000', '-0.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 16:30:53', 108, NULL, NULL, 'IPAY0063', NULL, 'cash', '', '', '', '', '', '', '1989.5100', NULL, 7, NULL, 'received', '', '1989.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 (71, '2022-09-12 16:59:42', 113, NULL, NULL, 'IPAY0067', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 5, NULL, 'received', '', '15.1000', '1.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-12 16:59:49', 114, NULL, NULL, 'IPAY0068', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 5, 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 (73, '2022-09-12 17:10:47', 116, NULL, NULL, 'IPAY0069', NULL, 'cash', '', '', '', '', '', '', '263.2600', NULL, 5, NULL, 'received', '', '263.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 (74, '2022-09-12 17:27:03', 118, NULL, NULL, 'IPAY0070', NULL, 'cash', '', '', '', '', '', '', '39.8200', NULL, 5, NULL, 'received', '', '39.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 (75, '2022-09-12 17:58:08', 119, NULL, NULL, 'IPAY0071', NULL, 'cash', '', '', '', '', '', '', '77.3800', NULL, 5, NULL, 'received', '', '77.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 (76, '2022-09-13 08:00:00', 95, NULL, NULL, 'IPAY0072', NULL, 'cash', '', '', '', '', '', 'Visa', '1041.4600', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (77, '2022-09-13 08:13:00', 82, NULL, NULL, 'IPAY0073', NULL, 'cash', '', '', '', '', '', 'Visa', '2309.6200', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (78, '2022-09-13 08:17:16', 120, NULL, NULL, 'IPAY0074', NULL, 'cash', '', '', '', '', '', '', '25.6000', NULL, 7, 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 (79, '2022-09-13 08:19:49', 121, NULL, NULL, 'IPAY0075', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 7, NULL, 'received', '', '26.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 (80, '2022-09-13 08:20:35', 122, NULL, NULL, 'IPAY0076', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 7, 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 (81, '2022-09-13 08:58:43', 124, NULL, NULL, 'IPAY0077', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 6, 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 (82, '2022-09-13 09:05:57', 125, NULL, NULL, 'IPAY0078', NULL, 'cash', '', '', '', '', '', '', '353.3900', NULL, 7, NULL, 'received', '', '353.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 (83, '2022-09-13 09:14:02', 126, NULL, NULL, 'IPAY0079', NULL, 'cash', '', '', '', '', '', '', '11.4000', NULL, 6, NULL, 'received', '', '11.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 09:24:07', 127, NULL, NULL, 'IPAY0080', NULL, 'cash', '', '', '', '', '', '', '651.0600', NULL, 7, NULL, 'received', '', '651.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 (85, '2022-09-13 09:37:11', 128, NULL, NULL, 'IPAY0081', NULL, 'cash', '', '', '', '', '', '', '1744.2200', NULL, 6, NULL, 'received', '', '1744.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 (86, '2022-09-13 09:47:00', 109, NULL, NULL, 'IPAY0082', NULL, 'cash', '', '', '', '', '', 'Visa', '271.7700', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (87, '2022-09-13 09:50:40', 129, NULL, NULL, 'IPAY0083', NULL, 'cash', '', '', '', '', '', '', '17.7100', NULL, 7, NULL, 'received', '', '17.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 (88, '2022-09-13 09:50:00', 123, NULL, NULL, 'IPAY0084', NULL, 'cash', '', '', '', '', '', 'Visa', '596.5200', NULL, 6, NULL, 'received', '', '596.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 (89, '2022-09-13 09:57:28', 130, NULL, NULL, 'IPAY0084', NULL, 'cash', '', '', '', '', '', '', '168.4600', NULL, 6, NULL, 'received', '', '168.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 (90, '2022-09-13 09:59:00', 115, NULL, NULL, 'IPAY0085', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (91, '2022-09-13 10:03:00', 107, NULL, NULL, 'IPAY0085', NULL, 'cash', '', '', '', '', '', 'Visa', '0.5000', NULL, 6, 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 (92, '2022-09-13 10:03:00', 92, NULL, NULL, 'IPAY0085', NULL, 'cash', '', '', '', '', '', 'Visa', '77.8500', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (93, '2022-09-13 10:04:00', 91, NULL, NULL, 'IPAY0086', NULL, 'cash', '', '', '', '', '', 'Visa', '357.3500', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (94, '2022-09-13 10:04:00', 88, NULL, NULL, 'IPAY0087', NULL, 'cash', '', '', '', '', '', 'Visa', '493.4500', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (95, '2022-09-13 10:05:00', 87, NULL, NULL, 'IPAY0088', NULL, 'cash', '', '', '', '', '', 'Visa', '253.0600', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (96, '2022-09-13 10:05:00', 86, NULL, NULL, 'IPAY0089', NULL, 'cash', '', '', '', '', '', 'Visa', '604.7000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (97, '2022-09-13 10:07:46', 131, NULL, NULL, 'IPAY0090', NULL, 'cash', '', '', '', '', '', '', '48.6000', NULL, 6, NULL, 'received', '', '50.0000', '1.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 10:12:17', 132, NULL, NULL, 'IPAY0091', NULL, 'cash', '', '', '', '', '', '', '94.4000', NULL, 6, NULL, 'received', '', '100.0000', '5.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 10:23:37', 133, NULL, NULL, 'IPAY0092', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (100, '2022-09-13 10:50:17', 134, NULL, NULL, 'IPAY0093', NULL, 'cash', '', '', '', '', '', '', '531.2000', NULL, 6, NULL, 'received', '', '531.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 10:57:38', 135, NULL, NULL, 'IPAY0094', NULL, 'cash', '', '', '', '', '', '', '341.9600', NULL, 7, NULL, 'received', '', '341.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 (102, '2022-09-13 11:16:54', 136, NULL, NULL, 'IPAY0095', NULL, 'cash', '', '', '', '', '', '', '27.3800', NULL, 7, NULL, 'received', '', '30.0000', '2.6200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 11:53:06', 137, NULL, NULL, 'IPAY0096', NULL, 'other', '', '', '', '', '', '', '60.1600', NULL, 7, NULL, 'received', '', '60.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 (104, '2022-09-13 12:09:05', 138, NULL, NULL, 'IPAY0097', NULL, 'cash', '', '', '', '', '', '', '12.9800', NULL, 5, NULL, 'received', '', '12.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 (105, '2022-09-13 12:10:03', 139, NULL, NULL, 'IPAY0098', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 5, 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 (106, '2022-09-13 12:12:59', 140, NULL, NULL, 'IPAY0099', NULL, 'cash', '', '', '', '', '', '', '39.4000', NULL, 6, NULL, 'received', '', '100.0000', '60.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 12:13:32', 141, NULL, NULL, 'IPAY0100', NULL, 'cash', '', '', '', '', '', '', '560.6200', NULL, 7, NULL, 'received', '', '560.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 (108, '2022-09-13 12:35:21', 142, NULL, NULL, 'IPAY0101', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 5, 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 (109, '2022-09-13 12:37:36', 143, NULL, NULL, 'IPAY0102', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 7, 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 (110, '2022-09-13 12:41:23', 144, NULL, NULL, 'IPAY0103', NULL, 'cash', '', '', '', '', '', '', '56.1000', NULL, 6, NULL, 'received', '', '100.0000', '43.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 13:06:23', 145, NULL, NULL, 'IPAY0104', NULL, 'cash', '', '', '', '', '', '', '206.3000', NULL, 7, 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 (112, '2022-09-13 13:19:48', 146, NULL, NULL, 'IPAY0105', NULL, 'cash', '', '', '', '', '', '', '1038.4600', NULL, 7, NULL, 'received', '', '1038.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 (113, '2022-09-13 13:22:46', 147, NULL, NULL, 'IPAY0106', NULL, 'cash', '', '', '', '', '', '', '90.7300', NULL, 5, NULL, 'received', '', '90.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 (114, '2022-09-13 13:27:05', 148, NULL, NULL, 'IPAY0107', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 7, 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 (115, '2022-09-13 13:29:36', 149, NULL, NULL, 'IPAY0108', NULL, 'cash', '', '', '', '', '', '', '86.1500', NULL, 6, NULL, 'received', '', '90.0000', '3.8500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 14:18:08', 150, NULL, NULL, 'IPAY0109', NULL, 'cash', '', '', '', '', '', '', '229.0000', NULL, 7, 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 (117, '2022-09-13 14:30:05', 151, NULL, NULL, 'IPAY0110', NULL, 'cash', '', '', '', '', '', '', '234.4000', NULL, 6, NULL, 'received', '', '240.0000', '5.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 14:37:50', 152, NULL, NULL, 'IPAY0111', NULL, 'cash', '', '', '', '', '', '', '1081.5500', NULL, 7, NULL, 'received', '', '1081.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 (119, '2022-09-13 14:40:12', 153, NULL, NULL, 'IPAY0112', NULL, 'cash', '', '', '', '', '', '', '20.8000', NULL, 6, NULL, 'received', '', '20.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 15:20:34', 155, NULL, NULL, 'IPAY0113', NULL, 'cash', '', '', '', '', '', '', '25.8000', NULL, 7, 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 (121, '2022-09-13 15:21:57', 156, NULL, NULL, 'IPAY0114', 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 (122, '2022-09-13 15:30:50', 157, NULL, NULL, 'IPAY0115', NULL, 'cash', '', '', '', '', '', '', '311.4200', NULL, 7, NULL, 'received', '', '311.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 (123, '2022-09-13 15:35:25', 158, NULL, NULL, 'IPAY0116', NULL, 'cash', '', '', '', '', '', '', '175.5000', NULL, 6, 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 (124, '2022-09-13 15:45:43', 159, NULL, NULL, 'IPAY0117', NULL, 'cash', '', '', '', '', '', '', '109.2000', NULL, 6, 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 (125, '2022-09-13 15:48:41', 160, NULL, NULL, 'IPAY0118', NULL, 'cash', '', '', '', '', '', '', '98.1000', NULL, 6, 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 (126, '2022-09-13 15:54:40', 161, NULL, NULL, 'IPAY0119', NULL, 'cash', '', '', '', '', '', '', '32.8000', NULL, 6, NULL, 'received', '', '40.0000', '7.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-13 16:37:30', 163, NULL, NULL, 'IPAY0120', 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 (128, '2022-09-13 16:40:16', 164, NULL, NULL, 'IPAY0121', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 6, NULL, 'received', '', '100.0000', '64.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 07:57:11', 165, NULL, NULL, 'IPAY0122', NULL, 'cash', '', '', '', '', '', '', '163.2100', NULL, 6, NULL, 'received', '', '163.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 (130, '2022-09-14 07:58:59', 166, NULL, NULL, 'IPAY0123', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (131, '2022-09-14 08:06:00', 162, NULL, NULL, 'IPAY0124', NULL, 'cash', '', '', '', '', '', 'Visa', '716.6600', NULL, 6, NULL, 'received', '', '716.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 (132, '2022-09-14 08:07:00', 154, NULL, NULL, 'IPAY0124', NULL, 'cash', '', '', '', '', '', 'Visa', '1959.4000', NULL, 6, NULL, 'received', '', '1959.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 08:07:00', 150, NULL, NULL, 'IPAY0124', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (134, '2022-09-14 08:11:00', 140, NULL, NULL, 'IPAY0124', NULL, 'cash', '', '', '', '', '', 'Visa', '325.3000', NULL, 6, NULL, 'received', '', '325.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 08:44:27', 167, NULL, NULL, 'IPAY0124', NULL, 'cash', '', '', '', '', '', '', '807.2600', NULL, 7, NULL, 'received', '', '807.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 (136, '2022-09-14 08:48:33', 168, NULL, NULL, 'IPAY0125', NULL, 'cash', '', '', '', '', '', '', '121.5500', NULL, 6, NULL, 'received', '', '125.0000', '3.4500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 08:48:40', 169, NULL, NULL, 'IPAY0126', NULL, 'cash', '', '', '', '', '', '', '175.6100', NULL, 7, NULL, 'received', '', '175.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 (138, '2022-09-14 08:54:57', 170, NULL, NULL, 'IPAY0127', NULL, 'cash', '', '', '', '', '', '', '8.1000', NULL, 6, NULL, 'received', '', '8.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 (139, '2022-09-14 08:58:07', 171, NULL, NULL, 'IPAY0128', 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 (140, '2022-09-14 09:09:44', 173, NULL, NULL, 'IPAY0129', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (141, '2022-09-14 09:14:50', 174, NULL, NULL, 'IPAY0130', NULL, 'cash', '', '', '', '', '', '', '319.2000', NULL, 6, NULL, 'received', '', '320.0000', '0.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 09:35:18', 175, NULL, NULL, 'IPAY0131', NULL, 'cash', '', '', '', '', '', '', '39.4200', NULL, 7, NULL, 'received', '', '39.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 (143, '2022-09-14 09:57:32', 176, NULL, NULL, 'IPAY0132', NULL, 'cash', '', '', '', '', '', '', '7.1000', NULL, 6, NULL, 'received', '', '10.0000', '2.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 10:01:23', 177, NULL, NULL, 'IPAY0133', NULL, 'cash', '', '', '', '', '', '', '7.1000', NULL, 6, 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 (145, '2022-09-14 10:17:32', 178, NULL, NULL, 'IPAY0134', 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 (146, '2022-09-14 10:50:56', 179, NULL, NULL, 'IPAY0135', NULL, 'cash', '', '', '', '', '', '', '199.8600', NULL, 7, NULL, 'received', '', '199.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 (147, '2022-09-14 10:55:14', 180, NULL, NULL, 'IPAY0136', NULL, 'cash', '', '', '', '', '', '', '15.8000', NULL, 7, 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 (148, '2022-09-14 11:06:59', 181, NULL, NULL, 'IPAY0137', NULL, 'cash', '', '', '', '', '', '', '179.7400', NULL, 6, NULL, 'received', '', '180.0000', '0.2600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 11:09:57', 182, NULL, NULL, 'IPAY0138', 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 (150, '2022-09-14 11:14:49', 183, NULL, NULL, 'IPAY0139', NULL, 'cash', '', '', '', '', '', '', '17.6000', NULL, 6, NULL, 'received', '', '17.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 11:26:59', 184, NULL, NULL, 'IPAY0140', NULL, 'cash', '', '', '', '', '', '', '207.7000', NULL, 7, 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 (152, '2022-09-14 11:29:48', 185, NULL, NULL, 'IPAY0141', 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 (153, '2022-09-14 11:30:32', 186, NULL, NULL, 'IPAY0142', NULL, 'cash', '', '', '', '', '', '', '26.7200', NULL, 7, NULL, 'received', '', '26.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 (154, '2022-09-14 11:32:39', 187, NULL, NULL, 'IPAY0143', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (155, '2022-09-14 11:33:18', 188, NULL, NULL, 'IPAY0144', 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 (156, '2022-09-14 11:43:04', 189, NULL, NULL, 'IPAY0145', NULL, 'cash', '', '', '', '', '', '', '417.5600', NULL, 7, NULL, 'received', '', '417.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 (157, '2022-09-14 11:54:11', 190, NULL, NULL, 'IPAY0146', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 7, 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 (158, '2022-09-14 13:03:26', 191, NULL, NULL, 'IPAY0147', NULL, 'cash', '', '', '', '', '', '', '354.4000', NULL, 6, NULL, 'received', '', '354.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 13:06:33', 192, NULL, NULL, 'IPAY0148', NULL, 'cash', '', '', '', '', '', '', '23.6000', NULL, 6, 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 (160, '2022-09-14 13:12:47', 193, NULL, NULL, 'IPAY0149', 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 (161, '2022-09-14 13:24:00', 194, NULL, NULL, 'IPAY0150', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '859.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 (162, '2022-09-14 13:30:50', 195, NULL, NULL, 'IPAY0151', NULL, 'cash', '', '', '', '', '', '', '69.8100', NULL, 5, NULL, 'received', '', '69.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 (163, '2022-09-14 13:41:18', 196, NULL, NULL, 'IPAY0152', NULL, 'cash', '', '', '', '', '', '', '316.0000', NULL, 6, NULL, 'received', '', '400.0000', '84.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 13:48:29', 197, NULL, NULL, 'IPAY0153', NULL, 'cash', '', '', '', '', '', '', '447.6200', NULL, 5, NULL, 'received', '', '447.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 (165, '2022-09-14 14:13:33', 199, NULL, NULL, 'IPAY0154', NULL, 'cash', '', '', '', '', '', '', '19.8000', NULL, 6, NULL, 'received', '', '20.0000', '0.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 14:16:05', 200, NULL, NULL, 'IPAY0155', NULL, 'cash', '', '', '', '', '', '', '86.8000', NULL, 7, 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 (167, '2022-09-14 14:18:59', 201, NULL, NULL, 'IPAY0156', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 7, 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 (168, '2022-09-14 14:23:35', 202, NULL, NULL, 'IPAY0157', NULL, 'cash', '', '', '', '', '', '', '48.6000', NULL, 5, 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 (169, '2022-09-14 14:33:00', 203, NULL, NULL, 'IPAY0158', NULL, 'cash', '', '', '', '', '', 'Visa', '-267.8000', NULL, 6, 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 (170, '2022-09-14 14:42:33', 204, NULL, NULL, 'IPAY0159', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 5, 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 (171, '2022-09-14 14:44:08', 205, NULL, NULL, 'IPAY0160', NULL, 'cash', '', '', '', '', '', '', '338.6000', NULL, 6, NULL, 'received', '', '338.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 14:44:09', 206, NULL, NULL, 'IPAY0161', NULL, 'cash', '', '', '', '', '', '', '210.6800', NULL, 7, NULL, 'received', '', '210.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 (173, '2022-09-14 15:02:39', 207, NULL, NULL, 'IPAY0162', NULL, 'other', '', '', '', '', '', '', '281.2000', NULL, 7, NULL, 'received', '', '281.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 15:17:38', 208, NULL, NULL, 'IPAY0163', NULL, 'cash', '', '', '', '', '', '', '99.0600', NULL, 7, NULL, 'received', '', '99.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 (175, '2022-09-14 15:24:47', 209, NULL, NULL, 'IPAY0164', NULL, 'cash', '', '', '', '', '', '', '97.4000', NULL, 5, NULL, 'received', '', '97.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 16:00:00', 206, NULL, NULL, 'IPAY0165', NULL, 'cash', '', '', '', '', '', 'Visa', '-14.3000', NULL, 5, NULL, 'received', '', '-14.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-14 16:19:23', 210, NULL, NULL, 'IPAY0165', NULL, 'cash', '', '', '', '', '', '', '346.4500', NULL, 7, NULL, 'received', '', '346.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 (178, '2022-09-14 16:28:48', 211, NULL, NULL, 'IPAY0166', NULL, 'cash', '', '', '', '', '', '', '24.9000', NULL, 7, 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 (179, '2022-09-14 16:30:01', 212, NULL, NULL, 'IPAY0167', NULL, 'cash', '', '', '', '', '', '', '493.5900', NULL, 6, NULL, 'received', '', '493.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 (180, '2022-09-14 16:39:47', 213, NULL, NULL, 'IPAY0168', NULL, 'cash', '', '', '', '', '', '', '41.6300', NULL, 5, NULL, 'received', '', '41.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 (181, '2022-09-14 16:50:14', 214, NULL, NULL, 'IPAY0169', NULL, 'cash', '', '', '', '', '', '', '69.2300', NULL, 7, NULL, 'received', '', '69.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 (182, '2022-09-14 17:37:00', 215, NULL, NULL, 'IPAY0170', NULL, 'other', '', '', '', '', '', '', '199.8000', NULL, 7, NULL, 'received', '', '199.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 08:09:00', 216, NULL, NULL, 'IPAY0171', NULL, 'cash', '', '', '', '', '', '', '1503.9400', NULL, 6, NULL, 'received', '', '1503.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 (184, '2022-09-15 08:28:02', 217, NULL, NULL, 'IPAY0172', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (185, '2022-09-15 08:46:02', 218, NULL, NULL, 'IPAY0173', NULL, 'cash', '', '', '', '', '', '', '290.3800', NULL, 6, NULL, 'received', '', '290.5000', '0.1200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 09:01:50', 219, NULL, NULL, 'IPAY0174', NULL, 'cash', '', '', '', '', '', '', '149.4000', NULL, 6, NULL, 'received', '', '149.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 09:07:11', 220, NULL, NULL, 'IPAY0175', NULL, 'cash', '', '', '', '', '', '', '13.7000', NULL, 6, 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 (188, '2022-09-15 09:53:55', 221, NULL, NULL, 'IPAY0176', NULL, 'cash', '', '', '', '', '', '', '504.8000', NULL, 7, NULL, 'received', '', '504.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 10:11:37', 223, NULL, NULL, 'IPAY0177', 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 (190, '2022-09-15 10:12:00', NULL, NULL, 49, 'POP0002', NULL, 'Cheque', '159 CBG', '', '', '', '', 'Visa', '4380.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (191, '2022-09-15 10:40:07', 224, NULL, NULL, 'IPAY0178', NULL, 'cash', '', '', '', '', '', '', '99.0000', NULL, 7, 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 (192, '2022-09-15 10:41:22', 225, NULL, NULL, 'IPAY0179', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 6, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 10:49:52', 226, NULL, NULL, 'IPAY0180', NULL, 'cash', '', '', '', '', '', '', '82.6000', NULL, 6, 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 (194, '2022-09-15 10:52:42', 227, NULL, NULL, 'IPAY0181', NULL, 'cash', '', '', '', '', '', '', '26.8000', NULL, 6, 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 (195, '2022-09-15 10:58:53', 228, NULL, NULL, 'IPAY0182', NULL, 'cash', '', '', '', '', '', '', '1038.1600', NULL, 6, NULL, 'received', '', '1050.0000', '11.8400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 11:02:15', 229, NULL, NULL, 'IPAY0183', 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 (197, '2022-09-15 11:08:20', 230, NULL, NULL, 'IPAY0184', NULL, 'cash', '', '', '', '', '', '', '100.5400', NULL, 7, NULL, 'received', '', '100.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 (198, '2022-09-15 11:08:00', 198, NULL, NULL, 'IPAY0185', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (199, '2022-09-15 11:09:08', 231, NULL, NULL, 'IPAY0185', NULL, 'cash', '', '', '', '', '', '', '5.8600', NULL, 7, NULL, 'received', '', '5.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 (201, '2022-09-15 11:17:26', 234, NULL, NULL, 'IPAY0187', NULL, 'cash', '', '', '', '', '', '', '2355.7600', NULL, 7, NULL, 'received', '', '2355.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 (202, '2022-09-15 11:22:38', 235, NULL, NULL, 'IPAY0188', NULL, 'cash', '', '', '', '', '', '', '1.2000', NULL, 6, 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 (203, '2022-09-15 11:48:47', 236, NULL, NULL, 'IPAY0189', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 7, 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 (204, '2022-09-15 12:03:56', 238, NULL, NULL, 'IPAY0190', NULL, 'cash', '', '', '', '', '', '', '28.8000', NULL, 6, NULL, 'received', '', '50.5000', '21.7000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 12:05:40', 239, NULL, NULL, 'IPAY0191', NULL, 'cash', '', '', '', '', '', '', '27.3800', NULL, 7, NULL, 'received', '', '27.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 (206, '2022-09-15 12:14:22', 240, NULL, NULL, 'IPAY0192', NULL, 'cash', '', '', '', '', '', '', '91.4900', NULL, 7, NULL, 'received', '', '91.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 (207, '2022-09-15 12:14:00', 222, NULL, NULL, 'IPAY0193', NULL, 'cash', '', '', '', '', '', 'Visa', '330.9600', NULL, 6, NULL, 'received', '', '330.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 (208, '2022-09-15 12:22:31', 241, NULL, NULL, 'IPAY0193', NULL, 'cash', '', '', '', '', '', '', '176.5000', NULL, 6, 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 (209, '2022-09-15 12:35:47', 242, NULL, NULL, 'IPAY0194', NULL, 'cash', '', '', '', '', '', '', '289.6000', NULL, 6, 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 (210, '2022-09-15 12:37:56', 243, NULL, NULL, 'IPAY0195', NULL, 'cash', '', '', '', '', '', '', '40.9600', NULL, 7, NULL, 'received', '', '40.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 (211, '2022-09-15 12:50:10', 244, NULL, NULL, 'IPAY0196', NULL, 'cash', '', '', '', '', '', '', '652.8300', NULL, 7, NULL, 'received', '', '652.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 (212, '2022-09-15 12:52:00', 242, NULL, NULL, 'IPAY0197', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (213, '2022-09-15 13:06:41', 245, NULL, NULL, 'IPAY0197', NULL, 'cash', '', '', '', '', '', '', '8.4000', NULL, 6, NULL, 'received', '', '20.0000', '11.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 13:24:10', 246, NULL, NULL, 'IPAY0198', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 6, NULL, 'received', '', '26.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 (215, '2022-09-15 13:46:19', 247, NULL, NULL, 'IPAY0199', NULL, 'cash', '', '', '', '', '', '', '8.2000', NULL, 7, NULL, 'received', '', '8.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 13:47:18', 248, NULL, NULL, 'IPAY0200', NULL, 'cash', '', '', '', '', '', '', '310.0000', NULL, 7, 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 (217, '2022-09-15 13:51:51', 249, NULL, NULL, 'IPAY0201', NULL, 'cash', '', '', '', '', '', '', '8.2000', NULL, 7, NULL, 'received', '', '8.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 13:52:27', 250, NULL, NULL, 'IPAY0202', NULL, 'cash', '', '', '', '', '', '', '538.6500', NULL, 6, NULL, 'received', '', '538.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 (219, '2022-09-15 14:21:40', 251, NULL, NULL, 'IPAY0203', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 7, 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 (220, '2022-09-15 14:30:15', 252, NULL, NULL, 'IPAY0204', NULL, 'cash', '', '', '', '', '', '', '12.6000', NULL, 6, NULL, 'received', '', '12.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 14:51:40', 254, NULL, NULL, 'IPAY0205', NULL, 'cash', '', '', '', '', '', '', '39.9000', NULL, 7, NULL, 'received', '', '39.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 (222, '2022-09-15 14:55:41', 255, NULL, NULL, 'IPAY0206', NULL, 'cash', '', '', '', '', '', '', '154.9500', NULL, 6, NULL, 'received', '', '155.0000', '0.0500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 15:00:47', 256, NULL, NULL, 'IPAY0207', NULL, 'cash', '', '', '', '', '', '', '74.4000', NULL, 6, NULL, 'received', '', '74.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 15:10:15', 257, NULL, NULL, 'IPAY0208', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 6, 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 (225, '2022-09-15 15:20:00', 253, NULL, NULL, 'IPAY0209', NULL, 'cash', '', '', '', '', '', 'Visa', '495.3000', NULL, 6, NULL, 'received', '', '495.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 15:32:47', 258, NULL, NULL, 'IPAY0209', NULL, 'cash', '', '', '', '', '', '', '70.2000', NULL, 7, 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 (227, '2022-09-15 16:08:00', 259, NULL, NULL, 'IPAY0210', NULL, 'cash', '', '', '', '', '', 'Visa', '-495.3000', NULL, 6, 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 (228, '2022-09-15 16:08:00', 260, NULL, NULL, 'IPAY0211', NULL, 'cash', '', '', '', '', '', 'Visa', '-74.4000', NULL, 6, 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 (229, '2022-09-15 16:10:31', 261, NULL, NULL, 'IPAY0212', NULL, 'cash', '', '', '', '', '', '', '569.7000', NULL, 6, NULL, 'received', '', '569.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 16:27:17', 262, NULL, NULL, 'IPAY0213', NULL, 'cash', '', '', '', '', '', '', '86.8000', NULL, 7, 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 (231, '2022-09-15 16:56:28', 263, NULL, NULL, 'IPAY0214', NULL, 'cash', '', '', '', '', '', '', '437.9600', NULL, 7, NULL, 'received', '', '437.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 (232, '2022-09-15 17:03:02', 264, NULL, NULL, 'IPAY0215', NULL, 'cash', '', '', '', '', '', '', '108.3000', NULL, 7, NULL, 'received', '', '108.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 17:17:02', 265, NULL, NULL, 'IPAY0216', NULL, 'cash', '', '', '', '', '', '', '6.3300', NULL, 7, NULL, 'received', '', '6.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 (234, '2022-09-15 17:21:39', 266, NULL, NULL, 'IPAY0217', NULL, 'cash', '', '', '', '', '', '', '18.9000', NULL, 6, 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 (235, '2022-09-15 17:24:51', 267, NULL, NULL, 'IPAY0218', NULL, 'cash', '', '', '', '', '', '', '66.2000', NULL, 6, NULL, 'received', '', '66.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-15 17:34:01', 268, NULL, NULL, 'IPAY0219', NULL, 'cash', '', '', '', '', '', '', '12.2000', NULL, 6, 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 (237, '2022-09-15 17:37:32', 269, NULL, NULL, 'IPAY0220', 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 (238, '2022-09-16 07:56:40', 270, NULL, NULL, 'IPAY0221', NULL, 'cash', '', '', '', '', '', '', '27.1600', NULL, 6, NULL, 'received', '', '27.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 (239, '2022-09-16 09:17:40', 271, NULL, NULL, 'IPAY0222', NULL, 'cash', '', '', '', '', '', '', '812.9000', NULL, 6, NULL, 'received', '', '812.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 (240, '2022-09-16 09:27:56', 272, NULL, NULL, 'IPAY0223', NULL, 'cash', '', '', '', '', '', '', '209.1000', NULL, 7, 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 (241, '2022-09-16 09:33:51', 273, NULL, NULL, 'IPAY0224', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 7, 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 (242, '2022-09-16 09:34:49', 274, NULL, NULL, 'IPAY0225', NULL, 'cash', '', '', '', '', '', '', '1490.6000', NULL, 6, NULL, 'received', '', '1490.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-16 09:43:22', 275, NULL, NULL, 'IPAY0226', NULL, 'cash', '', '', '', '', '', '', '301.5800', NULL, 7, NULL, 'received', '', '301.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 (244, '2022-09-16 09:54:09', 276, NULL, NULL, 'IPAY0227', NULL, 'cash', '', '', '', '', '', '', '381.0600', NULL, 7, NULL, 'received', '', '381.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 (245, '2022-09-16 10:11:22', 277, NULL, NULL, 'IPAY0228', NULL, 'cash', '', '', '', '', '', '', '2195.1400', NULL, 6, NULL, 'received', '', '2195.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 (246, '2022-09-16 10:12:53', 278, NULL, NULL, 'IPAY0229', NULL, 'cash', '', '', '', '', '', '', '1238.0700', NULL, 7, NULL, 'received', '', '1238.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 (247, '2022-09-16 10:20:00', 271, NULL, NULL, 'IPAY0230', NULL, 'cash', '', '', '', '', '', 'Visa', '59.0000', NULL, 6, 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 (248, '2022-09-16 10:38:17', 279, NULL, NULL, 'IPAY0230', NULL, 'cash', '', '', '', '', '', '', '220.5500', NULL, 7, NULL, 'received', '', '220.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 (249, '2022-09-16 11:10:47', 280, NULL, NULL, 'IPAY0231', NULL, 'cash', '', '', '', '', '', '', '44.7300', NULL, 7, NULL, 'received', '', '44.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 (250, '2022-09-16 11:15:06', 281, NULL, NULL, 'IPAY0232', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (251, '2022-09-16 11:23:50', 282, NULL, NULL, 'IPAY0233', NULL, 'cash', '', '', '', '', '', '', '335.6500', NULL, 6, NULL, 'received', '', '335.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 (252, '2022-09-16 11:31:15', 283, NULL, NULL, 'IPAY0234', 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 (253, '2022-09-16 11:32:09', 284, NULL, NULL, 'IPAY0235', NULL, 'cash', '', '', '', '', '', '', '48.2000', NULL, 7, 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 (254, '2022-09-16 11:33:37', 285, NULL, NULL, 'IPAY0236', NULL, 'cash', '', '', '', '', '', '', '30.1000', NULL, 6, NULL, 'received', '', '30.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 (255, '2022-09-16 13:26:14', 286, NULL, NULL, 'IPAY0237', NULL, 'cash', '', '', '', '', '', '', '19.9600', NULL, 7, NULL, 'received', '', '19.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 (256, '2022-09-16 13:30:05', 287, NULL, NULL, 'IPAY0238', NULL, 'cash', '', '', '', '', '', '', '10.8900', NULL, 7, NULL, 'received', '', '10.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 (257, '2022-09-16 13:38:57', 288, NULL, NULL, 'IPAY0239', NULL, 'cash', '', '', '', '', '', '', '52.5600', NULL, 7, NULL, 'received', '', '52.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 (258, '2022-09-16 13:57:00', 289, NULL, NULL, 'IPAY0240', NULL, 'cash', '', '', '', '', '', '', '23.7600', NULL, 7, NULL, 'received', '', '25.4000', '1.6400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-16 14:20:35', 290, NULL, NULL, 'IPAY0241', NULL, 'cash', '', '', '', '', '', '', '347.9400', NULL, 7, NULL, 'received', '', '347.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 (260, '2022-09-16 14:55:08', 291, NULL, NULL, 'IPAY0242', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 7, 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 (261, '2022-09-16 15:04:58', 292, NULL, NULL, 'IPAY0243', NULL, 'cash', '', '', '', '', '', '', '896.3200', NULL, 7, NULL, 'received', '', '896.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 (262, '2022-09-16 15:23:58', 293, NULL, NULL, 'IPAY0244', NULL, 'cash', '', '', '', '', '', '', '127.7000', NULL, 7, NULL, 'received', '', '130.0000', '2.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-16 15:58:46', 295, NULL, NULL, 'IPAY0245', NULL, 'cash', '', '', '', '', '', '', '332.8100', NULL, 6, NULL, 'received', '', '332.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 (264, '2022-09-16 16:34:35', 296, NULL, NULL, 'IPAY0246', NULL, 'cash', '', '', '', '', '', '', '75.8800', NULL, 6, NULL, 'received', '', '75.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 (265, '2022-09-16 16:39:51', 297, NULL, NULL, 'IPAY0247', 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 (266, '2022-09-16 16:53:31', 298, NULL, NULL, 'IPAY0248', NULL, 'cash', '', '', '', '', '', '', '61.7800', NULL, 7, NULL, 'received', '', '61.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 (267, '2022-09-16 16:57:55', 299, NULL, NULL, 'IPAY0249', NULL, 'cash', '', '', '', '', '', '', '144.8000', NULL, 7, NULL, 'received', '', '144.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-16 17:13:10', 301, NULL, NULL, 'IPAY0250', NULL, 'cash', '', '', '', '', '', '', '63.0600', NULL, 7, NULL, 'received', '', '63.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 (269, '2022-09-16 17:14:11', 302, NULL, NULL, 'IPAY0251', NULL, 'cash', '', '', '', '', '', '', '722.3600', NULL, 6, NULL, 'received', '', '722.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 (270, '2022-09-16 17:17:34', 303, NULL, NULL, 'IPAY0252', 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 (271, '2022-09-16 17:20:23', 304, NULL, NULL, 'IPAY0253', NULL, 'cash', '', '', '', '', '', '', '5.6000', NULL, 7, 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 (272, '2022-09-16 17:25:10', 305, NULL, NULL, 'IPAY0254', NULL, 'cash', '', '', '', '', '', '', '120.8800', NULL, 6, NULL, 'received', '', '120.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 (273, '2022-09-16 17:28:24', 306, NULL, NULL, 'IPAY0255', NULL, 'cash', '', '', '', '', '', '', '41.6300', NULL, 7, NULL, 'received', '', '41.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 (274, '2022-09-16 17:39:04', 307, NULL, NULL, 'IPAY0256', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 7, NULL, 'received', '', '26.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 (275, '2022-09-16 17:46:39', 308, NULL, NULL, 'IPAY0257', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 6, 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 (276, '2022-09-17 07:53:59', 309, NULL, NULL, 'IPAY0258', NULL, 'cash', '', '', '', '', '', '', '40.3000', NULL, 7, 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 (277, '2022-09-17 08:20:23', 310, NULL, NULL, 'IPAY0259', NULL, 'cash', '', '', '', '', '', '', '81.7000', NULL, 6, NULL, 'received', '', '100.0000', '18.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 08:33:37', 311, NULL, NULL, 'IPAY0260', NULL, 'cash', '', '', '', '', '', '', '179.8300', NULL, 7, NULL, 'received', '', '179.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 (279, '2022-09-17 08:41:46', 312, NULL, NULL, 'IPAY0261', NULL, 'cash', '', '', '', '', '', '', '168.8100', NULL, 6, NULL, 'received', '', '168.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 (280, '2022-09-17 08:44:16', 313, NULL, NULL, 'IPAY0262', NULL, 'cash', '', '', '', '', '', '', '10.4000', NULL, 6, 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 (281, '2022-09-17 08:56:23', 314, NULL, NULL, 'IPAY0263', NULL, 'cash', '', '', '', '', '', '', '317.5400', NULL, 6, NULL, 'received', '', '317.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 (282, '2022-09-17 09:19:46', 315, NULL, NULL, 'IPAY0264', NULL, 'cash', '', '', '', '', '', '', '46.6000', NULL, 6, 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 (283, '2022-09-17 09:25:39', 316, NULL, NULL, 'IPAY0265', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (284, '2022-09-17 09:53:54', 317, NULL, NULL, 'IPAY0266', NULL, 'cash', '', '', '', '', '', '', '54.7400', NULL, 7, NULL, 'received', '', '54.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 (285, '2022-09-17 10:06:59', 318, NULL, NULL, 'IPAY0267', NULL, 'cash', '', '', '', '', '', '', '649.5700', NULL, 6, NULL, 'received', '', '649.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 (286, '2022-09-17 10:12:51', 319, NULL, NULL, 'IPAY0268', NULL, 'cash', '', '', '', '', '', '', '1059.5400', NULL, 7, NULL, 'received', '', '1059.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 (287, '2022-09-17 10:15:37', 320, NULL, NULL, 'IPAY0269', NULL, 'cash', '', '', '', '', '', '', '677.4300', NULL, 6, NULL, 'received', '', '677.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 (288, '2022-09-17 10:25:00', 321, NULL, NULL, 'IPAY0270', NULL, 'cash', '', '', '', '', '', '', '18.6800', NULL, 7, NULL, 'received', '', '18.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 (289, '2022-09-17 10:38:00', 322, NULL, NULL, 'IPAY0271', NULL, 'cash', '', '', '', '', '', '', '306.2200', NULL, 6, NULL, 'received', '', '306.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 (290, '2022-09-17 10:41:14', 323, NULL, NULL, 'IPAY0272', NULL, 'cash', '', '', '', '', '', '', '494.8000', NULL, 6, NULL, 'received', '', '494.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 10:42:04', 324, NULL, NULL, 'IPAY0273', NULL, 'cash', '', '', '', '', '', '', '144.6300', NULL, 7, NULL, 'received', '', '144.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 (292, '2022-09-17 11:21:00', 325, NULL, NULL, 'IPAY0274', NULL, 'cash', '', '', '', '', '', '', '160.6500', NULL, 6, NULL, 'received', '', '160.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 (293, '2022-09-17 11:28:59', 327, NULL, NULL, 'IPAY0275', NULL, 'cash', '', '', '', '', '', '', '280.5000', NULL, 6, NULL, 'received', '', '280.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 19:34:00', 322, NULL, NULL, 'IPAY0276', NULL, 'cash', '', '', '', '', '', 'Visa', '14.2000', NULL, 6, NULL, 'received', '', '14.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 11:32:52', 328, NULL, NULL, 'IPAY0276', NULL, 'cash', '', '', '', '', '', '', '27.1600', NULL, 6, NULL, 'received', '', '27.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 (296, '2022-09-17 11:36:28', 329, NULL, NULL, 'IPAY0277', NULL, 'cash', '', '', '', '', '', '', '217.4000', NULL, 7, NULL, 'received', '', '217.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 11:50:32', 330, NULL, NULL, 'IPAY0278', NULL, 'cash', '', '', '', '', '', '', '26.4000', NULL, 7, NULL, 'received', '', '26.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 11:59:13', 331, NULL, NULL, 'IPAY0279', NULL, 'cash', '', '', '', '', '', '', '38.8000', NULL, 6, NULL, 'received', '', '200.0000', '161.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 12:00:41', 332, NULL, NULL, 'IPAY0280', NULL, 'cash', '', '', '', '', '', '', '23.7000', NULL, 7, NULL, 'received', '', '23.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 12:16:14', 333, NULL, NULL, 'IPAY0281', NULL, 'cash', '', '', '', '', '', '', '551.9000', NULL, 6, NULL, 'received', '', '551.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 (301, '2022-09-17 12:18:00', 334, NULL, NULL, 'IPAY0282', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '2725.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 (302, '2022-09-17 12:54:13', 335, NULL, NULL, 'IPAY0283', NULL, 'cash', '', '', '', '', '', '', '1205.6000', NULL, 7, NULL, 'received', '', '1205.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 12:56:29', 336, NULL, NULL, 'IPAY0284', NULL, 'cash', '', '', '', '', '', '', '79.6300', NULL, 6, NULL, 'received', '', '79.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 (304, '2022-09-17 13:09:18', 337, NULL, NULL, 'IPAY0285', NULL, 'cash', '', '', '', '', '', '', '69.9500', NULL, 6, NULL, 'received', '', '69.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 (305, '2022-09-17 13:14:00', 335, NULL, NULL, 'IPAY0286', NULL, 'cash', '', '', '', '', '', 'Visa', '152.2100', NULL, 6, NULL, 'received', '', '152.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 (306, '2022-09-17 13:21:24', 338, NULL, NULL, 'IPAY0286', NULL, 'cash', '', '', '', '', '', '', '63.2200', NULL, 6, NULL, 'received', '', '63.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 (307, '2022-09-17 13:28:00', 327, NULL, NULL, 'IPAY0287', NULL, 'cash', '', '', '', '', '', 'Visa', '-37.6000', NULL, 6, NULL, 'received', '', '-37.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 13:29:00', 332, NULL, NULL, 'IPAY0287', NULL, 'cash', '', '', '', '', '', 'Visa', '122.6600', NULL, 6, NULL, 'received', '', '122.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 (309, '2022-09-17 13:38:00', 339, NULL, NULL, 'IPAY0287', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '344.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 13:39:39', 340, NULL, NULL, 'IPAY0288', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 6, 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 (311, '2022-09-17 13:45:25', 341, NULL, NULL, 'IPAY0289', NULL, 'cash', '', '', '', '', '', '', '30.9500', NULL, 6, NULL, 'received', '', '30.9500', '-8.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 13:56:00', 335, NULL, NULL, 'IPAY0290', NULL, 'cash', '', '', '', '', '', 'Visa', '-35.3000', NULL, 6, 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 (313, '2022-09-17 14:23:31', 342, NULL, NULL, 'IPAY0290', NULL, 'cash', '', '', '', '', '', '', '306.5400', NULL, 7, NULL, 'received', '', '306.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 (314, '2022-09-17 14:26:55', 343, NULL, NULL, 'IPAY0291', NULL, 'cash', '', '', '', '', '', '', '27.3800', NULL, 7, NULL, 'received', '', '27.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 (315, '2022-09-17 14:32:11', 344, NULL, NULL, 'IPAY0292', NULL, 'cash', '', '', '', '', '', '', '144.7000', NULL, 6, NULL, 'received', '', '150.0000', '5.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 14:42:29', 345, NULL, NULL, 'IPAY0293', NULL, 'cash', '', '', '', '', '', '', '15.6000', NULL, 7, NULL, 'received', '', '15.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-17 14:46:59', 346, NULL, NULL, 'IPAY0294', NULL, 'cash', '', '', '', '', '', '', '608.2800', NULL, 7, NULL, 'received', '', '608.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 (318, '2022-09-17 14:47:00', 344, NULL, NULL, 'IPAY0295', NULL, 'cash', '', '', '', '', '', 'Visa', '5.9000', NULL, 6, NULL, 'received', '', '5.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 (319, '2022-09-17 15:01:40', 347, NULL, NULL, 'IPAY0295', NULL, 'cash', '', '', '', '', '', '', '14.1400', NULL, 7, NULL, 'received', '', '14.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 (320, '2022-09-17 15:30:00', 348, NULL, NULL, 'IPAY0296', NULL, 'cash', '', '', '', '', '', 'Visa', '27.0000', NULL, 6, 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 (321, '2022-09-17 15:47:57', 349, NULL, NULL, 'IPAY0296', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (322, '2022-09-19 07:43:44', 350, NULL, NULL, 'IPAY0297', NULL, 'cash', '', '', '', '', '', '', '134.2700', NULL, 6, NULL, 'received', '', '135.0000', '0.7300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 08:21:42', 351, NULL, NULL, 'IPAY0298', NULL, 'cash', '', '', '', '', '', '', '194.6700', NULL, 7, NULL, 'received', '', '194.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 (324, '2022-09-19 08:28:36', 352, NULL, NULL, 'IPAY0299', NULL, 'cash', '', '', '', '', '', '', '197.9700', NULL, 7, NULL, 'received', '', '197.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 (325, '2022-09-19 08:35:35', 353, NULL, NULL, 'IPAY0300', NULL, 'cash', '', '', '', '', '', '', '641.8500', NULL, 7, NULL, 'received', '', '641.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 (326, '2022-09-19 09:11:10', 354, NULL, NULL, 'IPAY0301', NULL, 'cash', '', '', '', '', '', '', '92.5900', NULL, 6, NULL, 'received', '', '92.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 (327, '2022-09-19 09:14:36', 355, NULL, NULL, 'IPAY0302', NULL, 'cash', '', '', '', '', '', '', '26.9000', NULL, 6, 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 (328, '2022-09-19 09:26:00', 354, NULL, NULL, 'IPAY0303', NULL, 'cash', '', '', '', '', '', 'Visa', '12.2000', NULL, 6, 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 (329, '2022-09-19 09:33:03', 356, NULL, NULL, 'IPAY0303', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 6, 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 (330, '2022-09-19 09:34:00', 357, NULL, NULL, 'IPAY0304', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '1793.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 (331, '2022-09-19 09:40:44', 358, NULL, NULL, 'IPAY0305', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '20.0000', '6.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 09:41:22', 359, NULL, NULL, 'IPAY0306', NULL, 'cash', '', '', '', '', '', '', '455.8400', NULL, 7, NULL, 'received', '', '455.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 (333, '2022-09-19 09:43:00', 360, NULL, NULL, 'IPAY0307', NULL, 'cash', '', '', '', '', '', 'Visa', '-13.5800', NULL, 6, 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 (334, '2022-09-19 09:43:00', 360, NULL, NULL, 'IPAY0308', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'returned', '', '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 (335, '2022-09-19 09:57:35', 361, NULL, NULL, 'IPAY0308', NULL, 'cash', '', '', '', '', '', '', '301.0900', NULL, 7, NULL, 'received', '', '301.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 (336, '2022-09-19 10:04:11', 362, NULL, NULL, 'IPAY0309', NULL, 'cash', '', '', '', '', '', '', '820.9900', NULL, 7, NULL, 'received', '', '820.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 (337, '2022-09-19 10:05:36', 363, NULL, NULL, 'IPAY0310', NULL, 'cash', '', '', '', '', '', '', '132.4000', NULL, 7, 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 (338, '2022-09-19 10:08:48', 364, NULL, NULL, 'IPAY0311', 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 (339, '2022-09-19 10:40:00', 357, NULL, NULL, 'IPAY0312', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (340, '2022-09-19 10:47:00', 357, NULL, NULL, 'IPAY0312', NULL, 'cash', '', '', '', '', '', 'Visa', '300.0000', NULL, 6, 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 (341, '2022-09-19 10:49:21', 365, NULL, NULL, 'IPAY0312', 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 (342, '2022-09-19 11:13:58', 366, NULL, NULL, 'IPAY0313', NULL, 'cash', '', '', '', '', '', '', '939.3000', NULL, 7, NULL, 'received', '', '939.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 11:29:46', 367, NULL, NULL, 'IPAY0314', NULL, 'cash', '', '', '', '', '', '', '1107.5200', NULL, 7, NULL, 'received', '', '1107.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 (344, '2022-09-19 11:49:10', 368, NULL, NULL, 'IPAY0315', NULL, 'cash', '', '', '', '', '', '', '49.5300', NULL, 7, NULL, 'received', '', '49.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 (345, '2022-09-19 11:58:10', 369, NULL, NULL, 'IPAY0316', NULL, 'cash', '', '', '', '', '', '', '157.7000', NULL, 7, NULL, 'received', '', '157.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 12:00:10', 370, NULL, NULL, 'IPAY0317', NULL, 'cash', '', '', '', '', '', '', '10.7600', NULL, 7, NULL, 'received', '', '10.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 (347, '2022-09-19 12:04:06', 371, NULL, NULL, 'IPAY0318', 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 (348, '2022-09-19 12:09:54', 372, NULL, NULL, 'IPAY0319', 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 (349, '2022-09-19 12:11:00', 373, NULL, NULL, 'IPAY0320', NULL, 'cash', '', '', '', '', '', '', '5135.8200', NULL, 6, NULL, 'received', '', '5135.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 (350, '2022-09-19 12:12:39', 374, NULL, NULL, 'IPAY0321', NULL, 'cash', '', '', '', '', '', '', '20.4000', NULL, 7, 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 (351, '2022-09-19 12:14:15', 375, NULL, NULL, 'IPAY0322', NULL, 'cash', '', '', '', '', '', '', '60.8900', NULL, 6, NULL, 'received', '', '71.0000', '10.1100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 12:21:20', 376, NULL, NULL, 'IPAY0323', NULL, 'cash', '', '', '', '', '', '', '274.6000', NULL, 6, NULL, 'received', '', '300.0000', '25.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 12:36:23', 377, NULL, NULL, 'IPAY0324', NULL, 'cash', '', '', '', '', '', '', '1151.1800', NULL, 7, NULL, 'received', '', '1151.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 (354, '2022-09-19 12:48:01', 378, NULL, NULL, 'IPAY0325', NULL, 'cash', '', '', '', '', '', '', '88.4800', NULL, 7, NULL, 'received', '', '88.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 (355, '2022-09-19 12:56:16', 379, NULL, NULL, 'IPAY0326', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 7, 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 (356, '2022-09-19 13:11:00', 172, NULL, NULL, 'IPAY0327', NULL, 'cash', '', '', '', '', '', 'Visa', '37.5000', NULL, 6, 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 (357, '2022-09-19 13:13:00', 366, NULL, NULL, 'IPAY0327', NULL, 'cash', '', '', '', '', '', 'Visa', '3.3000', NULL, 6, NULL, 'received', '', '3.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 13:19:19', 380, NULL, NULL, 'IPAY0327', 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 (359, '2022-09-19 13:43:16', 381, NULL, NULL, 'IPAY0328', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 6, NULL, 'received', '', '10.0000', '3.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 13:47:00', 377, NULL, NULL, 'IPAY0329', NULL, 'cash', '', '', '', '', '', 'Visa', '-29.7000', NULL, 6, NULL, 'received', '', '-29.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 14:21:53', 382, NULL, NULL, 'IPAY0329', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '50.0000', '36.8600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 14:26:31', 383, NULL, NULL, 'IPAY0330', NULL, 'cash', '', '', '', '', '', '', '1852.8400', NULL, 5, NULL, 'received', '', '1852.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 (363, '2022-09-19 14:35:06', 384, NULL, NULL, 'IPAY0331', NULL, 'cash', '', '', '', '', '', '', '51.4000', NULL, 6, NULL, 'received', '', '51.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 15:12:54', 386, NULL, NULL, 'IPAY0332', NULL, 'cash', '', '', '', '', '', '', '46.4000', NULL, 7, NULL, 'received', '', '46.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 15:46:31', 390, NULL, NULL, 'IPAY0333', NULL, 'cash', '', '', '', '', '', '', '52.5600', NULL, 7, NULL, 'received', '', '52.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 (366, '2022-09-19 15:48:47', 391, NULL, NULL, 'IPAY0334', NULL, 'cash', '', '', '', '', '', '', '83.3000', NULL, 6, NULL, 'received', '', '83.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 15:56:45', 392, NULL, NULL, 'IPAY0335', NULL, 'cash', '', '', '', '', '', '', '8.4000', NULL, 6, 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 (368, '2022-09-19 16:33:37', 393, NULL, NULL, 'IPAY0336', NULL, 'cash', '', '', '', '', '', '', '14.2100', NULL, 7, NULL, 'received', '', '14.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 (369, '2022-09-19 16:41:15', 394, NULL, NULL, 'IPAY0337', 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 (370, '2022-09-19 16:42:00', 395, NULL, NULL, 'IPAY0338', NULL, 'cash', '', '', '', '', '', 'Visa', '-14.2100', NULL, 6, 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 (371, '2022-09-19 16:49:48', 396, NULL, NULL, 'IPAY0339', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 6, NULL, 'received', '', '50.0000', '38.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 17:03:00', 383, NULL, NULL, 'IPAY0340', NULL, 'cash', '', '', '', '', '', 'Visa', '295.5100', NULL, 6, NULL, 'received', '', '295.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 (373, '2022-09-19 17:18:00', 388, NULL, NULL, 'IPAY0340', NULL, 'cash', '', '', '', '', '', 'Visa', '170.0000', NULL, 6, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-19 17:20:00', 319, NULL, NULL, 'IPAY0340', NULL, 'cash', '', '', '', '', '', 'Visa', '-292.1900', NULL, 6, NULL, 'received', '', '-292.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 (375, '2022-09-19 17:24:00', 314, NULL, NULL, 'IPAY0340', NULL, 'cash', '', '', '', '', '', 'Visa', '-40.4000', NULL, 6, 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 (376, '2022-09-19 17:27:29', 397, NULL, NULL, 'IPAY0340', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 6, NULL, 'received', '', '40.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 (377, '2022-09-20 07:38:00', 361, NULL, NULL, 'IPAY0341', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (378, '2022-09-20 07:50:00', 385, NULL, NULL, 'IPAY0341', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (379, '2022-09-20 07:53:24', 398, NULL, NULL, 'IPAY0341', NULL, 'cash', '', '', '', '', '', '', '64.1000', NULL, 7, NULL, 'received', '', '64.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 (380, '2022-09-20 08:07:48', 399, NULL, NULL, 'IPAY0342', 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 (381, '2022-09-20 08:12:52', 400, NULL, NULL, 'IPAY0343', NULL, 'cash', '', '', '', '', '', '', '201.5600', NULL, 7, NULL, 'received', '', '201.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 (382, '2022-09-20 08:56:32', 401, NULL, NULL, 'IPAY0344', NULL, 'cash', '', '', '', '', '', '', '53.3200', NULL, 7, NULL, 'received', '', '53.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 (383, '2022-09-20 09:13:00', 400, NULL, NULL, 'IPAY0345', NULL, 'cash', '', '', '', '', '', 'Visa', '-17.4000', NULL, 6, 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 (384, '2022-09-20 09:20:51', 402, NULL, NULL, 'IPAY0345', NULL, 'cash', '', '', '', '', '', '', '518.7200', NULL, 7, NULL, 'received', '', '518.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 (385, '2022-09-20 09:39:17', 403, NULL, NULL, 'IPAY0346', NULL, 'cash', '', '', '', '', '', '', '447.0200', NULL, 7, NULL, 'received', '', '447.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 (386, '2022-09-20 09:50:35', 404, NULL, NULL, 'IPAY0347', NULL, 'cash', '', '', '', '', '', '', '27.2600', NULL, 6, NULL, 'received', '', '30.0000', '2.7400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 09:55:44', 405, NULL, NULL, 'IPAY0348', 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 (388, '2022-09-20 10:16:59', 406, NULL, NULL, 'IPAY0349', NULL, 'cash', '', '', '', '', '', '', '248.9000', NULL, 6, NULL, 'received', '', '250.0000', '1.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 10:20:24', 407, NULL, NULL, 'IPAY0350', NULL, 'cash', '', '', '', '', '', '', '721.8300', NULL, 7, NULL, 'received', '', '721.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 (390, '2022-09-20 10:22:27', 408, NULL, NULL, 'IPAY0351', NULL, 'cash', '', '', '', '', '', '', '55.5300', NULL, 6, NULL, 'received', '', '55.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 (391, '2022-09-20 10:35:00', 402, NULL, NULL, 'IPAY0352', NULL, 'cash', '', '', '', '', '', 'Visa', '-3.6000', NULL, 6, 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 (392, '2022-09-20 10:57:10', 409, NULL, NULL, 'IPAY0352', NULL, 'cash', '', '', '', '', '', '', '444.5500', NULL, 6, NULL, 'received', '', '444.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 (393, '2022-09-20 11:05:01', 410, NULL, NULL, 'IPAY0353', NULL, 'cash', '', '', '', '', '', '', '166.8000', NULL, 6, NULL, 'received', '', '166.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 11:31:47', 411, NULL, NULL, 'IPAY0354', NULL, 'cash', '', '', '', '', '', '', '349.4400', NULL, 7, NULL, 'received', '', '349.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 (395, '2022-09-20 11:55:40', 412, NULL, NULL, 'IPAY0355', NULL, 'cash', '', '', '', '', '', '', '602.9800', NULL, 7, NULL, 'received', '', '602.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 (396, '2022-09-20 12:03:44', 413, NULL, NULL, 'IPAY0356', NULL, 'cash', '', '', '', '', '', '', '265.9500', NULL, 6, NULL, 'received', '', '265.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 (397, '2022-09-20 12:18:47', 414, NULL, NULL, 'IPAY0357', NULL, 'cash', '', '', '', '', '', '', '264.4100', NULL, 7, NULL, 'received', '', '264.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 (398, '2022-09-20 12:21:07', 415, NULL, NULL, 'IPAY0358', NULL, 'cash', '', '', '', '', '', '', '983.1000', NULL, 7, NULL, 'received', '', '983.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 (399, '2022-09-20 12:31:00', 416, NULL, NULL, 'IPAY0359', NULL, 'cash', '', '', '', '', '', '', '52.8900', NULL, 5, NULL, 'received', '', '52.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 (400, '2022-09-20 12:31:32', 417, NULL, NULL, 'IPAY0360', NULL, 'cash', '', '', '', '', '', '', '813.2400', NULL, 6, NULL, 'received', '', '813.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 (401, '2022-09-20 12:34:21', 418, NULL, NULL, 'IPAY0361', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 6, 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 (402, '2022-09-20 12:34:34', 419, NULL, NULL, 'IPAY0362', NULL, 'cash', '', '', '', '', '', '', '5.9000', NULL, 5, NULL, 'received', '', '5.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 (403, '2022-09-20 12:37:09', 420, NULL, NULL, 'IPAY0363', NULL, 'cash', '', '', '', '', '', '', '74.6000', NULL, 7, NULL, 'received', '', '74.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 13:04:12', 421, NULL, NULL, 'IPAY0364', NULL, 'cash', '', '', '', '', '', '', '416.9000', NULL, 5, NULL, 'received', '', '416.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 (405, '2022-09-20 13:08:31', 422, NULL, NULL, 'IPAY0365', NULL, 'cash', '', '', '', '', '', '', '186.5600', NULL, 5, NULL, 'received', '', '186.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 (406, '2022-09-20 13:08:34', 423, NULL, NULL, 'IPAY0366', NULL, 'cash', '', '', '', '', '', '', '105.3000', NULL, 7, NULL, 'received', '', '105.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 13:08:52', 424, NULL, NULL, 'IPAY0367', NULL, 'cash', '', '', '', '', '', '', '26.2000', NULL, 6, NULL, 'received', '', '40.0000', '13.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 13:21:38', 425, NULL, NULL, 'IPAY0368', NULL, 'cash', '', '', '', '', '', '', '680.9600', NULL, 7, NULL, 'received', '', '680.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 (409, '2022-09-20 13:30:47', 426, NULL, NULL, 'IPAY0369', NULL, 'cash', '', '', '', '', '', '', '176.1800', NULL, 7, NULL, 'received', '', '176.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 (410, '2022-09-20 13:33:04', 427, NULL, NULL, 'IPAY0370', NULL, 'cash', '', '', '', '', '', '', '59.6000', NULL, 6, NULL, 'received', '', '59.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 13:34:01', 428, NULL, NULL, 'IPAY0371', NULL, 'cash', '', '', '', '', '', '', '490.1100', NULL, 5, NULL, 'received', '', '490.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 (412, '2022-09-20 13:44:28', 429, NULL, NULL, 'IPAY0372', NULL, 'cash', '', '', '', '', '', '', '17.1000', NULL, 7, NULL, 'received', '', '17.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 (413, '2022-09-20 14:18:51', 430, NULL, NULL, 'IPAY0373', NULL, 'cash', '', '', '', '', '', '', '167.2000', NULL, 7, 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 (414, '2022-09-20 14:41:45', 431, NULL, NULL, 'IPAY0374', NULL, 'cash', '', '', '', '', '', '', '1316.3700', NULL, 7, NULL, 'received', '', '1316.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 (415, '2022-09-20 15:24:09', 432, NULL, NULL, 'IPAY0375', NULL, 'cash', '', '', '', '', '', '', '384.0000', NULL, 7, 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 (416, '2022-09-20 15:50:03', 433, NULL, NULL, 'IPAY0376', NULL, 'cash', '', '', '', '', '', '', '40.7400', NULL, 7, NULL, 'received', '', '40.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 (417, '2022-09-20 16:04:41', 434, NULL, NULL, 'IPAY0377', NULL, 'cash', '', '', '', '', '', '', '288.9800', NULL, 6, NULL, 'received', '', '288.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 (418, '2022-09-20 16:14:46', 435, NULL, NULL, 'IPAY0378', 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 (419, '2022-09-20 16:18:07', 436, NULL, NULL, 'IPAY0379', NULL, 'cash', '', '', '', '', '', '', '3254.5000', NULL, 7, NULL, 'received', '', '3254.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 16:20:07', 437, NULL, NULL, 'IPAY0380', NULL, 'cash', '', '', '', '', '', '', '87.8000', NULL, 6, NULL, 'received', '', '87.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 16:22:21', 438, NULL, NULL, 'IPAY0381', NULL, 'cash', '', '', '', '', '', '', '87.8000', NULL, 6, NULL, 'received', '', '87.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 16:26:00', 439, NULL, NULL, 'IPAY0382', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '87.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-20 16:51:58', 441, NULL, NULL, 'IPAY0383', 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 (424, '2022-09-21 07:58:06', 442, NULL, NULL, 'IPAY0384', NULL, 'cash', '', '', '', '', '', '', '46.3000', NULL, 7, NULL, 'received', '', '46.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 09:00:52', 443, NULL, NULL, 'IPAY0385', NULL, 'cash', '', '', '', '', '', '', '450.7200', NULL, 7, NULL, 'received', '', '450.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 (426, '2022-09-21 09:28:54', 445, NULL, NULL, 'IPAY0386', NULL, 'cash', '', '', '', '', '', '', '30.1400', NULL, 6, NULL, 'received', '', '30.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 (427, '2022-09-21 09:53:32', 446, NULL, NULL, 'IPAY0387', NULL, 'cash', '', '', '', '', '', '', '287.4200', NULL, 6, NULL, 'received', '', '287.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 (428, '2022-09-21 09:53:48', 447, NULL, NULL, 'IPAY0388', 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 (429, '2022-09-21 10:19:15', 448, NULL, NULL, 'IPAY0389', NULL, 'cash', '', '', '', '', '', '', '43.2700', NULL, 6, NULL, 'received', '', '45.0000', '1.7300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 10:26:09', 449, NULL, NULL, 'IPAY0390', NULL, 'cash', '', '', '', '', '', '', '26.0500', NULL, 6, NULL, 'received', '', '26.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 (431, '2022-09-21 10:31:49', 450, NULL, NULL, 'IPAY0391', NULL, 'cash', '', '', '', '', '', '', '102.3200', NULL, 6, NULL, 'received', '', '102.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 (432, '2022-09-21 10:37:49', 451, NULL, NULL, 'IPAY0392', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 6, 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 (433, '2022-09-21 10:39:50', 452, NULL, NULL, 'IPAY0393', NULL, 'cash', '', '', '', '', '', '', '69.1500', NULL, 7, NULL, 'received', '', '69.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 (434, '2022-09-21 10:44:02', 453, NULL, NULL, 'IPAY0394', NULL, 'cash', '', '', '', '', '', '', '73.7400', NULL, 7, NULL, 'received', '', '73.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 (435, '2022-09-21 10:48:08', 454, NULL, NULL, 'IPAY0395', NULL, 'cash', '', '', '', '', '', '', '16.1400', NULL, 7, NULL, 'received', '', '16.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 (436, '2022-09-21 10:51:46', 455, NULL, NULL, 'IPAY0396', 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 (437, '2022-09-21 10:57:56', 456, NULL, NULL, 'IPAY0397', NULL, 'cash', '', '', '', '', '', '', '41.9600', NULL, 7, NULL, 'received', '', '41.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 (438, '2022-09-21 11:00:31', 457, NULL, NULL, 'IPAY0398', NULL, 'cash', '', '', '', '', '', '', '5.8600', NULL, 7, NULL, 'received', '', '5.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 (439, '2022-09-21 11:09:09', 458, NULL, NULL, 'IPAY0399', NULL, 'cash', '', '', '', '', '', '', '119.2900', NULL, 7, NULL, 'received', '', '119.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 (440, '2022-09-21 11:16:03', 459, NULL, NULL, 'IPAY0400', NULL, 'cash', '', '', '', '', '', '', '99.2300', NULL, 7, NULL, 'received', '', '99.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 (441, '2022-09-21 11:17:00', NULL, NULL, 60, 'POP0003', NULL, 'cash', '', '', '', '', '', 'Visa', '21925.5600', NULL, 6, NULL, 'sent', '&lt;p&gt;Total on invoice is 21925&period;56&comma; system rounded it off&period;&lt;&sol;p&gt;', '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 (442, '2022-09-21 11:28:41', 460, NULL, NULL, 'IPAY0401', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 7, 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 (443, '2022-09-21 11:30:13', 461, NULL, NULL, 'IPAY0402', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (444, '2022-09-21 11:32:00', NULL, NULL, 61, 'ROOTER/19/9/22/INV.0003782', NULL, 'Cheque', '000163 CBG', '', '', '', '', 'Visa', '10500.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (445, '2022-09-21 11:50:16', 463, NULL, NULL, 'IPAY0403', NULL, 'cash', '', '', '', '', '', '', '156.2800', NULL, 7, NULL, 'received', '', '156.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 (446, '2022-09-21 12:02:22', 465, NULL, NULL, 'IPAY0404', NULL, 'cash', '', '', '', '', '', '', '200.3400', NULL, 6, NULL, 'received', '', '200.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 (447, '2022-09-21 12:02:43', 466, NULL, NULL, 'IPAY0405', NULL, 'cash', '', '', '', '', '', '', '392.6900', NULL, 7, NULL, 'received', '', '392.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 (448, '2022-09-21 12:15:15', 467, NULL, NULL, 'IPAY0406', NULL, 'cash', '', '', '', '', '', '', '23.4400', NULL, 7, NULL, 'received', '', '23.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 (449, '2022-09-21 12:16:25', 468, NULL, NULL, 'IPAY0407', NULL, 'cash', '', '', '', '', '', '', '1.4000', NULL, 6, NULL, 'received', 'RETURNED LIVOPAT AND NEUROPAT WORTH 61.55', '1.4000', '-61.4500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 12:21:25', 469, NULL, NULL, 'IPAY0408', NULL, 'cash', '', '', '', '', '', '', '158.6400', NULL, 6, NULL, 'received', '', '158.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 (451, '2022-09-21 12:28:34', 470, NULL, NULL, 'IPAY0409', 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 (452, '2022-09-21 12:33:00', 417, NULL, NULL, 'IPAY0410', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (453, '2022-09-21 12:33:00', 472, NULL, NULL, 'IPAY0410', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '425.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 13:04:48', 474, NULL, NULL, 'IPAY0411', NULL, 'cash', '', '', '', '', '', '', '29.4500', NULL, 7, NULL, 'received', '', '29.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 (455, '2022-09-21 13:11:06', 475, NULL, NULL, 'IPAY0412', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '100.0000', '86.8600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 13:23:49', 476, NULL, NULL, 'IPAY0413', NULL, 'cash', '', '', '', '', '', '', '2014.1200', NULL, 7, NULL, 'received', '', '2014.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 (457, '2022-09-21 13:59:08', 477, NULL, NULL, 'IPAY0414', NULL, 'cash', '', '', '', '', '', '', '2282.0900', NULL, 7, NULL, 'received', '', '2282.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 (458, '2022-09-21 14:02:00', 464, NULL, NULL, 'IPAY0415', NULL, 'cash', '', '', '', '', '', 'Visa', '1039.7800', NULL, 6, NULL, 'received', '', '1039.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 (459, '2022-09-21 14:06:33', 478, NULL, NULL, 'IPAY0415', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 6, NULL, 'received', '', '200.0000', '158.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 14:37:14', 480, NULL, NULL, 'IPAY0416', NULL, 'cash', '', '', '', '', '', '', '442.1600', NULL, 7, NULL, 'received', '', '442.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 (461, '2022-09-21 14:43:40', 481, NULL, NULL, 'IPAY0417', NULL, 'cash', '', '', '', '', '', '', '95.3400', NULL, 6, NULL, 'received', '', '100.0000', '4.6600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 14:46:43', 482, NULL, NULL, 'IPAY0418', NULL, 'cash', '', '', '', '', '', '', '2064.0400', NULL, 7, NULL, 'received', '', '2064.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 (463, '2022-09-21 15:04:08', 483, NULL, NULL, 'IPAY0419', NULL, 'cash', '', '', '', '', '', '', '502.7100', NULL, 6, NULL, 'received', '', '502.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 (464, '2022-09-21 15:28:00', 466, NULL, NULL, 'IPAY0420', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (465, '2022-09-21 15:42:54', 485, NULL, NULL, 'IPAY0420', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 7, 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 (466, '2022-09-20 00:00:00', 486, NULL, NULL, 'IPAY0421', NULL, 'cash', '', '', '', '', '', 'Visa', '-454.9100', NULL, 2, 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 (467, '2022-09-21 16:16:13', 487, NULL, NULL, 'IPAY0422', 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 (468, '2022-09-21 16:20:30', 488, NULL, NULL, 'IPAY0423', NULL, 'cash', '', '', '', '', '', '', '1216.1100', NULL, 7, NULL, 'received', '', '1216.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 (469, '2022-09-21 16:36:30', 489, NULL, NULL, 'IPAY0424', NULL, 'cash', '', '', '', '', '', '', '285.2300', NULL, 6, NULL, 'received', '', '285.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 (470, '2022-09-21 16:37:32', 490, NULL, NULL, 'IPAY0425', NULL, 'cash', '', '', '', '', '', '', '54.2000', NULL, 7, NULL, 'received', '', '54.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-21 17:02:58', 491, NULL, NULL, 'IPAY0426', NULL, 'cash', '', '', '', '', '', '', '121.5600', NULL, 7, NULL, 'received', '', '121.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 (472, '2022-09-21 17:15:00', 489, NULL, NULL, 'IPAY0427', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0200', NULL, 6, NULL, 'received', '', '0.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 (473, '2022-09-21 17:26:46', 492, NULL, NULL, 'IPAY0427', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 7, NULL, 'received', '', '13.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 (474, '2022-09-21 17:32:42', 493, NULL, NULL, 'IPAY0428', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 6, 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 (475, '2022-09-21 17:34:33', 494, NULL, NULL, 'IPAY0429', NULL, 'cash', '', '', '', '', '', '', '3.5200', NULL, 7, NULL, 'received', '', '3.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 (476, '2022-09-21 17:34:00', 492, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '0.6600', NULL, 6, NULL, 'received', '', '0.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 (477, '2022-09-21 17:35:00', 479, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '59.0000', NULL, 6, 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 (478, '2022-09-21 17:35:00', 473, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '20.1000', NULL, 6, 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 (479, '2022-09-21 17:36:00', 471, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '285.7400', NULL, 6, NULL, 'received', '', '285.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 (480, '2022-09-21 17:36:00', 444, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '346.4100', NULL, 6, NULL, 'received', '', '346.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 (481, '2022-09-21 17:37:00', 462, NULL, NULL, 'IPAY0430', NULL, 'cash', '', '', '', '', '', 'Visa', '88.9000', NULL, 6, NULL, 'received', '', '88.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 (482, '2022-09-21 17:43:22', 495, NULL, NULL, 'IPAY0430', 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 (483, '2022-09-21 17:52:11', 496, NULL, NULL, 'IPAY0431', 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 (484, '2022-09-22 07:39:24', 497, NULL, NULL, 'IPAY0432', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (485, '2022-09-22 07:41:45', 498, NULL, NULL, 'IPAY0433', NULL, 'cash', '', '', '', '', '', '', '82.6000', NULL, 6, 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 (486, '2022-09-22 07:46:25', 499, NULL, NULL, 'IPAY0434', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 6, NULL, 'received', '', '200.0000', '162.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 07:53:02', 500, NULL, NULL, 'IPAY0435', NULL, 'cash', '', '', '', '', '', '', '124.0000', NULL, 6, 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 (488, '2022-09-22 08:06:31', 501, NULL, NULL, 'IPAY0436', NULL, 'cash', '', '', '', '', '', '', '142.5700', NULL, 6, NULL, 'received', '', '150.0000', '7.4300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 08:27:01', 502, NULL, NULL, 'IPAY0437', NULL, 'cash', '', '', '', '', '', '', '130.1400', NULL, 7, NULL, 'received', '', '130.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 (490, '2022-09-22 08:39:21', 503, NULL, NULL, 'IPAY0438', NULL, 'cash', '', '', '', '', '', '', '47.9000', NULL, 7, NULL, 'received', '', '47.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, '2022-09-22 08:55:31', 504, NULL, NULL, 'IPAY0439', NULL, 'cash', '', '', '', '', '', '', '250.4000', NULL, 7, NULL, 'received', '', '250.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 10:12:06', 507, NULL, NULL, 'IPAY0440', NULL, 'cash', '', '', '', '', '', '', '198.7400', NULL, 6, NULL, 'received', '', '200.0000', '1.2600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 10:13:27', 508, NULL, NULL, 'IPAY0441', NULL, 'cash', '', '', '', '', '', '', '409.4800', NULL, 6, NULL, 'received', '', '410.0000', '0.5200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 10:25:00', 507, NULL, NULL, 'IPAY0442', NULL, 'cash', '', '', '', '', '', 'Visa', '-23.2000', NULL, 6, NULL, 'received', '', '-23.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 10:35:00', 509, NULL, NULL, 'IPAY0442', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '6865.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 (496, '2022-09-22 10:51:35', 510, NULL, NULL, 'IPAY0443', NULL, 'cash', '', '', '', '', '', '', '950.9000', NULL, 6, NULL, 'received', '', '950.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 (497, '2022-09-22 11:46:22', 511, NULL, NULL, 'IPAY0444', NULL, 'cash', '', '', '', '', '', '', '276.4800', NULL, 7, NULL, 'received', '', '276.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 (498, '2022-09-22 11:48:32', 512, NULL, NULL, 'IPAY0445', NULL, 'cash', '', '', '', '', '', '', '21.2100', NULL, 6, NULL, 'received', '', '21.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 (499, '2022-09-22 11:49:56', 513, NULL, NULL, 'IPAY0446', 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 (500, '2022-09-22 11:51:42', 514, NULL, NULL, 'IPAY0447', 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 (501, '2022-09-22 12:02:10', 515, NULL, NULL, 'IPAY0448', NULL, 'cash', '', '', '', '', '', '', '576.4500', NULL, 7, NULL, 'received', '', '576.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 (502, '2022-09-22 12:10:31', 516, NULL, NULL, 'IPAY0449', NULL, 'cash', '', '', '', '', '', '', '72.6700', NULL, 7, NULL, 'received', '', '72.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 (503, '2022-09-22 12:30:07', 517, NULL, NULL, 'IPAY0450', NULL, 'cash', '', '', '', '', '', '', '26.1200', NULL, 7, NULL, 'received', '', '26.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 (504, '2022-09-22 12:50:47', 519, NULL, NULL, 'IPAY0451', NULL, 'cash', '', '', '', '', '', '', '283.6000', NULL, 5, NULL, 'received', '', '283.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 13:01:44', 521, NULL, NULL, 'IPAY0452', 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 (506, '2022-09-22 13:38:38', 522, NULL, NULL, 'IPAY0453', NULL, 'cash', '', '', '', '', '', '', '725.2500', NULL, 7, NULL, 'received', '', '725.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 (507, '2022-09-22 13:45:00', 520, NULL, NULL, 'IPAY0454', NULL, 'cash', '', '', '', '', '', 'Visa', '1393.0000', NULL, 6, NULL, 'received', '', '1393.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 13:58:52', 524, NULL, NULL, 'IPAY0454', NULL, 'cash', '', '', '', '', '', '', '52.8000', NULL, 7, NULL, 'received', '', '52.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 14:37:00', 522, NULL, NULL, 'IPAY0455', NULL, 'cash', '', '', '', '', '', 'Visa', '-37.2000', NULL, 6, 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 (510, '2022-09-22 14:39:18', 525, NULL, NULL, 'IPAY0455', NULL, 'cash', '', '', '', '', '', '', '30.4100', NULL, 6, NULL, 'received', '', '30.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 (511, '2022-09-22 14:42:05', 526, NULL, NULL, 'IPAY0456', NULL, 'cash', '', '', '', '', '', '', '162.9000', NULL, 6, NULL, 'received', '', '200.0000', '37.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 14:44:04', 527, NULL, NULL, 'IPAY0457', NULL, 'cash', '', '', '', '', '', '', '33.2800', NULL, 6, NULL, 'received', '', '33.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 (513, '2022-09-22 14:48:06', 528, NULL, NULL, 'IPAY0458', NULL, 'cash', '', '', '', '', '', '', '8.3200', NULL, 6, NULL, 'received', '', '8.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 (514, '2022-09-22 15:10:09', 529, NULL, NULL, 'IPAY0459', NULL, 'cash', '', '', '', '', '', '', '452.0600', NULL, 6, NULL, 'received', '', '452.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 (515, '2022-09-22 15:12:34', 530, NULL, NULL, 'IPAY0460', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 7, NULL, 'received', '', '15.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 (516, '2022-09-22 15:13:54', 531, NULL, NULL, 'IPAY0461', NULL, 'cash', '', '', '', '', '', '', '79.1500', NULL, 6, NULL, 'received', '', '79.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 (517, '2022-09-22 15:14:53', 532, NULL, NULL, 'IPAY0462', NULL, 'cash', '', '', '', '', '', '', '58.7000', NULL, 7, NULL, 'received', '', '58.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 15:17:47', 533, NULL, NULL, 'IPAY0463', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 6, NULL, 'received', '', '25.0000', '1.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 15:45:26', 535, NULL, NULL, 'IPAY0464', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 7, NULL, 'received', '', '15.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 (520, '2022-09-22 15:53:30', 536, NULL, NULL, 'IPAY0465', 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 (521, '2022-09-22 16:25:32', 537, NULL, NULL, 'IPAY0466', 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 (522, '2022-09-22 16:40:10', 538, NULL, NULL, 'IPAY0467', NULL, 'cash', '', '', '', '', '', '', '22.2000', NULL, 7, NULL, 'received', '', '22.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-22 16:44:00', NULL, NULL, 63, 'POP0004', NULL, 'cash', '', '', '', '', '', 'Visa', '625.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (524, '2022-09-23 07:55:30', 540, NULL, NULL, 'IPAY0468', NULL, 'cash', '', '', '', '', '', '', '19.1000', NULL, 6, NULL, 'received', '', '19.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 (525, '2022-09-23 08:11:15', 541, NULL, NULL, 'IPAY0469', NULL, 'cash', '', '', '', '', '', '', '43.2800', NULL, 7, NULL, 'received', '', '43.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 (526, '2022-09-23 08:11:00', 542, NULL, NULL, 'IPAY0470', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, 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 (527, '2022-09-23 08:37:00', 544, NULL, NULL, 'IPAY0471', NULL, 'cash', '', '', '', '', '', '', '9.9600', NULL, 7, NULL, 'received', '', '9.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 (528, '2022-09-23 08:53:38', 545, NULL, NULL, 'IPAY0472', NULL, 'cash', '', '', '', '', '', '', '42.6700', NULL, 6, NULL, 'received', '', '50.0000', '7.3300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-23 09:09:00', 523, NULL, NULL, 'IPAY0473', NULL, 'cash', '', '', '', '', '', 'Visa', '503.7100', NULL, 6, NULL, 'received', '', '503.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 (530, '2022-09-23 09:10:00', 506, NULL, NULL, 'IPAY0473', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (531, '2022-09-23 09:10:00', 505, NULL, NULL, 'IPAY0473', NULL, 'cash', '', '', '', '', '', 'Visa', '183.9000', NULL, 6, 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 (532, '2022-09-23 09:13:00', 518, NULL, NULL, 'IPAY0473', NULL, 'cash', '', '', '', '', '', 'Visa', '64.3200', NULL, 6, NULL, 'received', '', '64.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 (533, '2022-09-23 09:30:52', 546, NULL, NULL, 'IPAY0473', NULL, 'cash', '', '', '', '', '', '', '5.6000', NULL, 6, 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 (534, '2022-09-23 09:37:05', 547, NULL, NULL, 'IPAY0474', 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 (535, '2022-09-23 09:51:39', 548, NULL, NULL, 'IPAY0475', NULL, 'cash', '', '', '', '', '', '', '19.9000', NULL, 7, NULL, 'received', '', '19.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 (536, '2022-09-23 09:52:26', 549, NULL, NULL, 'IPAY0476', NULL, 'cash', '', '', '', '', '', '', '54.1700', NULL, 7, NULL, 'received', '', '54.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 (537, '2022-09-23 10:10:00', 550, NULL, NULL, 'IPAY0477', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', 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 (538, '2022-09-23 10:54:14', 552, NULL, NULL, 'IPAY0478', NULL, 'cash', '', '', '', '', '', '', '22.2000', NULL, 7, NULL, 'received', '', '22.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-23 10:57:17', 553, NULL, NULL, 'IPAY0479', NULL, 'cash', '', '', '', '', '', '', '9.2000', NULL, 7, NULL, 'received', '', '9.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-23 11:21:29', 554, NULL, NULL, 'IPAY0480', NULL, 'cash', '', '', '', '', '', '', '2076.0600', NULL, 7, NULL, 'received', '', '2076.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 (541, '2022-09-23 11:24:46', 555, NULL, NULL, 'IPAY0481', NULL, 'cash', '', '', '', '', '', '', '30.1400', NULL, 7, NULL, 'received', '', '30.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 (542, '2022-09-23 11:29:20', 556, NULL, NULL, 'IPAY0482', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 7, 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 (543, '2022-09-23 12:40:50', 557, NULL, NULL, 'IPAY0483', NULL, 'cash', '', '', '', '', '', '', '39.2000', NULL, 7, 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 (544, '2022-09-23 12:57:42', 558, NULL, NULL, 'IPAY0484', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 7, NULL, 'received', '', '13.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 (545, '2022-09-23 12:59:04', 559, NULL, NULL, 'IPAY0485', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 7, 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 (546, '2022-09-23 13:41:52', 562, NULL, NULL, 'IPAY0486', NULL, 'cash', '', '', '', '', '', '', '350.0900', NULL, 7, NULL, 'received', '', '350.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 (547, '2022-09-23 13:44:28', 563, NULL, NULL, 'IPAY0487', NULL, 'cash', '', '', '', '', '', '', '249.3500', NULL, 6, NULL, 'received', '', '249.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 (548, '2022-09-23 13:56:29', 564, NULL, NULL, 'IPAY0488', NULL, 'cash', '', '', '', '', '', '', '990.5200', NULL, 7, NULL, 'received', '', '990.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 (549, '2022-09-23 13:56:46', 565, NULL, NULL, 'IPAY0489', NULL, 'cash', '', '', '', '', '', '', '49.0800', NULL, 5, NULL, 'received', '', '49.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 (550, '2022-09-23 14:03:41', 566, NULL, NULL, 'IPAY0490', 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 (551, '2022-09-23 14:26:18', 567, NULL, NULL, 'IPAY0491', NULL, 'cash', '', '', '', '', '', '', '144.8900', NULL, 6, NULL, 'received', '', '144.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 (552, '2022-09-23 14:48:00', 561, NULL, NULL, 'IPAY0492', NULL, 'cash', '', '', '', '', '', 'Visa', '1955.8400', NULL, 6, NULL, 'received', '', '1955.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 (553, '2022-09-23 15:01:55', 568, NULL, NULL, 'IPAY0492', NULL, 'cash', '', '', '', '', '', '', '59.2400', NULL, 6, NULL, 'received', '', '59.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 (554, '2022-09-23 15:03:23', 569, NULL, NULL, 'IPAY0493', NULL, 'cash', '', '', '', '', '', '', '15.8200', NULL, 7, NULL, 'received', '', '15.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 (555, '2022-09-23 15:03:57', 570, NULL, NULL, 'IPAY0494', 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 (556, '2022-09-23 15:05:40', 571, NULL, NULL, 'IPAY0495', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 7, 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 (557, '2022-09-23 15:11:23', 572, NULL, NULL, 'IPAY0496', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 6, 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 (558, '2022-09-23 15:35:00', 573, NULL, NULL, 'IPAY0497', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 5, NULL, 'received', '', '2093.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 (559, '2022-09-23 15:54:29', 574, NULL, NULL, 'IPAY0498', NULL, 'cash', '', '', '', '', '', '', '66.5200', NULL, 5, NULL, 'received', '', '66.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 (560, '2022-09-23 16:03:20', 575, NULL, NULL, 'IPAY0499', NULL, 'cash', '', '', '', '', '', '', '1064.8300', NULL, 6, NULL, 'received', '', '1064.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 (561, '2022-09-23 16:06:37', 576, NULL, NULL, 'IPAY0500', NULL, 'cash', '', '', '', '', '', '', '63.8600', NULL, 7, NULL, 'received', '', '63.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 (562, '2022-09-23 16:44:18', 578, NULL, NULL, 'IPAY0501', NULL, 'cash', '', '', '', '', '', '', '18.3000', NULL, 6, NULL, 'received', '', '18.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-23 16:52:21', 579, NULL, NULL, 'IPAY0502', NULL, 'cash', '', '', '', '', '', '', '59.5100', NULL, 7, NULL, 'received', '', '59.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 (564, '2022-09-23 17:00:17', 581, NULL, NULL, 'IPAY0503', 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 (565, '2022-09-24 07:58:16', 582, NULL, NULL, 'IPAY0504', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 7, 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 (566, '2022-09-24 07:59:41', 583, NULL, NULL, 'IPAY0505', 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 (567, '2022-09-24 08:01:57', 584, NULL, NULL, 'IPAY0506', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 7, 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 (568, '2022-09-24 08:11:22', 585, NULL, NULL, 'IPAY0507', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 7, NULL, 'received', '', '28.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 (569, '2022-09-24 09:02:02', 586, NULL, NULL, 'IPAY0508', NULL, 'cash', '', '', '', '', '', '', '55.1000', NULL, 7, NULL, 'received', '', '55.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 (570, '2022-09-24 09:03:11', 587, NULL, NULL, 'IPAY0509', NULL, 'cash', '', '', '', '', '', '', '3.2000', NULL, 7, 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 (571, '2022-09-24 09:25:42', 589, NULL, NULL, 'IPAY0510', NULL, 'cash', '', '', '', '', '', '', '353.3500', NULL, 7, NULL, 'received', '', '353.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 (572, '2022-09-24 09:41:00', 590, NULL, NULL, 'IPAY0511', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '1080.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 (573, '2022-09-24 09:59:00', 588, NULL, NULL, 'IPAY0512', NULL, 'cash', '', '', '', '', '', 'Visa', '550.0000', NULL, 6, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 10:39:00', 590, NULL, NULL, 'IPAY0512', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (575, '2022-09-24 10:39:00', 590, NULL, NULL, 'IPAY0512', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, 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 (576, '2022-09-24 11:04:16', 598, NULL, NULL, 'IPAY0512', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 7, NULL, 'received', '', '13.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 (577, '2022-09-24 11:08:39', 599, NULL, NULL, 'IPAY0513', NULL, 'cash', '', '', '', '', '', '', '33.5900', NULL, 6, NULL, 'received', '', '33.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 (578, '2022-09-24 11:17:09', 600, NULL, NULL, 'IPAY0514', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 6, 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 (579, '2022-09-24 11:18:40', 602, NULL, NULL, 'IPAY0515', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 6, NULL, 'received', '', '28.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 (580, '2022-09-24 11:29:58', 603, NULL, NULL, 'IPAY0516', NULL, 'cash', '', '', '', '', '', '', '100.3100', NULL, 6, NULL, 'received', '', '100.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 (581, '2022-09-24 11:49:41', 604, NULL, NULL, 'IPAY0517', NULL, 'cash', '', '', '', '', '', '', '86.1000', NULL, 7, NULL, 'received', '', '86.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 (582, '2022-09-24 12:02:45', 607, NULL, NULL, 'IPAY0518', NULL, 'cash', '', '', '', '', '', '', '380.3200', NULL, 6, NULL, 'received', '', '380.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 (583, '2022-09-24 12:11:00', 591, NULL, NULL, 'IPAY0519', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 6, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 12:38:00', 593, NULL, NULL, 'IPAY0519', NULL, 'cash', '', '', '', '', '', 'Visa', '134.8000', NULL, 6, 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 (585, '2022-09-24 12:39:00', 592, NULL, NULL, 'IPAY0519', NULL, 'cash', '', '', '', '', '', 'Visa', '1311.9900', NULL, 6, NULL, 'received', '', '1311.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 (586, '2022-09-24 12:39:00', 551, NULL, NULL, 'IPAY0519', NULL, 'cash', '', '', '', '', '', 'Visa', '887.5400', NULL, 6, NULL, 'received', '', '887.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 (587, '2022-09-24 12:48:25', 608, NULL, NULL, 'IPAY0519', NULL, 'cash', '', '', '', '', '', '', '42.8000', NULL, 6, 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 (588, '2022-09-24 13:00:57', 610, NULL, NULL, 'IPAY0520', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 6, NULL, 'received', '', '20.0000', '2.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 13:14:51', 611, NULL, NULL, 'IPAY0521', NULL, 'cash', '', '', '', '', '', '', '2371.7300', NULL, 7, NULL, 'received', '', '2371.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 (590, '2022-09-24 13:18:00', 606, NULL, NULL, 'IPAY0522', NULL, 'cash', '', '', '', '', '', 'Visa', '303.4100', NULL, 6, NULL, 'received', '', '303.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 (591, '2022-09-24 13:22:20', 612, NULL, NULL, 'IPAY0522', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 6, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 13:30:39', 613, NULL, NULL, 'IPAY0523', NULL, 'cash', '', '', '', '', '', '', '101.7200', NULL, 7, NULL, 'received', '', '101.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 (593, '2022-09-24 13:46:45', 614, NULL, NULL, 'IPAY0524', NULL, 'cash', '', '', '', '', '', '', '1178.1000', NULL, 7, NULL, 'received', '', '1178.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 (594, '2022-09-24 13:52:41', 615, NULL, NULL, 'IPAY0525', NULL, 'cash', '', '', '', '', '', '', '63.2200', NULL, 6, NULL, 'received', '', '63.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 (595, '2022-09-24 14:07:28', 616, NULL, NULL, 'IPAY0526', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 6, 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 (596, '2022-09-24 14:11:25', 617, NULL, NULL, 'IPAY0527', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 7, 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 (597, '2022-09-24 14:18:00', 611, NULL, NULL, 'IPAY0528', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (598, '2022-09-24 14:24:12', 618, NULL, NULL, 'IPAY0528', NULL, 'cash', '', '', '', '', '', '', '248.9600', NULL, 7, NULL, 'received', '', '248.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 (599, '2022-09-24 14:28:04', 619, NULL, NULL, 'IPAY0529', NULL, 'cash', '', '', '', '', '', '', '53.4000', NULL, 6, NULL, 'received', 'part of sept 19th sales', '53.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 14:28:39', 620, NULL, NULL, 'IPAY0530', NULL, 'cash', '', '', '', '', '', '', '20.9000', NULL, 7, NULL, 'received', '', '20.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 (601, '2022-09-24 14:30:46', 621, NULL, NULL, 'IPAY0531', NULL, 'cash', '', '', '', '', '', '', '13.4000', NULL, 6, NULL, 'received', '', '13.4000', '-99.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-24 14:35:46', 622, NULL, NULL, 'IPAY0532', NULL, 'cash', '', '', '', '', '', '', '22.1400', NULL, 7, NULL, 'received', '', '22.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 (603, '2022-09-24 14:37:02', 623, NULL, NULL, 'IPAY0533', NULL, 'cash', '', '', '', '', '', '', '749.9300', NULL, 6, NULL, 'received', '', '749.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 (604, '2022-09-24 14:38:13', 624, NULL, NULL, 'IPAY0534', NULL, 'cash', '', '', '', '', '', '', '923.2300', NULL, 7, NULL, 'received', '', '923.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 (605, '2022-09-24 14:46:23', 625, NULL, NULL, 'IPAY0535', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 7, 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 (606, '2022-09-24 14:58:43', 626, NULL, NULL, 'IPAY0536', NULL, 'cash', '', '', '', '', '', '', '84.3000', NULL, 7, 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 (607, '2022-09-24 15:00:42', 627, NULL, NULL, 'IPAY0537', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 7, 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 (608, '2022-09-24 15:37:00', 623, NULL, NULL, 'IPAY0538', NULL, 'cash', '', '', '', '', '', 'Visa', '-0.0800', NULL, 6, NULL, 'received', '', '-0.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 (609, '2022-09-24 15:39:43', 628, NULL, NULL, 'IPAY0538', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (610, '2022-09-24 15:44:54', 629, NULL, NULL, 'IPAY0539', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 7, 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 (611, '2022-09-26 07:48:20', 630, NULL, NULL, 'IPAY0540', NULL, 'cash', '', '', '', '', '', '', '115.3500', NULL, 7, NULL, 'received', '', '115.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 (612, '2022-09-26 07:48:49', 631, NULL, NULL, 'IPAY0541', 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 (613, '2022-09-26 08:01:20', 632, NULL, NULL, 'IPAY0542', NULL, 'cash', '', '', '', '', '', '', '619.7400', NULL, 6, NULL, 'received', '', '619.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 (614, '2022-09-26 08:10:00', 632, NULL, NULL, 'IPAY0543', NULL, 'cash', '', '', '', '', '', 'Visa', '-5.5000', NULL, 6, 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 (615, '2022-09-26 09:02:00', 633, NULL, NULL, 'IPAY0543', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '499.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 (616, '2022-09-26 09:21:56', 634, NULL, NULL, 'IPAY0544', NULL, 'cash', '', '', '', '', '', '', '470.4000', NULL, 7, NULL, 'received', '', '470.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-26 09:23:00', 543, NULL, NULL, 'IPAY0545', NULL, 'cash', '', '', '', '', '', 'Visa', '428.9700', NULL, 6, NULL, 'received', '', '428.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 (618, '2022-09-26 10:34:58', 639, NULL, NULL, 'IPAY0545', NULL, 'cash', '', '', '', '', '', '', '713.5600', NULL, 6, NULL, 'received', '', '713.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 (619, '2022-09-26 10:40:10', 641, NULL, NULL, 'IPAY0546', NULL, 'cash', '', '', '', '', '', '', '30.7000', NULL, 7, NULL, 'received', '', '30.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-26 10:46:00', 564, NULL, NULL, 'IPAY0547', NULL, 'cash', '', '', '', '', '', 'Visa', '26.6200', NULL, 6, NULL, 'received', '', '26.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 (621, '2022-09-26 10:46:00', 560, NULL, NULL, 'IPAY0547', NULL, 'cash', '', '', '', '', '', 'Visa', '318.3600', NULL, 6, NULL, 'received', '', '318.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 (622, '2022-09-26 10:56:31', 642, NULL, NULL, 'IPAY0547', NULL, 'cash', '', '', '', '', '', '', '13.6400', NULL, 6, NULL, 'received', '', '13.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 (623, '2022-09-26 11:41:00', 636, NULL, NULL, 'IPAY0548', NULL, 'cash', '', '', '', '', '', 'Visa', '103.1800', NULL, 6, NULL, 'received', '', '103.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 (624, '2022-09-26 12:50:00', 645, NULL, NULL, 'IPAY0548', NULL, 'cash', '', '', '', '', '', 'Visa', '519.0000', NULL, 6, NULL, 'received', '', '825.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 (625, '2022-09-26 13:40:53', 648, NULL, NULL, 'IPAY0549', NULL, 'cash', '', '', '', '', '', '', '78.0300', NULL, 7, NULL, 'received', '', '78.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 (626, '2022-09-26 14:33:52', 650, NULL, NULL, 'IPAY0550', NULL, 'other', '', '', '', '', '', '', '634.7900', NULL, 7, NULL, 'received', '', '634.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 (627, '2022-09-26 14:53:15', 651, NULL, NULL, 'IPAY0551', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 7, NULL, 'received', '', '28.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 (628, '2022-09-26 15:05:04', 652, NULL, NULL, 'IPAY0552', NULL, 'cash', '', '', '', '', '', '', '144.4000', NULL, 7, NULL, 'received', '', '144.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-26 15:21:00', NULL, NULL, 69, 'POP0005', NULL, 'Cheque', '000164 CBG', '', '', '', '', 'Visa', '16800.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (630, '2022-09-26 15:45:57', 654, NULL, NULL, 'IPAY0553', NULL, 'cash', '', '', '', '', '', '', '250.4400', NULL, 7, 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 (631, '2022-09-26 15:49:46', 655, NULL, NULL, 'IPAY0554', NULL, 'cash', '', '', '', '', '', '', '196.0300', NULL, 6, NULL, 'received', '', '196.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 (632, '2022-09-26 15:57:55', 657, NULL, NULL, 'IPAY0555', NULL, 'cash', '', '', '', '', '', '', '21.4500', NULL, 6, NULL, 'received', '', '21.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 (633, '2022-09-26 16:36:07', 658, NULL, NULL, 'IPAY0556', NULL, 'cash', '', '', '', '', '', '', '27.2100', NULL, 6, NULL, 'received', '', '27.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 (634, '2022-09-26 16:46:00', 660, NULL, NULL, 'IPAY0557', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '1411.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-26 16:50:28', 661, NULL, NULL, 'IPAY0558', NULL, 'cash', '', '', '', '', '', '', '280.1600', NULL, 7, NULL, 'received', '', '280.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 (636, '2022-09-26 16:56:04', 662, NULL, NULL, 'IPAY0559', NULL, 'cash', '', '', '', '', '', '', '49.5300', NULL, 7, NULL, 'received', '', '49.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 (637, '2022-09-26 17:01:01', 664, NULL, NULL, 'IPAY0560', NULL, 'cash', '', '', '', '', '', '', '157.6800', NULL, 7, NULL, 'received', '', '157.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 (638, '2022-09-26 17:25:00', 659, NULL, NULL, 'IPAY0561', NULL, 'cash', '', '', '', '', '', 'Visa', '402.6400', NULL, 6, NULL, 'received', '', '402.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 (639, '2022-09-26 17:25:00', 656, NULL, NULL, 'IPAY0561', NULL, 'cash', '', '', '', '', '', 'Visa', '373.4800', NULL, 6, NULL, 'received', '', '373.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 (640, '2022-09-26 17:26:00', 649, NULL, NULL, 'IPAY0561', NULL, 'cash', '', '', '', '', '', 'Visa', '300.9400', NULL, 6, NULL, 'received', '', '300.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 (641, '2022-09-26 17:27:00', 633, NULL, NULL, 'IPAY0561', NULL, 'cash', '', '', '', '', '', 'Visa', '499.7500', NULL, 6, NULL, 'received', '', '499.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 (642, '2022-09-26 17:30:47', 666, NULL, NULL, 'IPAY0561', NULL, 'cash', '', '', '', '', '', '', '3.9100', NULL, 6, NULL, 'received', '', '3.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 (643, '2022-09-27 07:51:00', 590, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '1116.5500', NULL, 6, NULL, 'received', '', '1116.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 (644, '2022-09-27 07:52:00', 643, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '1130.6000', NULL, 6, NULL, 'received', '', '1130.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 07:54:00', 640, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '973.8700', NULL, 6, NULL, 'received', '', '973.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 (646, '2022-09-27 07:54:00', 635, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '57.5800', NULL, 6, NULL, 'received', '', '57.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 (647, '2022-09-27 07:55:00', 638, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '28.8700', NULL, 6, NULL, 'received', '', '28.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 (648, '2022-09-27 07:56:00', 637, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', 'Visa', '124.0000', NULL, 6, 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 (649, '2022-09-27 08:20:54', 667, NULL, NULL, 'IPAY0562', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 6, NULL, 'received', '', '40.0000', '1.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 08:21:20', 668, NULL, NULL, 'IPAY0563', NULL, 'cash', '', '', '', '', '', '', '728.8200', NULL, 7, NULL, 'received', '', '728.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 (651, '2022-09-27 09:28:10', 671, NULL, NULL, 'IPAY0564', NULL, 'cash', '', '', '', '', '', '', '1691.6200', NULL, 6, NULL, 'received', '', '1691.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 (652, '2022-09-27 09:33:00', 673, NULL, NULL, 'IPAY0565', NULL, 'cash', '', '', '', '', '', '', '208.0400', NULL, 6, NULL, 'received', '', '208.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 (653, '2022-09-27 09:44:52', 675, NULL, NULL, 'IPAY0566', NULL, 'cash', '', '', '', '', '', '', '38.7500', NULL, 6, NULL, 'received', '', '50.0000', '11.2500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 10:30:00', 671, NULL, NULL, 'IPAY0567', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (655, '2022-09-27 10:33:00', 679, NULL, NULL, 'IPAY0567', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, 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 (656, '2022-09-27 11:05:44', 682, NULL, NULL, 'IPAY0568', NULL, 'cash', '', '', '', '', '', '', '123.9000', NULL, 6, NULL, 'received', '', '123.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, '2022-09-27 11:08:09', 683, NULL, NULL, 'IPAY0569', NULL, 'cash', '', '', '', '', '', '', '61.9600', NULL, 6, NULL, 'received', '', '61.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 (658, '2022-09-27 11:17:07', 684, NULL, NULL, 'IPAY0570', NULL, 'cash', '', '', '', '', '', '', '30.4200', NULL, 7, NULL, 'received', '', '30.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 (659, '2022-09-27 11:49:03', 687, NULL, NULL, 'IPAY0571', NULL, 'cash', '', '', '', '', '', '', '62.7000', NULL, 6, NULL, 'received', '', '100.0000', '37.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 11:56:30', 688, NULL, NULL, 'IPAY0572', NULL, 'cash', '', '', '', '', '', '', '391.2500', NULL, 6, NULL, 'received', '', '391.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 (661, '2022-09-27 12:01:14', 689, NULL, NULL, 'IPAY0573', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '20.0000', '6.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 12:33:32', 690, NULL, NULL, 'IPAY0574', NULL, 'cash', '', '', '', '', '', '', '84.9000', NULL, 7, NULL, 'received', '', '84.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 (663, '2022-09-27 13:14:16', 693, NULL, NULL, 'IPAY0575', NULL, 'cash', '', '', '', '', '', '', '395.0000', NULL, 6, NULL, 'received', '', '395.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 13:49:27', 695, NULL, NULL, 'IPAY0576', NULL, 'cash', '', '', '', '', '', '', '24.6500', NULL, 6, NULL, 'received', '', '24.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 (665, '2022-09-27 14:24:23', 696, NULL, NULL, 'IPAY0577', NULL, 'cash', '', '', '', '', '', '', '345.6000', NULL, 7, NULL, 'received', '', '345.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 14:34:37', 697, NULL, NULL, 'IPAY0578', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 6, 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 (667, '2022-09-27 14:35:23', 698, NULL, NULL, 'IPAY0579', NULL, 'cash', '', '', '', '', '', '', '75.1000', NULL, 7, NULL, 'received', '', '75.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 (668, '2022-09-27 14:52:19', 700, NULL, NULL, 'IPAY0580', NULL, 'cash', '', '', '', '', '', '', '44.8000', NULL, 6, NULL, 'received', '', '50.0000', '5.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 15:08:00', 700, NULL, NULL, 'IPAY0581', NULL, 'cash', '', '', '', '', '', 'Visa', '-13.2000', NULL, 6, 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 (670, '2022-09-27 16:19:08', 703, NULL, NULL, 'IPAY0581', NULL, 'cash', '', '', '', '', '', '', '43.5800', NULL, 6, NULL, 'received', '', '50.0000', '6.4200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 17:08:34', 706, NULL, NULL, 'IPAY0582', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 6, 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 (672, '2022-09-27 17:17:41', 707, NULL, NULL, 'IPAY0583', NULL, 'cash', '', '', '', '', '', '', '334.3700', NULL, 6, NULL, 'received', '', '340.0000', '5.6300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-27 17:24:03', 708, NULL, NULL, 'IPAY0584', NULL, 'cash', '', '', '', '', '', '', '114.3400', NULL, 6, NULL, 'received', '', '114.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 (674, '2022-09-28 09:58:44', 710, NULL, NULL, 'IPAY0585', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 7, NULL, 'received', '', '28.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 (675, '2022-09-28 10:24:20', 711, NULL, NULL, 'IPAY0586', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 7, 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 (676, '2022-09-28 11:40:05', 713, NULL, NULL, 'IPAY0587', NULL, 'cash', '', '', '', '', '', '', '529.2900', NULL, 7, NULL, 'received', '', '529.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 (677, '2022-09-28 11:45:22', 714, NULL, NULL, 'IPAY0588', NULL, 'cash', '', '', '', '', '', '', '18.8000', NULL, 7, NULL, 'received', '', '18.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 11:53:42', 715, NULL, NULL, 'IPAY0589', NULL, 'other', '', '', '', '', '', '', '45.6000', NULL, 7, 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 (679, '2022-09-28 11:58:02', 716, NULL, NULL, 'IPAY0590', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 6, NULL, 'received', '', '26.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 (680, '2022-09-28 12:24:59', 717, NULL, NULL, 'IPAY0591', NULL, 'cash', '', '', '', '', '', '', '17.6000', NULL, 7, NULL, 'received', '', '17.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 12:32:21', 718, NULL, NULL, 'IPAY0592', NULL, 'cash', '', '', '', '', '', '', '58.4000', NULL, 6, NULL, 'received', '', '58.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 12:36:00', 718, NULL, NULL, 'IPAY0593', NULL, 'cash', '', '', '', '', '', 'Visa', '14.8000', NULL, 6, 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 (683, '2022-09-28 13:15:33', 720, NULL, NULL, 'IPAY0593', NULL, 'cash', '', '', '', '', '', '', '13.1500', NULL, 6, NULL, 'received', '', '13.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 (684, '2022-09-28 13:30:46', 721, NULL, NULL, 'IPAY0594', NULL, 'cash', '', '', '', '', '', '', '220.2800', NULL, 6, NULL, 'received', '', '220.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 (685, '2022-09-28 13:32:26', 722, NULL, NULL, 'IPAY0595', NULL, 'cash', '', '', '', '', '', '', '97.9200', NULL, 7, NULL, 'received', '', '97.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 (686, '2022-09-28 13:41:36', 723, NULL, NULL, 'IPAY0596', NULL, 'cash', '', '', '', '', '', '', '237.9700', NULL, 6, NULL, 'received', '', '237.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 (687, '2022-09-28 13:53:17', 724, NULL, NULL, 'IPAY0597', NULL, 'cash', '', '', '', '', '', '', '17.7100', NULL, 7, NULL, 'received', '', '17.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 (688, '2022-09-28 13:54:10', 725, NULL, NULL, 'IPAY0598', NULL, 'cash', '', '', '', '', '', '', '714.1700', NULL, 6, NULL, 'received', '', '714.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 (689, '2022-09-28 14:06:25', 726, NULL, NULL, 'IPAY0599', NULL, 'cash', '', '', '', '', '', '', '231.9000', NULL, 7, NULL, 'received', '', '231.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 (690, '2022-09-28 14:09:00', 727, NULL, NULL, 'IPAY0600', NULL, 'cash', '', '', '', '', '', '', '14.2500', NULL, 7, NULL, 'received', '', '14.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 (691, '2022-09-28 14:19:00', 726, NULL, NULL, 'IPAY0601', NULL, 'cash', '', '', '', '', '', 'Visa', '-57.4000', NULL, 6, NULL, 'received', '', '-57.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 14:27:03', 728, NULL, NULL, 'IPAY0601', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, 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 (693, '2022-09-28 14:37:19', 729, NULL, NULL, 'IPAY0602', NULL, 'cash', '', '', '', '', '', '', '38.9000', NULL, 6, NULL, 'received', '', '50.0000', '11.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 14:39:32', 730, NULL, NULL, 'IPAY0603', NULL, 'cash', '', '', '', '', '', '', '235.0600', NULL, 7, NULL, 'received', '', '235.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 (695, '2022-09-28 15:01:00', NULL, NULL, 74, 'POP0006', NULL, 'cash', '', '', '', '', '', 'Visa', '1470.9600', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (696, '2022-09-28 15:46:09', 732, NULL, NULL, 'IPAY0604', NULL, 'cash', '', '', '', '', '', '', '71.6700', NULL, 7, NULL, 'received', '', '71.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 (697, '2022-09-28 15:49:51', 733, NULL, NULL, 'IPAY0605', NULL, 'cash', '', '', '', '', '', '', '20.9500', NULL, 7, NULL, 'received', '', '20.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 (698, '2022-09-28 16:01:20', 734, NULL, NULL, 'IPAY0606', NULL, 'cash', '', '', '', '', '', '', '55.8200', NULL, 7, NULL, 'received', '', '55.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 (699, '2022-09-28 16:13:23', 735, NULL, NULL, 'IPAY0607', 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 (700, '2022-09-28 16:13:48', 736, NULL, NULL, 'IPAY0608', NULL, 'cash', '', '', '', '', '', '', '41.3000', NULL, 7, 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 (701, '2022-09-28 16:21:10', 737, NULL, NULL, 'IPAY0609', 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 (702, '2022-09-28 16:34:48', 738, NULL, NULL, 'IPAY0610', NULL, 'cash', '', '', '', '', '', '', '149.8000', NULL, 7, NULL, 'received', '', '149.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-28 17:20:21', 742, NULL, NULL, 'IPAY0611', 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 (704, '2022-09-29 07:49:41', 743, NULL, NULL, 'IPAY0612', NULL, 'cash', '', '', '', '', '', '', '203.0200', NULL, 6, NULL, 'received', '', '205.0000', '1.9800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 09:08:37', 744, NULL, NULL, 'IPAY0613', NULL, 'cash', '', '', '', '', '', '', '67.1000', NULL, 6, NULL, 'received', '', '67.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 (706, '2022-09-29 09:12:22', 745, NULL, NULL, 'IPAY0614', NULL, 'cash', '', '', '', '', '', '', '329.9000', NULL, 6, NULL, 'received', '', '329.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, '2022-09-29 10:37:00', 712, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '723.6200', NULL, 6, NULL, 'received', '', '723.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 (708, '2022-09-29 10:38:00', 699, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '500.6800', NULL, 6, NULL, 'received', '', '500.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 (709, '2022-09-29 10:38:00', 701, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '137.4500', NULL, 6, NULL, 'received', '', '137.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 (710, '2022-09-29 10:39:00', 719, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '498.9100', NULL, 6, NULL, 'received', '', '498.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 (711, '2022-09-29 10:39:00', 674, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '354.9400', NULL, 6, NULL, 'received', '', '354.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 (712, '2022-09-29 10:40:00', 676, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '376.1400', NULL, 6, NULL, 'received', '', '376.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 (713, '2022-09-29 10:41:00', 680, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', 'Visa', '296.5400', NULL, 6, NULL, 'received', '', '296.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 (714, '2022-09-29 10:47:35', 747, NULL, NULL, 'IPAY0615', NULL, 'cash', '', '', '', '', '', '', '80.6000', NULL, 6, 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 (715, '2022-09-29 11:00:05', 748, NULL, NULL, 'IPAY0616', NULL, 'cash', '', '', '', '', '', '', '97.1200', NULL, 6, NULL, 'received', '', '200.0000', '102.8800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 11:37:14', 750, NULL, NULL, 'IPAY0617', NULL, 'cash', '', '', '', '', '', '', '504.7200', NULL, 5, NULL, 'received', '', '504.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 (717, '2022-09-29 11:50:25', 751, NULL, NULL, 'IPAY0618', NULL, 'cash', '', '', '', '', '', '', '145.4000', NULL, 6, NULL, 'received', '', '145.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 12:02:38', 752, NULL, NULL, 'IPAY0619', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '50.5000', '37.3600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 12:07:00', 751, NULL, NULL, 'IPAY0620', NULL, 'cash', '', '', '', '', '', 'Visa', '-39.8200', NULL, 6, NULL, 'received', '', '-39.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 (720, '2022-09-29 12:15:38', 753, NULL, NULL, 'IPAY0620', NULL, 'cash', '', '', '', '', '', '', '137.1000', NULL, 6, NULL, 'received', '', '137.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 (721, '2022-09-29 12:23:30', 754, NULL, NULL, 'IPAY0621', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (722, '2022-09-29 12:46:33', 755, NULL, NULL, 'IPAY0622', 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 (723, '2022-09-29 14:20:29', 758, NULL, NULL, 'IPAY0623', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 5, 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 (724, '2022-09-29 14:24:24', 759, NULL, NULL, 'IPAY0624', NULL, 'cash', '', '', '', '', '', '', '1580.0000', NULL, 6, NULL, 'received', '', '1580.0000', '-56.7700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 14:43:27', 761, NULL, NULL, 'IPAY0625', NULL, 'cash', '', '', '', '', '', '', '443.7100', NULL, 6, NULL, 'received', '', '443.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 (726, '2022-09-29 14:46:58', 762, NULL, NULL, 'IPAY0626', NULL, 'cash', '', '', '', '', '', '', '673.1200', NULL, 5, NULL, 'received', '', '673.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 (727, '2022-09-29 15:36:50', 763, NULL, NULL, 'IPAY0627', NULL, 'cash', '', '', '', '', '', '', '202.7600', NULL, 6, NULL, 'received', '', '202.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 (728, '2022-09-29 16:21:35', 764, NULL, NULL, 'IPAY0628', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 6, NULL, 'received', '', '50.0000', '34.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-29 16:43:00', 761, NULL, NULL, 'IPAY0629', NULL, 'cash', '', '', '', '', '', 'Visa', '-34.6500', NULL, 6, NULL, 'received', '', '-34.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 (730, '2022-09-29 17:05:51', 766, NULL, NULL, 'IPAY0629', 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 (731, '2022-09-29 17:06:30', 767, NULL, NULL, 'IPAY0630', 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 (732, '2022-09-30 08:07:15', 769, NULL, NULL, 'IPAY0631', NULL, 'cash', '', '', '', '', '', '', '249.6000', NULL, 6, NULL, 'received', '', '249.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 08:13:00', 769, NULL, NULL, 'IPAY0632', NULL, 'cash', '', '', '', '', '', 'Visa', '19.1000', NULL, 6, NULL, 'received', '', '19.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 (734, '2022-09-30 08:27:34', 770, NULL, NULL, 'IPAY0632', NULL, 'cash', '', '', '', '', '', '', '599.1800', NULL, 6, NULL, 'received', '', '599.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 (735, '2022-09-30 09:11:08', 771, NULL, NULL, 'IPAY0633', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 6, 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 (736, '2022-09-30 09:13:06', 772, NULL, NULL, 'IPAY0634', NULL, 'cash', '', '', '', '', '', '', '71.3000', NULL, 6, NULL, 'received', '', '73.7000', '2.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 09:21:00', 769, NULL, NULL, 'IPAY0635', NULL, 'cash', '', '', '', '', '', 'Visa', '1.7800', NULL, 6, NULL, 'received', '', '1.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 (738, '2022-09-30 09:32:36', 773, NULL, NULL, 'IPAY0635', NULL, 'cash', '', '', '', '', '', '', '541.4600', NULL, 6, NULL, 'received', '', '541.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 (739, '2022-09-30 09:35:34', 774, NULL, NULL, 'IPAY0636', NULL, 'cash', '', '', '', '', '', '', '746.3000', NULL, 6, NULL, 'received', '', '746.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 09:43:10', 775, NULL, NULL, 'IPAY0637', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 6, NULL, 'received', '', '26.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 (741, '2022-09-30 09:48:41', 776, NULL, NULL, 'IPAY0638', NULL, 'cash', '', '', '', '', '', '', '120.5300', NULL, 6, NULL, 'received', '', '120.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 (742, '2022-09-30 09:56:00', 773, NULL, NULL, 'IPAY0639', NULL, 'cash', '', '', '', '', '', 'Visa', '21.6000', NULL, 6, NULL, 'received', '', '21.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 10:00:00', 776, NULL, NULL, 'IPAY0639', NULL, 'cash', '', '', '', '', '', 'Visa', '-47.5300', NULL, 6, NULL, 'received', '', '-47.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 (744, '2022-09-30 10:15:00', 774, NULL, NULL, 'IPAY0639', NULL, 'cash', '', '', '', '', '', 'Visa', '0.9500', NULL, 6, NULL, 'received', '', '0.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 (745, '2022-09-30 10:18:11', 777, NULL, NULL, 'IPAY0639', NULL, 'cash', '', '', '', '', '', '', '761.9600', NULL, 6, NULL, 'received', '', '761.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 (746, '2022-09-30 10:38:03', 779, NULL, NULL, 'IPAY0640', NULL, 'cash', '', '', '', '', '', '', '552.2000', NULL, 6, NULL, 'received', '', '552.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 11:08:18', 781, NULL, NULL, 'IPAY0641', NULL, 'cash', '', '', '', '', '', '', '339.6400', NULL, 6, NULL, 'received', '', '339.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 (748, '2022-09-30 11:11:00', 781, NULL, NULL, 'IPAY0642', NULL, 'cash', '', '', '', '', '', 'Visa', '11.9000', NULL, 6, NULL, 'received', '', '11.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 (749, '2022-09-30 11:39:46', 782, NULL, NULL, 'IPAY0642', NULL, 'cash', '', '', '', '', '', '', '359.2700', NULL, 6, NULL, 'received', '', '359.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 (750, '2022-09-30 11:44:52', 783, NULL, NULL, 'IPAY0643', NULL, 'cash', '', '', '', '', '', '', '1331.1000', NULL, 6, NULL, 'received', '', '1331.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 (751, '2022-09-30 11:50:17', 785, NULL, NULL, 'IPAY0644', NULL, 'cash', '', '', '', '', '', '', '1795.9500', NULL, 6, NULL, 'received', '', '1795.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 (752, '2022-09-30 12:00:44', 786, NULL, NULL, 'IPAY0645', NULL, 'cash', '', '', '', '', '', '', '398.3400', NULL, 6, NULL, 'received', '', '398.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 (753, '2022-09-30 12:16:00', 783, NULL, NULL, 'IPAY0646', NULL, 'cash', '', '', '', '', '', 'Visa', '42.8000', NULL, 6, 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 (754, '2022-09-30 12:24:22', 787, NULL, NULL, 'IPAY0646', NULL, 'cash', '', '', '', '', '', '', '510.0000', NULL, 6, 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 (755, '2022-09-30 12:44:00', 782, NULL, NULL, 'IPAY0647', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (756, '2022-09-30 12:52:56', 788, NULL, NULL, 'IPAY0647', NULL, 'cash', '', '', '', '', '', '', '577.5200', NULL, 6, NULL, 'received', '', '577.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 (757, '2022-09-30 12:55:12', 789, NULL, NULL, 'IPAY0648', NULL, 'cash', '', '', '', '', '', '', '22.2000', NULL, 6, NULL, 'received', '', '22.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 13:01:53', 790, NULL, NULL, 'IPAY0649', NULL, 'cash', '', '', '', '', '', '', '107.1800', NULL, 6, NULL, 'received', '', '107.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 (759, '2022-09-30 13:07:38', 791, NULL, NULL, 'IPAY0650', NULL, 'cash', '', '', '', '', '', '', '53.8500', NULL, 6, NULL, 'received', '', '53.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 (760, '2022-09-30 13:15:44', 792, NULL, NULL, 'IPAY0651', NULL, 'cash', '', '', '', '', '', '', '6.6000', NULL, 6, 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 (761, '2022-09-30 13:20:00', 785, NULL, NULL, 'IPAY0652', NULL, 'cash', '', '', '', '', '', 'Visa', '-21.6000', NULL, 6, NULL, 'received', '', '-21.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-09-30 13:32:29', 793, NULL, NULL, 'IPAY0652', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, 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 (763, '2022-09-30 14:14:05', 794, NULL, NULL, 'IPAY0653', NULL, 'cash', '', '', '', '', '', '', '412.8900', NULL, 6, NULL, 'received', '', '412.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 (764, '2022-09-30 14:16:00', 788, NULL, NULL, 'IPAY0654', NULL, 'cash', '', '', '', '', '', 'Visa', '-120.8200', NULL, 6, NULL, 'received', '', '-120.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 (765, '2022-09-30 14:28:50', 795, NULL, NULL, 'IPAY0654', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (766, '2022-09-30 14:29:15', 796, NULL, NULL, 'IPAY0655', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 6, 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 (767, '2022-09-30 14:52:47', 798, NULL, NULL, 'IPAY0656', NULL, 'cash', '', '', '', '', '', '', '4.2000', NULL, 6, 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 (768, '2022-09-30 15:10:03', 799, NULL, NULL, 'IPAY0657', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 6, 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 (769, '2022-09-30 15:52:00', NULL, NULL, 79, 'POP0007', NULL, 'Cheque', '000169 CBG', '', '', '', '', 'Visa', '3974.4000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (770, '2022-09-30 16:52:54', 801, NULL, NULL, 'IPAY0658', NULL, 'cash', '', '', '', '', '', '', '1061.3700', NULL, 6, NULL, 'received', '', '1061.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 (771, '2022-10-01 08:57:59', 802, NULL, NULL, 'IPAY0659', NULL, 'cash', '', '', '', '', '', '', '149.0800', NULL, 7, NULL, 'received', '', '149.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 (772, '2022-10-01 10:42:08', 805, NULL, NULL, 'IPAY0660', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 6, NULL, 'received', '', '26.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 (773, '2022-10-01 11:21:29', 807, NULL, NULL, 'IPAY0661', NULL, 'cash', '', '', '', '', '', '', '607.8000', NULL, 7, NULL, 'received', '', '607.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-01 11:28:00', 801, NULL, NULL, 'IPAY0662', NULL, 'cash', '', '', '', '', '', 'Visa', '0.4800', NULL, 6, NULL, 'received', '', '0.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 (775, '2022-10-01 13:10:37', 809, NULL, NULL, 'IPAY0662', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '15.0000', '1.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-01 13:17:37', 810, NULL, NULL, 'IPAY0663', NULL, 'cash', '', '', '', '', '', '', '104.8000', NULL, 6, NULL, 'received', '', '110.0000', '5.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-01 14:42:04', 812, NULL, NULL, 'IPAY0664', NULL, 'cash', '', '', '', '', '', '', '89.8000', NULL, 6, NULL, 'received', '', '90.0000', '0.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-01 15:16:11', 815, NULL, NULL, 'IPAY0665', NULL, 'cash', '', '', '', '', '', '', '55.6400', NULL, 7, NULL, 'received', '', '55.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 (779, '2022-10-01 15:41:52', 816, NULL, NULL, 'IPAY0666', NULL, 'cash', '', '', '', '', '', '', '107.8000', NULL, 6, 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 (780, '2022-10-01 15:47:32', 817, NULL, NULL, 'IPAY0667', NULL, 'cash', '', '', '', '', '', '', '7.6000', NULL, 7, NULL, 'received', '', '7.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-01 16:01:47', 818, NULL, NULL, 'IPAY0668', NULL, 'cash', '', '', '', '', '', '', '16.6000', NULL, 7, 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 (782, '2022-10-01 16:57:16', 820, NULL, NULL, 'IPAY0669', NULL, 'cash', '', '', '', '', '', '', '107.0000', NULL, 7, 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 (783, '2022-10-03 08:33:28', 823, NULL, NULL, 'IPAY0670', NULL, 'cash', '', '', '', '', '', '', '116.8000', NULL, 7, NULL, 'received', '', '116.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-03 09:50:19', 825, NULL, NULL, 'IPAY0671', NULL, 'cash', '', '', '', '', '', '', '467.1300', NULL, 7, NULL, 'received', '', '467.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 (785, '2022-10-03 10:10:52', 826, NULL, NULL, 'IPAY0672', NULL, 'cash', '', '', '', '', '', '', '485.0000', NULL, 7, 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 (786, '2022-10-03 16:13:51', 827, NULL, NULL, 'IPAY0673', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 2, 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 (787, '2022-10-04 08:34:39', 828, NULL, NULL, 'IPAY0674', NULL, 'cash', '', '', '', '', '', '', '126.5400', NULL, 6, NULL, 'received', '', '126.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 (788, '2022-10-04 08:54:42', 829, NULL, NULL, 'IPAY0675', NULL, 'cash', '', '', '', '', '', '', '1987.8400', NULL, 6, NULL, 'received', '', '1987.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 (789, '2022-10-04 09:02:33', 830, NULL, NULL, 'IPAY0676', NULL, 'cash', '', '', '', '', '', '', '323.0800', NULL, 6, NULL, 'received', '', '323.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 (790, '2022-10-04 09:20:30', 831, NULL, NULL, 'IPAY0677', NULL, 'cash', '', '', '', '', '', '', '1253.0200', NULL, 6, NULL, 'received', '', '1253.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 (791, '2022-10-04 09:31:17', 832, NULL, NULL, 'IPAY0678', NULL, 'cash', '', '', '', '', '', '', '222.0000', NULL, 6, 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 (792, '2022-10-04 09:35:46', 833, NULL, NULL, 'IPAY0679', NULL, 'cash', '', '', '', '', '', '', '301.5300', NULL, 6, NULL, 'received', '', '301.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 (793, '2022-10-04 10:11:00', 834, NULL, NULL, 'IPAY0680', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '3655.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 (794, '2022-10-04 10:21:38', 835, NULL, NULL, 'IPAY0681', NULL, 'cash', '', '', '', '', '', '', '294.4000', NULL, 6, NULL, 'received', '', '294.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 10:40:33', 836, NULL, NULL, 'IPAY0682', NULL, 'cash', '', '', '', '', '', '', '417.9800', NULL, 6, NULL, 'received', '', '417.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 (796, '2022-10-04 10:43:34', 837, NULL, NULL, 'IPAY0683', 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 (797, '2022-10-04 11:18:24', 841, NULL, NULL, 'IPAY0684', NULL, 'cash', '', '', '', '', '', '', '540.1200', NULL, 6, NULL, 'received', '', '540.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 (798, '2022-10-04 11:31:20', 842, NULL, NULL, 'IPAY0685', NULL, 'cash', '', '', '', '', '', '', '72.0700', NULL, 6, NULL, 'received', '', '72.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 (799, '2022-10-04 11:34:03', 843, NULL, NULL, 'IPAY0686', NULL, 'cash', '', '', '', '', '', '', '168.6800', NULL, 6, NULL, 'received', '', '168.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 (800, '2022-10-04 11:40:01', 844, NULL, NULL, 'IPAY0687', NULL, 'cash', '', '', '', '', '', '', '11.1000', NULL, 6, 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 (801, '2022-10-04 11:44:31', 845, NULL, NULL, 'IPAY0688', NULL, 'cash', '', '', '', '', '', '', '180.1000', NULL, 6, NULL, 'received', '', '180.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 (802, '2022-10-04 11:55:45', 846, NULL, NULL, 'IPAY0689', NULL, 'cash', '', '', '', '', '', '', '128.1100', NULL, 6, NULL, 'received', '', '128.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 (803, '2022-10-04 12:00:56', 847, NULL, NULL, 'IPAY0690', NULL, 'cash', '', '', '', '', '', '', '321.0000', NULL, 6, 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 (804, '2022-10-04 12:05:11', 848, NULL, NULL, 'IPAY0691', NULL, 'other', '', '', '', '', '', '', '156.9000', NULL, 6, NULL, 'received', '', '156.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 (805, '2022-10-04 12:10:46', 849, NULL, NULL, 'IPAY0692', NULL, 'cash', '', '', '', '', '', '', '608.8500', NULL, 6, NULL, 'received', '', '608.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 (806, '2022-10-04 13:04:09', 850, NULL, NULL, 'IPAY0693', NULL, 'cash', '', '', '', '', '', '', '122.2700', NULL, 6, NULL, 'received', '', '122.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 (807, '2022-10-04 13:17:00', 850, NULL, NULL, 'IPAY0694', NULL, 'cash', '', '', '', '', '', 'Visa', '-0.4000', NULL, 6, NULL, 'received', '', '-0.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 13:20:00', 838, NULL, NULL, 'IPAY0694', NULL, 'cash', '', '', '', '', '', 'Visa', '204.4700', NULL, 6, NULL, 'received', '', '204.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 (809, '2022-10-04 13:27:09', 851, NULL, NULL, 'IPAY0694', NULL, 'cash', '', '', '', '', '', '', '6000.0000', NULL, 6, NULL, 'received', '', '6000.0000', '-4074.0800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 13:35:09', 852, NULL, NULL, 'IPAY0695', NULL, 'cash', '', '', '', '', '', '', '337.1100', NULL, 6, NULL, 'received', '', '337.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 (811, '2022-10-04 13:38:14', 853, NULL, NULL, 'IPAY0696', NULL, 'cash', '', '', '', '', '', '', '77.0000', NULL, 6, 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 (812, '2022-10-04 13:51:27', 854, NULL, NULL, 'IPAY0697', 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 (813, '2022-10-04 14:06:00', 831, NULL, NULL, 'IPAY0698', NULL, 'cash', '', '', '', '', '', 'Visa', '-101.3000', NULL, 6, NULL, 'received', '', '-101.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 14:19:59', 855, NULL, NULL, 'IPAY0698', NULL, 'cash', '', '', '', '', '', '', '1206.9000', NULL, 7, NULL, 'received', '', '1206.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 (815, '2022-10-04 17:06:36', 856, NULL, NULL, 'IPAY0699', NULL, 'cash', '', '', '', '', '', '', '15.1000', NULL, 7, NULL, 'received', '', '15.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 (816, '2022-10-04 17:07:34', 857, NULL, NULL, 'IPAY0700', NULL, 'cash', '', '', '', '', '', '', '18.3000', NULL, 7, NULL, 'received', '', '18.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 17:09:29', 858, NULL, NULL, 'IPAY0701', NULL, 'cash', '', '', '', '', '', '', '57.4200', NULL, 7, NULL, 'received', '', '57.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 (818, '2022-10-04 17:12:02', 859, NULL, NULL, 'IPAY0702', NULL, 'cash', '', '', '', '', '', '', '34.8800', NULL, 7, NULL, 'received', '', '34.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 (819, '2022-10-04 17:14:53', 860, NULL, NULL, 'IPAY0703', NULL, 'cash', '', '', '', '', '', '', '171.2000', NULL, 7, 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 (820, '2022-10-04 17:17:13', 861, NULL, NULL, 'IPAY0704', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 7, 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 (821, '2022-10-04 17:19:46', 862, NULL, NULL, 'IPAY0705', NULL, 'cash', '', '', '', '', '', '', '629.4000', NULL, 7, NULL, 'received', '', '629.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-04 17:20:56', 863, NULL, NULL, 'IPAY0706', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 7, NULL, 'received', '', '13.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 (823, '2022-10-04 23:30:58', 864, NULL, NULL, 'IPAY0707', NULL, 'cash', '', '', '', '', '', '', '68.4000', NULL, 6, 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 (824, '2022-10-04 23:38:44', 866, NULL, NULL, 'IPAY0708', NULL, 'cash', '', '', '', '', '', '', '304.1600', NULL, 6, NULL, 'received', '', '304.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 (825, '2022-10-04 23:48:35', 867, NULL, NULL, 'IPAY0709', NULL, 'cash', '', '', '', '', '', '', '302.5500', NULL, 6, NULL, 'received', '', '302.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 (826, '2022-10-05 00:04:38', 868, NULL, NULL, 'IPAY0710', NULL, 'cash', '', '', '', '', '', '', '829.9700', NULL, 6, NULL, 'received', '', '829.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 (827, '2022-10-05 00:05:30', 869, NULL, NULL, 'IPAY0711', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 6, 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 (828, '2022-10-05 00:10:52', 871, NULL, NULL, 'IPAY0712', NULL, 'cash', '', '', '', '', '', '', '49.1200', NULL, 6, NULL, 'received', '', '49.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 (829, '2022-10-05 07:48:12', 872, NULL, NULL, 'IPAY0713', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 6, 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 (830, '2022-10-05 08:02:12', 873, NULL, NULL, 'IPAY0714', NULL, 'cash', '', '', '', '', '', '', '775.7000', NULL, 7, NULL, 'received', '', '775.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 08:03:06', 874, NULL, NULL, 'IPAY0715', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 7, 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 (832, '2022-10-05 08:11:45', 875, NULL, NULL, 'IPAY0716', NULL, 'cash', '', '', '', '', '', '', '33.4800', NULL, 7, NULL, 'received', '', '33.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 (833, '2022-10-05 08:21:12', 876, NULL, NULL, 'IPAY0717', NULL, 'cash', '', '', '', '', '', '', '593.0000', NULL, 7, NULL, 'received', '', '593.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 08:33:31', 877, NULL, NULL, 'IPAY0718', NULL, 'cash', '', '', '', '', '', '', '1499.9600', NULL, 7, NULL, 'received', '', '1499.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 (835, '2022-10-05 08:48:59', 878, NULL, NULL, 'IPAY0719', 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 (836, '2022-10-05 08:50:23', 879, NULL, NULL, 'IPAY0720', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 7, 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 (837, '2022-10-05 08:53:31', 880, NULL, NULL, 'IPAY0721', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 7, NULL, 'received', '', '13.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 (838, '2022-10-05 08:55:28', 881, NULL, NULL, 'IPAY0722', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 7, 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 (839, '2022-10-05 09:05:44', 882, NULL, NULL, 'IPAY0723', NULL, 'other', '', '', '', '', '', '', '190.0000', NULL, 6, NULL, 'received', '', '190.0000', '-10.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 09:05:44', 882, NULL, NULL, 'IPAY0724', 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 (841, '2022-10-05 09:07:47', 883, NULL, NULL, 'IPAY0725', NULL, 'cash', '', '', '', '', '', '', '200.6600', NULL, 7, NULL, 'received', '', '200.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 (842, '2022-10-05 09:20:53', 884, NULL, NULL, 'IPAY0726', NULL, 'cash', '', '', '', '', '', '', '818.6500', NULL, 7, NULL, 'received', '', '818.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 (843, '2022-10-05 09:24:14', 885, NULL, NULL, 'IPAY0727', NULL, 'cash', '', '', '', '', '', '', '126.5400', NULL, 7, NULL, 'received', '', '126.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 (844, '2022-10-05 09:24:53', 886, NULL, NULL, 'IPAY0728', NULL, 'cash', '', '', '', '', '', '', '77.0000', NULL, 6, NULL, 'received', '', '100.0000', '23.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 09:26:10', 887, NULL, NULL, 'IPAY0729', NULL, 'cash', '', '', '', '', '', '', '17.7100', NULL, 7, NULL, 'received', '', '17.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 (846, '2022-10-05 09:32:38', 888, NULL, NULL, 'IPAY0730', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 6, 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 (847, '2022-10-05 09:51:19', 890, NULL, NULL, 'IPAY0731', NULL, 'cash', '', '', '', '', '', '', '842.3000', NULL, 6, NULL, 'received', '', '842.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 10:06:26', 894, NULL, NULL, 'IPAY0732', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (849, '2022-10-05 10:08:54', 895, NULL, NULL, 'IPAY0733', NULL, 'cash', '', '', '', '', '', '', '301.5700', NULL, 6, NULL, 'received', '', '301.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 (850, '2022-10-05 10:20:38', 897, NULL, NULL, 'IPAY0734', NULL, 'cash', '', '', '', '', '', '', '178.8900', NULL, 6, NULL, 'received', '', '178.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 (851, '2022-10-05 10:26:38', 898, NULL, NULL, 'IPAY0735', NULL, 'cash', '', '', '', '', '', '', '54.1700', NULL, 6, NULL, 'received', '', '54.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 (852, '2022-10-05 10:37:01', 899, NULL, NULL, 'IPAY0736', NULL, 'cash', '', '', '', '', '', '', '79.5000', NULL, 6, NULL, 'received', '', '100.0000', '20.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 10:37:41', 900, NULL, NULL, 'IPAY0737', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 7, 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 (854, '2022-10-05 10:40:49', 902, NULL, NULL, 'IPAY0738', 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 (855, '2022-10-05 11:15:46', 905, NULL, NULL, 'IPAY0739', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 7, 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 (856, '2022-10-05 11:55:30', 907, NULL, NULL, 'IPAY0740', NULL, 'cash', '', '', '', '', '', '', '5006.1900', NULL, 6, NULL, 'received', '', '5006.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 (857, '2022-10-05 12:10:36', 909, NULL, NULL, 'IPAY0741', NULL, 'cash', '', '', '', '', '', '', '35.8000', NULL, 7, 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 (858, '2022-10-05 12:11:37', 910, NULL, NULL, 'IPAY0742', 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 (859, '2022-10-05 12:23:54', 911, NULL, NULL, 'IPAY0743', NULL, 'cash', '', '', '', '', '', '', '902.8000', NULL, 6, NULL, 'received', '', '902.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 12:24:53', 912, NULL, NULL, 'IPAY0744', NULL, 'cash', '', '', '', '', '', '', '66.1600', NULL, 7, NULL, 'received', '', '66.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 (861, '2022-10-05 12:29:45', 913, NULL, NULL, 'IPAY0745', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 7, 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 (862, '2022-10-05 12:45:55', 914, NULL, NULL, 'IPAY0746', NULL, 'other', '', '', '', '', '', '', '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 (863, '2022-10-05 13:19:28', 915, NULL, NULL, 'IPAY0747', NULL, 'cash', '', '', '', '', '', '', '420.2000', NULL, 6, NULL, 'received', '', '420.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 13:22:11', 916, NULL, NULL, 'IPAY0748', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (865, '2022-10-05 13:22:31', 917, NULL, NULL, 'IPAY0749', NULL, 'cash', '', '', '', '', '', '', '425.0000', NULL, 7, NULL, 'received', '', '425.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 13:25:01', 918, NULL, NULL, 'IPAY0750', NULL, 'cash', '', '', '', '', '', '', '131.5700', NULL, 6, NULL, 'received', '', '131.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 (867, '2022-10-05 13:26:00', 911, NULL, NULL, 'IPAY0751', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0800', NULL, 6, NULL, 'received', '', '0.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 (868, '2022-10-05 13:29:57', 919, NULL, NULL, 'IPAY0751', NULL, 'cash', '', '', '', '', '', '', '75.8000', NULL, 6, NULL, 'received', '', '75.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 13:32:23', 920, NULL, NULL, 'IPAY0752', NULL, 'cash', '', '', '', '', '', '', '90.5800', NULL, 6, NULL, 'received', '', '90.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 (870, '2022-10-05 13:38:00', 919, NULL, NULL, 'IPAY0753', NULL, 'cash', '', '', '', '', '', 'Visa', '7.5800', NULL, 6, NULL, 'received', '', '7.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 (871, '2022-10-05 13:45:45', 921, NULL, NULL, 'IPAY0753', NULL, 'cash', '', '', '', '', '', '', '157.6800', NULL, 7, NULL, 'received', '', '157.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 (872, '2022-10-05 14:06:44', 923, NULL, NULL, 'IPAY0754', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 7, NULL, 'received', '', '15.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 (873, '2022-10-05 14:18:16', 925, NULL, NULL, 'IPAY0755', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 7, 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 (874, '2022-10-05 14:34:11', 927, NULL, NULL, 'IPAY0756', NULL, 'cash', '', '', '', '', '', '', '221.4000', NULL, 6, NULL, 'received', '', '221.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 14:45:59', 928, NULL, NULL, 'IPAY0757', NULL, 'cash', '', '', '', '', '', '', '176.3300', NULL, 6, NULL, 'received', '', '176.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 (876, '2022-10-05 15:50:11', 931, NULL, NULL, 'IPAY0758', NULL, 'cash', '', '', '', '', '', '', '182.6000', NULL, 6, NULL, 'received', '', '182.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-05 16:01:58', 932, NULL, NULL, 'IPAY0759', NULL, 'cash', '', '', '', '', '', '', '71.4200', NULL, 7, NULL, 'received', '', '71.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 (878, '2022-10-05 17:42:13', 935, NULL, NULL, 'IPAY0760', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (879, '2022-10-06 07:34:51', 936, NULL, NULL, 'IPAY0761', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (880, '2022-10-06 07:44:41', 937, NULL, NULL, 'IPAY0762', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, 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 (881, '2022-10-06 07:53:02', 938, NULL, NULL, 'IPAY0763', 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 (882, '2022-10-06 08:26:47', 940, NULL, NULL, 'IPAY0764', NULL, 'cash', '', '', '', '', '', '', '71.5400', NULL, 6, NULL, 'received', '', '71.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 (883, '2022-10-06 09:02:08', 941, NULL, NULL, 'IPAY0765', NULL, 'cash', '', '', '', '', '', '', '428.9000', NULL, 7, 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 (884, '2022-10-06 10:31:49', 943, NULL, NULL, 'IPAY0766', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (885, '2022-10-06 10:56:00', 944, NULL, NULL, 'IPAY0767', NULL, 'cash', '', '', '', '', '', '', '2109.3700', NULL, 7, NULL, 'received', '', '2109.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 (886, '2022-10-06 11:05:29', 946, NULL, NULL, 'IPAY0768', NULL, 'cash', '', '', '', '', '', '', '55.9200', NULL, 7, NULL, 'received', '', '55.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 (887, '2022-10-06 11:06:33', 947, NULL, NULL, 'IPAY0769', NULL, 'cash', '', '', '', '', '', '', '146.0400', NULL, 6, NULL, 'received', '', '146.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 (888, '2022-10-06 11:13:34', 948, NULL, NULL, 'IPAY0770', NULL, 'cash', '', '', '', '', '', '', '54.1300', NULL, 6, NULL, 'received', '', '70.0000', '15.8700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 11:28:38', 949, NULL, NULL, 'IPAY0771', 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 (890, '2022-10-06 11:38:34', 950, NULL, NULL, 'IPAY0772', NULL, 'cash', '', '', '', '', '', '', '6.6000', NULL, 6, 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 (891, '2022-10-06 11:47:50', 951, NULL, NULL, 'IPAY0773', NULL, 'cash', '', '', '', '', '', '', '264.8000', NULL, 7, 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 (892, '2022-10-06 11:53:42', 952, NULL, NULL, 'IPAY0774', NULL, 'cash', '', '', '', '', '', '', '266.4000', NULL, 6, 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 (893, '2022-10-06 12:05:50', 953, NULL, NULL, 'IPAY0775', NULL, 'cash', '', '', '', '', '', '', '390.3000', NULL, 6, NULL, 'received', '', '390.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 12:44:28', 954, NULL, NULL, 'IPAY0776', NULL, 'cash', '', '', '', '', '', '', '38.4000', NULL, 6, NULL, 'received', '', '38.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 13:23:18', 956, NULL, NULL, 'IPAY0777', 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 (896, '2022-10-06 13:25:30', 957, NULL, NULL, 'IPAY0778', NULL, 'cash', '', '', '', '', '', '', '215.5700', NULL, 7, NULL, 'received', '', '215.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 (897, '2022-10-06 13:29:00', 945, NULL, NULL, 'IPAY0779', NULL, 'cash', '', '', '', '', '', 'Visa', '3056.8400', NULL, 6, NULL, 'received', '', '3056.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 (898, '2022-10-06 14:03:35', 959, NULL, NULL, 'IPAY0779', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 7, NULL, 'received', '', '28.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 (899, '2022-10-06 14:20:07', 960, NULL, NULL, 'IPAY0780', NULL, 'cash', '', '', '', '', '', '', '292.7900', NULL, 7, NULL, 'received', '', '292.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 (900, '2022-10-06 14:23:06', 961, NULL, NULL, 'IPAY0781', NULL, 'cash', '', '', '', '', '', '', '80.3000', NULL, 7, NULL, 'received', '', '80.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 15:11:49', 963, NULL, NULL, 'IPAY0782', NULL, 'cash', '', '', '', '', '', '', '219.3000', NULL, 7, 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 (902, '2022-10-06 15:13:24', 964, NULL, NULL, 'IPAY0783', NULL, 'cash', '', '', '', '', '', '', '1006.7300', NULL, 6, NULL, 'received', '', '1006.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 (903, '2022-10-06 15:44:07', 965, NULL, NULL, 'IPAY0784', NULL, 'cash', '', '', '', '', '', '', '169.6400', NULL, 7, NULL, 'received', '', '169.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 (904, '2022-10-06 15:52:19', 966, NULL, NULL, 'IPAY0785', NULL, 'cash', '', '', '', '', '', '', '251.6100', NULL, 7, NULL, 'received', '', '251.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 (905, '2022-10-06 16:03:27', 967, NULL, NULL, 'IPAY0786', NULL, 'other', '', '', '', '', '', '', '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 (906, '2022-10-06 16:04:05', 968, NULL, NULL, 'IPAY0787', NULL, 'cash', '', '', '', '', '', '', '300.3000', NULL, 7, NULL, 'received', '', '300.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 16:05:06', 969, NULL, NULL, 'IPAY0788', NULL, 'cash', '', '', '', '', '', '', '705.6000', NULL, 6, NULL, 'received', '', '705.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 16:08:56', 970, NULL, NULL, 'IPAY0789', NULL, 'cash', '', '', '', '', '', '', '300.3000', NULL, 7, NULL, 'received', '', '300.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 16:21:25', 971, NULL, NULL, 'IPAY0790', NULL, 'cash', '', '', '', '', '', '', '34.4000', NULL, 7, NULL, 'received', '', '34.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 16:22:27', 972, NULL, NULL, 'IPAY0791', NULL, 'cash', '', '', '', '', '', '', '161.9800', NULL, 6, NULL, 'received', '', '161.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 (911, '2022-10-06 16:25:16', 973, NULL, NULL, 'IPAY0792', NULL, 'cash', '', '', '', '', '', '', '77.2200', NULL, 7, NULL, 'received', '', '77.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 (912, '2022-10-06 16:30:56', 974, NULL, NULL, 'IPAY0793', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, 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 (913, '2022-10-06 16:32:37', 975, NULL, NULL, 'IPAY0794', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 7, 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 (914, '2022-10-06 16:43:58', 976, NULL, NULL, 'IPAY0795', NULL, 'cash', '', '', '', '', '', '', '205.2000', NULL, 6, NULL, 'received', '', '205.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 17:13:35', 978, NULL, NULL, 'IPAY0796', NULL, 'cash', '', '', '', '', '', '', '49.3000', NULL, 6, NULL, 'received', '', '60.0000', '10.7000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-06 17:40:26', 979, NULL, NULL, 'IPAY0797', NULL, 'cash', '', '', '', '', '', '', '939.2000', NULL, 6, NULL, 'received', '', '939.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 07:36:22', 980, NULL, NULL, 'IPAY0798', 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 (918, '2022-10-07 08:00:26', 981, NULL, NULL, 'IPAY0799', NULL, 'cash', '', '', '', '', '', '', '599.9100', NULL, 6, NULL, 'received', '', '599.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 (919, '2022-10-07 08:02:29', 982, NULL, NULL, 'IPAY0800', NULL, 'cash', '', '', '', '', '', '', '9.9000', NULL, 6, NULL, 'received', '', '9.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 (920, '2022-10-07 08:27:50', 983, NULL, NULL, 'IPAY0801', NULL, 'cash', '', '', '', '', '', '', '43.2800', NULL, 6, NULL, 'received', '', '43.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 (921, '2022-10-07 08:40:59', 984, NULL, NULL, 'IPAY0802', NULL, 'cash', '', '', '', '', '', '', '4738.5600', NULL, 7, NULL, 'received', '', '4738.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 (922, '2022-10-07 08:53:19', 985, NULL, NULL, 'IPAY0803', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 6, 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 (923, '2022-10-07 09:02:17', 986, NULL, NULL, 'IPAY0804', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 6, NULL, 'received', '', '100.0000', '41.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 09:31:39', 988, NULL, NULL, 'IPAY0805', NULL, 'cash', '', '', '', '', '', '', '76.4100', NULL, 6, NULL, 'received', '', '76.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 (925, '2022-10-07 09:33:49', 989, NULL, NULL, 'IPAY0806', 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 (926, '2022-10-07 10:01:34', 991, NULL, NULL, 'IPAY0807', NULL, 'cash', '', '', '', '', '', '', '90.2000', NULL, 6, 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 (927, '2022-10-07 10:20:25', 995, NULL, NULL, 'IPAY0808', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 6, NULL, 'received', '', '85.0000', '-20.1200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 10:29:25', 997, NULL, NULL, 'IPAY0809', 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 (929, '2022-10-07 10:33:56', 998, NULL, NULL, 'IPAY0810', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 7, NULL, 'received', '', '28.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 (930, '2022-10-07 10:52:50', 999, NULL, NULL, 'IPAY0811', NULL, 'cash', '', '', '', '', '', '', '168.6000', NULL, 6, 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 (931, '2022-10-07 11:30:50', 1002, NULL, NULL, 'IPAY0812', NULL, 'cash', '', '', '', '', '', '', '499.0800', NULL, 6, NULL, 'received', '', '499.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 (932, '2022-10-07 12:19:56', 1006, NULL, NULL, 'IPAY0813', NULL, 'cash', '', '', '', '', '', '', '183.8500', NULL, 7, NULL, 'received', '', '183.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 (933, '2022-10-07 12:26:05', 1007, NULL, NULL, 'IPAY0814', NULL, 'cash', '', '', '', '', '', '', '152.8300', NULL, 7, NULL, 'received', '', '152.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 (934, '2022-10-07 12:27:47', 1008, NULL, NULL, 'IPAY0815', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 6, NULL, 'received', '', '500.0000', '-135.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 12:27:47', 1008, NULL, NULL, 'IPAY0816', NULL, 'other', '', '', '', '', '', '', '135.2000', NULL, 6, NULL, 'received', '', '135.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 13:02:42', 1010, NULL, NULL, 'IPAY0817', NULL, 'cash', '', '', '', '', '', '', '80.4000', NULL, 6, NULL, 'received', '', '100.0000', '19.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 13:06:34', 1011, NULL, NULL, 'IPAY0818', NULL, 'cash', '', '', '', '', '', '', '66.5300', NULL, 6, NULL, 'received', '', '66.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 (938, '2022-10-07 13:33:49', 1013, NULL, NULL, 'IPAY0819', NULL, 'cash', '', '', '', '', '', '', '11.9000', NULL, 6, NULL, 'received', '', '11.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 (939, '2022-10-07 14:07:52', 1015, NULL, NULL, 'IPAY0820', NULL, 'other', '', '', '', '', '', '', '17.6000', NULL, 7, NULL, 'received', '', '17.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 14:46:32', 1016, NULL, NULL, 'IPAY0821', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.0000', '-40.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 15:14:29', 1018, NULL, NULL, 'IPAY0822', NULL, 'cash', '', '', '', '', '', '', '77.0000', NULL, 6, NULL, 'received', '', '100.0000', '23.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 15:23:48', 1020, NULL, NULL, 'IPAY0823', NULL, 'cash', '', '', '', '', '', '', '24.8600', NULL, 6, NULL, 'received', '', '24.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 (943, '2022-10-07 16:01:39', 1021, NULL, NULL, 'IPAY0824', NULL, 'other', '', '', '', '', '', '', '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 (944, '2022-10-07 16:08:20', 1022, NULL, NULL, 'IPAY0825', 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 (945, '2022-10-07 16:33:58', 1023, NULL, NULL, 'IPAY0826', NULL, 'cash', '', '', '', '', '', '', '370.0000', NULL, 7, NULL, 'received', '', '370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 16:35:30', 1024, NULL, NULL, 'IPAY0827', 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 (947, '2022-10-07 16:40:03', 1025, NULL, NULL, 'IPAY0828', NULL, 'cash', '', '', '', '', '', '', '51.7000', NULL, 7, NULL, 'received', '', '51.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-07 16:49:16', 1026, NULL, NULL, 'IPAY0829', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 7, NULL, 'received', '', '26.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 (949, '2022-10-07 16:50:28', 1027, NULL, NULL, 'IPAY0830', 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 (950, '2022-10-07 17:03:50', 1028, NULL, NULL, 'IPAY0831', NULL, 'cash', '', '', '', '', '', '', '33.9800', NULL, 7, NULL, 'received', '', '33.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 (951, '2022-10-07 17:07:00', 1029, NULL, NULL, 'IPAY0832', 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 (952, '2022-10-08 07:49:58', 1031, NULL, NULL, 'IPAY0833', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (953, '2022-10-08 07:52:24', 1032, NULL, NULL, 'IPAY0834', NULL, 'cash', '', '', '', '', '', '', '12.6000', NULL, 6, NULL, 'received', '', '12.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 07:56:31', 1033, NULL, NULL, 'IPAY0835', NULL, 'cash', '', '', '', '', '', '', '18.7000', NULL, 6, NULL, 'received', '', '20.0000', '1.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 08:16:03', 1034, NULL, NULL, 'IPAY0836', NULL, 'cash', '', '', '', '', '', '', '144.0000', NULL, 7, 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 (956, '2022-10-08 08:19:41', 1035, NULL, NULL, 'IPAY0837', NULL, 'cash', '', '', '', '', '', '', '174.0000', NULL, 7, 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 (957, '2022-10-08 08:32:07', 1036, NULL, NULL, 'IPAY0838', NULL, 'cash', '', '', '', '', '', '', '27.3000', NULL, 6, 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 (958, '2022-10-08 08:45:48', 1037, NULL, NULL, 'IPAY0839', NULL, 'cash', '', '', '', '', '', '', '43.2800', NULL, 7, NULL, 'received', '', '43.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 (959, '2022-10-08 08:58:24', 1038, NULL, NULL, 'IPAY0840', NULL, 'cash', '', '', '', '', '', '', '71.5400', NULL, 7, NULL, 'received', '', '71.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 (960, '2022-10-08 09:15:05', 1039, NULL, NULL, 'IPAY0841', NULL, 'cash', '', '', '', '', '', '', '12.2000', NULL, 7, 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 (961, '2022-10-08 09:51:44', 1040, NULL, NULL, 'IPAY0842', NULL, 'cash', '', '', '', '', '', '', '40.2000', NULL, 6, NULL, 'received', '', '40.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 11:32:34', 1044, NULL, NULL, 'IPAY0843', NULL, 'cash', '', '', '', '', '', '', '52.0600', NULL, 6, NULL, 'received', '', '52.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 (963, '2022-10-08 11:41:34', 1046, NULL, NULL, 'IPAY0844', NULL, 'cash', '', '', '', '', '', '', '5.9000', NULL, 6, NULL, 'received', '', '10.0000', '4.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 11:46:28', 1047, NULL, NULL, 'IPAY0845', NULL, 'cash', '', '', '', '', '', '', '48.8000', NULL, 6, 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 (965, '2022-10-08 12:01:16', 1048, NULL, NULL, 'IPAY0846', NULL, 'cash', '', '', '', '', '', '', '224.2700', NULL, 6, 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 (966, '2022-10-08 13:05:43', 1049, NULL, NULL, 'IPAY0847', NULL, 'cash', '', '', '', '', '', '', '382.2500', NULL, 6, NULL, 'received', '', '382.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 (967, '2022-10-08 14:50:14', 1051, NULL, NULL, 'IPAY0848', NULL, 'cash', '', '', '', '', '', '', '17.1000', NULL, 6, NULL, 'received', '', '17.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 (968, '2022-10-08 14:53:04', 1052, NULL, NULL, 'IPAY0849', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (969, '2022-10-08 14:55:09', 1053, NULL, NULL, 'IPAY0850', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 6, 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 (970, '2022-10-08 15:02:42', 1054, NULL, NULL, 'IPAY0851', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (971, '2022-10-08 15:10:00', 1053, NULL, NULL, 'IPAY0852', NULL, 'cash', '', '', '', '', '', 'Visa', '68.4000', NULL, 6, 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 (972, '2022-10-08 15:11:51', 1055, NULL, NULL, 'IPAY0852', NULL, 'cash', '', '', '', '', '', '', '197.6000', NULL, 6, NULL, 'received', '', '197.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 15:15:25', 1056, NULL, NULL, 'IPAY0853', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (974, '2022-10-08 15:18:00', 1053, NULL, NULL, 'IPAY0854', NULL, 'cash', '', '', '', '', '', 'Visa', '-5.6000', NULL, 6, 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 (975, '2022-10-08 15:27:03', 1057, NULL, NULL, 'IPAY0854', 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 (976, '2022-10-08 15:28:10', 1058, NULL, NULL, 'IPAY0855', NULL, 'cash', '', '', '', '', '', '', '26.4000', NULL, 6, NULL, 'received', '', '26.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-08 15:29:48', 1059, NULL, NULL, 'IPAY0856', NULL, 'cash', '', '', '', '', '', '', '11.7200', NULL, 6, NULL, 'received', '', '11.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 (978, '2022-10-08 15:35:46', 1060, NULL, NULL, 'IPAY0857', NULL, 'cash', '', '', '', '', '', '', '6.0300', NULL, 2, NULL, 'received', '', '6.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 (979, '2022-10-08 15:43:41', 1061, NULL, NULL, 'IPAY0858', NULL, 'cash', '', '', '', '', '', '', '6.0300', NULL, 2, NULL, 'received', '', '6.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 (980, '2022-10-08 15:47:54', 1062, NULL, NULL, 'IPAY0859', NULL, 'cash', '', '', '', '', '', '', '28.9000', NULL, 2, NULL, 'received', '', '28.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 (981, '2022-10-10 08:23:29', 1063, NULL, NULL, 'IPAY0860', NULL, 'cash', '', '', '', '', '', '', '38.4400', NULL, 6, NULL, 'received', '', '38.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 (982, '2022-10-10 09:03:00', 1000, NULL, NULL, 'IPAY0861', NULL, 'cash', '', '', '', '', '', 'Visa', '425.0600', NULL, 6, NULL, 'received', '', '425.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 (983, '2022-10-10 09:13:46', 1065, NULL, NULL, 'IPAY0861', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 6, NULL, 'received', '', '320.0000', '-95.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 09:13:46', 1065, NULL, NULL, 'IPAY0862', NULL, 'other', '', '', '', '', '', '', '70.0000', NULL, 6, NULL, 'received', '', '70.0000', '-25.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 09:23:34', 1066, NULL, NULL, 'IPAY0863', NULL, 'cash', '', '', '', '', '', '', '22.2000', NULL, 6, NULL, 'received', '', '22.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 09:34:19', 1067, NULL, NULL, 'IPAY0864', NULL, 'cash', '', '', '', '', '', '', '142.8000', NULL, 6, 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 (987, '2022-10-10 10:05:57', 1069, NULL, NULL, 'IPAY0865', NULL, 'cash', '', '', '', '', '', '', '15.4200', NULL, 6, NULL, 'received', '', '15.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 (988, '2022-10-10 10:32:30', 1070, NULL, NULL, 'IPAY0866', NULL, 'cash', '', '', '', '', '', '', '28.2100', NULL, 6, NULL, 'received', '', '28.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 (989, '2022-10-10 10:47:12', 1071, NULL, NULL, 'IPAY0867', NULL, 'cash', '', '', '', '', '', '', '54.1700', NULL, 6, NULL, 'received', '', '54.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 (990, '2022-10-10 10:50:31', 1072, NULL, NULL, 'IPAY0868', NULL, 'cash', '', '', '', '', '', '', '2094.2100', NULL, 6, NULL, 'received', '', '2094.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 (991, '2022-10-10 10:50:58', 1073, NULL, NULL, 'IPAY0869', NULL, 'cash', '', '', '', '', '', '', '5.2000', NULL, 6, 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 (992, '2022-10-10 11:50:45', 1075, NULL, NULL, 'IPAY0870', NULL, 'cash', '', '', '', '', '', '', '391.6200', NULL, 6, NULL, 'received', '', '391.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 (993, '2022-10-10 11:51:11', 1076, NULL, NULL, 'IPAY0871', NULL, 'cash', '', '', '', '', '', '', '66.0900', NULL, 6, NULL, 'received', '', '66.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 (994, '2022-10-10 11:56:00', 1075, NULL, NULL, 'IPAY0872', NULL, 'cash', '', '', '', '', '', 'Visa', '66.5200', NULL, 6, NULL, 'received', '', '66.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 (995, '2022-10-10 12:06:12', 1077, NULL, NULL, 'IPAY0872', NULL, 'cash', '', '', '', '', '', '', '1622.0000', NULL, 6, NULL, 'received', '', '1622.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 12:22:00', 1075, NULL, NULL, 'IPAY0873', NULL, 'cash', '', '', '', '', '', 'Visa', '-64.3400', NULL, 6, NULL, 'received', '', '-64.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 (997, '2022-10-10 12:25:00', 1072, NULL, NULL, 'IPAY0873', NULL, 'cash', '', '', '', '', '', 'Visa', '-425.4200', NULL, 6, NULL, 'received', '', '-425.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 (998, '2022-10-10 12:29:43', 1078, NULL, NULL, 'IPAY0873', NULL, 'other', '', '', '', '', '', '', '67.5000', NULL, 6, 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 (999, '2022-10-10 12:33:58', 1079, NULL, NULL, 'IPAY0874', NULL, 'cash', '', '', '', '', '', '', '30.8500', NULL, 6, NULL, 'received', '', '30.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 (1000, '2022-10-10 12:42:00', 1080, NULL, NULL, 'IPAY0875', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 6, 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 (1001, '2022-10-10 12:49:00', 1077, NULL, NULL, 'IPAY0876', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (1002, '2022-10-10 12:56:00', 1078, NULL, NULL, 'IPAY0876', NULL, 'cash', '', '', '', '', '', 'Visa', '2.8000', NULL, 6, 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 (1003, '2022-10-10 13:24:21', 1081, NULL, NULL, 'IPAY0876', NULL, 'cash', '', '', '', '', '', '', '154.3300', NULL, 6, NULL, 'received', '', '154.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 (1004, '2022-10-10 13:27:38', 1082, NULL, NULL, 'IPAY0877', NULL, 'cash', '', '', '', '', '', '', '11.8000', NULL, 6, 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 (1005, '2022-10-10 13:31:00', 851, NULL, NULL, 'IPAY0878', NULL, 'cash', '', '', '', '', '', 'Visa', '3304.0800', NULL, 6, NULL, 'received', '', '3304.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 (1006, '2022-10-10 13:53:00', 1077, NULL, NULL, 'IPAY0878', NULL, 'cash', '', '', '', '', '', 'Visa', '147.5000', NULL, 6, 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 (1007, '2022-10-10 14:04:00', 1083, NULL, NULL, 'IPAY0878', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '4286.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 (1008, '2022-10-10 14:28:00', 1084, NULL, NULL, 'IPAY0879', NULL, 'cash', '', '', '', '', '', 'Visa', '1700.0000', NULL, 6, NULL, 'received', '', '2331.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 (1009, '2022-10-10 14:45:14', 1085, NULL, NULL, 'IPAY0880', 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 (1010, '2022-10-10 15:28:26', 1087, NULL, NULL, 'IPAY0881', NULL, 'cash', '', '', '', '', '', '', '194.5000', NULL, 6, 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 (1011, '2022-10-10 15:58:00', 1067, NULL, NULL, 'IPAY0882', NULL, 'cash', '', '', '', '', '', 'Visa', '39.3000', NULL, 6, 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 (1012, '2022-10-10 16:18:58', 1088, NULL, NULL, 'IPAY0882', NULL, 'other', '', '', '', '', '', '', '308.6000', NULL, 6, NULL, 'received', '', '308.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 16:32:10', 1089, NULL, NULL, 'IPAY0883', NULL, 'cash', '', '', '', '', '', '', '286.0000', NULL, 6, NULL, 'received', '', '286.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 16:50:31', 1090, NULL, NULL, 'IPAY0884', NULL, 'cash', '', '', '', '', '', '', '75.6000', NULL, 6, NULL, 'received', '', '75.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 16:57:00', 1086, NULL, NULL, 'IPAY0885', NULL, 'cash', '', '', '', '', '', 'Visa', '1188.3800', NULL, 6, NULL, 'received', '', '1188.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 (1016, '2022-10-10 17:17:44', 1091, NULL, NULL, 'IPAY0885', NULL, 'cash', '', '', '', '', '', '', '1450.1200', NULL, 6, NULL, 'received', '', '1450.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 (1017, '2022-10-10 17:27:09', 1092, NULL, NULL, 'IPAY0886', NULL, 'cash', '', '', '', '', '', '', '41.4000', NULL, 6, NULL, 'received', '', '41.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-10 17:50:19', 1093, NULL, NULL, 'IPAY0887', NULL, 'cash', '', '', '', '', '', '', '842.9000', NULL, 6, NULL, 'received', '', '842.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 (1019, '2022-10-10 18:00:00', 1094, NULL, NULL, 'IPAY0888', NULL, 'cash', '', '', '', '', '', 'Visa', '42.1000', NULL, 6, 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 (1020, '2022-10-10 18:14:09', 1095, NULL, NULL, 'IPAY0889', NULL, 'cash', '', '', '', '', '', '', '27.2500', NULL, 6, NULL, 'received', '', '30.0000', '2.7500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 08:09:12', 1096, NULL, NULL, 'IPAY0890', NULL, 'cash', '', '', '', '', '', '', '88.0800', NULL, 6, NULL, 'received', '', '100.0000', '11.9200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 08:30:22', 1097, NULL, NULL, 'IPAY0891', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 6, NULL, 'received', '', '30.0000', '1.1300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 09:53:43', 1099, NULL, NULL, 'IPAY0892', NULL, 'cash', '', '', '', '', '', '', '783.5400', NULL, 6, NULL, 'received', '', '783.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 (1024, '2022-10-11 10:06:00', 1100, NULL, NULL, 'IPAY0893', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '2585.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 (1025, '2022-10-11 10:11:41', 1101, NULL, NULL, 'IPAY0894', NULL, 'cash', '', '', '', '', '', '', '50.5500', NULL, 6, NULL, 'received', '', '50.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 (1026, '2022-10-11 10:31:41', 1102, NULL, NULL, 'IPAY0895', NULL, 'cash', '', '', '', '', '', '', '124.8300', NULL, 6, NULL, 'received', '', '124.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 (1027, '2022-10-11 10:47:04', 1104, NULL, NULL, 'IPAY0896', NULL, 'cash', '', '', '', '', '', '', '24.9000', NULL, 6, 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 (1028, '2022-10-11 12:12:10', 1108, NULL, NULL, 'IPAY0897', 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 (1029, '2022-10-11 12:21:54', 1109, NULL, NULL, 'IPAY0898', NULL, 'cash', '', '', '', '', '', '', '254.0000', NULL, 6, 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 (1030, '2022-10-11 12:46:14', 1110, NULL, NULL, 'IPAY0899', NULL, 'cash', '', '', '', '', '', '', '755.3500', NULL, 6, NULL, 'received', '', '755.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 (1031, '2022-10-11 12:50:31', 1111, NULL, NULL, 'IPAY0900', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1032, '2022-10-11 12:54:46', 1112, NULL, NULL, 'IPAY0901', NULL, 'cash', '', '', '', '', '', '', '399.8000', NULL, 6, NULL, 'received', '', '399.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 13:16:00', 1110, NULL, NULL, 'IPAY0902', NULL, 'cash', '', '', '', '', '', 'Visa', '-113.5800', NULL, 6, NULL, 'received', '', '-113.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 (1034, '2022-10-11 14:04:00', 1113, NULL, NULL, 'IPAY0902', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 6, 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 (1035, '2022-10-11 14:42:34', 1114, NULL, NULL, 'IPAY0903', NULL, 'cash', '', '', '', '', '', '', '187.1500', NULL, 6, NULL, 'received', '', '187.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 (1036, '2022-10-11 14:44:26', 1115, NULL, NULL, 'IPAY0904', NULL, 'cash', '', '', '', '', '', '', '23.3400', NULL, 6, NULL, 'received', '', '23.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 (1037, '2022-10-11 15:00:47', 1116, NULL, NULL, 'IPAY0905', 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 (1038, '2022-10-11 15:05:17', 1117, NULL, NULL, 'IPAY0906', NULL, 'cash', '', '', '', '', '', '', '347.0500', NULL, 6, NULL, 'received', '', '347.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 (1039, '2022-10-11 15:28:35', 1118, NULL, NULL, 'IPAY0907', 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 (1040, '2022-10-11 15:32:10', 1119, NULL, NULL, 'IPAY0908', NULL, 'cash', '', '', '', '', '', '', '283.4000', NULL, 6, NULL, 'received', '', '283.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 15:32:27', 1120, NULL, NULL, 'IPAY0909', NULL, 'other', '', '', '', '', '', '', '470.0000', NULL, 6, NULL, 'received', '', '470.0000', '-11.5900', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 15:32:27', 1120, NULL, NULL, 'IPAY0910', NULL, 'cash', '', '', '', '', '', '', '11.5900', NULL, 6, NULL, 'received', '', '11.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 (1043, '2022-10-11 15:43:00', 1119, NULL, NULL, 'IPAY0911', NULL, 'cash', '', '', '', '', '', 'Visa', '82.4000', NULL, 6, NULL, 'received', '', '82.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 15:45:00', 1119, NULL, NULL, 'IPAY0911', NULL, 'cash', '', '', '', '', '', 'Visa', '-82.4000', NULL, 6, NULL, 'received', '', '-82.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 15:46:00', 1120, NULL, NULL, 'IPAY0911', NULL, 'cash', '', '', '', '', '', 'Visa', '82.4000', NULL, 6, NULL, 'received', '', '82.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-11 15:59:46', 1121, NULL, NULL, 'IPAY0911', NULL, 'cash', '', '', '', '', '', '', '625.2800', NULL, 6, NULL, 'received', '', '625.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 (1047, '2022-10-11 16:06:00', 1122, NULL, NULL, 'IPAY0912', NULL, 'cash', '', '', '', '', '', 'Visa', '50.0000', NULL, 6, NULL, 'received', '', '79.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 (1048, '2022-10-11 16:15:07', 1123, NULL, NULL, 'IPAY0913', NULL, 'cash', '', '', '', '', '', '', '23.1200', NULL, 6, NULL, 'received', '', '23.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 (1049, '2022-10-11 16:29:07', 1124, NULL, NULL, 'IPAY0914', 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 (1050, '2022-10-11 16:40:28', 1125, NULL, NULL, 'IPAY0915', NULL, 'cash', '', '', '', '', '', '', '1305.3400', NULL, 6, NULL, 'received', '', '1305.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 (1051, '2022-10-11 16:58:32', 1126, NULL, NULL, 'IPAY0916', NULL, 'cash', '', '', '', '', '', '', '68.4000', NULL, 6, 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 (1052, '2022-10-11 17:06:00', 1126, NULL, NULL, 'IPAY0917', NULL, 'cash', '', '', '', '', '', 'Visa', '0.6000', NULL, 6, 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 (1053, '2022-10-11 17:18:58', 1127, NULL, NULL, 'IPAY0917', 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 (1054, '2022-10-11 17:36:50', 1129, NULL, NULL, 'IPAY0918', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (1055, '2022-10-12 07:54:29', 1130, NULL, NULL, 'IPAY0919', NULL, 'cash', '', '', '', '', '', '', '153.2000', NULL, 6, NULL, 'received', '', '153.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 08:11:24', 1131, NULL, NULL, 'IPAY0920', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1057, '2022-10-12 08:37:11', 1132, NULL, NULL, 'IPAY0921', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 6, NULL, 'received', '', '28.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 (1058, '2022-10-12 08:55:43', 1133, NULL, NULL, 'IPAY0922', NULL, 'cash', '', '', '', '', '', '', '370.5000', NULL, 6, 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 (1059, '2022-10-12 09:09:40', 1134, NULL, NULL, 'IPAY0923', NULL, 'cash', '', '', '', '', '', '', '237.4500', NULL, 6, NULL, 'received', '', '237.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 (1060, '2022-10-12 10:08:35', 1135, NULL, NULL, 'IPAY0924', NULL, 'cash', '', '', '', '', '', '', '168.5000', NULL, 6, NULL, 'received', '', '200.0000', '31.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 10:14:43', 1136, NULL, NULL, 'IPAY0925', NULL, 'cash', '', '', '', '', '', '', '237.2000', NULL, 6, 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 (1062, '2022-10-12 10:17:47', 1137, NULL, NULL, 'IPAY0926', NULL, 'cash', '', '', '', '', '', '', '14.9600', NULL, 6, NULL, 'received', '', '50.0000', '35.0400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 10:43:59', 1139, NULL, NULL, 'IPAY0927', 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 (1064, '2022-10-12 10:55:20', 1140, NULL, NULL, 'IPAY0928', NULL, 'cash', '', '', '', '', '', '', '559.1000', NULL, 6, NULL, 'received', '', '559.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 (1065, '2022-10-12 11:02:00', 1098, NULL, NULL, 'IPAY0929', NULL, 'cash', '', '', '', '', '', 'Visa', '126.7500', NULL, 6, NULL, 'received', '', '126.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 (1066, '2022-10-12 11:23:00', 1134, NULL, NULL, 'IPAY0929', NULL, 'cash', '', '', '', '', '', 'Visa', '49.0000', NULL, 6, 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 (1067, '2022-10-12 11:31:48', 1141, NULL, NULL, 'IPAY0929', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 6, 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 (1068, '2022-10-12 11:37:00', 1141, NULL, NULL, 'IPAY0930', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1070, '2022-10-12 13:32:27', 1149, NULL, NULL, 'IPAY0931', NULL, 'cash', '', '', '', '', '', '', '206.0000', NULL, 6, 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 (1071, '2022-10-12 13:40:55', 1150, NULL, NULL, 'IPAY0932', NULL, 'cash', '', '', '', '', '', '', '205.5200', NULL, 6, NULL, 'received', '', '205.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 (1072, '2022-10-12 14:09:00', 1150, NULL, NULL, 'IPAY0933', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (1073, '2022-10-12 14:18:33', 1151, NULL, NULL, 'IPAY0933', NULL, 'cash', '', '', '', '', '', '', '186.9500', NULL, 6, NULL, 'received', '', '186.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 (1074, '2022-10-12 14:31:10', 1152, NULL, NULL, 'IPAY0934', NULL, 'cash', '', '', '', '', '', '', '715.1000', NULL, 6, NULL, 'received', '', '715.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 (1075, '2022-10-12 14:48:04', 1153, NULL, NULL, 'IPAY0935', NULL, 'cash', '', '', '', '', '', '', '5.9800', NULL, 6, NULL, 'received', '', '5.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 (1076, '2022-10-12 14:50:00', 1153, NULL, NULL, 'IPAY0936', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1077, '2022-10-12 15:00:19', 1154, NULL, NULL, 'IPAY0936', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1078, '2022-10-12 15:19:48', 1156, NULL, NULL, 'IPAY0937', NULL, 'cash', '', '', '', '', '', '', '27.8000', NULL, 6, NULL, 'received', '', '27.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 15:24:19', 1157, NULL, NULL, 'IPAY0938', NULL, 'cash', '', '', '', '', '', '', '37.6000', NULL, 6, NULL, 'received', '', '37.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 15:30:48', 1158, NULL, NULL, 'IPAY0939', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (1081, '2022-10-12 15:56:31', 1159, NULL, NULL, 'IPAY0940', NULL, 'cash', '', '', '', '', '', '', '7.8000', NULL, 6, NULL, 'received', '', '7.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-12 16:24:43', 1160, NULL, NULL, 'IPAY0941', NULL, 'cash', '', '', '', '', '', '', '4.9500', NULL, 6, NULL, 'received', '', '4.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 (1083, '2022-10-12 17:39:00', 1161, NULL, NULL, 'IPAY0942', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '397.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 (1084, '2022-10-12 18:05:11', 1162, NULL, NULL, 'IPAY0943', 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 (1085, '2022-10-12 18:05:58', 1163, NULL, NULL, 'IPAY0944', NULL, 'cash', '', '', '', '', '', '', '77.7000', NULL, 6, 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 (1086, '2022-10-12 20:41:00', NULL, NULL, 98, 'POP0008', NULL, 'Cheque', '000810', '', '', '', '', 'Visa', '5952.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1087, '2022-10-12 20:42:00', NULL, NULL, 97, 'POP0009', NULL, 'cash', '', '', '', '', '', 'Visa', '2804.0000', NULL, 6, NULL, 'sent', '&lt;p&gt;60 CEDIS DISCOUNT&lt;&sol;p&gt;', '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 (1088, '2022-10-12 20:44:00', NULL, NULL, 92, 'POP0010', NULL, 'cash', '', '', '', '', '', 'Visa', '22134.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1089, '2022-10-12 21:11:00', NULL, NULL, 99, 'POP0011', NULL, 'Cheque', '000180', '', '', '', '', 'Visa', '5775.3000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1090, '2022-10-13 08:32:15', 1165, NULL, NULL, 'IPAY0945', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1091, '2022-10-13 08:39:53', 1166, NULL, NULL, 'IPAY0946', NULL, 'cash', '', '', '', '', '', '', '42.6700', NULL, 6, NULL, 'received', '', '60.0000', '17.3300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 08:55:17', 1167, NULL, NULL, 'IPAY0947', NULL, 'cash', '', '', '', '', '', '', '64.5600', NULL, 6, NULL, 'received', '', '64.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 (1093, '2022-10-13 09:09:29', 1168, NULL, NULL, 'IPAY0948', NULL, 'cash', '', '', '', '', '', '', '87.8000', NULL, 6, NULL, 'received', '', '100.0000', '12.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 11:26:28', 1171, NULL, NULL, 'IPAY0949', NULL, 'cash', '', '', '', '', '', '', '98.0000', NULL, 6, 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 (1095, '2022-10-13 11:39:19', 1172, NULL, NULL, 'IPAY0950', NULL, 'cash', '', '', '', '', '', '', '95.0600', NULL, 6, NULL, 'received', '', '100.0000', '4.9400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 11:54:59', 1173, NULL, NULL, 'IPAY0951', NULL, 'cash', '', '', '', '', '', '', '380.3000', NULL, 6, 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 (1097, '2022-10-13 12:17:07', 1174, NULL, NULL, 'IPAY0952', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 6, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 13:35:35', 1175, NULL, NULL, 'IPAY0953', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '50.0000', '36.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 13:43:02', 1176, NULL, NULL, 'IPAY0954', NULL, 'cash', '', '', '', '', '', '', '88.0800', NULL, 6, NULL, 'received', '', '90.0000', '1.9200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 14:08:19', 1177, NULL, NULL, 'IPAY0955', NULL, 'cash', '', '', '', '', '', '', '120.4200', NULL, 6, NULL, 'received', '', '200.0000', '79.5800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 14:09:52', 1178, NULL, NULL, 'IPAY0956', NULL, 'cash', '', '', '', '', '', '', '108.0000', NULL, 6, 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 (1102, '2022-10-13 14:12:15', 1179, NULL, NULL, 'IPAY0957', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 6, NULL, 'received', '', '20.5000', '13.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 14:52:31', 1180, NULL, NULL, 'IPAY0958', NULL, 'cash', '', '', '', '', '', '', '378.3000', NULL, 6, NULL, 'received', '', '378.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 15:52:04', 1181, NULL, NULL, 'IPAY0959', 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 (1105, '2022-10-13 15:57:43', 1182, NULL, NULL, 'IPAY0960', NULL, 'cash', '', '', '', '', '', '', '32.1000', NULL, 6, NULL, 'received', '', '40.0000', '7.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-13 16:01:30', 1183, NULL, NULL, 'IPAY0961', NULL, 'cash', '', '', '', '', '', '', '2.3000', NULL, 6, 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 (1107, '2022-10-13 16:02:34', 1184, NULL, NULL, 'IPAY0962', 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 (1108, '2022-10-13 16:27:31', 1185, NULL, NULL, 'IPAY0963', NULL, 'cash', '', '', '', '', '', '', '34.9000', NULL, 6, NULL, 'received', '', '34.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 (1109, '2022-10-14 07:58:17', 1187, NULL, NULL, 'IPAY0964', NULL, 'cash', '', '', '', '', '', '', '31.9600', NULL, 6, NULL, 'received', '', '31.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 (1110, '2022-10-14 08:06:11', 1188, NULL, NULL, 'IPAY0965', NULL, 'cash', '', '', '', '', '', '', '149.2800', NULL, 6, NULL, 'received', '', '149.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 (1111, '2022-10-14 08:53:02', 1191, NULL, NULL, 'IPAY0966', 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 (1112, '2022-10-14 09:02:21', 1192, NULL, NULL, 'IPAY0967', NULL, 'cash', '', '', '', '', '', '', '60.9900', NULL, 6, NULL, 'received', '', '60.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 (1113, '2022-10-14 09:08:00', 1192, NULL, NULL, 'IPAY0968', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1114, '2022-10-14 09:39:13', 1195, NULL, NULL, 'IPAY0968', NULL, 'cash', '', '', '', '', '', '', '42.6700', NULL, 6, NULL, 'received', '', '50.0000', '7.3300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 09:51:00', 1145, NULL, NULL, 'IPAY0969', NULL, 'cash', '', '', '', '', '', 'Visa', '314.5900', NULL, 6, NULL, 'received', '', '314.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 (1116, '2022-10-14 09:53:01', 1197, NULL, NULL, 'IPAY0969', 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 (1117, '2022-10-14 10:06:03', 1199, NULL, NULL, 'IPAY0970', NULL, 'cash', '', '', '', '', '', '', '69.0000', NULL, 6, 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 (1118, '2022-10-14 10:32:44', 1201, NULL, NULL, 'IPAY0971', NULL, 'cash', '', '', '', '', '', '', '588.8900', NULL, 6, NULL, 'received', '', '588.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 (1119, '2022-10-14 10:39:27', 1202, NULL, NULL, 'IPAY0972', NULL, 'cash', '', '', '', '', '', '', '221.6300', NULL, 6, NULL, 'received', '', '221.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 (1120, '2022-10-14 10:51:56', 1204, NULL, NULL, 'IPAY0973', 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 (1121, '2022-10-14 10:56:23', 1205, NULL, NULL, 'IPAY0974', NULL, 'cash', '', '', '', '', '', '', '749.3000', NULL, 6, NULL, 'received', '', '750.0000', '0.7000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 11:17:12', 1207, NULL, NULL, 'IPAY0975', NULL, 'cash', '', '', '', '', '', '', '71.1100', NULL, 6, NULL, 'received', '', '71.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 (1123, '2022-10-14 11:23:05', 1208, NULL, NULL, 'IPAY0976', 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 (1124, '2022-10-14 12:51:02', 1213, NULL, NULL, 'IPAY0977', NULL, 'cash', '', '', '', '', '', '', '1703.2200', NULL, 6, NULL, 'received', '', '1703.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 (1125, '2022-10-14 13:11:37', 1214, NULL, NULL, 'IPAY0978', NULL, 'cash', '', '', '', '', '', '', '26.9400', NULL, 6, NULL, 'received', '', '26.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 (1126, '2022-10-14 13:40:35', 1215, NULL, NULL, 'IPAY0979', NULL, 'cash', '', '', '', '', '', '', '214.1700', NULL, 6, NULL, 'received', '', '215.0000', '0.8300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 13:47:40', 1216, NULL, NULL, 'IPAY0980', NULL, 'cash', '', '', '', '', '', '', '138.8000', NULL, 6, NULL, 'received', '', '150.0000', '11.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 14:11:15', 1219, NULL, NULL, 'IPAY0981', NULL, 'cash', '', '', '', '', '', '', '81.1000', NULL, 6, 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 (1129, '2022-10-14 14:16:28', 1220, NULL, NULL, 'IPAY0982', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1130, '2022-10-14 14:56:47', 1223, NULL, NULL, 'IPAY0983', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 6, 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 (1131, '2022-10-14 14:57:17', 1224, NULL, NULL, 'IPAY0984', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, NULL, 'received', '', '28.0000', '0.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 15:14:37', 1225, NULL, NULL, 'IPAY0985', NULL, 'cash', '', '', '', '', '', '', '206.0500', NULL, 6, NULL, 'received', '', '206.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 (1133, '2022-10-14 15:24:28', 1226, NULL, NULL, 'IPAY0986', NULL, 'cash', '', '', '', '', '', '', '189.3700', NULL, 6, NULL, 'received', '', '189.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 (1134, '2022-10-14 15:41:29', 1229, NULL, NULL, 'IPAY0987', NULL, 'cash', '', '', '', '', '', '', '54.1700', NULL, 6, NULL, 'received', '', '54.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 (1135, '2022-10-14 15:51:32', 1230, NULL, NULL, 'IPAY0988', NULL, 'cash', '', '', '', '', '', '', '200.2000', NULL, 6, NULL, 'received', '', '201.0000', '0.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 16:05:44', 1231, NULL, NULL, 'IPAY0989', NULL, 'cash', '', '', '', '', '', '', '97.5000', NULL, 6, NULL, 'received', '', '100.0000', '2.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 16:12:12', 1232, NULL, NULL, 'IPAY0990', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1138, '2022-10-14 16:19:33', 1233, NULL, NULL, 'IPAY0991', NULL, 'cash', '', '', '', '', '', '', '277.8000', NULL, 6, NULL, 'received', '', '277.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-14 16:29:43', 1235, NULL, NULL, 'IPAY0992', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 6, 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 (1140, '2022-10-14 16:40:17', 1236, NULL, NULL, 'IPAY0993', NULL, 'cash', '', '', '', '', '', '', '180.8400', NULL, 6, NULL, 'received', '', '180.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 (1141, '2022-10-14 16:57:52', 1237, NULL, NULL, 'IPAY0994', 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 (1142, '2022-10-14 17:10:12', 1238, NULL, NULL, 'IPAY0995', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 6, 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 (1143, '2022-10-15 07:42:21', 1240, NULL, NULL, 'IPAY0996', 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 (1144, '2022-10-15 09:13:00', 1244, NULL, NULL, 'IPAY0997', NULL, 'cash', '', '', '', '', '', '', '556.2700', NULL, 6, NULL, 'received', '', '556.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 (1145, '2022-10-15 09:30:27', 1246, NULL, NULL, 'IPAY0998', NULL, 'cash', '', '', '', '', '', '', '17.7000', NULL, 6, NULL, 'received', '', '50.0000', '32.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 10:09:51', 1247, NULL, NULL, 'IPAY0999', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 6, NULL, 'received', '', '1000.0000', '-85.8100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 10:17:07', 1249, NULL, NULL, 'IPAY1000', NULL, 'cash', '', '', '', '', '', '', '605.1500', NULL, 6, NULL, 'received', '', '605.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 (1148, '2022-10-15 10:19:00', 1250, NULL, NULL, 'IPAY1001', NULL, 'cash', '', '', '', '', '', '', '110.5000', NULL, 6, NULL, 'received', '', '110.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 10:45:24', 1252, NULL, NULL, 'IPAY1002', NULL, 'cash', '', '', '', '', '', '', '22.1500', NULL, 6, NULL, 'received', '', '22.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 (1150, '2022-10-15 10:52:31', 1253, NULL, NULL, 'IPAY1003', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '15.2000', '2.0600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 11:08:59', 1254, NULL, NULL, 'IPAY1004', NULL, 'cash', '', '', '', '', '', '', '58.6000', NULL, 6, NULL, 'received', '', '58.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 11:11:55', 1255, NULL, NULL, 'IPAY1005', 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 (1153, '2022-10-15 11:21:05', 1256, NULL, NULL, 'IPAY1006', 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 (1154, '2022-10-15 11:23:21', 1257, NULL, NULL, 'IPAY1007', NULL, 'cash', '', '', '', '', '', '', '68.5800', NULL, 6, NULL, 'received', '', '70.0000', '1.4200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 11:52:14', 1258, NULL, NULL, 'IPAY1008', NULL, 'cash', '', '', '', '', '', '', '74.4000', NULL, 6, NULL, 'received', '', '74.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 12:07:33', 1259, NULL, NULL, 'IPAY1009', NULL, 'cash', '', '', '', '', '', '', '120.0800', NULL, 6, NULL, 'received', '', '120.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 (1157, '2022-10-15 12:08:38', 1260, NULL, NULL, 'IPAY1010', NULL, 'cash', '', '', '', '', '', '', '80.7000', NULL, 6, NULL, 'received', '', '80.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 12:50:21', 1261, NULL, NULL, 'IPAY1011', NULL, 'cash', '', '', '', '', '', '', '28.8000', NULL, 6, NULL, 'received', '', '28.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 13:03:28', 1262, NULL, NULL, 'IPAY1012', NULL, 'cash', '', '', '', '', '', '', '49.4000', NULL, 6, NULL, 'received', '', '100.0000', '50.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 13:17:22', 1264, NULL, NULL, 'IPAY1013', NULL, 'cash', '', '', '', '', '', '', '363.0700', NULL, 6, NULL, 'received', '', '363.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 (1161, '2022-10-15 13:19:47', 1265, NULL, NULL, 'IPAY1014', NULL, 'cash', '', '', '', '', '', '', '12.3400', NULL, 6, NULL, 'received', '', '12.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 (1162, '2022-10-15 14:16:15', 1266, NULL, NULL, 'IPAY1015', NULL, 'cash', '', '', '', '', '', '', '20.8000', NULL, 6, NULL, 'received', '', '20.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 14:27:07', 1267, NULL, NULL, 'IPAY1016', NULL, 'cash', '', '', '', '', '', '', '180.1300', NULL, 6, NULL, 'received', '', '180.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 (1164, '2022-10-15 14:29:26', 1268, NULL, NULL, 'IPAY1017', NULL, 'cash', '', '', '', '', '', '', '42.0100', NULL, 6, NULL, 'received', '', '42.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 (1165, '2022-10-15 14:36:02', 1269, NULL, NULL, 'IPAY1018', NULL, 'cash', '', '', '', '', '', '', '87.9000', NULL, 6, NULL, 'received', '', '87.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 (1166, '2022-10-15 14:45:11', 1270, NULL, NULL, 'IPAY1019', NULL, 'cash', '', '', '', '', '', '', '21.4000', NULL, 6, NULL, 'received', '', '21.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-15 14:53:45', 1271, NULL, NULL, 'IPAY1020', NULL, 'cash', '', '', '', '', '', '', '356.1000', NULL, 6, NULL, 'received', '', '356.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 (1168, '2022-10-15 14:57:00', NULL, NULL, 102, 'POP0012', NULL, 'cash', '', '', '', '', '', 'Visa', '972.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1169, '2022-10-16 18:55:00', NULL, NULL, 103, 'POP0013', NULL, 'other', '', '', '', '', '', 'Visa', '7153.9200', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1170, '2022-10-17 08:48:51', 1273, NULL, NULL, 'IPAY1021', NULL, 'cash', '', '', '', '', '', '', '735.0100', NULL, 6, NULL, 'received', '', '735.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 (1171, '2022-10-17 09:02:00', 1274, NULL, NULL, 'IPAY1022', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 6, 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 (1172, '2022-10-17 09:17:08', 1275, NULL, NULL, 'IPAY1023', NULL, 'cash', '', '', '', '', '', '', '91.1100', NULL, 6, NULL, 'received', '', '91.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 (1173, '2022-10-17 09:24:33', 1277, NULL, NULL, 'IPAY1024', NULL, 'cash', '', '', '', '', '', '', '205.8300', NULL, 6, NULL, 'received', '', '205.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 (1174, '2022-10-17 09:33:26', 1278, NULL, NULL, 'IPAY1025', 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 (1175, '2022-10-17 10:16:16', 1280, NULL, NULL, 'IPAY1026', NULL, 'cash', '', '', '', '', '', '', '1052.0600', NULL, 6, NULL, 'received', '', '1052.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 (1176, '2022-10-17 10:20:06', 1281, NULL, NULL, 'IPAY1027', NULL, 'cash', '', '', '', '', '', '', '92.4000', NULL, 6, NULL, 'received', '', '92.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 10:25:07', 1282, NULL, NULL, 'IPAY1028', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 6, NULL, 'received', '', '55.0000', '-10.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 10:29:43', 1283, NULL, NULL, 'IPAY1029', NULL, 'cash', '', '', '', '', '', '', '26.9200', NULL, 6, NULL, 'received', '', '26.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 (1179, '2022-10-17 10:31:44', 1284, NULL, NULL, 'IPAY1030', NULL, 'cash', '', '', '', '', '', '', '433.5500', NULL, 6, NULL, 'received', '', '433.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 (1180, '2022-10-17 10:37:00', 1284, NULL, NULL, 'IPAY1031', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1181, '2022-10-17 11:03:23', 1285, NULL, NULL, 'IPAY1031', NULL, 'cash', '', '', '', '', '', '', '68.4000', NULL, 6, 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 (1182, '2022-10-17 11:35:19', 1286, NULL, NULL, 'IPAY1032', NULL, 'cash', '', '', '', '', '', '', '416.6600', NULL, 6, NULL, 'received', '', '450.0000', '33.3400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 11:47:18', 1287, NULL, NULL, 'IPAY1033', NULL, 'cash', '', '', '', '', '', '', '12.9800', NULL, 6, NULL, 'received', '', '12.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 (1184, '2022-10-17 11:59:19', 1288, NULL, NULL, 'IPAY1034', NULL, 'cash', '', '', '', '', '', '', '36.9000', NULL, 6, NULL, 'received', '', '36.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 (1185, '2022-10-17 12:04:00', 1288, NULL, NULL, 'IPAY1035', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1186, '2022-10-17 12:52:29', 1290, NULL, NULL, 'IPAY1035', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 6, 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 (1187, '2022-10-17 13:00:51', 1291, NULL, NULL, 'IPAY1036', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1188, '2022-10-17 13:17:48', 1294, NULL, NULL, 'IPAY1037', NULL, 'cash', '', '', '', '', '', '', '300.8900', NULL, 6, NULL, 'received', '', '300.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 (1189, '2022-10-17 13:22:48', 1295, NULL, NULL, 'IPAY1038', 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 (1190, '2022-10-17 13:39:11', 1296, NULL, NULL, 'IPAY1039', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (1191, '2022-10-17 13:48:16', 1297, NULL, NULL, 'IPAY1040', NULL, 'cash', '', '', '', '', '', '', '967.6300', NULL, 6, NULL, 'received', '', '1000.0000', '32.3700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 14:19:40', 1299, NULL, NULL, 'IPAY1041', NULL, 'cash', '', '', '', '', '', '', '467.5900', NULL, 6, NULL, 'received', '', '500.0000', '32.4100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 14:21:22', 1300, NULL, NULL, 'IPAY1042', NULL, 'cash', '', '', '', '', '', '', '24.6000', NULL, 6, NULL, 'received', '', '24.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 15:03:03', 1302, NULL, NULL, 'IPAY1043', NULL, 'cash', '', '', '', '', '', '', '68.3800', NULL, 6, NULL, 'received', '', '68.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 (1195, '2022-10-17 15:06:29', 1303, NULL, NULL, 'IPAY1044', NULL, 'cash', '', '', '', '', '', '', '1235.4100', NULL, 6, NULL, 'received', '', '1240.0000', '4.5900', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 15:12:49', 1304, NULL, NULL, 'IPAY1045', 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 (1197, '2022-10-17 15:15:19', 1305, NULL, NULL, 'IPAY1046', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 6, 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, '2022-10-17 15:22:17', 1306, NULL, NULL, 'IPAY1047', NULL, 'cash', '', '', '', '', '', '', '1428.7000', NULL, 6, NULL, 'received', '', '1428.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 15:37:40', 1307, NULL, NULL, 'IPAY1048', NULL, 'cash', '', '', '', '', '', '', '21.1000', NULL, 6, 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 (1200, '2022-10-17 15:40:21', 1308, NULL, NULL, 'IPAY1049', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 6, 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 (1201, '2022-10-17 15:46:31', 1310, NULL, NULL, 'IPAY1050', NULL, 'cash', '', '', '', '', '', '', '124.0000', NULL, 6, 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 (1202, '2022-10-17 15:48:25', 1311, NULL, NULL, 'IPAY1051', NULL, 'cash', '', '', '', '', '', '', '1616.6000', NULL, 6, NULL, 'received', '', '1616.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 15:51:57', 1312, NULL, NULL, 'IPAY1052', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 6, NULL, 'received', '', '28.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 (1204, '2022-10-17 15:54:08', 1313, NULL, NULL, 'IPAY1053', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '15.0000', '1.8600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 15:58:38', 1314, NULL, NULL, 'IPAY1054', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 6, 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 (1206, '2022-10-17 16:00:41', 1315, NULL, NULL, 'IPAY1055', NULL, 'cash', '', '', '', '', '', '', '355.4200', NULL, 6, NULL, 'received', '', '355.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 (1207, '2022-10-17 16:02:57', 1316, NULL, NULL, 'IPAY1056', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 6, NULL, 'received', '', '50.0000', '5.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 16:20:27', 1318, NULL, NULL, 'IPAY1057', NULL, 'cash', '', '', '', '', '', '', '233.9000', NULL, 6, NULL, 'received', '', '233.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 (1209, '2022-10-17 16:33:38', 1319, NULL, NULL, 'IPAY1058', NULL, 'other', '', '', '', '', '', '', '151.3400', NULL, 6, NULL, 'received', '', '151.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 (1210, '2022-10-17 16:47:49', 1321, NULL, NULL, 'IPAY1059', NULL, 'cash', '', '', '', '', '', '', '15.2000', NULL, 6, NULL, 'received', '', '15.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-17 17:48:00', 1317, NULL, NULL, 'IPAY1060', NULL, 'cash', '', '', '', '', '', 'Visa', '408.7800', NULL, 6, NULL, 'received', '', '408.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 (1212, '2022-10-18 07:39:33', 1324, NULL, NULL, 'IPAY1060', NULL, 'cash', '', '', '', '', '', '', '567.0000', NULL, 6, NULL, 'received', '', '567.0000', '-0.0400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 08:18:52', 1326, NULL, NULL, 'IPAY1061', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 6, 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 (1214, '2022-10-18 08:36:57', 1327, NULL, NULL, 'IPAY1062', NULL, 'cash', '', '', '', '', '', '', '8.4000', NULL, 6, 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 (1215, '2022-10-18 08:38:36', 1328, NULL, NULL, 'IPAY1063', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '15.0000', '1.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 09:17:05', 1330, NULL, NULL, 'IPAY1064', NULL, 'cash', '', '', '', '', '', '', '106.6100', NULL, 6, NULL, 'received', '', '106.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 (1217, '2022-10-18 09:59:10', 1333, NULL, NULL, 'IPAY1065', NULL, 'cash', '', '', '', '', '', '', '251.9400', NULL, 6, NULL, 'received', '', '251.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 (1218, '2022-10-18 10:06:20', 1334, NULL, NULL, 'IPAY1066', NULL, 'cash', '', '', '', '', '', '', '2.2000', NULL, 6, NULL, 'received', '', '2.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 10:08:00', 1334, NULL, NULL, 'IPAY1067', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1220, '2022-10-18 10:44:52', 1338, NULL, NULL, 'IPAY1067', NULL, 'cash', '', '', '', '', '', '', '540.5100', NULL, 6, NULL, 'received', '', '540.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 (1221, '2022-10-18 11:06:00', 1324, NULL, NULL, 'IPAY1068', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0400', NULL, 6, NULL, 'received', '', '0.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 (1222, '2022-10-18 11:15:00', 1324, NULL, NULL, 'IPAY1068', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1223, '2022-10-18 11:28:44', 1339, NULL, NULL, 'IPAY1068', NULL, 'cash', '', '', '', '', '', '', '450.6000', NULL, 6, NULL, 'received', '', '450.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 12:00:15', 1340, NULL, NULL, 'IPAY1069', NULL, 'cash', '', '', '', '', '', '', '90.0800', NULL, 6, NULL, 'received', '', '90.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 (1225, '2022-10-18 12:12:26', 1341, NULL, NULL, 'IPAY1070', NULL, 'cash', '', '', '', '', '', '', '2250.7700', NULL, 6, NULL, 'received', '', '2260.0000', '9.2300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 12:33:38', 1342, NULL, NULL, 'IPAY1071', NULL, 'cash', '', '', '', '', '', '', '91.2200', NULL, 6, NULL, 'received', '', '91.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 (1227, '2022-10-18 12:36:55', 1343, NULL, NULL, 'IPAY1072', 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 (1228, '2022-10-18 12:41:00', 1336, NULL, NULL, 'IPAY1073', NULL, 'cash', '', '', '', '', '', 'Visa', '200.0000', NULL, 6, 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 (1229, '2022-10-18 12:50:34', 1345, NULL, NULL, 'IPAY1073', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '20.0000', '6.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 13:29:03', 1347, NULL, NULL, 'IPAY1074', NULL, 'cash', '', '', '', '', '', '', '60.1900', NULL, 6, NULL, 'received', '', '60.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 (1231, '2022-10-18 13:29:57', 1348, NULL, NULL, 'IPAY1075', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 6, 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 (1232, '2022-10-18 13:43:40', 1349, NULL, NULL, 'IPAY1076', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 6, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 13:54:56', 1350, NULL, NULL, 'IPAY1077', NULL, 'cash', '', '', '', '', '', '', '1811.9900', NULL, 6, NULL, 'received', '', '1850.0000', '38.0100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 13:59:29', 1351, NULL, NULL, 'IPAY1078', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (1235, '2022-10-18 14:12:54', 1352, NULL, NULL, 'IPAY1079', NULL, 'cash', '', '', '', '', '', '', '69.5800', NULL, 6, NULL, 'received', '', '70.0000', '0.4200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 14:14:46', 1353, NULL, NULL, 'IPAY1080', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 6, 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 (1237, '2022-10-18 14:21:17', 1354, NULL, NULL, 'IPAY1081', NULL, 'cash', '', '', '', '', '', '', '209.4000', NULL, 6, NULL, 'received', '', '210.0000', '0.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 14:29:22', 1355, NULL, NULL, 'IPAY1082', NULL, 'cash', '', '', '', '', '', '', '57.8000', NULL, 6, NULL, 'received', '', '60.0000', '2.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 14:52:06', 1356, NULL, NULL, 'IPAY1083', NULL, 'cash', '', '', '', '', '', '', '143.3400', NULL, 6, NULL, 'received', '', '143.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 (1240, '2022-10-18 15:24:20', 1357, NULL, NULL, 'IPAY1084', NULL, 'cash', '', '', '', '', '', '', '8.3200', NULL, 6, NULL, 'received', '', '10.0000', '1.6800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 15:54:35', 1358, NULL, NULL, 'IPAY1085', NULL, 'cash', '', '', '', '', '', '', '311.6000', NULL, 6, NULL, 'received', '', '350.0000', '38.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 15:55:36', 1359, NULL, NULL, 'IPAY1086', NULL, 'cash', '', '', '', '', '', '', '110.4000', NULL, 6, NULL, 'received', '', '110.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 16:16:33', 1360, NULL, NULL, 'IPAY1087', NULL, 'cash', '', '', '', '', '', '', '70.7000', NULL, 6, NULL, 'received', '', '70.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 16:20:00', 1361, NULL, NULL, 'IPAY1088', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '116.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 16:21:18', 1362, NULL, NULL, 'IPAY1089', 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 (1246, '2022-10-18 16:32:57', 1363, NULL, NULL, 'IPAY1090', NULL, 'cash', '', '', '', '', '', '', '809.2600', NULL, 6, NULL, 'received', '', '809.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 (1247, '2022-10-18 16:43:44', 1364, NULL, NULL, 'IPAY1091', NULL, 'cash', '', '', '', '', '', '', '24.5200', NULL, 6, NULL, 'received', '', '25.0000', '0.4800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 16:52:15', 1365, NULL, NULL, 'IPAY1092', NULL, 'cash', '', '', '', '', '', '', '23.6100', NULL, 6, NULL, 'received', '', '23.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 (1249, '2022-10-18 17:11:40', 1366, NULL, NULL, 'IPAY1093', NULL, 'cash', '', '', '', '', '', '', '349.5000', NULL, 6, NULL, 'received', '', '349.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-18 17:29:00', 1361, NULL, NULL, 'IPAY1094', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1251, '2022-10-19 07:41:28', 1367, NULL, NULL, 'IPAY1094', NULL, 'cash', '', '', '', '', '', '', '294.0400', NULL, 6, NULL, 'received', '', '294.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 (1252, '2022-10-19 07:54:55', 1368, NULL, NULL, 'IPAY1095', NULL, 'cash', '', '', '', '', '', '', '81.5200', NULL, 6, NULL, 'received', '', '81.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 (1253, '2022-10-19 08:17:03', 1369, NULL, NULL, 'IPAY1096', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '20.0000', '4.9300', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 08:20:00', 1367, NULL, NULL, 'IPAY1097', NULL, 'cash', '', '', '', '', '', 'Visa', '70.9200', NULL, 6, NULL, 'received', '', '70.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 (1255, '2022-10-19 08:28:25', 1371, NULL, NULL, 'IPAY1097', NULL, 'cash', '', '', '', '', '', '', '45.5200', NULL, 6, NULL, 'received', '', '45.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 (1256, '2022-10-19 08:29:00', 1372, NULL, NULL, 'IPAY1098', NULL, 'cash', '', '', '', '', '', '', '16.6000', NULL, 6, NULL, 'received', '', '20.0000', '3.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 08:54:00', 1329, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '674.8200', NULL, 6, NULL, 'received', '', '674.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 (1258, '2022-10-19 08:54:00', 1331, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '899.7600', NULL, 6, NULL, 'received', '', '899.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 (1259, '2022-10-19 08:55:00', 1337, NULL, NULL, 'IPAY1099', NULL, 'other', '', '', '', '', '', 'Visa', '2317.1100', NULL, 6, NULL, 'received', '', '2317.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 (1260, '2022-10-19 08:55:00', 1332, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '599.9000', NULL, 6, NULL, 'received', '', '599.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 (1261, '2022-10-19 09:00:00', 1335, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '367.0000', NULL, 6, NULL, 'received', '', '367.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 09:01:00', 1333, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '-0.3000', NULL, 6, NULL, 'received', '', '-0.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 09:03:00', 1336, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '41.9500', NULL, 6, NULL, 'received', '', '41.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 (1264, '2022-10-19 09:04:00', 1346, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '194.0000', NULL, 6, 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 (1265, '2022-10-19 09:04:00', 1344, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', 'Visa', '374.3300', NULL, 6, NULL, 'received', '', '374.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 (1266, '2022-10-19 09:29:10', 1374, NULL, NULL, 'IPAY1099', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 6, NULL, 'received', '', '90.0000', '-5.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 09:58:29', 1376, NULL, NULL, 'IPAY1100', NULL, 'cash', '', '', '', '', '', '', '313.8700', NULL, 6, NULL, 'received', '', '313.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 (1268, '2022-10-19 10:39:26', 1378, NULL, NULL, 'IPAY1101', 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 (1269, '2022-10-19 10:51:39', 1379, NULL, NULL, 'IPAY1102', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 6, NULL, 'received', '', '180.0000', '-270.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 10:58:34', 1380, NULL, NULL, 'IPAY1103', NULL, 'cash', '', '', '', '', '', '', '159.1000', NULL, 6, NULL, 'received', '', '159.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 (1271, '2022-10-19 11:33:30', 1381, NULL, NULL, 'IPAY1104', NULL, 'cash', '', '', '', '', '', '', '1027.1500', NULL, 6, NULL, 'received', '', '1027.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 (1272, '2022-10-19 11:36:32', 1382, NULL, NULL, 'IPAY1105', NULL, 'cash', '', '', '', '', '', '', '124.1000', NULL, 6, 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 (1273, '2022-10-19 11:45:50', 1383, NULL, NULL, 'IPAY1106', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1274, '2022-10-19 12:24:10', 1385, NULL, NULL, 'IPAY1107', NULL, 'cash', '', '', '', '', '', '', '442.5200', NULL, 6, NULL, 'received', '', '442.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 (1275, '2022-10-19 12:24:42', 1386, NULL, NULL, 'IPAY1108', NULL, 'cash', '', '', '', '', '', '', '6.6500', NULL, 6, NULL, 'received', '', '7.0000', '0.3500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 13:34:00', 1388, NULL, NULL, 'IPAY1109', NULL, 'cash', '', '', '', '', '', 'Visa', '1237.4000', NULL, 6, NULL, 'received', '', '1237.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 13:38:00', 1387, NULL, NULL, 'IPAY1109', NULL, 'cash', '', '', '', '', '', 'Visa', '511.2000', NULL, 6, NULL, 'received', '', '511.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 13:39:00', 1385, NULL, NULL, 'IPAY1109', NULL, 'cash', '', '', '', '', '', 'Visa', '-134.4000', NULL, 6, NULL, 'received', '', '-134.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 14:38:05', 1390, NULL, NULL, 'IPAY1109', NULL, 'cash', '', '', '', '', '', '', '118.8000', NULL, 6, NULL, 'received', '', '118.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 14:39:00', 1391, NULL, NULL, 'IPAY1110', NULL, 'cash', '', '', '', '', '', '', '199.6000', NULL, 6, NULL, 'received', '', '200.0000', '0.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 15:20:08', 1393, NULL, NULL, 'IPAY1111', NULL, 'cash', '', '', '', '', '', '', '46.8000', NULL, 6, NULL, 'received', '', '46.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 15:28:22', 1394, NULL, NULL, 'IPAY1112', NULL, 'cash', '', '', '', '', '', '', '282.0200', NULL, 6, NULL, 'received', '', '282.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 (1283, '2022-10-19 15:40:00', NULL, NULL, 108, 'POP0014', NULL, 'cash', '', '', '', '', '', 'Visa', '7768.8000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1284, '2022-10-19 15:43:34', 1395, NULL, NULL, 'IPAY1113', NULL, 'cash', '', '', '', '', '', '', '295.5800', NULL, 6, NULL, 'received', '', '295.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 (1285, '2022-10-19 15:55:29', 1396, NULL, NULL, 'IPAY1114', NULL, 'cash', '', '', '', '', '', '', '56.9300', NULL, 6, NULL, 'received', '', '56.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 (1286, '2022-10-19 16:37:17', 1398, NULL, NULL, 'IPAY1115', NULL, 'cash', '', '', '', '', '', '', '903.5000', NULL, 6, NULL, 'received', '', '903.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-19 17:17:06', 1399, NULL, NULL, 'IPAY1116', NULL, 'cash', '', '', '', '', '', '', '270.1600', NULL, 6, NULL, 'received', '', '270.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 (1288, '2022-10-19 17:21:41', 1400, NULL, NULL, 'IPAY1117', 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 (1289, '2022-10-19 17:30:00', 1373, NULL, NULL, 'IPAY1118', NULL, 'cash', '', '', '', '', '', 'Visa', '1287.8400', NULL, 6, NULL, 'received', '', '1287.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 (1290, '2022-10-20 08:43:29', 1402, NULL, NULL, 'IPAY1118', NULL, 'cash', '', '', '', '', '', '', '79.3700', NULL, 6, NULL, 'received', '', '79.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 (1291, '2022-10-20 09:40:09', 1404, NULL, NULL, 'IPAY1119', NULL, 'cash', '', '', '', '', '', '', '14.5200', NULL, 6, NULL, 'received', '', '14.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 (1292, '2022-10-20 09:45:15', 1405, NULL, NULL, 'IPAY1120', NULL, 'cash', '', '', '', '', '', '', '239.8000', NULL, 6, NULL, 'received', '', '300.0000', '60.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 09:48:32', 1406, NULL, NULL, 'IPAY1121', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 6, 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 (1294, '2022-10-20 10:37:43', 1409, NULL, NULL, 'IPAY1122', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '15.2000', '2.0600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 11:34:20', 1410, NULL, NULL, 'IPAY1123', NULL, 'cash', '', '', '', '', '', '', '165.0600', NULL, 6, NULL, 'received', '', '165.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 (1296, '2022-10-20 12:51:38', 1413, NULL, NULL, 'IPAY1124', NULL, 'cash', '', '', '', '', '', '', '167.2800', NULL, 6, NULL, 'received', '', '167.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 (1297, '2022-10-20 13:15:00', 1412, NULL, NULL, 'IPAY1125', NULL, 'cash', '', '', '', '', '', 'Visa', '397.6800', NULL, 6, NULL, 'received', '', '397.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 (1298, '2022-10-20 13:31:07', 1415, NULL, NULL, 'IPAY1125', NULL, 'cash', '', '', '', '', '', '', '170.2400', NULL, 6, NULL, 'received', '', '200.0000', '29.7600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 13:39:31', 1416, NULL, NULL, 'IPAY1126', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 6, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1300, '2022-10-20 13:56:39', 1417, NULL, NULL, 'IPAY1127', NULL, 'cash', '', '', '', '', '', '', '270.2800', NULL, 6, NULL, 'received', '', '270.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 (1301, '2022-10-20 14:11:03', 1418, NULL, NULL, 'IPAY1128', NULL, 'cash', '', '', '', '', '', '', '1610.9300', NULL, 6, NULL, 'received', '', '1610.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 (1302, '2022-10-20 14:15:37', 1419, NULL, NULL, 'IPAY1129', NULL, 'cash', '', '', '', '', '', '', '98.0000', NULL, 6, NULL, 'received', '', '100.0000', '2.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 14:26:25', 1420, NULL, NULL, 'IPAY1130', 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 (1304, '2022-10-20 14:46:03', 1421, NULL, NULL, 'IPAY1131', NULL, 'cash', '', '', '', '', '', '', '242.0000', NULL, 6, NULL, 'received', '', '250.0000', '8.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 14:50:05', 1422, NULL, NULL, 'IPAY1132', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 6, NULL, 'received', '', '27.0000', '0.7200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 15:10:45', 1423, NULL, NULL, 'IPAY1133', NULL, 'cash', '', '', '', '', '', '', '510.0000', NULL, 6, 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 (1307, '2022-10-20 15:11:48', 1424, NULL, NULL, 'IPAY1134', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 6, 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 (1308, '2022-10-20 15:33:28', 1427, NULL, NULL, 'IPAY1135', NULL, 'cash', '', '', '', '', '', '', '18.3000', NULL, 6, NULL, 'received', '', '20.0000', '1.7000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 15:36:37', 1428, NULL, NULL, 'IPAY1136', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 6, NULL, 'received', '', '27.0000', '-0.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-20 16:16:52', 1429, NULL, NULL, 'IPAY1137', NULL, 'cash', '', '', '', '', '', '', '3.4200', NULL, 6, NULL, 'received', '', '3.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 (1311, '2022-10-20 17:02:31', 1430, NULL, NULL, 'IPAY1138', 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 (1312, '2022-10-20 17:03:58', 1431, NULL, NULL, 'IPAY1139', NULL, 'cash', '', '', '', '', '', '', '28.8700', NULL, 6, NULL, 'received', '', '28.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 (1313, '2022-10-20 17:08:03', 1432, NULL, NULL, 'IPAY1140', NULL, 'cash', '', '', '', '', '', '', '34.2100', NULL, 6, NULL, 'received', '', '34.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 (1314, '2022-10-20 17:14:03', 1433, NULL, NULL, 'IPAY1141', NULL, 'cash', '', '', '', '', '', '', '15.0700', NULL, 6, NULL, 'received', '', '15.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 (1315, '2022-10-20 17:27:35', 1434, NULL, NULL, 'IPAY1142', NULL, 'cash', '', '', '', '', '', '', '279.0400', NULL, 6, NULL, 'received', '', '279.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 (1316, '2022-10-20 17:30:40', 1435, NULL, NULL, 'IPAY1143', NULL, 'cash', '', '', '', '', '', '', '59.6000', NULL, 6, NULL, 'received', '', '59.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 07:58:39', 1436, NULL, NULL, 'IPAY1144', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 6, NULL, 'received', '', '26.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 (1318, '2022-10-21 08:10:11', 1437, NULL, NULL, 'IPAY1145', NULL, 'cash', '', '', '', '', '', '', '96.5300', NULL, 6, NULL, 'received', '', '200.0000', '103.4700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 08:35:57', 1438, NULL, NULL, 'IPAY1146', 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 (1320, '2022-10-21 08:40:00', 1403, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', 'Visa', '653.0900', NULL, 6, NULL, 'received', '', '653.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 (1321, '2022-10-21 08:57:00', 1425, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', 'Visa', '185.3200', NULL, 6, NULL, 'received', '', '185.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 (1322, '2022-10-21 08:57:00', 1415, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', 'Visa', '47.2000', NULL, 6, NULL, 'received', '', '47.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 08:58:00', 1414, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', 'Visa', '972.5600', NULL, 6, NULL, 'received', '', '972.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 (1324, '2022-10-21 09:01:00', 1407, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', 'Visa', '102.0000', NULL, 6, 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 (1325, '2022-10-21 09:09:19', 1440, NULL, NULL, 'IPAY1147', NULL, 'cash', '', '', '', '', '', '', '404.0000', NULL, 6, NULL, 'received', '', '450.0000', '46.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 10:11:41', 1442, NULL, NULL, 'IPAY1148', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 6, NULL, 'received', '', '200.0000', '22.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 10:40:15', 1444, NULL, NULL, 'IPAY1149', NULL, 'cash', '', '', '', '', '', '', '87.8000', NULL, 6, NULL, 'received', '', '90.0000', '2.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 10:42:52', 1445, NULL, NULL, 'IPAY1150', NULL, 'cash', '', '', '', '', '', '', '694.3100', NULL, 6, NULL, 'received', '', '694.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 (1329, '2022-10-21 10:46:39', 1446, NULL, NULL, 'IPAY1151', NULL, 'cash', '', '', '', '', '', '', '23.6500', NULL, 6, NULL, 'received', '', '50.0000', '26.3500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 10:55:03', 1447, NULL, NULL, 'IPAY1152', NULL, 'cash', '', '', '', '', '', '', '1096.0000', NULL, 6, NULL, 'received', '', '1096.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 11:09:46', 1448, NULL, NULL, 'IPAY1153', NULL, 'cash', '', '', '', '', '', '', '249.0000', NULL, 6, 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 (1332, '2022-10-21 11:50:16', 1451, NULL, NULL, 'IPAY1154', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '15.0000', '1.8600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 12:06:35', 1452, NULL, NULL, 'IPAY1155', NULL, 'cash', '', '', '', '', '', '', '86.2000', NULL, 6, NULL, 'received', '', '100.0000', '13.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 12:21:47', 1453, NULL, NULL, 'IPAY1156', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 6, 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 (1335, '2022-10-21 12:26:32', 1454, NULL, NULL, 'IPAY1157', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, 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 (1336, '2022-10-21 14:41:00', 984, NULL, NULL, 'IPAY1158', NULL, 'cash', '', '', '', '', '', 'Visa', '-225.9200', NULL, 6, NULL, 'received', '', '-225.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 (1337, '2022-10-21 14:53:20', 1460, NULL, NULL, 'IPAY1158', NULL, 'cash', '', '', '', '', '', '', '117.4200', NULL, 6, NULL, 'received', '', '120.0000', '2.5800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 15:02:43', 1461, NULL, NULL, 'IPAY1159', NULL, 'cash', '', '', '', '', '', '', '194.7000', NULL, 6, 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 (1339, '2022-10-21 15:04:05', 1462, NULL, NULL, 'IPAY1160', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 6, NULL, 'received', '', '26.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 (1340, '2022-10-21 15:23:10', 1463, NULL, NULL, 'IPAY1161', NULL, 'other', '', '', '', '', '', '', '437.8100', NULL, 6, NULL, 'received', '', '437.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 (1341, '2022-10-21 15:28:53', 1464, NULL, NULL, 'IPAY1162', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 6, NULL, 'received', '', '1800.0000', '-764.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 15:28:57', 1465, NULL, NULL, 'IPAY1163', NULL, 'cash', '', '', '', '', '', '', '151.5500', NULL, 6, NULL, 'received', '', '151.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 (1343, '2022-10-21 15:33:18', 1466, NULL, NULL, 'IPAY1164', NULL, 'cash', '', '', '', '', '', '', '26.2800', NULL, 6, NULL, 'received', '', '26.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 (1344, '2022-10-21 16:00:00', 1459, NULL, NULL, 'IPAY1165', NULL, 'cash', '', '', '', '', '', 'Visa', '690.5700', NULL, 6, NULL, 'received', '', '690.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 (1345, '2022-10-21 16:00:15', 1467, NULL, NULL, 'IPAY1165', NULL, 'cash', '', '', '', '', '', '', '52.2000', NULL, 6, NULL, 'received', '', '52.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 16:00:00', 1458, NULL, NULL, 'IPAY1166', NULL, 'cash', '', '', '', '', '', 'Visa', '1641.9100', NULL, 6, NULL, 'received', '', '1641.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 (1347, '2022-10-21 16:00:51', 1468, NULL, NULL, 'IPAY1166', 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 (1348, '2022-10-21 16:05:00', 1450, NULL, NULL, 'IPAY1167', NULL, 'cash', '', '', '', '', '', 'Visa', '404.4000', NULL, 6, 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 (1349, '2022-10-21 16:06:00', 594, NULL, NULL, 'IPAY1167', NULL, 'cash', '', '', '', '', '', 'Visa', '700.5600', NULL, 6, NULL, 'received', '', '700.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 (1350, '2022-10-21 16:07:00', 1449, NULL, NULL, 'IPAY1167', NULL, 'cash', '', '', '', '', '', 'Visa', '2723.7300', NULL, 6, NULL, 'received', '', '2723.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 (1351, '2022-10-21 16:16:10', 1469, NULL, NULL, 'IPAY1167', NULL, 'other', '', '', '', '', '', '', '43.3000', NULL, 6, NULL, 'received', '', '43.3000', '-100.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 16:16:10', 1469, NULL, NULL, 'IPAY1168', 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 (1353, '2022-10-21 16:21:29', 1470, NULL, NULL, 'IPAY1169', NULL, 'cash', '', '', '', '', '', '', '71.1000', NULL, 6, NULL, 'received', '', '71.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 (1354, '2022-10-21 16:22:00', 1456, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '29.9000', NULL, 6, NULL, 'received', '', '29.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 (1355, '2022-10-21 16:23:00', 1455, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '220.7400', NULL, 6, NULL, 'received', '', '220.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 (1356, '2022-10-21 16:27:00', 1443, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '228.7500', NULL, 6, NULL, 'received', '', '228.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 (1357, '2022-10-21 16:33:00', 1426, NULL, NULL, 'IPAY1170', NULL, 'other', '', '', '', '', '', 'Visa', '404.3700', NULL, 6, NULL, 'received', '', '404.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 (1358, '2022-10-21 16:38:00', 1464, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '738.2200', NULL, 6, NULL, 'received', '', '738.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 (1359, '2022-10-21 16:41:00', 601, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '743.9400', NULL, 6, NULL, 'received', '', '743.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 (1360, '2022-10-21 17:10:00', 1472, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1361, '2022-10-21 17:22:00', 1471, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '427.5000', NULL, 6, NULL, 'received', '', '427.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 17:23:00', 1439, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '597.5000', NULL, 6, NULL, 'received', '', '597.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-21 17:23:00', 1441, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1364, '2022-10-22 07:51:08', 1474, NULL, NULL, 'IPAY1170', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (1365, '2022-10-22 07:58:00', NULL, NULL, 115, 'POP0015', NULL, 'Cheque', '194, CBG', '', '', '', '', 'Visa', '27340.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1366, '2022-10-22 09:12:01', 1477, NULL, NULL, 'IPAY1171', NULL, 'cash', '', '', '', '', '', '', '155.5600', NULL, 6, NULL, 'received', '', '200.6000', '45.0400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 09:26:00', NULL, NULL, 117, 'POP0016', NULL, 'cash', '', '', '', '', '', 'Visa', '26228.4000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1368, '2022-10-22 09:53:15', 1479, NULL, NULL, 'IPAY1172', NULL, 'cash', '', '', '', '', '', '', '199.6500', NULL, 6, NULL, 'received', '', '199.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 (1369, '2022-10-22 09:59:00', NULL, NULL, 119, 'POP0017', NULL, 'cash', '', '', '', '', '', 'Visa', '2561.1300', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1370, '2022-10-22 10:03:21', 1480, NULL, NULL, 'IPAY1173', NULL, 'cash', '', '', '', '', '', '', '44.7400', NULL, 6, NULL, 'received', '', '100.0000', '55.2600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 10:12:54', 1481, NULL, NULL, 'IPAY1174', NULL, 'cash', '', '', '', '', '', '', '43.1000', NULL, 6, NULL, 'received', '', '50.0000', '6.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 10:14:00', 1282, NULL, NULL, 'IPAY1175', NULL, 'cash', '', '', '', '', '', 'Visa', '10.8000', NULL, 6, 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 (1373, '2022-10-22 10:15:52', 1482, NULL, NULL, 'IPAY1175', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 6, NULL, 'received', '', '13.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 (1374, '2022-10-22 10:41:00', NULL, NULL, 121, 'POP0018', NULL, 'other', '', '', '', '', '', 'Visa', '1000.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1375, '2022-10-22 10:59:03', 1484, NULL, NULL, 'IPAY1176', NULL, 'cash', '', '', '', '', '', '', '51.3000', NULL, 6, NULL, 'received', '', '51.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 11:02:13', 1485, NULL, NULL, 'IPAY1177', NULL, 'cash', '', '', '', '', '', '', '482.3500', NULL, 6, NULL, 'received', '', '482.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 (1377, '2022-10-22 11:31:53', 1487, NULL, NULL, 'IPAY1178', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 6, 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 (1378, '2022-10-22 11:33:20', 1488, NULL, NULL, 'IPAY1179', NULL, 'cash', '', '', '', '', '', '', '40.4000', NULL, 6, 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 (1379, '2022-10-22 11:38:08', 1489, NULL, NULL, 'IPAY1180', NULL, 'cash', '', '', '', '', '', '', '694.0000', NULL, 6, NULL, 'received', '', '694.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 12:07:19', 1490, NULL, NULL, 'IPAY1181', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 6, NULL, 'received', '', '200.0000', '127.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 12:17:12', 1491, NULL, NULL, 'IPAY1182', NULL, 'cash', '', '', '', '', '', '', '405.0300', NULL, 6, NULL, 'received', '', '405.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 (1382, '2022-10-22 12:38:27', 1492, NULL, NULL, 'IPAY1183', NULL, 'cash', '', '', '', '', '', '', '50.6000', NULL, 6, NULL, 'received', '', '50.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 12:40:00', 1486, NULL, NULL, 'IPAY1184', NULL, 'cash', '', '', '', '', '', 'Visa', '834.0000', NULL, 6, NULL, 'received', '', '834.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 12:40:00', 1483, NULL, NULL, 'IPAY1184', NULL, 'cash', '', '', '', '', '', 'Visa', '198.9000', NULL, 6, 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 (1385, '2022-10-22 13:06:50', 1493, NULL, NULL, 'IPAY1184', NULL, 'cash', '', '', '', '', '', '', '300.8200', NULL, 6, NULL, 'received', '', '300.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 (1386, '2022-10-22 13:13:24', 1494, NULL, NULL, 'IPAY1185', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 6, NULL, 'received', '', '100.0000', '-110.1600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 13:13:24', 1494, NULL, NULL, 'IPAY1186', NULL, 'other', '', '', '', '', '', '', '110.1600', NULL, 6, NULL, 'received', '', '110.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 (1388, '2022-10-22 13:27:10', 1495, NULL, NULL, 'IPAY1187', NULL, 'other', '', '', '', '', '', '', '168.6000', NULL, 6, 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 (1389, '2022-10-22 13:54:34', 1496, NULL, NULL, 'IPAY1188', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 6, NULL, 'received', '', '25.0000', '-2.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 14:11:00', 995, NULL, NULL, 'IPAY1189', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1391, '2022-10-22 14:19:25', 1497, NULL, NULL, 'IPAY1189', NULL, 'cash', '', '', '', '', '', '', '339.2000', NULL, 6, NULL, 'received', '', '339.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 14:33:00', 1493, NULL, NULL, 'IPAY1190', NULL, 'cash', '', '', '', '', '', 'Visa', '-0.6000', NULL, 6, 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 (1393, '2022-10-22 14:43:49', 1498, NULL, NULL, 'IPAY1190', NULL, 'cash', '', '', '', '', '', '', '59.2000', NULL, 6, NULL, 'received', '', '59.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 14:55:00', 1170, NULL, NULL, 'IPAY1191', NULL, 'cash', '', '', '', '', '', 'Visa', '483.0000', NULL, 6, NULL, 'received', '', '483.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 14:56:00', 756, NULL, NULL, 'IPAY1191', NULL, 'cash', '', '', '', '', '', 'Visa', '861.9600', NULL, 6, NULL, 'received', '', '861.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 (1396, '2022-10-22 14:56:00', 1478, NULL, NULL, 'IPAY1191', NULL, 'cash', '', '', '', '', '', 'Visa', '849.1400', NULL, 6, NULL, 'received', '', '849.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 (1397, '2022-10-22 15:02:32', 1499, NULL, NULL, 'IPAY1191', NULL, 'cash', '', '', '', '', '', '', '63.6000', NULL, 6, NULL, 'received', '', '70.0000', '6.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-22 15:23:08', 1500, NULL, NULL, 'IPAY1192', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, NULL, 'received', '', '30.0000', '2.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 07:46:04', 1501, NULL, NULL, 'IPAY1193', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '20.0000', '6.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 09:16:18', 1503, NULL, NULL, 'IPAY1194', NULL, 'cash', '', '', '', '', '', '', '106.4000', NULL, 6, NULL, 'received', '', '106.5000', '0.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 09:26:09', 1504, NULL, NULL, 'IPAY1195', NULL, 'cash', '', '', '', '', '', '', '2519.7600', NULL, 6, NULL, 'received', '', '2519.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 (1402, '2022-10-24 09:26:51', 1505, NULL, NULL, 'IPAY1196', NULL, 'cash', '', '', '', '', '', '', '99.0000', NULL, 6, 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 (1403, '2022-10-24 10:26:29', 1508, NULL, NULL, 'IPAY1197', NULL, 'cash', '', '', '', '', '', '', '134.6300', NULL, 6, NULL, 'received', '', '200.0000', '65.3700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 10:34:22', 1509, NULL, NULL, 'IPAY1198', NULL, 'cash', '', '', '', '', '', '', '32.4000', NULL, 6, NULL, 'received', '', '32.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 10:36:48', 1510, NULL, NULL, 'IPAY1199', NULL, 'cash', '', '', '', '', '', '', '351.5000', NULL, 6, 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 (1406, '2022-10-24 11:24:23', 1513, NULL, NULL, 'IPAY1200', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 6, NULL, 'received', '', '3000.0000', '-917.7900', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 11:27:07', 1514, NULL, NULL, 'IPAY1201', NULL, 'cash', '', '', '', '', '', '', '20.3000', NULL, 6, NULL, 'received', '', '20.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 11:55:57', 1516, NULL, NULL, 'IPAY1202', 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 (1409, '2022-10-24 12:39:37', 1518, NULL, NULL, 'IPAY1203', NULL, 'cash', '', '', '', '', '', '', '121.8000', NULL, 6, NULL, 'received', '', '121.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 12:46:01', 1520, NULL, NULL, 'IPAY1204', NULL, 'cash', '', '', '', '', '', '', '1167.0000', NULL, 6, NULL, 'received', '', '1167.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 13:05:00', 1520, NULL, NULL, 'IPAY1205', NULL, 'cash', '', '', '', '', '', 'Visa', '17.1000', NULL, 6, NULL, 'received', '', '17.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 (1412, '2022-10-24 13:08:27', 1521, NULL, NULL, 'IPAY1205', NULL, 'cash', '', '', '', '', '', '', '214.5400', NULL, 6, NULL, 'received', '', '214.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 (1413, '2022-10-24 13:13:30', 1523, NULL, NULL, 'IPAY1206', 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 (1414, '2022-10-24 13:18:12', 1524, NULL, NULL, 'IPAY1207', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 6, 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 (1415, '2022-10-24 13:20:31', 1525, NULL, NULL, 'IPAY1208', 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 (1416, '2022-10-24 13:21:13', 1526, NULL, NULL, 'IPAY1209', NULL, 'cash', '', '', '', '', '', '', '5.2000', NULL, 6, 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 (1417, '2022-10-24 13:29:14', 1527, NULL, NULL, 'IPAY1210', 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 (1418, '2022-10-24 13:30:25', 1528, NULL, NULL, 'IPAY1211', NULL, 'cash', '', '', '', '', '', '', '110.4000', NULL, 6, NULL, 'received', '', '111.0000', '0.6000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 14:01:00', 1529, NULL, NULL, 'IPAY1212', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 6, NULL, 'received', '', '2263.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 (1420, '2022-10-24 14:01:31', 1530, NULL, NULL, 'IPAY1213', NULL, 'cash', '', '', '', '', '', '', '2428.1700', NULL, 6, NULL, 'received', '', '2428.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 (1421, '2022-10-24 14:10:20', 1531, NULL, NULL, 'IPAY1214', NULL, 'cash', '', '', '', '', '', '', '701.0800', NULL, 6, NULL, 'received', '', '701.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 (1422, '2022-10-24 14:26:43', 1532, NULL, NULL, 'IPAY1215', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 6, 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 (1423, '2022-10-24 14:36:24', 1533, NULL, NULL, 'IPAY1216', NULL, 'cash', '', '', '', '', '', '', '551.4300', NULL, 6, NULL, 'received', '', '555.0000', '3.5700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 14:42:22', 1534, NULL, NULL, 'IPAY1217', NULL, 'cash', '', '', '', '', '', '', '370.7000', NULL, 6, NULL, 'received', '', '370.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 14:48:05', 1535, NULL, NULL, 'IPAY1218', 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 (1426, '2022-10-24 14:53:58', 1536, NULL, NULL, 'IPAY1219', NULL, 'cash', '', '', '', '', '', '', '364.9500', NULL, 6, NULL, 'received', '', '370.0000', '5.0500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 15:10:00', 1530, NULL, NULL, 'IPAY1220', NULL, 'cash', '', '', '', '', '', 'Visa', '-268.1000', NULL, 6, NULL, 'received', '', '-268.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 (1428, '2022-10-24 15:22:00', 1530, NULL, NULL, 'IPAY1220', NULL, 'cash', '', '', '', '', '', 'Visa', '-31.7500', NULL, 6, NULL, 'received', '', '-31.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 (1429, '2022-10-24 15:37:24', 1537, NULL, NULL, 'IPAY1220', NULL, 'cash', '', '', '', '', '', '', '116.1800', NULL, 6, NULL, 'received', '', '120.0000', '3.8200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 15:37:42', 1538, NULL, NULL, 'IPAY1221', NULL, 'cash', '', '', '', '', '', '', '65.0400', NULL, 6, NULL, 'received', '', '65.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 (1431, '2022-10-24 15:44:18', 1539, NULL, NULL, 'IPAY1222', NULL, 'cash', '', '', '', '', '', '', '638.3500', NULL, 6, NULL, 'received', '', '638.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 (1432, '2022-10-24 15:49:10', 1541, NULL, NULL, 'IPAY1223', NULL, 'cash', '', '', '', '', '', '', '99.7000', NULL, 6, 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 (1433, '2022-10-24 15:56:31', 1542, NULL, NULL, 'IPAY1224', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1434, '2022-10-24 15:59:00', 1428, NULL, NULL, 'IPAY1225', NULL, 'cash', '', '', '', '', '', 'Visa', '0.6000', NULL, 6, 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 (1435, '2022-10-24 16:22:22', 1544, NULL, NULL, 'IPAY1225', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 6, NULL, 'received', '', '50.0000', '18.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 16:25:00', 1533, NULL, NULL, 'IPAY1226', NULL, 'cash', '', '', '', '', '', 'Visa', '1.3200', NULL, 6, NULL, 'received', '', '1.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 (1437, '2022-10-24 16:29:28', 1545, NULL, NULL, 'IPAY1226', NULL, 'cash', '', '', '', '', '', '', '9.9600', NULL, 6, NULL, 'received', '', '9.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 (1438, '2022-10-24 16:30:37', 1546, NULL, NULL, 'IPAY1227', NULL, 'cash', '', '', '', '', '', '', '11.9000', NULL, 6, NULL, 'received', '', '11.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 (1439, '2022-10-24 16:47:42', 1547, NULL, NULL, 'IPAY1228', NULL, 'cash', '', '', '', '', '', '', '200.6000', NULL, 6, 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 (1440, '2022-10-24 16:51:00', 1548, NULL, NULL, 'IPAY1229', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, 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 (1441, '2022-10-24 16:56:00', 1548, NULL, NULL, 'IPAY1230', NULL, 'cash', '', '', '', '', '', 'Visa', '0.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1442, '2022-10-24 17:23:39', 1552, NULL, NULL, 'IPAY1230', 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 (1443, '2022-10-24 17:47:00', 1543, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '232.2000', NULL, 6, NULL, 'received', '', '232.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-24 17:47:00', 1540, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '250.9200', NULL, 6, NULL, 'received', '', '250.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 (1445, '2022-10-24 17:50:00', 1506, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '572.6800', NULL, 6, NULL, 'received', '', '572.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 (1446, '2022-10-24 17:50:00', 1507, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '625.9800', NULL, 6, NULL, 'received', '', '625.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 (1447, '2022-10-24 17:51:00', 1502, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '291.0500', NULL, 6, NULL, 'received', '', '291.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 (1448, '2022-10-24 18:11:00', 1511, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', 'Visa', '1359.7000', NULL, 6, NULL, 'received', '', '1359.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 08:11:01', 1554, NULL, NULL, 'IPAY1231', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 6, NULL, 'received', '', '52.0000', '10.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 08:16:46', 1555, NULL, NULL, 'IPAY1232', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1451, '2022-10-25 08:57:44', 1558, NULL, NULL, 'IPAY1233', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 6, 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 (1452, '2022-10-25 09:03:00', 1512, NULL, NULL, 'IPAY1234', NULL, 'cash', '', '', '', '', '', 'Visa', '450.0000', NULL, 6, 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 (1453, '2022-10-25 09:06:36', 1559, NULL, NULL, 'IPAY1234', NULL, 'cash', '', '', '', '', '', '', '174.7700', NULL, 6, NULL, 'received', '', '174.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 (1454, '2022-10-25 09:48:56', 1563, NULL, NULL, 'IPAY1235', NULL, 'cash', '', '', '', '', '', '', '2451.9000', NULL, 6, NULL, 'received', '', '2451.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 (1455, '2022-10-25 10:01:27', 1564, NULL, NULL, 'IPAY1236', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 6, 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 (1456, '2022-10-25 10:18:52', 1566, NULL, NULL, 'IPAY1237', NULL, 'cash', '', '', '', '', '', '', '30.9800', NULL, 6, NULL, 'received', '', '35.0000', '4.0200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 11:05:01', 1570, NULL, NULL, 'IPAY1238', NULL, 'cash', '', '', '', '', '', '', '255.0000', NULL, 6, NULL, 'received', '', '300.0000', '45.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 11:08:04', 1571, NULL, NULL, 'IPAY1239', NULL, 'other', '', '', '', '', '', '', '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 (1459, '2022-10-25 11:27:00', 1565, NULL, NULL, 'IPAY1240', NULL, 'cash', '', '', '', '', '', 'Visa', '155.5000', NULL, 6, NULL, 'received', '', '155.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 11:27:00', 1563, NULL, NULL, 'IPAY1240', NULL, 'cash', '', '', '', '', '', 'Visa', '-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 (1461, '2022-10-25 11:34:47', 1573, NULL, NULL, 'IPAY1240', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 6, 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 (1462, '2022-10-25 11:55:00', 1556, NULL, NULL, 'IPAY1241', NULL, 'cash', '', '', '', '', '', 'Visa', '649.0700', NULL, 6, NULL, 'received', '', '649.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 (1463, '2022-10-25 11:56:32', 1574, NULL, NULL, 'IPAY1241', NULL, 'cash', '', '', '', '', '', '', '49.7200', NULL, 6, NULL, 'received', '', '50.0000', '0.2800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 12:11:46', 1575, NULL, NULL, 'IPAY1242', NULL, 'cash', '', '', '', '', '', '', '51.4500', NULL, 6, NULL, 'received', '', '51.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 (1465, '2022-10-25 12:12:01', 1576, NULL, NULL, 'IPAY1243', NULL, 'cash', '', '', '', '', '', '', '1515.7000', NULL, 6, NULL, 'received', '', '1550.0000', '34.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 13:46:53', 1577, NULL, NULL, 'IPAY1244', NULL, 'cash', '', '', '', '', '', '', '382.1400', NULL, 6, NULL, 'received', '', '382.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 (1467, '2022-10-25 14:53:07', 1579, NULL, NULL, 'IPAY1245', NULL, 'cash', '', '', '', '', '', '', '643.2800', NULL, 6, NULL, 'received', '', '643.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 (1468, '2022-10-25 15:03:40', 1580, NULL, NULL, 'IPAY1246', NULL, 'cash', '', '', '', '', '', '', '902.5100', NULL, 6, NULL, 'received', '', '902.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 (1469, '2022-10-25 15:11:10', 1581, NULL, NULL, 'IPAY1247', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, NULL, 'received', '', '50.0000', '22.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 15:26:11', 1582, NULL, NULL, 'IPAY1248', NULL, 'cash', '', '', '', '', '', '', '65.4000', NULL, 6, NULL, 'received', '', '65.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-25 15:34:05', 1583, NULL, NULL, 'IPAY1249', 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 (1472, '2022-10-25 15:39:52', 1584, NULL, NULL, 'IPAY1250', 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 (1473, '2022-10-25 15:48:36', 1585, NULL, NULL, 'IPAY1251', 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 (1474, '2022-10-25 15:55:31', 1586, NULL, NULL, 'IPAY1252', 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 (1475, '2022-10-25 16:25:11', 1587, NULL, NULL, 'IPAY1253', NULL, 'cash', '', '', '', '', '', '', '7.9800', NULL, 6, NULL, 'received', '', '7.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 (1476, '2022-10-25 17:03:00', 1562, NULL, NULL, 'IPAY1254', NULL, 'cash', '', '', '', '', '', 'Visa', '769.6000', NULL, 6, NULL, 'received', '', '769.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 07:27:53', 1588, NULL, NULL, 'IPAY1254', NULL, 'cash', '', '', '', '', '', '', '20.2000', NULL, 6, 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 (1478, '2022-10-26 08:17:55', 1589, NULL, NULL, 'IPAY1255', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 6, NULL, 'received', '', '20.0000', '2.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 08:42:48', 1590, NULL, NULL, 'IPAY1256', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 6, NULL, 'received', '', '100.0000', '68.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 08:43:49', 1591, NULL, NULL, 'IPAY1257', NULL, 'cash', '', '', '', '', '', '', '50.4000', NULL, 6, 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 (1481, '2022-10-26 08:47:09', 1592, NULL, NULL, 'IPAY1258', NULL, 'cash', '', '', '', '', '', '', '6.6000', NULL, 6, 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 (1482, '2022-10-26 09:40:12', 1594, NULL, NULL, 'IPAY1259', NULL, 'cash', '', '', '', '', '', '', '2126.8000', NULL, 6, NULL, 'received', '', '2126.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 09:47:46', 1595, NULL, NULL, 'IPAY1260', NULL, 'cash', '', '', '', '', '', '', '36.6000', NULL, 6, NULL, 'received', '', '36.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 10:01:52', 1596, NULL, NULL, 'IPAY1261', NULL, 'cash', '', '', '', '', '', '', '241.9100', NULL, 6, NULL, 'received', '', '241.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 (1485, '2022-10-26 10:01:55', 1597, NULL, NULL, 'IPAY1262', 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 (1486, '2022-10-26 10:20:58', 1598, NULL, NULL, 'IPAY1263', NULL, 'cash', '', '', '', '', '', '', '20.2000', NULL, 6, 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 (1487, '2022-10-26 10:44:57', 1599, NULL, NULL, 'IPAY1264', NULL, 'cash', '', '', '', '', '', '', '421.0300', NULL, 6, NULL, 'received', '', '421.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 (1488, '2022-10-26 10:58:39', 1600, NULL, NULL, 'IPAY1265', NULL, 'cash', '', '', '', '', '', '', '79.9000', NULL, 6, NULL, 'received', '', '79.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 (1489, '2022-10-26 10:59:38', 1601, NULL, NULL, 'IPAY1266', 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 (1490, '2022-10-26 11:02:24', 1602, NULL, NULL, 'IPAY1267', NULL, 'cash', '', '', '', '', '', '', '467.5000', NULL, 6, 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 (1491, '2022-10-26 11:18:30', 1603, NULL, NULL, 'IPAY1268', NULL, 'cash', '', '', '', '', '', '', '698.6300', NULL, 6, NULL, 'received', '', '700.0000', '1.3700', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 11:18:47', 1604, NULL, NULL, 'IPAY1269', NULL, 'cash', '', '', '', '', '', '', '58.7000', NULL, 6, NULL, 'received', '', '200.0000', '141.3000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 11:34:13', 1606, NULL, NULL, 'IPAY1270', 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 (1494, '2022-10-26 11:40:30', 1607, NULL, NULL, 'IPAY1271', NULL, 'cash', '', '', '', '', '', '', '111.5000', NULL, 6, 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 (1495, '2022-10-26 11:51:05', 1608, NULL, NULL, 'IPAY1272', NULL, 'cash', '', '', '', '', '', '', '35.8500', NULL, 6, NULL, 'received', '', '50.0000', '14.1500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 12:06:00', 1600, NULL, NULL, 'IPAY1273', NULL, 'cash', '', '', '', '', '', 'Visa', '2.1000', NULL, 6, 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 (1497, '2022-10-26 12:07:00', 1593, NULL, NULL, 'IPAY1273', NULL, 'cash', '', '', '', '', '', 'Visa', '613.8200', NULL, 6, NULL, 'received', '', '613.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 (1498, '2022-10-26 12:30:02', 1610, NULL, NULL, 'IPAY1273', NULL, 'cash', '', '', '', '', '', '', '210.4000', NULL, 6, NULL, 'received', '', '210.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 14:06:34', 1616, NULL, NULL, 'IPAY1274', NULL, 'cash', '', '', '', '', '', '', '109.8000', NULL, 6, NULL, 'received', '', '110.0000', '0.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 14:16:33', 1617, NULL, NULL, 'IPAY1275', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 6, NULL, 'received', '', '900.0000', '-280.9200', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 14:16:49', 1618, NULL, NULL, 'IPAY1276', NULL, 'cash', '', '', '', '', '', '', '160.9900', NULL, 6, NULL, 'received', '', '160.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 (1502, '2022-10-26 14:38:40', 1619, NULL, NULL, 'IPAY1277', NULL, 'cash', '', '', '', '', '', '', '69.0000', NULL, 6, 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 (1503, '2022-10-26 14:45:54', 1620, NULL, NULL, 'IPAY1278', NULL, 'other', '', '', '', '', '', '', '116.7000', NULL, 6, NULL, 'received', '', '116.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 14:51:12', 1621, NULL, NULL, 'IPAY1279', NULL, 'cash', '', '', '', '', '', '', '19.7000', NULL, 6, NULL, 'received', '', '19.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 14:56:07', 1622, NULL, NULL, 'IPAY1280', NULL, 'cash', '', '', '', '', '', '', '15.8000', NULL, 6, 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 (1506, '2022-10-26 15:06:27', 1623, NULL, NULL, 'IPAY1281', NULL, 'other', '', '', '', '', '', '', '826.5200', NULL, 6, NULL, 'received', '', '826.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 (1507, '2022-10-26 15:56:31', 1625, NULL, NULL, 'IPAY1282', NULL, 'cash', '', '', '', '', '', '', '35.2900', NULL, 6, NULL, 'received', '', '35.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 (1508, '2022-10-26 15:59:01', 1626, NULL, NULL, 'IPAY1283', NULL, 'cash', '', '', '', '', '', '', '161.6700', NULL, 6, NULL, 'received', '', '161.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 (1509, '2022-10-26 15:59:00', 1625, NULL, NULL, 'IPAY1283', NULL, 'cash', '', '', '', '', '', 'Visa', '-21.6000', NULL, 6, NULL, 'received', '', '-21.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 16:09:30', 1627, NULL, NULL, 'IPAY1284', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 6, 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 (1511, '2022-10-26 16:13:31', 1628, NULL, NULL, 'IPAY1285', NULL, 'cash', '', '', '', '', '', '', '987.5600', NULL, 6, NULL, 'received', '', '990.0000', '2.4400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 16:45:21', 1632, NULL, NULL, 'IPAY1286', NULL, 'cash', '', '', '', '', '', '', '52.6000', NULL, 6, NULL, 'received', '', '52.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-26 16:47:51', 1633, NULL, NULL, 'IPAY1287', 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 (1514, '2022-10-26 17:00:34', 1634, NULL, NULL, 'IPAY1288', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1515, '2022-10-26 17:05:09', 1635, NULL, NULL, 'IPAY1289', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 6, 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 (1516, '2022-10-27 08:05:12', 1636, NULL, NULL, 'IPAY1290', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 6, NULL, 'received', '', '50.0000', '8.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 08:18:46', 1637, NULL, NULL, 'IPAY1291', NULL, 'cash', '', '', '', '', '', '', '77.6000', NULL, 6, NULL, 'received', '', '100.0000', '22.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 08:29:51', 1638, NULL, NULL, 'IPAY1292', NULL, 'cash', '', '', '', '', '', '', '45.4000', NULL, 6, NULL, 'received', '', '50.5000', '5.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 08:43:00', 1549, NULL, NULL, 'IPAY1330', NULL, 'cash', '', '', '', '', '', 'Visa', '359.9900', NULL, 6, NULL, 'received', '', '359.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 (1520, '2022-10-27 08:59:04', 1640, NULL, NULL, 'IPAY1294', NULL, 'cash', '', '', '', '', '', '', '968.2600', NULL, 6, NULL, 'received', '', '968.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 (1521, '2022-10-27 09:00:00', 1641, NULL, NULL, 'IPAY1295', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 6, 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 (1522, '2022-10-27 09:08:07', 1642, NULL, NULL, 'IPAY1296', NULL, 'cash', '', '', '', '', '', '', '284.1600', NULL, 6, NULL, 'received', '', '300.0000', '15.8400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 09:34:53', 1643, NULL, NULL, 'IPAY1297', NULL, 'cash', '', '', '', '', '', '', '15.4000', NULL, 6, NULL, 'received', '', '15.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 09:37:16', 1644, NULL, NULL, 'IPAY1298', NULL, 'cash', '', '', '', '', '', '', '39.1000', NULL, 6, NULL, 'received', '', '40.0000', '0.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 09:41:24', 1645, NULL, NULL, 'IPAY1299', NULL, 'cash', '', '', '', '', '', '', '9.9900', NULL, 6, NULL, 'received', '', '10.0000', '0.0100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 09:46:10', 1646, NULL, NULL, 'IPAY1300', NULL, 'cash', '', '', '', '', '', '', '6.6000', NULL, 6, 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 (1527, '2022-10-27 09:51:53', 1647, NULL, NULL, 'IPAY1301', NULL, 'cash', '', '', '', '', '', '', '33.6000', NULL, 6, NULL, 'received', '', '40.0000', '6.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 10:08:25', 1648, NULL, NULL, 'IPAY1302', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 9, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 11:11:30', 1651, NULL, NULL, 'IPAY1303', NULL, 'cash', '', '', '', '', '', '', '60.7000', NULL, 10, 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 (1530, '2022-10-27 11:25:33', 1652, NULL, NULL, 'IPAY1304', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 9, 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 (1531, '2022-10-27 11:32:06', 1653, NULL, NULL, 'IPAY1305', NULL, 'cash', '', '', '', '', '', '', '52.0200', NULL, 9, NULL, 'received', '', '52.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 (1532, '2022-10-27 11:35:46', 1654, NULL, NULL, 'IPAY1306', NULL, 'other', '', '', '', '', '', '', '3148.4400', NULL, 10, NULL, 'received', '', '3148.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 (1533, '2022-10-27 11:37:31', 1655, NULL, NULL, 'IPAY1307', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 9, 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 (1534, '2022-10-27 11:47:17', 1656, NULL, NULL, 'IPAY1308', NULL, 'cash', '', '', '', '', '', '', '73.6600', NULL, 10, NULL, 'received', '', '80.0000', '6.3400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 12:17:21', 1657, NULL, NULL, 'IPAY1309', NULL, 'cash', '', '', '', '', '', '', '755.0000', NULL, 10, NULL, 'received', '', '755.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 12:27:22', 1658, NULL, NULL, 'IPAY1310', NULL, 'cash', '', '', '', '', '', '', '154.2000', NULL, 9, NULL, 'received', '', '154.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 12:59:11', 1660, NULL, NULL, 'IPAY1311', NULL, 'cash', '', '', '', '', '', '', '24.8000', NULL, 9, NULL, 'received', '', '24.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 13:04:41', 1661, NULL, NULL, 'IPAY1312', NULL, 'other', '', '', '', '', '', '', '410.5000', NULL, 10, 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 (1539, '2022-10-27 13:12:12', 1662, NULL, NULL, 'IPAY1313', NULL, 'other', '', '', '', '', '', '', '62.7400', NULL, 10, NULL, 'received', '', '62.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 (1540, '2022-10-27 13:15:10', 1663, NULL, NULL, 'IPAY1314', NULL, 'other', '', '', '', '', '', '', '13.2000', NULL, 10, 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 (1541, '2022-10-27 13:45:35', 1665, NULL, NULL, 'IPAY1315', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 10, NULL, 'received', '', '50.0000', '7.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 13:50:26', 1666, NULL, NULL, 'IPAY1316', NULL, 'cash', '', '', '', '', '', '', '189.6000', NULL, 10, NULL, 'received', '', '189.6000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 13:57:45', 1667, NULL, NULL, 'IPAY1317', NULL, 'cash', '', '', '', '', '', '', '87.8000', NULL, 10, NULL, 'received', '', '87.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 14:00:55', 1668, NULL, NULL, 'IPAY1318', NULL, 'cash', '', '', '', '', '', '', '9.3000', NULL, 10, 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 (1545, '2022-10-27 14:06:22', 1669, NULL, NULL, 'IPAY1319', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 10, 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 (1546, '2022-10-27 14:27:44', 1670, NULL, NULL, 'IPAY1320', 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 (1547, '2022-10-27 14:39:35', 1671, NULL, NULL, 'IPAY1321', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 10, NULL, 'received', '', '20.0000', '6.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 14:42:41', 1672, NULL, NULL, 'IPAY1322', NULL, 'other', '', '', '', '', '', '', '369.0000', NULL, 10, 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 (1549, '2022-10-27 14:49:12', 1673, NULL, NULL, 'IPAY1323', NULL, 'cash', '', '', '', '', '', '', '460.5000', NULL, 10, 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 (1550, '2022-10-27 15:07:27', 1674, NULL, NULL, 'IPAY1324', NULL, 'cash', '', '', '', '', '', '', '130.2000', NULL, 10, NULL, 'received', '', '130.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 15:25:33', 1675, NULL, NULL, 'IPAY1325', NULL, 'cash', '', '', '', '', '', '', '83.6400', NULL, 10, NULL, 'received', '', '83.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 (1552, '2022-10-27 15:46:00', 1664, NULL, NULL, 'IPAY1326', NULL, 'cash', '', '', '', '', '', 'Visa', '297.1500', NULL, 9, NULL, 'received', '', '297.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 (1553, '2022-10-27 15:48:00', 1659, NULL, NULL, 'IPAY1326', NULL, 'cash', '', '', '', '', '', 'Visa', '396.4000', NULL, 9, NULL, 'received', '', '396.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 15:49:00', 1649, NULL, NULL, 'IPAY1326', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.1700', NULL, 9, NULL, 'received', '', '2000.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 (1561, '2022-10-27 16:56:00', 1679, NULL, NULL, 'IPAY1329', NULL, 'cash', '', '', '', '', '', '', '312.0000', NULL, 9, 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 (1556, '2022-10-27 15:56:29', 1676, NULL, NULL, 'IPAY1326', NULL, 'cash', '', '', '', '', '', '', '407.5000', NULL, 10, NULL, 'received', '', '410.0000', '2.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 16:10:56', 1677, NULL, NULL, 'IPAY1327', NULL, 'cash', '', '', '', '', '', '', '79.2000', NULL, 9, NULL, 'received', '', '79.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-27 16:19:00', 1650, NULL, NULL, 'IPAY1328', NULL, 'cash', '', '', '', '', '', 'Visa', '396.4200', NULL, 9, NULL, 'received', '', '396.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 (1559, '2022-10-27 16:39:38', 1678, NULL, NULL, 'IPAY1328', NULL, 'cash', '', '', '', '', '', '', '612.7000', NULL, 9, 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 (1560, '2022-10-27 16:47:00', 1678, NULL, NULL, 'IPAY1329', NULL, 'cash', '', '', '', '', '', 'Visa', '43.0000', NULL, 9, 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 (1563, '2022-10-28 08:44:00', 1629, NULL, NULL, 'IPAY1330', NULL, 'cash', '', '', '', '', '', 'Visa', '307.4800', NULL, 6, NULL, 'received', '', '307.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 (1564, '2022-10-28 08:45:31', 1680, NULL, NULL, 'IPAY1330', 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 (1565, '2022-10-28 08:49:57', 1681, NULL, NULL, 'IPAY1331', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '14.0000', '0.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 08:58:00', 1094, NULL, NULL, 'IPAY1332', NULL, 'cash', '', '', '', '', '', 'Visa', '135.0000', NULL, 6, 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 (1567, '2022-10-28 09:02:00', 1529, NULL, NULL, 'IPAY1332', NULL, 'cash', '', '', '', '', '', 'Visa', '218.0700', NULL, 6, NULL, 'received', '', '218.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 (1568, '2022-10-28 09:04:00', 1548, NULL, NULL, 'IPAY1332', NULL, 'cash', '', '', '', '', '', 'Visa', '1105.2000', NULL, 6, NULL, 'received', '', '1105.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 09:04:00', 1550, NULL, NULL, 'IPAY1332', NULL, 'cash', '', '', '', '', '', 'Visa', '85.8000', NULL, 6, 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 (1570, '2022-10-28 09:59:20', 1683, NULL, NULL, 'IPAY1332', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 6, NULL, 'received', '', '200.0000', '-35.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 10:28:14', 1687, NULL, NULL, 'IPAY1333', NULL, 'cash', '', '', '', '', '', '', '113.0000', NULL, 10, 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 (1572, '2022-10-28 10:28:00', 939, NULL, NULL, 'IPAY1334', NULL, 'cash', '', '', '', '', '', 'Visa', '791.1600', NULL, 6, NULL, 'received', '', '791.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 (1573, '2022-10-28 10:29:00', 1143, NULL, NULL, 'IPAY1334', NULL, 'cash', '', '', '', '', '', 'Visa', '2618.4900', NULL, 6, NULL, 'received', '', '2618.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 (1574, '2022-10-28 10:55:13', 1689, NULL, NULL, 'IPAY1334', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 10, 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 (1575, '2022-10-28 10:58:00', 1613, NULL, NULL, 'IPAY1335', NULL, 'cash', '', '', '', '', '', 'Visa', '2603.1600', NULL, 6, NULL, 'received', '', '2603.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 (1576, '2022-10-28 11:04:18', 1690, NULL, NULL, 'IPAY1335', NULL, 'cash', '', '', '', '', '', '', '522.7400', NULL, 10, NULL, 'received', '', '525.0000', '2.2600', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 11:08:00', 1659, NULL, NULL, 'IPAY1336', NULL, 'cash', '', '', '', '', '', 'Visa', '2.4000', NULL, 6, 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 (1578, '2022-10-28 11:22:58', 1692, NULL, NULL, 'IPAY1336', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 10, 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 (1579, '2022-10-28 11:26:19', 1693, NULL, NULL, 'IPAY1337', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 6, 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 (1580, '2022-10-28 11:31:41', 1694, NULL, NULL, 'IPAY1338', NULL, 'cash', '', '', '', '', '', '', '159.3000', NULL, 6, NULL, 'received', '', '159.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 11:47:49', 1695, NULL, NULL, 'IPAY1339', NULL, 'cash', '', '', '', '', '', '', '435.0400', NULL, 6, NULL, 'received', '', '435.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 (1582, '2022-10-28 11:49:00', 1684, NULL, NULL, 'IPAY1340', NULL, 'cash', '', '', '', '', '', 'Visa', '486.1000', NULL, 6, NULL, 'received', '', '486.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 (1583, '2022-10-28 11:50:00', 1686, NULL, NULL, 'IPAY1340', NULL, 'cash', '', '', '', '', '', 'Visa', '85.0000', NULL, 6, 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 (1584, '2022-10-28 11:55:53', 1696, NULL, NULL, 'IPAY1340', NULL, 'cash', '', '', '', '', '', '', '94.7000', NULL, 6, NULL, 'received', '', '94.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 11:58:21', 1697, NULL, NULL, 'IPAY1341', NULL, 'cash', '', '', '', '', '', '', '592.9000', NULL, 10, NULL, 'received', '', '592.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 (1586, '2022-10-28 12:04:17', 1698, NULL, NULL, 'IPAY1342', NULL, 'cash', '', '', '', '', '', '', '13.1400', NULL, 10, NULL, 'received', '', '13.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 (1587, '2022-10-28 12:29:03', 1700, NULL, NULL, 'IPAY1343', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 10, 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 (1588, '2022-10-28 12:48:52', 1701, NULL, NULL, 'IPAY1344', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 10, 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 (1589, '2022-10-28 13:38:46', 1702, NULL, NULL, 'IPAY1345', NULL, 'cash', '', '', '', '', '', '', '60.5000', NULL, 10, 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 (1590, '2022-10-28 13:41:20', 1703, NULL, NULL, 'IPAY1346', NULL, 'cash', '', '', '', '', '', '', '138.0000', NULL, 10, 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 (1591, '2022-10-28 14:03:20', 1705, NULL, NULL, 'IPAY1347', NULL, 'cash', '', '', '', '', '', '', '201.1000', NULL, 10, NULL, 'received', '', '205.0000', '3.9000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 14:06:32', 1706, NULL, NULL, 'IPAY1348', NULL, 'cash', '', '', '', '', '', '', '8.0700', NULL, 10, NULL, 'received', '', '8.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 (1593, '2022-10-28 14:14:21', 1707, NULL, NULL, 'IPAY1349', NULL, 'cash', '', '', '', '', '', '', '9.9000', NULL, 6, NULL, 'received', '', '9.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 (1594, '2022-10-28 14:15:42', 1708, NULL, NULL, 'IPAY1350', NULL, 'cash', '', '', '', '', '', '', '15.8000', NULL, 10, 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 (1595, '2022-10-28 14:30:19', 1709, NULL, NULL, 'IPAY1351', 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 (1596, '2022-10-28 14:33:00', 1572, NULL, NULL, 'IPAY1352', NULL, 'cash', '', '', '', '', '', 'Visa', '76.8200', NULL, 6, NULL, 'received', '', '76.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 (1597, '2022-10-28 14:35:20', 1710, NULL, NULL, 'IPAY1352', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, NULL, 'received', '', '30.8000', '3.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 14:41:58', 1711, NULL, NULL, 'IPAY1353', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 6, 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 (1599, '2022-10-28 15:14:06', 1712, NULL, NULL, 'IPAY1354', NULL, 'cash', '', '', '', '', '', '', '389.5900', NULL, 10, NULL, 'received', '', '400.0000', '10.4100', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 15:40:11', 1713, NULL, NULL, 'IPAY1355', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 6, 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 (1601, '2022-10-28 15:45:02', 1714, NULL, NULL, 'IPAY1356', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 6, NULL, 'received', '', '140.0000', '-135.0500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 15:45:00', 1714, NULL, NULL, 'IPAY1357', NULL, 'other', '', '', '', '', '', 'Visa', '135.0500', NULL, 6, NULL, 'received', '', '135.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 (1603, '2022-10-28 16:12:17', 1715, NULL, NULL, 'IPAY1357', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 10, 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 (1604, '2022-10-28 16:35:04', 1717, NULL, NULL, 'IPAY1358', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 10, 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 (1605, '2022-10-28 16:35:51', 1718, NULL, NULL, 'IPAY1359', NULL, 'cash', '', '', '', '', '', '', '19.8000', NULL, 10, NULL, 'received', '', '19.8000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 16:40:39', 1719, NULL, NULL, 'IPAY1360', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 10, NULL, 'received', '', '50.0000', '39.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 16:44:40', 1720, NULL, NULL, 'IPAY1361', NULL, 'cash', '', '', '', '', '', '', '27.2600', NULL, 10, NULL, 'received', '', '30.0000', '2.7400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 16:49:34', 1721, NULL, NULL, 'IPAY1362', NULL, 'cash', '', '', '', '', '', '', '55.2000', NULL, 10, NULL, 'received', '', '56.0000', '0.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 16:55:00', 1722, NULL, NULL, 'IPAY1363', NULL, 'cash', '', '', '', '', '', '', '6.3000', NULL, 10, NULL, 'received', '', '6.3000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 17:09:32', 1723, NULL, NULL, 'IPAY1364', NULL, 'cash', '', '', '', '', '', '', '28.7000', NULL, 6, NULL, 'received', '', '28.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-28 17:28:00', 1704, NULL, NULL, 'IPAY1365', NULL, 'cash', '', '', '', '', '', 'Visa', '52.7600', NULL, 6, NULL, 'received', '', '52.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 (1612, '2022-10-28 17:29:00', 1685, NULL, NULL, 'IPAY1365', NULL, 'cash', '', '', '', '', '', 'Visa', '217.0000', NULL, 6, 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 (1613, '2022-10-28 17:30:00', 1682, NULL, NULL, 'IPAY1365', NULL, 'cash', '', '', '', '', '', 'Visa', '1931.2900', NULL, 6, NULL, 'received', '', '1931.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 (1614, '2022-10-29 07:34:00', 665, NULL, NULL, 'IPAY1365', NULL, 'cash', '', '', '', '', '', 'Visa', '200.4000', NULL, 9, NULL, 'received', '', '200.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 07:53:20', 1724, NULL, NULL, 'IPAY1365', NULL, 'cash', '', '', '', '', '', '', '290.1600', NULL, 6, NULL, 'received', '', '292.0000', '1.8400', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 07:58:59', 1725, NULL, NULL, 'IPAY1366', NULL, 'cash', '', '', '', '', '', '', '78.2200', NULL, 6, NULL, 'received', '', '80.0000', '1.7800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 08:03:30', 1726, NULL, NULL, 'IPAY1367', NULL, 'cash', '', '', '', '', '', '', '63.2000', NULL, 6, NULL, 'received', '', '63.2000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 08:13:00', 1617, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', 'Visa', '280.9200', NULL, 6, NULL, 'received', '', '280.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 (1619, '2022-10-29 08:14:00', 1125, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', 'Visa', '-189.9200', NULL, 6, NULL, 'received', '', '-189.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 (1620, '2022-10-29 08:15:00', 1631, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', 'Visa', '316.2800', NULL, 6, NULL, 'received', '', '316.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 (1621, '2022-10-29 08:15:00', 1716, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', 'Visa', '1246.3200', NULL, 6, NULL, 'received', '', '1246.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 (1622, '2022-10-29 08:17:00', 1513, NULL, NULL, 'IPAY1368', NULL, 'other', '', '', '', '', '', 'Visa', '917.7900', NULL, 6, NULL, 'received', '', '917.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 (1623, '2022-10-29 08:20:27', 1727, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', '', '405.7800', NULL, 10, NULL, 'received', '', '405.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 (1624, '2022-10-29 08:20:00', 1724, NULL, NULL, 'IPAY1368', NULL, 'cash', '', '', '', '', '', 'Visa', '1.1000', NULL, 6, NULL, 'received', '', '1.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 (1625, '2022-10-29 08:29:12', 1728, NULL, NULL, 'IPAY1369', NULL, 'cash', '', '', '', '', '', '', '227.7800', NULL, 10, NULL, 'received', '', '227.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 (1626, '2022-10-29 08:38:00', 1728, NULL, NULL, 'IPAY1370', NULL, 'cash', '', '', '', '', '', 'Visa', '16.1300', NULL, 6, NULL, 'received', '', '16.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 (1627, '2022-10-29 09:06:09', 1729, NULL, NULL, 'IPAY1370', NULL, 'cash', '', '', '', '', '', '', '66.7000', NULL, 10, NULL, 'received', '', '66.7000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 09:17:51', 1731, NULL, NULL, 'IPAY1371', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 10, 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 (1629, '2022-10-29 09:20:00', 1688, NULL, NULL, 'IPAY1372', NULL, 'cash', '', '', '', '', '', 'Visa', '969.0400', NULL, 6, NULL, 'received', '', '969.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 (1630, '2022-10-29 09:21:00', 797, NULL, NULL, 'IPAY1372', NULL, 'cash', '', '', '', '', '', 'Visa', '1391.5800', NULL, 6, NULL, 'received', '', '1391.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 (1631, '2022-10-29 09:21:33', 1732, NULL, NULL, 'IPAY1372', NULL, 'cash', '', '', '', '', '', '', '55.1000', NULL, 10, NULL, 'received', '', '55.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 (1632, '2022-10-29 09:25:48', 1733, NULL, NULL, 'IPAY1373', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 10, 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 (1633, '2022-10-29 09:28:00', 1210, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', 'Visa', '117.7900', NULL, 6, NULL, 'received', '', '117.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 (1634, '2022-10-29 09:28:00', 1699, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', 'Visa', '49.0000', NULL, 6, 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 (1635, '2022-10-29 09:28:00', 1512, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', 'Visa', '155.8300', NULL, 6, NULL, 'received', '', '155.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 (1636, '2022-10-29 09:29:00', 1691, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', 'Visa', '88.0000', NULL, 6, 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 (1637, '2022-10-29 09:29:00', 1730, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', 'Visa', '109.3600', NULL, 6, NULL, 'received', '', '109.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 (1638, '2022-10-29 09:41:41', 1734, NULL, NULL, 'IPAY1374', NULL, 'cash', '', '', '', '', '', '', '77.0200', NULL, 10, NULL, 'received', '', '100.0000', '22.9800', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 09:43:41', 1735, NULL, NULL, 'IPAY1375', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 6, NULL, 'received', '', '50.0000', '16.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 09:44:30', 1736, NULL, NULL, 'IPAY1376', NULL, 'cash', '', '', '', '', '', '', '31.9000', NULL, 10, NULL, 'received', '', '200.0000', '168.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 09:45:00', 1683, NULL, NULL, 'IPAY1377', NULL, 'cash', '', '', '', '', '', 'Visa', '35.2000', NULL, 6, 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 (1642, '2022-10-29 09:49:00', 1122, NULL, NULL, 'IPAY1377', NULL, 'cash', '', '', '', '', '', 'Visa', '29.1500', NULL, 6, NULL, 'received', '', '29.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 (1643, '2022-10-29 09:50:00', 990, NULL, NULL, 'IPAY1377', NULL, 'cash', '', '', '', '', '', 'Visa', '71.0000', NULL, 6, 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 (1644, '2022-10-29 09:51:00', 759, NULL, NULL, 'IPAY1377', NULL, 'cash', '', '', '', '', '', 'Visa', '9.2900', NULL, 6, NULL, 'received', '', '9.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 (1645, '2022-10-29 10:25:56', 1738, NULL, NULL, 'IPAY1377', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 6, NULL, 'received', '', '130.0000', '2.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 10:38:48', 1741, NULL, NULL, 'IPAY1378', NULL, 'cash', '', '', '', '', '', '', '45.4000', NULL, 10, 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 (1647, '2022-10-29 10:41:11', 1742, NULL, NULL, 'IPAY1379', NULL, 'cash', '', '', '', '', '', '', '18.9000', NULL, 10, NULL, 'received', '', '20.0000', '1.1000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 10:57:17', 1743, NULL, NULL, 'IPAY1380', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 10, NULL, 'received', '', '100.0000', '-50.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 11:14:30', 1745, NULL, NULL, 'IPAY1381', NULL, 'cash', '', '', '', '', '', '', '309.7200', NULL, 10, NULL, 'received', '', '309.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 (1650, '2022-10-29 11:28:28', 1746, NULL, NULL, 'IPAY1382', NULL, 'cash', '', '', '', '', '', '', '233.2000', NULL, 10, NULL, 'received', '', '300.0000', '66.8000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 11:38:00', 1737, NULL, NULL, 'IPAY1383', NULL, 'cash', '', '', '', '', '', 'Visa', '1397.1000', NULL, 6, NULL, 'received', '', '1397.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 (1652, '2022-10-29 11:39:14', 1747, NULL, NULL, 'IPAY1383', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 6, 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 (1653, '2022-10-29 11:41:00', 1615, NULL, NULL, 'IPAY1384', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1654, '2022-10-29 11:41:00', 1614, NULL, NULL, 'IPAY1384', NULL, 'cash', '', '', '', '', '', 'Visa', '537.0000', NULL, 6, 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 (1655, '2022-10-29 12:05:23', 1749, NULL, NULL, 'IPAY1384', NULL, 'cash', '', '', '', '', '', '', '15.8000', NULL, 6, NULL, 'received', '', '16.0000', '0.2000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 12:06:59', 1750, NULL, NULL, 'IPAY1385', NULL, 'cash', '', '', '', '', '', '', '136.0500', NULL, 10, NULL, 'received', '', '200.0000', '63.9500', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 12:09:24', 1751, NULL, NULL, 'IPAY1386', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 10, 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 (1658, '2022-10-29 12:54:06', 1753, NULL, NULL, 'IPAY1387', NULL, 'cash', '', '', '', '', '', '', '942.6600', NULL, 10, NULL, 'received', '', '942.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 (1659, '2022-10-29 13:03:35', 1754, NULL, NULL, 'IPAY1388', NULL, 'cash', '', '', '', '', '', '', '498.0800', NULL, 10, NULL, 'received', '', '498.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 (1660, '2022-10-29 13:13:06', 1756, NULL, NULL, 'IPAY1389', NULL, 'cash', '', '', '', '', '', '', '29.6000', NULL, 10, NULL, 'received', '', '50.0000', '20.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 13:15:00', 1757, NULL, NULL, 'IPAY1390', NULL, 'cash', '', '', '', '', '', '', '823.6600', NULL, 6, NULL, 'received', '', '823.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 (1662, '2022-10-29 13:15:56', 1758, NULL, NULL, 'IPAY1391', NULL, 'cash', '', '', '', '', '', '', '29.6000', NULL, 10, 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 (1663, '2022-10-29 13:37:00', 1759, NULL, NULL, 'IPAY1392', NULL, 'cash', '', '', '', '', '', 'Visa', '260.8000', NULL, 6, NULL, 'received', '', '270.0000', '6.4000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 13:39:00', 1760, NULL, NULL, 'IPAY1393', NULL, 'cash', '', '', '', '', '', '', '419.2400', NULL, 6, NULL, 'received', '', '419.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 (1665, '2022-10-29 13:40:00', 1748, NULL, NULL, 'IPAY1394', NULL, 'other', '', '', '', '', '', 'Visa', '1001.5800', NULL, 6, NULL, 'received', '', '1001.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 (1666, '2022-10-29 13:43:30', 1761, NULL, NULL, 'IPAY1394', NULL, 'cash', '', '', '', '', '', '', '33.8000', NULL, 6, 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 (1667, '2022-10-29 13:49:02', 1763, NULL, NULL, 'IPAY1395', NULL, 'cash', '', '', '', '', '', '', '221.5500', NULL, 10, NULL, 'received', '', '221.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 (1668, '2022-10-29 13:51:00', 1759, NULL, NULL, 'IPAY1396', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1669, '2022-10-29 13:55:00', 1743, NULL, NULL, 'IPAY1396', NULL, 'cash', '', '', '', '', '', 'Visa', '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 (1670, '2022-10-29 14:08:50', 1764, NULL, NULL, 'IPAY1396', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 10, 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 (1671, '2022-10-29 14:29:00', 1753, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', 'Visa', '66.9000', NULL, 6, 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 (1672, '2022-10-29 14:29:00', 1515, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', 'Visa', '3360.7500', NULL, 6, NULL, 'received', '', '3360.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 (1673, '2022-10-29 14:30:00', 1553, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', 'Visa', '4339.5500', NULL, 6, NULL, 'received', '', '4339.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 (1674, '2022-10-29 14:31:00', 1569, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', 'Visa', '3209.9500', NULL, 6, NULL, 'received', '', '3209.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 (1675, '2022-10-29 14:31:00', 1578, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', 'Visa', '1713.1000', NULL, 6, NULL, 'received', '', '1713.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 (1676, '2022-10-29 14:39:27', 1767, NULL, NULL, 'IPAY1397', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 6, 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 (1677, '2022-10-29 14:42:00', 1767, NULL, NULL, 'IPAY1398', NULL, 'cash', '', '', '', '', '', 'Visa', '80.0000', NULL, 6, 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 (1678, '2022-10-29 14:52:00', NULL, NULL, 128, 'POP0019', NULL, 'Cheque', 'CGB CHEQUE NO. 00002', '', '', '', '', 'Visa', '4450.3600', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1679, '2022-10-29 14:53:54', 1768, NULL, NULL, 'IPAY1398', NULL, 'cash', '', '', '', '', '', '', '41.4000', NULL, 10, NULL, 'received', '', '41.4000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 14:55:18', 1769, NULL, NULL, 'IPAY1399', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 10, 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 (1681, '2022-10-29 14:57:29', 1770, NULL, NULL, 'IPAY1400', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 10, 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 (1682, '2022-10-29 15:13:28', 1771, NULL, NULL, 'IPAY1401', NULL, 'cash', '', '', '', '', '', '', '164.5000', NULL, 6, NULL, 'received', '', '164.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 15:15:00', 1765, NULL, NULL, 'IPAY1402', NULL, 'cash', '', '', '', '', '', 'Visa', '426.4400', NULL, 6, NULL, 'received', '', '426.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 (1684, '2022-10-29 15:25:59', 1772, NULL, NULL, 'IPAY1402', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 6, NULL, 'received', '', '50.0000', '23.5000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `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, '2022-10-29 15:27:50', 1773, NULL, NULL, 'IPAY1403', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 6, NULL, 'received', '', '13.8000', '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=MyISAM 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=MyISAM AUTO_INCREMENT=5 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);
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 (2, 6, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
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 (3, 7, 1, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
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 (4, 8, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, 1, 1, 1, NULL, 1, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


#
# 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=MyISAM AUTO_INCREMENT=8 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, '2022-08-08 05:37:40', 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, '2022-08-10 20:06:35', 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, '2022-09-09 17:56:00', 5, '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, '2022-09-11 20:44:02', 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, '2022-09-12 08:43:10', 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 (6, '2022-10-26 12:47:07', 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 (7, '2022-10-27 10:44:48', 10, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_pos_settings
#

DROP TABLE IF EXISTS `sma_pos_settings`;

CREATE TABLE `sma_pos_settings` (
  `pos_id` int(1) NOT NULL,
  `cat_limit` int(11) NOT NULL,
  `pro_limit` int(11) NOT NULL,
  `default_category` int(11) NOT NULL,
  `default_customer` int(11) NOT NULL,
  `default_biller` int(11) NOT NULL,
  `display_time` varchar(3) NOT NULL DEFAULT 'yes',
  `cf_title1` varchar(255) DEFAULT NULL,
  `cf_title2` varchar(255) DEFAULT NULL,
  `cf_value1` varchar(255) DEFAULT NULL,
  `cf_value2` varchar(255) DEFAULT NULL,
  `receipt_printer` varchar(55) DEFAULT NULL,
  `cash_drawer_codes` varchar(55) DEFAULT NULL,
  `focus_add_item` varchar(55) DEFAULT NULL,
  `add_manual_product` varchar(55) DEFAULT NULL,
  `customer_selection` varchar(55) DEFAULT NULL,
  `add_customer` varchar(55) DEFAULT NULL,
  `toggle_category_slider` varchar(55) DEFAULT NULL,
  `toggle_subcategory_slider` varchar(55) DEFAULT NULL,
  `cancel_sale` varchar(55) DEFAULT NULL,
  `suspend_sale` varchar(55) DEFAULT NULL,
  `print_items_list` varchar(55) DEFAULT NULL,
  `finalize_sale` varchar(55) DEFAULT NULL,
  `today_sale` varchar(55) DEFAULT NULL,
  `open_hold_bills` varchar(55) DEFAULT NULL,
  `close_register` varchar(55) DEFAULT NULL,
  `keyboard` tinyint(1) NOT NULL,
  `pos_printers` varchar(255) DEFAULT NULL,
  `java_applet` tinyint(1) NOT NULL,
  `product_button_color` varchar(20) NOT NULL DEFAULT 'default',
  `tooltips` tinyint(1) DEFAULT 1,
  `paypal_pro` tinyint(1) DEFAULT 0,
  `stripe` tinyint(1) DEFAULT 0,
  `rounding` tinyint(1) DEFAULT 0,
  `char_per_line` tinyint(4) DEFAULT 42,
  `pin_code` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT 'purchase_code',
  `envato_username` varchar(50) DEFAULT 'envato_username',
  `version` varchar(10) DEFAULT '3.4.53',
  `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=MyISAM 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, 2, 1667, 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.53', 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=MyISAM 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=MyISAM 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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_product_photos` (`id`, `product_id`, `photo`) VALUES (1, 6550, 'd15c690167b0e1e0e94bb55bb6a79da2.jpg');


#
# 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=MyISAM 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=MyISAM AUTO_INCREMENT=5 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=MyISAM AUTO_INCREMENT=6946 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 (6876, '5402680', 'Alazole 400 Tablet', 1, '0.9800', '1.5000', '0.0000', 'no_image.png', 1684, 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, '54026801', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6875, '11896071', 'Mist Expect Sed rockmer', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 1658, 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, '11896071', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6942, '01539886', 'Dicnac Injection (Diclofenac)', 1, '5.4600', '6.7000', '20.0000', 'a4218b16fcc720bce8833b7bf30d9898.jpg', 1675, NULL, '', '', '', '', '', '', '310.0000', NULL, 1, '', NULL, 'code128', '', '<p>Dicnac Injection is a <b xss=removed>pain-relieving medicine</b>. It is used to treat pain, swelling, stiffness, and joint pain in conditions like rheumatoid arthritis, osteoarthritis, and acute musculoskeletal injuries. It is given in cases where oral administration is not possible.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '01539886', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6873, '06796716', 'Menazole 500mg (Mebenazole)10x1 Ayrtons', 1, '1.5800', '2.0000', '0.0000', 'no_image.png', 1684, 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, '06796716', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6907, '01827710', 'Congestyl Tablets 12s', 1, '9.0000', '12.5000', '0.0000', '559f2a74d81fd179a52aa77d1b9caeb8.jpg', 1675, NULL, '', '', '', '', '', '', '181.0000', NULL, 1, '', NULL, 'code128', '', '<p><strong>Congestyl Tablet </strong>is a combination of three medicines:\r\nChlorpheniramine, paracetamol and phenylephrine which relieves common cold\r\nsymptoms. They belong to the class of medication called \\\'cough and cold medications\\\' primarily used to treat\r\nsymptoms of the common cold and allergies like sneezing, runny/stuffy nose,\r\nfever, headache, body pains, congestion, or watery eyes.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01827710', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6872, '97726773', 'Dewome 500mg tablets', 1, '2.0000', '2.2000', '0.0000', 'no_image.png', 1684, 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, '97726773', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6894, '42292731', 'Epitimol 0.5% Eye Drop', 1, '12.9600', '14.4000', '0.0000', 'no_image.png', 1671, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', '', '<p>Timolol 5mg</p>', NULL, 'standard', 329, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '42292731', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', 1, '9.0000', '10.0000', '0.0000', 'no_image.png', 1669, 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, '32866404', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6868, '70949987', 'Fiesta Condom Classic', 1, '3.4000', '4.0000', '20.0000', 'e1c5059484e428b9559f5426a89e4391.jpg', 1667, 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, '70949987', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6867, '01981362', 'Fiesta Condom dotted', 1, '3.5000', '4.0000', '20.0000', 'd9b83b5ff8a7589a3b1d97774999a599.jpg', 1667, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01981362', 1, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6866, '89649628', 'Fiesta Condom Fruity', 1, '3.5000', '4.0000', '20.0000', '6284d929614f592c9f649d8cffcc48aa.jpg', 1667, 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, '89649628', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6865, '55663121', 'Fiesta Condom Dumsor', 1, '3.5000', '4.0000', '20.0000', '45fc20ed8416f7de090d96639392079d.png', 1667, 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, '55663121', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6864, '98367406', 'Fiesta Condom Strawberry ', 1, '4.0000', '4.0000', '0.0000', 'ff23e55d4e94f7524fb1e3c7234a89ac.png', 1667, NULL, '', '', '', '', '', '', '4735.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98367406', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6863, '59208125', 'Fiesta Condom Extra Thin', 1, '4.0000', '4.0000', '20.0000', '638bd383da4df2358528bcccb7082541.jpg', 1667, 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, 'fiesta-condom-extra-thin', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6862, '03174833', 'Promethazine Syrup 60ml ECL', 1, '3.5900', '4.8000', '0.0000', '0a1cf502e627381dd909cd8d629b2a3e.jpg', 1695, NULL, '', '', '', '', '', '', '157.0000', NULL, 1, '', NULL, 'code128', '', '<p>Promethazine is used to prevent and treat nausea and vomiting related to certain conditions (such as before/after surgery, motion sickness). It is also used to treat allergy symptoms such as rash, itching, and runny nose. It may be used to help you feel sleepy/relaxed before and after surgery or to help certain opioid pain relievers (such as meperidine) work better. It may also be used for a short time to treat a runny nose due to the common cold.Promethazine is an antihistamine and works by blocking a certain natural substance (histamine) that your body makes during an allergic reaction. Its other effects (such as anti-nausea, calming, pain relief) may work by affecting other natural substances (such as acetylcholine) and by acting directly on certain parts of the brain.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03174833', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 1, '15.1200', '22.3000', '20.0000', 'no_image.png', 1669, 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, '1457', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6859, '1456', 'Klire Odim Capsules', 1, '18.0000', '18.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '498.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1456', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6858, '1455', 'Klire Acielo O', 1, '4.4000', '4.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1455', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6857, '1454', 'Klire Zofu', 1, '11.8000', '11.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1454', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6856, '1453', 'Klire Ibupofen', 1, '14.4000', '14.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1453', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6855, '1452', 'Klire Calcium', 1, '13.5000', '13.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1452', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6854, '1451', 'Luex Baby Powder 200g', 1, '6.0000', '6.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1451', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6853, '1450', 'Mycolex Powder 50g', 1, '23.0000', '25.0000', '20.0000', 'no_image.png', 1654, 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, '1450', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 1, '8.4000', '12.4000', '20.0000', 'no_image.png', 1654, 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, '1449', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6851, '1448', 'Cotton 500g', 1, '26.0000', '26.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1448', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6850, '1447', 'Flucotrust Capsules 150mg', 1, '2.8900', '2.8900', '20.0000', 'no_image.png', 1654, 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, '1447', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6849, '1446', 'Kelcuf Junior Syrup 100ml', 1, '6.5000', '7.5000', '20.0000', 'no_image.png', 1654, 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, '1446', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6848, '1445', 'Kelcuf Baby Syrup 100ml', 1, '6.5000', '7.5000', '20.0000', 'no_image.png', 1654, 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, '1445', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6847, '1444', 'Kelcuf Adult Syrup 100ml', 1, '6.5000', '7.5000', '20.0000', 'no_image.png', 1654, 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, '1444', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6846, '1443', 'Haemo Forte Syrup 100ml', 1, '11.5000', '11.5000', '20.0000', 'hamforte.jpg', 1662, NULL, '', '', '', '', '', '', '139.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1443', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6845, '1442', 'Robb Ointment', 1, '34.1000', '34.1000', '20.0000', 'no_image.png', 1681, NULL, '', '', '', '', '', '', '87.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1442', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6844, '1441', 'Roberts Glycerine 30ml', 1, '5.5000', '5.5000', '20.0000', 'no_image.png', 1681, NULL, '', '', '', '', '', '', '-18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1441', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6843, '1440', 'Robb Inhaler', 1, '22.9200', '25.2200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 305, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1440', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6842, '1439', 'Tobufen 60ml', 1, '4.4000', '5.0000', '20.0000', 'no_image.png', 1654, 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, '1439', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6841, '1438', 'Chlor Eye Drops 0.5ml', 1, '4.6000', '2.6000', '20.0000', 'no_image.png', 1654, 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, '1438', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6840, '1437', 'Betasol N (Eye,Ear &amp; Nose) Drop', 1, '5.2000', '9.3000', '20.0000', 'betasol.jpeg', 1654, 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, '1437', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6839, '1436', 'Maxmox Suspension 100ml', 1, '4.9100', '6.4300', '20.0000', 'no_image.png', 1654, 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, '1436', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6838, '1435', 'Maxmox 250mg (10x10)', 1, '17.7100', '17.7100', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1435', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6837, '1434', 'Maxmox 250mg (50x10)', 1, '87.4000', '127.2000', '20.0000', 'no_image.png', 1654, 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, '1434', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6836, '1433', 'Fluclox Suspension 100ml Eskay', 1, '5.2300', '5.2300', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1433', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6835, '1432', 'Eskypan 10mg (10x1x10)', 1, '3.6000', '3.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '-13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1432', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6834, '1431', 'Eskafan Susp(180mg/1080mg)', 1, '5.3000', '7.4300', '20.0000', 'no_image.png', 1654, 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, '1431', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6833, '1430', 'Eskafan Tabs 20/120 (1X24)', 1, '6.1000', '8.5100', '20.0000', 'no_image.png', 1654, 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, '1430', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6832, '1429', 'Eskadol Nyte', 1, '2.6000', '2.6000', '20.0000', 'ekadol-nyte.jpeg', 1654, NULL, '', '', '', '', '', '', '272.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1429', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6831, '1428', 'Eskadol Blister(25x1x10)', 1, '1.6000', '2.1000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '650.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1428', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6830, '1427', 'Ganaman Capsules', 1, '29.7000', '29.7000', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1427', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6829, '1426', 'Prostajoy', 1, '29.7000', '29.7000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1426', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6775, '1372', 'Bendrofluazide Tabs 5mg 500\\\' ECL', 1, '49.2000', '70.0000', '20.0000', 'no_image.png', 1654, 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, '1372', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6776, '1373', 'Lorazepam 2mg Tabs 500\' ECL', 1, '59.8000', '59.8000', '20.0000', 'Lorazepam.jpeg', 1654, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1373', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100 ECL', 1, '23.6700', '26.5000', '20.0000', '9452313aee25775caa7395dd84cff1ba.jpg', 1654, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Omecet is also Omeprazole used to treat certain stomach and esophagus problems such as frequent heartburn, acid reflux, ulcers. It belongs to a group of drugs called proton-pump inhibitors. It works by reducing the amount of acid in the stomach.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omecet-omeprazole-caps-20mg-100-ecl', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6778, '1375', 'Nugel Susp 200ml', 1, '23.3800', '26.1800', '20.0000', 'nugel.jpeg', 1658, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Oral Suspension is used for Gastric reflux, Heartburn, Peptic ulcer pain, Sour stomach, Overdose, Toxicity, Acid indigestion and other conditions.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1375', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6779, '1376', 'Actifed Multi Action Tabs 12&apos;s', 1, '46.0000', '46.0000', '20.0000', 'actifed-multi.jpeg', 1663, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1376', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6780, '1377', 'Myfenax Mycophenolate Mofetil Tabs 500mg 50&apos;s', 1, '90.8000', '90.8000', '20.0000', 'mycophenolate.jpeg', 1654, 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, '1377', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6781, '1378', 'Omeprazole 40mg Caps 28&apos;s', 1, '8.5000', '8.5000', '20.0000', 'omeprazole.jpeg', 1654, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1378', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6782, '1379', 'Propranolol 10mg Tabs 28&apos;s', 1, '7.2000', '7.2000', '20.0000', 'propranolol.jpeg', 1654, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1379', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6783, '1380', 'Propranolol 40mg Tabs 28&apos;s', 1, '7.6000', '7.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1380', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6784, '1381', 'Ashton and Parsons Teething Gel 10ml', 1, '58.0000', '58.0000', '20.0000', 'ash-teething.jpeg', 1654, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1381', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6785, '1382', 'Femfresh Wash 150ml', 1, '13.0200', '14.8000', '20.0000', 'femfresh-10ml.jpeg', 1654, 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, '1382', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6786, '1383', 'Femfresh Wash 250ml', 1, '33.1800', '37.7000', '20.0000', 'femfresh-250ml.jpeg', 1654, 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, '1383', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6787, '1384', 'K.Y. Jelly Sterile 82G', 1, '44.6400', '50.6000', '20.0000', 'K-Y-Jelly.jpeg', 1685, 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, '1384', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6788, '1385', 'Fun Time Stim. Joy Ring', 1, '20.6000', '20.6000', '20.0000', 'fun-time-joy-ring.jpeg', 1654, NULL, '', '', '', '', '', '', '82.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1385', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6789, '1386', 'Hydrocortisone Cream 10g COPHARMA', 1, '18.3400', '20.8000', '20.0000', 'no_image.png', 1654, 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, '1386', NULL, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6790, '1387', 'Strepsils Original Lozenges. 16&apos;s', 1, '27.5000', '27.5000', '20.0000', 'strepsils-orig.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1387', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6791, '1388', 'Strepsils Menthol lozenges 16&apos;s', 1, '29.6000', '29.6000', '20.0000', 'strepsil.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1388', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6792, '1389', 'Benylin Chesty Cough 150ml(N/D)', 1, '56.0000', '56.0000', '20.0000', 'BENYLIN-CHESTY.jpeg', 1664, NULL, '', '', '', '', '', '', '149.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1389', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6793, '1390', 'Benylin Chesty Cough Original 300ml ', 1, '91.2000', '91.2000', '20.0000', 'BENYLIN-CHESTY.jpeg', 1664, 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, '1390', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6794, '1391', 'Zirtek Syrup 150ml', 1, '59.9000', '59.9000', '20.0000', 'ZIRTEK.jpeg', 1654, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1391', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6795, '1392', 'Benylin Dry &amp; Tickly Cough 150ml', 1, '55.8000', '55.8000', '20.0000', 'benylin-dry.jpeg', 1664, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1392', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6796, '1393', 'H/AID Vitamin D3 5000IU Caps 30&apos;s', 1, '58.9000', '58.9000', '20.0000', 'VIT-d3.jpeg', 1669, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1393', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6797, '1394', 'H/Aid Zinc Gluconate Caps 70mg', 1, '43.7000', '43.7000', '20.0000', 'H-aid-zin.jpeg', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1394', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6798, '1395', 'H/Aid Vitamin E 1000iu Natural Caps', 1, '119.5300', '135.5000', '20.0000', 'vitamin-e-1000.jpeg', 1695, 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, '1395', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6799, '1396', 'H/Aid Vitamin E 200iu Caps 60&apos;s', 1, '86.4100', '97.0000', '20.0000', 'V.-E-200IU.png', 1695, 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, '1396', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6800, '1397', 'Simvastatin 20mg Tabs 28&apos;s', 1, '5.5000', '5.5000', '20.0000', 'SIMVAS.jpeg', 1654, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1397', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6801, '1398', 'Simvastatin 40mg Tabs 28&apos;s', 1, '6.2000', '6.2000', '20.0000', 'simvastain-40mg.jpeg', 1654, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1398', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6802, '1399', 'Allopurinol 300mg Tabs 28&apos;s', 1, '10.8000', '10.8000', '20.0000', 'allopurinol.jpeg', 1654, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1399', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6803, '1400', 'Cetirizine 10mg Tabs 30&apos;s', 1, '7.0000', '7.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '107.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1400', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6804, '1401', 'Buscopan Org.Tabs10mg 56&apos;s', 1, '54.9000', '54.9000', '20.0000', 'buscopan.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1401', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6805, '1402', 'Res-Q Tabs 2x10&apos;s', 1, '3.4000', '4.3000', '20.0000', 'no_image.png', 1658, 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, '1402', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6806, '1403', 'Metrotrust F Suspension', 1, '8.2000', '8.2000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1403', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6807, '1404', 'Folic Acid 5mg Crescent', 1, '9.0000', '9.0000', '20.0000', 'folic-acid-crescent.jpeg', 1654, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1404', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6808, '1405', 'Valupak  Vit C Chewable', 1, '20.0000', '20.0000', '20.0000', 'valu-vit-c.jpeg', 1654, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1405', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 1, '13.8000', '13.8000', '20.0000', 'bendro-bristol.jpeg', 1654, 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, '1406', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6810, '1407', 'Valupak Vit E 400iu', 1, '30.0000', '30.0000', '20.0000', 'valu-e.jpeg', 1669, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1407', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6811, '1408', 'Spironolactone 100mg Tab NorthStar', 1, '23.0000', '23.0000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1408', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6812, '1409', 'Sudocrem 60g', 1, '31.3200', '34.8000', '20.0000', 'sudocrem.jpeg', 1654, 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, '1409', NULL, '0.0000', NULL, 7, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6813, '1410', 'Becoatin Syrup 200ml', 1, '12.6000', '17.5000', '20.0000', 'becotin-syrup.jpeg', 1654, 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, '1410', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6814, '1411', 'Wellkid Multivitamin Syrup 160ml', 1, '72.2300', '81.9000', '20.0000', 'wellkid-multi.jpeg', 1654, 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, '1411', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6815, '1412', 'Zipferon Forte', 1, '9.2100', '15.7000', '20.0000', 'ZIPER.png', 1691, 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, '1412', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6816, '1413', 'Basecam Caps (Piroxicam)', 1, '11.9000', '11.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '51.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1413', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6817, '1414', 'Basecold 1x6 Tab', 1, '13.8000', '13.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1414', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6818, '1415', 'Foliron Capsules', 1, '3.5000', '3.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '202.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1415', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6819, '1416', 'Peladol Junior', 1, '13.2000', '13.2000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '-5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1416', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 1, '5.3000', '5.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '417.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1417', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6821, '1418', 'Bazuka Condoms', 1, '65.0000', '68.0000', '20.0000', 'no_image.png', 1667, 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, '1418', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6822, '1419', 'Malufen 560 Tablets (Artemether Lumefantrine Tablets)', 1, '10.0000', '10.0000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '623.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1419', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 1, '10.7800', '15.8000', '20.0000', 'Fluxamox.jpeg', 1654, 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, '1420', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 1, '18.4800', '18.4800', '20.0000', 'CARDIO.jpeg', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1421', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6825, '1422', 'Oxytetra Cap 250mg', 1, '46.2800', '1.0000', '1000.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '544.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, '1422', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6826, '1423', 'RL-Ringer Lactate IV 500ml', 1, '5.3600', '5.3600', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1423', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6827, '1424', 'DNS-Dext+Normal Sline IV 500ml', 1, '5.3600', '5.3600', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1424', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 1, '13.1400', '15.8000', '20.0000', 'no_image.png', 1654, 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, '1425', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6770, '1367', 'Enamycin tab 250mg 500\\\' ECL', 1, '168.0000', '290.0000', '20.0000', 'no_image.png', 1654, 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, '1367', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6771, '1368', 'Hydrolyte ORS 25 Lemon Flav. ECL', 1, '19.2000', '19.2000', '20.0000', 'hydrolyte-ors.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1368', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6772, '1369', 'Hydrolyte ORS 25\' Orange Flav. ECL', 1, '19.2000', '19.2000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1369', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6773, '1370', 'Hydrolyte ORS Plain 25\' ECL', 1, '18.5000', '18.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1370', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6774, '1371', 'Bendrofluazide Tab 2.5mg 500\\\' ECL', 1, '35.8200', '47.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Bendroflumethiazide is a type of medicine called a diuretic. It\\\'s used to treat high blood pressure (hypertension) and the build-up of fluid in your body (oedema). Diuretics are sometimes called \\\"water tablets\\\" because they make you pee more. This helps get rid of extra fluid in your body.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1371', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6768, '1365', 'Methylated Spirit 125ml ECL', 1, '5.8000', '9.0000', '20.0000', 'no_image.png', 1654, 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, '1365', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6767, '1364', 'Methylated Spirit 200ml ECL', 1, '9.5000', '15.0000', '20.0000', 'no_image.png', 1654, 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, '1364', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6766, '1363', 'Kidivit Syrup 100ML', 1, '6.0000', '8.6000', '20.0000', 'no_image.png', 1654, 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, '1363', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\\\' Caps ECL', 1, '59.0000', '73.8000', '20.0000', 'seven-seas-cod.jpeg', 1669, 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, '1362', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6764, '1361', 'Bells Normal Saline Drops 0.9ml', 1, '5.6700', '6.3500', '20.0000', 'bells-normal-saline-drops.jpeg', 1654, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This product is used to treat dryness inside the nose (nasal passages). It helps add moisture inside the nose to dissolve and soften thick or crusty mucus. In babies and young children with stuffy noses who cannot blow their noses, using this product helps to make the mucus easier to remove with a nasal bulb syringe.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1361', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6763, '1360', 'Medi Plus', 1, '13.8000', '13.8000', '20.0000', 'MEDI-PLUS.jpg', 1659, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1360', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6762, '1359', 'Femacure X', 1, '13.8000', '13.8000', '20.0000', 'FEMACURE-X.jpg', 1667, NULL, '', '', '', '', '', '', '71.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1359', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6761, '1358', 'Aspirine Cardio 100MG Tabs 30\'', 1, '21.0000', '21.0000', '20.0000', 'Aspirine-Cardio-100MG-Tabs-30.jpeg', 1656, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1358', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6760, '1357', 'Tramadol Denk 50 Tabs B/10', 1, '45.4900', '45.4900', '20.0000', 'Tramadol-denk-50mg.jpeg', 1654, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1357', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6759, '1356', 'Tramadol Denk 100mg Retard 30&apos;s', 1, '75.3200', '75.3200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1356', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6758, '1355', 'Acyclovir Denk 200mg tabs 25&apos;s', 1, '54.2500', '100.8700', '20.0000', 'acyclovir-denk.jpeg', 1654, 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, '1355', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6757, '1354', 'HCT Exforge 5/160/12.5mg 28&apos;s', 1, '207.6800', '264.0600', '20.0000', 'no_image.png', 1665, 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, '1354', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6756, '1353', 'Oson&apos;s Cod Liver Oil Capsules 10x10 Softgels', 1, '15.0900', '15.0900', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1353', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6755, '1352', 'Salo Simple Linctus', 1, '5.8500', '6.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '170.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1352', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6754, '1351', 'Happyrona Forte Tablets 20X1X20', 1, '4.5000', '4.5000', '20.0000', 'happy.jpeg', 1669, NULL, '', '', '', '', '', '', '378.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1351', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6753, '1350', 'COA Mixture', 1, '70.0000', '85.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '173.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1350', NULL, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6752, '1349', 'Taabea Taacum', 1, '22.0000', '25.0000', '20.0000', 'no_image.png', 1667, 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, '1349', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 1, '35.0000', '40.8300', '20.0000', 'no_image.png', 1654, 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, '1348', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 1, '6.7000', '9.4500', '20.0000', 'no_image.png', 1675, 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, '1347', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6749, '1346', 'Jet 2 Inhaler', 1, '40.0000', '42.0000', '20.0000', 'jet-2.jpg', 1654, NULL, '', '', '', '', '', '', '135.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1346', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6748, '1345', 'Jet 2 Cold Capsules', 1, '4.3000', '4.3000', '20.0000', 'no_image.png', 1663, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1345', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6747, '1344', 'Neoferon Syrup 200ml', 1, '12.9800', '12.9800', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1344', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6746, '1343', 'Livertone Tonic 200ml', 1, '10.5600', '14.0000', '20.0000', 'livertone.jpg', 1654, 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, '1343', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6745, '1342', 'Durex Extra Safe 3&apos;s Condoms', 1, '12.9800', '12.9800', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1342', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6744, '1341', 'Nexcofer Blood Tonic 200ml', 1, '10.7800', '14.8000', '20.0000', 'nexcofer.jpeg', 1691, 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, '1341', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6743, '1340', 'Metro-Z Suspension 100ml', 1, '9.5800', '9.5800', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1340', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6742, '1339', 'Healthy Life Vitamin C 1000mg Tablets 20&apos;s', 1, '16.5000', '16.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1339', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6741, '1338', 'Lisinopril 5mg Tablets 28&apos;s Teva', 1, '5.7000', '5.7000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1338', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6740, '1337', 'Nurofen Syrup Ibuprofen 100ml Strawberry', 1, '36.3000', '36.3000', '20.0000', 'nurofen-syrup-strawb.jpeg', 1654, 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, '1337', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 1, '5.9000', '7.5000', '20.0000', 'no_image.png', 1678, 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, '1336', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6738, '1335', 'Eskaron Capsules 10X30', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 1691, 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, '1335', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6737, '1334', 'Sudafed Sinus Ease Spray 0.1%', 1, '40.5000', '40.5000', '20.0000', 'sudafed-sinus-spray.jpeg', 1663, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1334', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6736, '1333', 'Sudafed Head &amp; Congestion Max Strength', 1, '38.2000', '46.0000', '20.0000', 'sudafed-head-and-cong.jpeg', 1656, 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, '1333', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6735, '1332', 'Sudafed Blocked Nose Spray 15ml', 1, '41.0000', '41.0000', '20.0000', 'sudafed-blocked-nose.jpeg', 1663, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1332', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6734, '1331', 'Sudafed Sinus &amp; Pain Tablets 24&apos;s', 1, '60.0000', '60.0000', '20.0000', 'sudafed-sinus-and-pain.jpeg', 1663, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1331', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6733, '1330', 'Sudafed Mucus Relief Tablets 16&apos;s', 1, '42.0000', '42.0000', '20.0000', 'sudafed-mucus-relief.jpeg', 1663, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1330', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6732, '1329', 'Sudafed Decongestant Tablets 12&apos;s', 1, '38.0000', '45.6000', '20.0000', 'sudafed-decongestant.jpeg', 1663, 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, '1329', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6731, '1328', 'Corsodyl Mint 500ml', 1, '43.1000', '43.1000', '20.0000', 'corsodyl-mint.jpeg', 1654, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1328', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6730, '1327', 'Nurofen Syrup Ibuprofen 100ml Orange', 1, '27.3000', '27.3000', '20.0000', 'nurofen-syrup-orange.jpeg', 1654, 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, 'nurofen-syrup-ibpufen-100ml-orange', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6729, '1326', 'Benylin Children Night Cough Syrup 125ml', 1, '40.6000', '40.6000', '20.0000', 'benylin-children-night.jpeg', 1664, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1326', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6728, '1325', 'Kingdom Garlic Bitters', 1, '14.6000', '14.6000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1325', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6727, '1324', 'Paracetamol 500mg Tablet Crescent', 1, '17.0000', '17.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1324', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6726, '1323', 'Morgan&apos;s Auntibactirial Soap', 1, '6.0000', '7.2000', '20.0000', 'morgan-antibacterial.jpeg', 1656, 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, '1323', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6725, '1322', 'Bonjela Adult Gel 15g', 1, '62.6900', '71.1000', '20.0000', 'no_image.png', 1654, 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, '1322', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6724, '1321', 'Bonjela Teething Gel 15g', 1, '45.5600', '51.6400', '20.0000', 'bonjela-teething.jpeg', 1654, 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, '1321', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6723, '1320', 'Bonjela Junior Gel 15g', 1, '38.4000', '38.4000', '20.0000', 'bonjela-junior-gel.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1320', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6722, '1319', 'Keppra 1000mg Tablets', 1, '252.0000', '252.0000', '20.0000', 'keppra.jpeg', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1319', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6721, '1318', 'Robaxin 750mg Tablets 100&apos;s', 1, '220.0000', '220.0000', '20.0000', 'robaxin-750mg.png', 1654, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1318', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6720, '1317', 'B Complex Tablets 60&apos;s Valupak Vitamin', 1, '9.5000', '9.5000', '20.0000', 'vitamin-b-complex.jpeg', 1695, 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, '1317', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6719, '1316', 'Glucose and Chondriton 400mg Tab. Valupak 30&apos;s', 1, '17.4000', '17.4000', '20.0000', 'glucose-and-chondriton-val.jpeg', 1656, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1316', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6718, '1315', 'Canderel Tablets 105&apos;s', 1, '12.9000', '12.9000', '20.0000', 'canderel-tab.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1315', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6717, '1314', 'Lemsip Cold and flu Original 10&apos;s', 1, '38.4000', '38.4000', '20.0000', 'lemsip-cold-and-flu-original.jpeg', 1664, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1314', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6716, '1313', 'Benylin Children Chesty Cough Syrup', 1, '40.6000', '40.6000', '20.0000', 'benylin-children-chesty.jpeg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1313', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6715, '1312', 'Bells Children Cough Syrup 100ml', 1, '14.5000', '14.5000', '20.0000', 'bells-ch.jpeg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1312', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6714, '1311', 'Vitamin E 400 IU Capsules H/A 30&apos;s', 1, '84.4400', '95.7000', '20.0000', 'Vitamin-E-400-IU-Capsules.jpeg', 1654, 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, '1311', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6713, '1310', 'Simvastatin 10mg Tablets 28&apos;s', 1, '3.8000', '3.8000', '20.0000', 'Simvastatin-10mg-Tablets-28s.jpeg', 1654, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1310', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6712, '1309', 'Warfarin 5mg Tablets 28&apos;s', 1, '7.8000', '7.8000', '20.0000', 'Warfarin-5mg-Tablets-28s.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1309', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6711, '1308', 'Bisoprolol 2.5mg Tablets 28&apos;s Teva', 1, '6.9000', '9.0000', '20.0000', 'Bisoprolol-2.5mg-Tablets-28s-Teva.jpeg', 1654, 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, '1308', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6710, '1307', 'Glimepiride 4mg Tablets 30&apos;s Teva', 1, '14.0000', '14.0000', '20.0000', 'Glimepiride-4mg-Tablets-30s-Teva.jpeg', 1654, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1307', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6709, '1306', 'Ramipril 2.5mg Tablets 28&apos;s Teva', 1, '4.0000', '4.0000', '20.0000', '0b1879cfe225ba74bbe667f68f6e9388.jpg', 1654, 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, '1306', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6708, '1305', 'Loratadine 10mg Tablets 30&apos;s', 1, '6.0000', '9.0000', '20.0000', 'loratadine.jpeg', 1654, 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, '1305', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6707, '1304', 'Amitriptyline 25mg Tablets 28&apos;s', 1, '6.8000', '6.8000', '20.0000', 'Amitriptyline-25mg-Tablets-28s.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1304', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6706, '1303', 'Sildenafil 50mg Tablets 8&apos;s', 1, '11.8000', '11.8000', '20.0000', 'Sildenafil-50mg-Tablets-8s.jpeg', 1654, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1303', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6705, '1302', 'Sildenafil 100mg Tablets 8&apos;s', 1, '15.8000', '15.8000', '20.0000', 'Sildenafil-100mg-Tablets-8s.jpeg', 1654, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1302', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6704, '1301', 'Digoxin 125mg Tablets 28&apos;s', 1, '14.9000', '14.9000', '20.0000', 'Digoxin-125mg-Tablets-28s.jpeg', 1656, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1301', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6703, '1300', 'Carvedilol 12.5mg Tablets 28&apos;s', 1, '12.0000', '16.3400', '20.0000', 'Carvedilol-12.5mg-Tablets-28s.jpeg', 1656, 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, '1300', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6702, '1299', 'Carvedilol 6.25mg Tablets 28&apos;s', 1, '8.8000', '12.6000', '20.0000', 'Carvedilol-6.25mg-Tablets-28s.jpeg', 1654, 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, '1299', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6701, '1298', 'Benylin Mucus+Decon Syrup100ml', 1, '43.7000', '43.7000', '20.0000', 'benylin-mucus-plus-decon.jpeg', 1664, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1298', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6700, '1297', 'Spironolactone 50mg Tablets 28&apos;s Teva', 1, '28.0000', '28.0000', '20.0000', 'Spironolactone-50mg-Tablets-28s-Teva.jpeg', 1665, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1297', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6699, '1296', 'Folic Acid 5mg Tablet 28&apos;s Accord', 1, '7.0000', '8.4000', '20.0000', 'folic-acid.jpeg', 1669, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1296', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6698, '1295', 'Biva Plus Syrup', 1, '12.0000', '13.8000', '20.0000', 'no_image.png', 1661, 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, '1295', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6697, '1294', 'Biva Plus Capsules', 1, '11.0000', '12.7000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '102.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1294', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6696, '1293', 'Abyvita Capsules', 1, '4.3000', '4.9500', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '534.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1293', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '189.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1292', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6694, '1291', 'Prowoman 50+ Capsules 30&apos;s ', 1, '52.8000', '52.8000', '20.0000', 'no_image.png', 1669, 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, 'prowoman-50-capsules-30s', NULL, '0.0000', NULL, 1, 0, 'Vitamins / Food Supplement', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6693, '1290', 'Benylin Mucus Max H&amp;L', 1, '57.0000', '57.0000', '20.0000', 'benylyin-mucus-max.jpeg', 1664, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1290', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6692, '1289', 'Mist Mag. Trisilicate 200ml (MMT) Extem Pharma', 1, '4.0000', '4.0000', '20.0000', '2815ec3c8765a824de450d2d75280071.jpg', 1654, NULL, '', '', '', '', '', '', '224.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Milk of magnesia (MOM) and Mist mag are well-known antacid\r\nmedicine for used to treat constipation and symptoms caused by too much acid\r\nsuch as heartburn. It is also used for the relief of the\r\nsymptoms of indigestion, heartburn and dyspepsia.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1289', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6691, '1288', 'Lonart 20/120mg Tablets 24&apos;s', 1, '6.5000', '8.8000', '20.0000', 'lonart.jpeg', 1670, NULL, '', '', '', '', '', '', '193.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1288', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6690, '1287', 'Seclear Eye Drop', 1, '8.2500', '8.2500', '20.0000', 'no_image.png', 1671, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1287', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6689, '1286', 'Chloramphenicol Eye Ointment 0.01 5g', 1, '3.3000', '3.3000', '20.0000', 'chloram-eye.jpg', 1694, NULL, '', '', '', '', '', '', '109.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1286', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6688, '1285', 'Travatan Eye Drops 2.5ml', 1, '80.8000', '132.0100', '20.0000', 'travatan.jpg', 1671, 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, '1285', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6687, '1284', 'Broncholin Syrup 125ml', 1, '2.0000', '2.0000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1284', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6686, '1283', 'Letaplex Syrup 125ml', 1, '2.5000', '2.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1283', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6685, '1282', 'Alu Hyd Tablets', 1, '0.5000', '0.6000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '292.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1282', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6684, '1281', 'Amoxicillin 500mg Letap', 1, '29.7000', '32.7000', '20.0000', 'no_image.png', 1660, 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, '1281', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6683, '1280', 'Liverplex B 200ml', 1, '8.2000', '10.3000', '20.0000', 'liverplex.jpg', 1669, 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, '1280', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6682, '1279', 'Goldy Forte DS', 1, '10.0000', '15.9800', '20.0000', 'goldy.jpg', 1670, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1279', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6681, '1278', 'Goldy Malaria Suspension', 1, '10.0000', '13.9800', '20.0000', 'goldy.jpg', 1670, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1278', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6680, '1277', 'Gebediclo 50mg Tablets', 1, '8.3200', '14.3000', '20.0000', 'no_image.png', 1675, 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, '1277', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6679, '1276', 'Gebediclo 100mg Tablets', 1, '9.9900', '17.0000', '20.0000', 'no_image.png', 1675, 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, '1276', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6678, '1275', 'Azirocin Suspension', 1, '14.3000', '14.3000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1275', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6677, '1274', 'Azirocin 250mg Capules', 1, '10.0000', '10.5000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '240.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1274', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6676, '1273', 'Lydia Oral Contraception Pill', 1, '2.5000', '2.5000', '20.0000', 'lydia-postpil.jpg', 1683, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1273', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6675, '1272', 'Lydia Postpill 2Tablets', 1, '8.5000', '8.5000', '20.0000', 'lydia-postpil.jpg', 1683, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1272', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6674, '1271', 'Plaster roll Extra care 1Inch', 1, '4.4500', '4.4500', '20.0000', 'plaster-2inc.jpg', 1672, NULL, '', '', '', '', '', '', '243.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1271', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6891, '38323733', 'Flexpen/Insulin/Mixtard 100U/ML', 1, '26.3200', '29.0000', '0.0000', 'no_image.png', 1666, 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, '38323733', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6673, '1270', 'Kofof Child Suppresant 100ml Entrance', 1, '6.9000', '7.9400', '20.0000', '5cb14e5e380545be52844808b24bca1e.jpg', 1664, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This medication is used to\r\ntemporarily treat cough, chest congestion, and stuffy nose symptoms caused by\r\nthe common cold, flu, allergies, hay fever, or other breathing illnesses (such\r\nas sinusitis, bronchitis), Hypotension, Shock, Hypotension during spinal\r\nanaesthesia.</p>', 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-suppresant-100ml-entrance', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6672, '1269', 'Kofof Child Expectorant 100ml', 1, '7.0000', '8.1000', '20.0000', 'kofof-syr.jpeg', 1664, 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, '1269', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6671, '1268', 'Kofof Baby', 1, '8.4200', '9.0000', '20.0000', 'kofof-syr.jpeg', 1664, NULL, '', '', '', '', '', '', '175.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1268', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6670, '1267', 'Dicnac 75', 1, '9.5000', '9.5000', '20.0000', 'dicnac.jpg', 1675, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1267', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6669, '1266', 'Emgiflox Suspension 100ml', 1, '6.0000', '6.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1266', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6668, '1265', 'Arziglobin Plus 200ml Syrup', 1, '8.9000', '8.9000', '20.0000', 'download-67.jpeg', 1662, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1265', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6667, '1264', 'Gyprone Plus Tablets', 1, '2.7000', '3.0000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '935.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1264', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6666, '1263', 'Examination Gloves', 1, '50.0000', '50.0000', '20.0000', 'gloves.jpeg', 1672, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1263', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6665, '1262', 'Plaster Strips Easy Care', 1, '10.0000', '11.0000', '20.0000', 'plst.jpg', 1672, NULL, '', '', '', '', '', '', '95.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1262', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6664, '1261', 'Pregnancy Test Kit One-Step', 1, '1.4000', '1.6000', '20.0000', 'one.jpeg', 1672, NULL, '', '', '', '', '', '', '527.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6663, '1260', 'Cotton Wool 25gm', 1, '2.5000', '2.5000', '20.0000', 'cot.jpeg', 1672, NULL, '', '', '', '', '', '', '214.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1260', NULL, NULL, 0, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6944, '50560029', 'Metformin 500MG (ENTRANCE)', 1, '14.9000', '16.6000', '0.0000', 'no_image.png', 1680, 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, '50560029', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6661, '1258', 'Otrivin 0.05% Child Nasal Drop 10ml', 1, '26.4000', '26.4000', '20.0000', 'otrivin-child.jpeg', 1663, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1258', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6660, '1257', 'Wellman Drink', 1, '8.8200', '8.8200', '20.0000', 'wellman.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1257', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6659, '1256', 'Jointace Omega-3 Capsules 30&apos;s', 1, '63.0000', '63.0000', '20.0000', 'joint.jpeg', 1669, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1256', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6658, '1255', 'Feroglobin Plus Syrup 200ml', 1, '65.8000', '65.8000', '20.0000', 'fero-p.jpeg', 1662, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1255', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6657, '1254', 'Aspanol Jnr. Syrup', 1, '5.4000', '5.4000', '20.0000', 'aspanol-jnr.jpeg', 1654, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1254', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6656, '1253', 'Martins liver salt (Orange)25&apos;s', 1, '11.7100', '13.1000', '20.0000', 'martins-orange.jpeg', 1658, 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, '1253', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6655, '1252', 'Mayfer Syrup 200ml', 1, '8.7000', '9.8000', '20.0000', 'myfer.jpeg', 1691, 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, '1252', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6654, '1251', 'Huichun Capsules', 1, '22.0000', '22.0000', '20.0000', 'huchin.jpeg', 1659, NULL, '', '', '', '', '', '', '70.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1251', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6653, '1250', 'Carvedi Denk 6.25mgTablets 3X10', 1, '27.8000', '51.6000', '20.0000', 'caverdi.jpeg', 1665, 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, '1250', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 1, '3.3900', '3.7900', '20.0000', 'lavina.jpeg', 1686, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This product is used to treat dryness inside the nose (nasal passages) and helps to add moisture inside the nose to dissolve and soften thick or crusty mucus.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1249', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6651, '1248', 'Kalamina Lotion 120ml', 1, '7.4400', '7.4400', '20.0000', 'kalamina.jpeg', 1681, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1248', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6650, '1247', 'Nexcofer Blood Tonic 100ml', 1, '5.7000', '9.0000', '20.0000', 'nexcofer.jpeg', 1691, 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, '1247', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6649, '1246', 'Stopkof Cold and Catarrh Syrup', 1, '8.4000', '11.8000', '20.0000', 'stopkof-cnc-syr.jpeg', 1664, 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, '1246', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6648, '1245', 'Lavi-Cvamoxiclav DS Suspension 457mg/5ml 70ml', 1, '11.4000', '11.4000', '20.0000', 'clsv.jpeg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1245', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6647, '1244', 'Durex Feels Condoms 3&apos;s', 1, '7.8100', '8.7500', '20.0000', 'durex.jpeg', 1667, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '<p>Is a straight-walled fit of condoms that heighten sensitivity. It provides protection against possible sexual diseases. Each condom in Durex pack is dermatologically tested to ensure complete protection.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1244', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6646, '1243', 'Xarelto 20mg Tablets 14&apos;s', 1, '224.0900', '248.9900', '20.0000', 'xarelto.jpeg', 1654, 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, '1243', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 1, '3.3000', '3.3000', '20.0000', 'tetra.jpg', 1660, NULL, '', '', '', '', '', '', '113.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1242', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6644, '1241', 'Secnidazole 1g Tablets 2&apos;s (Lavina) ECL', 1, '4.6800', '5.2000', '20.0000', 'secni.jpg', 1660, 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, '1241', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6643, '1240', 'Metroz Tablets 20&apos;s', 1, '5.9000', '5.9000', '20.0000', 'no_image.png', 1660, 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, '1240', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 1, '5.9000', '5.9000', '20.0000', 'metagly-sus.jpeg', 1660, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metronidazole is an antibiotic that is <em xss=removed>used</em> to treat a wide variety of infections. It works by stopping the growth of certain bacteria and parasites.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1239', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6641, '1238', 'Lavi-Cvamoxiclav DS Suspension 228.5mg/5ml 70ml', 1, '10.2000', '10.2000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1238', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 1, '4.7000', '7.8000', '20.0000', 'histazine-syr.jpeg', 1673, 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, '1237', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6639, '1236', 'Ferrous Sulphate Tablets 500s ECL', 1, '24.0000', '38.0000', '20.0000', 'no_image.png', 1679, 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, '1236', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6638, '1235', 'Clarithromycin 500mg Tablets 14s Exeter', 1, '47.8000', '47.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1235', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6637, '1234', 'Exetrim Suspension 240mg/5ml 100ml', 1, '7.9000', '7.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1234', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6636, '1233', 'Cetrizan Syrup 5MG/5ML 60ML', 1, '6.8000', '6.8000', '20.0000', 'CETRIZAN.jpeg', 1673, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1233', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', 1, '11.8000', '13.1000', '20.0000', 'no_image.png', 1681, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Benzyl benzoate is used <b xss=removed>to treat lice and scabies infestations</b>. This medicine is believed to be absorbed by the lice and mites and to destroy them by acting on their nervous system. This medicine is available without a prescription.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1232', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6634, '1231', 'Bells Olive Oil 70ml', 1, '13.4000', '13.4000', '20.0000', 'bells-olive.jpeg', 1668, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1231', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6633, '1230', 'Vit Bco Strong 30&apos;s Krka', 1, '32.0000', '32.0000', '20.0000', 'bco-strong.jpg', 1669, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1230', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6632, '1229', 'Crestor 20mg', 1, '240.0000', '240.0000', '20.0000', '4d50af4c182a5fd86a8bc9edf4cd14cf.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Helps lower your blood cholesterol and triglycerides.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1229', 1, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6631, '1228', 'Diphex Bronchodilator Cough Syrup 100ml', 1, '7.7000', '7.7000', '20.0000', 'diphex.jpg', 1664, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1228', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6630, '1227', 'Cetapol PM Syrup 100ml', 1, '7.0000', '7.0000', '20.0000', 'CETAPOL-PM.jpeg', 1654, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1227', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6629, '1226', 'Gluco-Naf C Pineapple 400mg', 1, '11.6000', '11.6000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1226', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6628, '1225', 'Multivitamin Syrup 125ml Ayrton', 1, '5.4000', '6.1000', '20.0000', 'arton.jpeg', 1669, 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, '1225', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 1, '79.1500', '97.0000', '20.0000', 'par-ayr.jpeg', 1654, 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, '1224', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 1, '99.3000', '171.2200', '20.0000', 'no_image.png', 1660, 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, '1223', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6625, '1222', 'Healthlink Menopause Tablets 30&apos;s', 1, '37.9000', '37.9000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1222', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6624, '1221', 'Healthlink Glucosamine &amp; Chodroitin Caplet', 1, '54.0000', '54.0000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1221', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6623, '1220', 'Healthlink Omega-3 Fish Oil Gels', 1, '36.0000', '36.0000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1220', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6622, '1219', 'Health Link Hair, Nails &amp; Skin', 1, '43.5000', '47.8500', '20.0000', 'no_image.png', 1669, 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, '1219', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6621, '1218', 'Lumetrust Suspension 150ml', 1, '9.5000', '9.5000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1218', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6620, '1217', 'Lumetrust 140/360mg Tablets', 1, '7.5000', '7.5000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1217', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6619, '1216', 'Trustzole 400mg Suspension', 1, '3.5000', '3.5000', '20.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1216', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6618, '1215', 'Trustzole 400mg Tablets', 1, '3.5000', '3.5000', '20.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1215', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6617, '1214', 'Babyvite 50ml Drops', 1, '9.5000', '9.5000', '20.0000', '3ce83804a2bd8af687836d03e696c1ad.jpg', 1654, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Ascovit Cee helps to boost the immune system of the body to fight infection and promote healing. </p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1214', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6616, '1213', 'Listerine 500ML All Types', 1, '27.9000', '27.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1213', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6615, '1212', 'Fada Martins Herbal Mixture', 1, '11.0000', '11.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '43.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1212', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6614, '1211', 'Orelox 40mg/5ml Suspension 100ml', 1, '116.7800', '149.5200', '20.0000', 'no_image.png', 1660, 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, '1211', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6613, '1210', 'Enterogemina 5ml  Ampoles 10&apos;s', 1, '45.6000', '52.8000', '20.0000', 'no_image.png', 1654, 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, '1210', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 1, '16.5600', '20.9200', '20.0000', 'no_image.png', 1660, 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, '1209', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 1, '9.1100', '11.5300', '20.0000', 'no_image.png', 1660, 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, '1208', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 1, '70.0000', '97.9000', '20.0000', 'no_image.png', 1654, 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, '1207', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6609, '1206', 'Skyclav 228.5mg', 1, '11.3900', '16.3000', '20.0000', 'no_image.png', 1660, 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, '1206', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6608, '1205', 'Skyclav 457mg', 1, '12.6300', '21.7000', '20.0000', 'no_image.png', 1660, 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, '1205', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6895, '49637846', 'Zubes Child Cough Syrup', 1, '9.7900', '10.8000', '0.0000', 'no_image.png', 1664, 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, '49637846', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6607, '1204', 'Skyclav 625', 1, '16.0000', '17.7100', '20.0000', 'no_image.png', 1660, 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, '1204', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6606, '1203', 'Skyclav 1g', 1, '15.5300', '28.2000', '20.0000', 'no_image.png', 1660, 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, '1203', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 1, '5.8000', '5.8000', '20.0000', 'no_image.png', 1656, 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, '1202', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6604, '1201', 'Eskyzole Triple Action Cream 30g', 1, '5.5000', '8.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '406.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1201', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6603, '1200', 'Eskaron Blood Tonic 200ml', 1, '6.1900', '8.9000', '20.0000', 'no_image.png', 1691, 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, '1200', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6602, '1199', 'Benylin Original Syrup 100ml', 1, '41.8000', '41.8000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1199', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6601, '1198', 'Starcold', 1, '44.6000', '1.1000', '20.0000', 'no_image.png', 1656, 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, '1198', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 1, '12.9000', '14.9000', '20.0000', 'no_image.png', 1671, 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, '1197', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 1, '17.0100', '18.9000', '20.0000', 'no_image.png', 1671, 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, '1196', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6598, '1195', 'Epifenac Eye 1mg/ml Drop', 1, '17.0100', '18.9000', '20.0000', 'no_image.png', 1654, 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, '1195', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 1, '17.0100', '18.9000', '20.0000', 'no_image.png', 1671, 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, '1194', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6595, '1192', 'Azycin 500mg', 1, '7.9000', '9.2000', '20.0000', 'no_image.png', 1660, 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, '1192', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6596, '1193', 'Epicrom 2% Eye Drop 10ml', 1, '18.9000', '20.9000', '20.0000', 'no_image.png', 1671, 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, '1193', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6594, '1191', 'Malin Baby Plus', 1, '9.1000', '9.1000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '71.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1191', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6593, '1190', 'Milk of Magnesia 125ml Letap', 1, '1.6500', '2.8000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '592.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1190', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 1, '3.1800', '3.9000', '20.0000', '2a7885393d9d613c13caa719d68e3cfc.jpg', 1660, NULL, '', '', '', '', '', '', '171.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Co-Trimoxazole can be used to treat: <strong xss=\\\"removed\\\">Urinary bladder or urinary tract infections (water infections).</strong> <strong xss=\\\"removed\\\">Respiratory tract infections such as bronchitis.</strong> <strong xss=\\\"removed\\\">Ear infections such as otitis media</strong>. What is co-trimoxazole suspension used for?</p><p>Co-trimoxazole is used to treat certain bacterial\r\ninfections, such as pneumonia (a lung infection), bronchitis (infection of the\r\ntubes leading to the lungs), and infections of the urinary tract, ears, and\r\nintestines. It also is used to treat \\\'travelers\\\' diarrhea.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1189', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6591, '1188', 'Abyvita Syrup 200ml', 1, '10.0000', '11.5000', '20.0000', '7219b0b83c898590f6295e638aafb03b.jpg', 1654, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Abyvita Capsule is used for the treatment, control, prevention, & improvement of the following diseases, conditions and symptoms:</p><p>Perennial and seasonal allergic rhinitis</p><p>Vasomotor rhinitis</p><p>Allergic conjunctivitis due to inhalant allergens and foods</p><p><a href=\\\"https://fmmsgh.com/\\\"></a></p><p>Allergic reactions to blood or plasma</p><p>Cold urticaria</p><p>Dermatographism</p><p>Physiological stress</p><p>Nutritional deficiency</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1188', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6590, '1187', 'Peladol Extra', 1, '25.3000', '25.3000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1187', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6589, '1186', 'Sporanox', 1, '121.9000', '163.7000', '20.0000', 'sporanox.jpeg', 1674, 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, '1186', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6588, '1185', 'Motilium Tablets 30&apos;s', 1, '41.4000', '55.6000', '20.0000', 'no_image.png', 1654, 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, '1185', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6587, '1184', 'Gyno-Daktarin Pessaries', 1, '32.7000', '83.8000', '20.0000', 'no_image.png', 1674, 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, '1184', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6586, '1183', 'Gyno-Daktarin Cream', 1, '62.5000', '62.5000', '20.0000', 'gyno-daktarin.jpeg', 1674, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1183', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6585, '1182', 'Fleming 1000mg Tablets', 1, '46.9900', '52.0000', '20.0000', 'fleming.jpeg', 1660, 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, '1182', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6584, '1181', 'Cororange Capsules', 1, '8.2000', '8.2000', '20.0000', 'no_image.png', 1662, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1181', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6583, '1180', 'Adom Ladies Mixture', 1, '14.3000', '14.3000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1180', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6582, '1179', 'Adom Ladies Capsules', 1, '15.4000', '15.4000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1179', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6581, '1178', 'Cirotamin Caplets 28&apos;s', 1, '10.3500', '11.5000', '20.0000', 'no_image.png', 1669, 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, '1178', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6580, '1177', 'Lipitor 20mg 30&apos;s', 1, '328.9000', '471.9900', '20.0000', '870ce42d4c4d23eea625d25e29f48a88.jpg', 1666, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Belongs to the class of HMG CoA reductase inhibitors. Used in the treatment of hyperlipidemia.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1177', 1, '0.0000', NULL, 8, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6579, '1176', 'Deep Freez Gel 35g', 1, '35.5400', '60.4000', '20.0000', 'no_image.png', 1654, 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, '1176', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6578, '1175', '3TOL 250ml Anticeptic &amp; Disinfectant', 1, '4.5000', '5.5000', '20.0000', 'f697cfbaca56ee7dbae05db5a0780bd2.jpg', 1693, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>These are chemicals for cleaning the and\r\ndisinfecting the skin, surfaces, wounds caused\r\nby cuts and scratches as well as laundry. It kills 99.9% of germs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1175', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6577, '1174', '3TOL Lime 250ml Anticeptic &amp; Disinfectant', 1, '4.5000', '5.5000', '20.0000', 'baf1fbc87e511201e52e4671b0790d3e.jpg', 1693, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>These are chemicals for cleaning the and\r\ndisinfecting the skin, surfaces, wounds caused\r\nby cuts and scratches as well as laundry. It kills 99.9% of germs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1174', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6576, '1173', '3TOL 500ML Lime Fresh Anticeptic', 1, '9.5000', '12.0000', '20.0000', '4a8dbf450096d3742661951c6fd56ed8.jpg', 1693, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>These are chemicals for cleaning the and\r\ndisinfecting the skin, surfaces, wounds caused\r\nby cuts and scratches as well as laundry. It kills 99.9% of germs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1173', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6575, '1172', '3TOL 500ML Anticeptic &amp; Disinfectant', 1, '9.5000', '12.0000', '20.0000', 'b35f914d0376b96d5c9817da202dcfc2.jpg', 1693, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>These are chemicals for cleaning the and\r\ndisinfecting the skin, surfaces, wounds caused\r\nby cuts and scratches as well as laundry. It kills 99.9% of germs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1172', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6574, '1171', 'Mucolex Cough Syrup150ml', 1, '18.0000', '18.0000', '20.0000', 'no_image.png', 1678, 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, '1171', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6573, '1170', 'Zubes Extra Strong Cough Lozenges', 1, '21.4000', '41.3000', '20.0000', 'no_image.png', 1664, 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, '1170', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 1, '17.0000', '17.0000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '156.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1169', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6571, '1168', 'Fiesta Lubricant', 1, '15.4000', '15.4000', '20.0000', 'no_image.png', 1685, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1168', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6570, '1167', 'Luex Nasal Inhaler (Jar)', 1, '3.6300', '4.5000', '20.0000', 'no_image.png', 1654, 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, '1167', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 1664, 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, '1166', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6568, '1165', 'Lexofen 150ml Suspension', 1, '13.6100', '15.0000', '20.0000', 'LEXOFEN.jpeg', 1678, 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, '1165', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6567, '1164', 'Tegretol 200mg tablets 50&apos;s', 1, '59.7700', '88.0800', '20.0000', 'no_image.png', 1692, 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, '1164', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6566, '1163', 'Tegretol CR 400mg tablets 30&apos;s', 1, '88.8800', '130.9600', '20.0000', 'no_image.png', 1692, 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, '1163', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6565, '1162', 'Tegretol CR 200mg Divitabs 50&apos;s', 1, '64.7800', '88.0800', '20.0000', 'no_image.png', 1692, 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, '1162', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6564, '1161', 'Proximexa 500mg Tablets', 1, '81.4000', '81.4000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1161', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6563, '1160', 'Polygynax Pessaries 12&apos;s', 1, '60.3000', '81.0000', '20.0000', 'polygnax.jpeg', 1654, 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, '1160', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6562, '1159', 'Phlebodia B/15 Capsules', 1, '72.0000', '87.0000', '20.0000', 'no_image.png', 1654, 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, '1159', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6561, '1158', 'Olfen Gel 50gm', 1, '25.0000', '25.0000', '20.0000', 'olfen.jpg', 1657, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1158', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6560, '1157', 'Metformin Denk 1000mg Tablets', 1, '41.6300', '77.2800', '20.0000', 'no_image.png', 1680, 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, '1157', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6893, '233', 'Impressor Capsules', 1, '49.0000', '55.0000', '0.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '157.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '233', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6559, '1156', 'Perfectil Capsules 30&apos;s', 1, '77.4000', '87.8000', '20.0000', 'no_image.png', 1669, 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, '1156', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6558, '1155', 'Zulu MR 100mg Tablet', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 1654, 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, '1155', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6556, '1153', 'TSec 1g Tablets', 1, '3.5000', '4.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tsec-1g-tablets', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6557, '1154', 'Ocip TZ', 1, '8.1000', '9.6000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1154', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6555, '1152', 'Ocip 500mg Tablets 10&apos;s', 1, '2.9700', '4.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1152', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6554, '1151', 'Man Up Capsules 60&apos;s', 1, '130.0000', '190.0000', '20.0000', 'no_image.png', 1667, 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, '1151', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6553, '1150', 'Inopril 10/12.5mg', 1, '10.5000', '10.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1150', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6552, '1149', 'Zithromax 250mg Capsules 6&apos;s', 1, '186.8000', '295.0000', '20.0000', 'd926e19d133990ebe88ab5559b93d7ff.jpg', 1660, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '<p><strong>Zithromax </strong>(azithromycin), also known as Z-Pak, is an antibiotic used to treat bacterial infections such as bronchitis, pneumonia, and infections of the ears, lungs and other organs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1149', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6551, '1148', 'Zentel 100mg/5ml Suspension', 1, '13.8100', '13.8100', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1148', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6550, '1147', 'Nestrim Tabs 480 Blister ECL', 1, '14.0000', '14.0000', '20.0000', '0ad00c87409296ce3cdae7d6844dbebc.jpg', 1660, NULL, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nestrim-tabs-480-blister-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 (6549, '1146', 'Nepafenac 0.001 Eye Drops 5ml', 1, '16.0800', '16.0800', '20.0000', 'no_image.png', 1671, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1146', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6548, '1145', 'Metoclopramide 10mg Tablets 28&apos;s Exeter', 1, '8.8200', '9.8000', '20.0000', 'mto.jpeg', 1654, 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, '1145', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6547, '1144', 'Menthodex Lozenges 80G Sachet 25\' ORIG', 1, '9.8000', '9.8000', '20.0000', 'metn.jpeg', 1654, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1144', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6546, '1143', 'Menthodex Lozenges 80G Sachet 25\' H&amp;L', 1, '9.8000', '9.8000', '20.0000', 'menth.jpeg', 1654, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1143', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6545, '1142', 'Immunocin Capsules 30&apos;s', 1, '43.8000', '43.8000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1142', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6544, '1141', 'Hydrocortisone Cream 0.01 30g Exeter', 1, '16.2000', '16.2000', '20.0000', 'hydrct.jpg', 1674, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1141', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6543, '1140', 'Gastrone Suspension 200ml', 1, '12.4200', '17.0000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Gastrone Oral Suspension is used for Heartburn, Peptic ulcer pain, Sour stomach, Stomach acid, Increases water in the intestines, Painful pressure, Hiccups. It is also for the relief of Acidity,  Flatulence, Indigestion, Gaseous Discomfort and Peptic Ulcer. </p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1140', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 1, '8.0700', '9.9000', '20.0000', '5a728c29b97e1ea248c1da17a8a7eca9.jpg', 1660, NULL, '', '', '', '', '', '', '51.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Amoxicillin Capsules are indicated for the treatment of the\r\nfollowing infections in adults and children</p><li> Acute bacterial sinusitis</li><li> Acute otitis media</li><li> Acute streptococcal tonsillitis and pharyngitis</li><li> Acute exacerbations of chronic bronchitis</li><li> Community acquired pneumonia</li><li> Acute cystitis</li><li> Asymptomatic bacteriuria in pregnancy</li><li> Acute pyelonephritis</li><li> Typhoid and paratyphoid fever</li><li> Dental abscess with spreading cellulitis</li><li> Prosthetic joint infections</li><li> <em>Helicobacter pylori </em>eradication\r\nin peptic</li><li> Lyme disease</li>Amoxicillin is also indicated for the prophylaxis of endocarditis.\r\n<p>Consideration should be given to official guidance on the\r\nappropriate use of antibacterial agents.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1139', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6541, '1138', 'Exaflox (Fluclox) 100ml suspension', 1, '13.9400', '13.9400', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1138', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6540, '1137', 'Enaphagemetformin 500mg Tablets 500&apos;s', 1, '45.6000', '70.0000', '20.0000', 'no_image.png', 1680, 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, '1137', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6539, '1136', 'Enafix (Cefixime) 100ml Suspension', 1, '10.1800', '24.8000', '20.0000', 'no_image.png', 1689, 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, '1136', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6538, '1135', 'Drez Solution 30ml', 1, '10.3000', '10.3000', '20.0000', 'no_image.png', 1677, NULL, '', '', '', '', '', '', '33.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1135', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6537, '1134', 'Enacin-C (Clindamycin) 300mg Caps 100\\\'', 1, '93.6000', '105.0000', '20.0000', 'no_image.png', 1660, 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, '1134', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6536, '1133', 'Diclofenac Inj 75mg/3ml 10\'', 1, '6.8000', '6.8000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1133', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6535, '1132', 'Clotrimazole Cream 0.01 20g', 1, '3.4200', '3.8000', '20.0000', 'no_image.png', 1674, 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, '1132', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6534, '1131', 'Vitamin B Denk', 1, '142.0500', '263.6000', '20.0000', 'no_image.png', 1669, 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, '1131', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6533, '1130', 'Atenolol 50mg Tablets 28s (ECL)', 1, '3.9000', '4.2000', '20.0000', 'no_image.png', 1654, 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, 'atenolol-50mg-tablets-28s-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 (6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 1, '8.3700', '11.0000', '20.0000', 'asc-cee.jpeg', 1669, NULL, '', '', '', '', '', '', '244.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Helps to boost the immune system of the body to fight infection and promote healing. Active Ingredients. Vitamin C; Back To Products.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1129', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6531, '1128', 'Allacan 10 mg Tabs 30&apos;s (Cetirizine)', 1, '9.5000', '9.5000', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1128', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6530, '1127', 'City Blood Tonic 200ml', 1, '10.0000', '12.9800', '20.0000', 'no_image.png', 1691, 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, '1127', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 1, '12.5000', '12.5000', '20.0000', 'no_image.png', 1674, 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, '1126', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6528, '1125', 'Levon 2 Postpill CRD', 1, '5.9800', '7.5000', '20.0000', 'no_image.png', 1683, NULL, '', '', '', '', '', '', '160.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1125', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6527, '1124', 'Wellwoman 50+ CAPS', 1, '60.0000', '60.0000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1124', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6526, '1123', 'Pregnacare Max', 1, '154.7900', '175.5000', '20.0000', 'no_image.png', 1669, 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, '1123', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6525, '1122', 'Pregnacare Breastfeeding Cap', 1, '106.6000', '106.6000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1122', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6524, '1121', 'Perfectil Plus Caps', 1, '206.3900', '234.0000', '20.0000', 'no_image.png', 1669, 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, '1121', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6523, '1120', 'Neurozan 30\\\'8 Caps', 1, '131.5700', '205.0000', '20.0000', 'no_image.png', 1669, 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, '1120', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6522, '1119', 'Menopace Tabs UK', 1, '49.7000', '49.7000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1119', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6521, '1118', 'Diabetone Capsules 30&apos;s UK', 1, '42.2300', '42.2300', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1118', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6520, '1117', 'Wellwoman Plus Caps', 1, '87.7100', '99.5000', '20.0000', 'no_image.png', 1669, 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, '1117', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6519, '1116', 'Wellwoman Max Caps 28 tabs', 1, '120.3600', '120.3600', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1116', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6518, '1115', 'Wellwoman 70+ Capsules 30&apos;s', 1, '61.2000', '80.7000', '20.0000', 'wellwoman-70.jpeg', 1669, 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, '1115', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6517, '1114', 'Res-Q Antacid Suspension', 1, '8.7000', '11.0000', '20.0000', 'resq.jpeg', 1658, 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, '1114', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6516, '1113', 'Methyl Salicylate Ointment 40g', 1, '8.1000', '9.0000', '20.0000', 'ms-oint.jpeg', 1657, 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, '1113', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6515, '1112', 'Ichthammol Ointment 40g', 1, '18.6800', '20.7500', '20.0000', 'itch.jpg', 1657, 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, '1112', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6514, '1111', 'Salicylics Ointment 40g', 1, '8.8200', '9.9000', '20.0000', 'sali.jpeg', 1657, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1111', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6513, '1110', 'Vagid CL Suppositories', 1, '14.0000', '22.6800', '20.0000', 'vagid.jpeg', 1660, 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, '1110', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6512, '1109', 'Lonart Forte 40/240mg Tablets', 1, '11.2500', '11.2500', '20.0000', 'lonart-forte.jpeg', 1670, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1109', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6511, '1108', 'Lofnac P Tablets 50/500', 1, '1.7600', '1.8000', '20.0000', 'lofnac-p.jpeg', 1675, NULL, '', '', '', '', '', '', '282.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1108', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6510, '1107', 'GV- Fluc 150mg Capsules', 1, '4.0500', '4.7000', '20.0000', 'gv-fluc.png', 1654, NULL, '', '', '', '', '', '', '95.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1107', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6509, '1106', 'Gacet 1g Suppository', 1, '13.2500', '13.2500', '20.0000', 'gacet-1gm.jpeg', 1678, NULL, '', '', '', '', '', '', '130.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1106', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6508, '1105', 'Alpha Garlic Capsules', 1, '13.3000', '13.3000', '20.0000', 'alpha.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1105', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6507, '1104', 'Borges Olive Oil 500ml', 1, '44.0000', '44.0000', '20.0000', 'borges-500ml.jpg', 1668, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1104', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6506, '1103', 'Fumet Suspension', 1, '3.8800', '6.6000', '20.0000', 'fumet.jpeg', 1660, 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, '1103', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6505, '1102', 'Deep Heat Rub 67g', 1, '30.7000', '58.5000', '20.0000', 'deep-heat-rub.jpg', 1657, NULL, '', '', '', '', '', '', '92.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1102', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6504, '1101', 'Wormbat 10ml Suspension', 1, '4.0000', '4.0000', '20.0000', 'wormbat.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1101', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6503, '1100', 'Procomil Tablets 30&apos;s', 1, '50.0000', '60.0000', '20.0000', 'procomil-tab.jpeg', 1667, 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, '1100', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6502, '1099', 'Polygel Suspension 120ml', 1, '4.9500', '7.0000', '20.0000', 'polygel.jpg', 1658, 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, '1099', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6501, '1098', 'Heptopep Forte 200ml Syrup', 1, '9.0000', '10.6000', '20.0000', 'heptopep.jpeg', 1661, 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, '1098', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6500, '1097', 'Haemoglobin 200ml Syrup M&amp;G', 1, '6.8000', '6.8000', '20.0000', 'haemo.jpeg', 1662, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1097', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6499, '1096', 'Procomil Male Delay Spray', 1, '60.0000', '60.0000', '20.0000', 'procomil.jpeg', 1667, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1096', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6498, '1095', 'M2-Tone Tablets 20&apos;s', 1, '60.0000', '60.0000', '20.0000', 'm2_tone.jpg', 1659, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1095', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6497, '1094', 'Vivadona Capsules 20&apos;s', 1, '40.0000', '52.0000', '20.0000', 'vivadona.jpg', 1659, 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, '1094', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6496, '1093', 'Dymol 50/500 Mg Tablets 10&apos;s', 1, '5.0500', '5.7000', '20.0000', 'dymo.jpeg', 1675, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1093', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6495, '1092', 'Axacef 500mg Tablets 10&apos;s', 1, '53.0000', '61.3000', '20.0000', 'axa.jpeg', 1660, 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, '1092', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6494, '1091', 'Livomyn Tablets 20&apos;s', 1, '26.0000', '26.0000', '20.0000', 'Charak-Livomyn.jpg', 1659, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1091', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6493, '1090', 'Evanova Capsules 20&apos;s', 1, '38.0000', '38.0000', '20.0000', 'evanova.jpg', 1659, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1090', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6492, '1089', 'Prednisolone 5mg Tablets 70x10', 1, '39.5000', '39.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1089', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 1, '0.9600', '1.3000', '20.0000', 'c-tri.png', 1660, NULL, '', '', '', '', '', '', '3370.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1088', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 1, '30.0000', '40.0000', '20.0000', 'kefrox.jpeg', 1660, 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, '1087', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6489, '1086', 'Levothyroxin 50mg Tablets 28&apos;s NorthStar', 1, '13.0000', '13.0000', '20.0000', 'levo-50.jpeg', 1666, 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, '1086', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6488, '1085', 'Levothyroxine 100mg Tablets 28&apos;s', 1, '12.0000', '12.0000', '20.0000', 'levo.jpeg', 1666, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1085', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6487, '1084', 'Tamsulosin 400mcg Capsules 30&apos;s Teva', 1, '21.5700', '24.5000', '20.0000', 'tamsu.jpeg', 1666, 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, '1084', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6486, '1083', 'Contiflo XL 400mcg Capsules 30&apos;s', 1, '18.0000', '18.0000', '20.0000', 'contiflo-xl.jpeg', 1666, NULL, '', '', '', '', '', '', '54.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1083', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6485, '1082', 'Seven Seas JointCare Active 30&apos;s', 1, '109.9000', '109.9000', '20.0000', 'ss-j-active.jpeg', 1669, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1082', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6484, '1081', 'Seven Seas JointCare Suplex 30&apos;s', 1, '59.8000', '59.8000', '20.0000', 'seve-cod-j.jpeg', 1669, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1081', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6483, '1080', 'Seven Seas C/o Capsules 60&apos;s', 1, '50.7000', '50.7000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1080', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6482, '1079', 'Tylenol Extra Strength 500mg Capsules 50&apos;s', 1, '153.9000', '153.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1079', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6481, '1078', 'Ibuprofen Suspension 100ml/5ml', 1, '23.8000', '23.8000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1078', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6480, '1077', 'Furosemide 20mg Tablets 28&apos;s', 1, '5.0000', '5.0000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1077', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6479, '1076', 'Dulcolax 10mg Suppositories 12&apos;s', 1, '39.7000', '39.7000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1076', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6478, '1075', 'Fluconazole 150mg Capsules Teva', 1, '8.5700', '9.7200', '20.0000', 'fluconazole.jpeg', 1654, 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, '1075', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6477, '1074', 'Alka 5 Syrup 100ml', 1, '35.0000', '35.0000', '20.0000', 'Alka-5-syrup.jpg', 1659, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1074', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6476, '1073', 'Day And Night Nurse Capsules 24&apos;s', 1, '77.8000', '77.8000', '20.0000', 'day-n-night.jpeg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1073', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6475, '1072', 'Hyponidd Tablets 20&apos;s', 1, '33.0000', '33.0000', '20.0000', 'HYPONIDD-TABS.jpg', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1072', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6474, '1071', 'Day Nurse Capsules 20&apos;s', 1, '71.2000', '71.2000', '20.0000', 'day-nurse.jpeg', 1664, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1071', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6473, '1070', 'Clomid 50mg Tablets 10&apos;s', 1, '54.8000', '54.8000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1070', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6472, '1069', 'Canesten 20mg Cream', 1, '28.0000', '28.0000', '20.0000', 'no_image.png', 1677, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1069', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6471, '1068', 'Calcough 125ml Syrup', 1, '41.8000', '41.8000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1068', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6470, '1067', 'Vigomax Forte Tablets 20&apos;s', 1, '38.0000', '38.0000', '20.0000', 'vIGOMAX-FORTE-TABLETS-.jpg', 1654, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1067', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6469, '1066', 'Azithromycin 500mg Tablets 3&apos;s', 1, '19.8000', '19.8000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1066', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6468, '1065', 'Valupack Vitamin C Eff. 1000mg', 1, '23.5000', '23.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1065', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6467, '1064', 'Benylin Infant 125ml', 1, '44.6300', '50.6000', '20.0000', 'no_image.png', 1664, 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, '1064', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6466, '1063', 'Mist Sennaco Mal-Titi', 1, '4.5000', '4.5000', '20.0000', 'mist-cenaco.jpg', 1654, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1063', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6465, '1062', 'Mist FAC (Ferric citrate) 200ml', 1, '5.0000', '5.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1062', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6464, '1061', 'Mist Expect Sed Mal-Titi', 1, '4.0000', '4.0000', '20.0000', 'mist-expect-sed.jpg', 1664, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1061', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6463, '1060', 'Hydrogen Peroxide Mal-Titi', 1, '4.5000', '4.5000', '20.0000', 'hydrogen-scaled.jpg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1060', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6462, '1059', 'Mist Pot Cit (Potassium Citrate) Mal-Titi', 1, '5.0000', '5.0000', '20.0000', 'pot-cit.jpg', 1654, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1059', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6461, '1058', 'Tobcee Forte', 1, '17.4000', '17.4000', '20.0000', 'tobcee-forte.jpeg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1058', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6460, '1057', 'Calamine Lotion 100ml Mal-Titi', 1, '6.0000', '6.0000', '20.0000', 'no_image.png', 1677, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1057', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6459, '1056', 'Infa V Ointment', 1, '20.9000', '20.9000', '20.0000', 'download-84.jpeg', 1654, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1056', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6458, '1055', 'Infa V Pessaries', 1, '22.9000', '22.9000', '20.0000', 'download-84.jpeg', 1654, NULL, '', '', '', '', '', '', '89.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1055', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6457, '1054', 'Naklofen Duo Capsules 75mg 20&apos;s', 1, '41.4000', '46.5000', '20.0000', 'no_image.png', 1675, 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, '1054', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6456, '1053', 'Gastrone Tablets 100&apos;s', 1, '21.6000', '36.0000', '20.0000', 'no_image.png', 1654, 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, '1053', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6455, '1052', 'Paracetamol 500mg Tablets 100&apos;s EXE', 1, '17.6200', '21.7000', '20.0000', 'para-exeter.jpeg', 1654, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Paracetamol is a common painkiller used to treat aches and pain. It can also be used to reduce a high temperature. It\\\'s available combined with other painkillers and anti-sickness medicines. It\\\'s also an ingredient in a wide range of cold and flu remedies.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1052', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', 1, '3.7800', '5.2000', '20.0000', 'no_image.png', 1654, 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, '1051', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6453, '1050', 'Primolut N 5mg 30&apos;s', 1, '50.6000', '60.8000', '20.0000', 'primo.jpeg', 1654, 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, '1050', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6452, '1049', 'Cyclogest 200mg Pessaries 15&apos;s', 1, '115.0000', '198.0000', '20.0000', 'cyclogest.jpeg', 1654, 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, '1049', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6451, '1048', 'Voltfast Powder 50mg 30&apos;s', 1, '53.2000', '53.2000', '20.0000', 'download-1.jpeg', 1666, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1048', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6450, '1047', 'Diagellates Elixir 500ml', 1, '45.0000', '45.0000', '20.0000', 'diagelat.jpeg', 1659, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1047', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6449, '1046', 'Diagellates Elixir 250ml', 1, '25.5000', '25.5000', '20.0000', 'diagelat.jpeg', 1659, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1046', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6448, '1045', 'Diagellates Elixir 125ml', 1, '15.0000', '15.0000', '20.0000', 'diagelat.jpeg', 1659, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1045', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6447, '1044', 'Sibi Men Capsules', 1, '12.0000', '12.0000', '20.0000', 'download-36.jpeg', 1667, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1044', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6446, '1043', 'Dermiron Plus', 1, '4.9000', '8.4000', '20.0000', 'dermiron-plus.jpeg', 1654, NULL, '', '', '', '', '', '', '53.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1043', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6445, '1042', 'Vermox Suspension', 1, '21.8000', '29.5000', '20.0000', 'download-66.jpeg', 1684, NULL, '', '', '', '', '', '', '149.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Vermox Suspension is a medicine, which is used to treat threadworms (sometimes known as pinworms) and other common worm infections e.g. (whipworm, roundworm, hookworm). The medicine contains mebendazole, which is one of a group of medicines called anthelmintics.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1042', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6444, '1041', 'Stugeron Tablets 50&apos;s', 1, '25.8000', '47.7000', '20.0000', 'stugeron.jpeg', 1654, 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, '1041', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6443, '1040', 'Orelox 200mg Tablets', 1, '117.4000', '117.4000', '20.0000', 'download-42.jpeg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1040', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6442, '1039', 'NoSpa 40mg 100&apos;s', 1, '75.1600', '83.6000', '20.0000', 'download-43.jpeg', 1654, 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, '1039', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6441, '1038', 'Exforge HCT 10/160/12. 5mg 28&apos;s', 1, '207.6800', '280.9200', '20.0000', 'download-44.jpeg', 1665, 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, '1038', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6440, '1037', 'Diamicron 60mg MR Tablets 30&apos;s', 1, '88.0000', '88.0000', '20.0000', 'download-45-1.jpeg', 1680, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1037', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6439, '1036', 'Cororange Syrup 200ml', 1, '10.2000', '10.2000', '20.0000', 'download-46.jpeg', 1662, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1036', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6438, '1035', 'Cataflam 50mg Tablets 20&apos;s', 1, '34.0000', '56.6300', '20.0000', 'download-47-1.jpeg', 1678, 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, '1035', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6437, '1034', 'Imodium Capsules 6&apos;s', 1, '18.1000', '24.4000', '20.0000', 'images.jpeg', 1654, 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, '1034', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 1, '4.7500', '5.8000', '20.0000', 'GENDS.jpg', 1671, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This medication is used to treat bacterial infections (such as blepharitis, conjunctivitis) of the eye and the skin around the eyes (such as eyelids). It is also used to prevent infection after eye injury or surgery. It belongs to a class of drugs known as aminoglycoside antibiotics.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1033', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6435, '1032', 'Coldiron Syrup 125ml', 1, '8.1000', '9.0000', '20.0000', 'no_image.png', 1678, 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, '1032', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6434, '1031', 'Cotton wool 50g', 1, '5.2000', '5.2000', '20.0000', 'cotton.jpeg', 1672, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1031', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6433, '1030', 'Virest Cream (Aciclovir) 5mg', 1, '10.0000', '10.0000', '20.0000', 'download-52.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1030', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6432, '1029', 'Diabetmin (Metformin 500mg) 100&apos;s', 1, '25.0000', '25.0000', '20.0000', 'download-53.jpeg', 1680, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1029', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6431, '1028', 'Ladinas 2X10', 1, '4.3200', '5.3000', '20.0000', 'download-54.jpeg', 1654, NULL, '', '', '', '', '', '', '261.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1028', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6430, '1027', 'Onidoll Tablets', 1, '1.6000', '1.6000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '345.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1027', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6429, '1026', 'Onita Syrup 200ml', 1, '15.5000', '15.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1026', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6428, '1025', 'Fericon 200ml Syrup', 1, '16.5000', '16.5000', '20.0000', 'no_image.png', 1662, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1025', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6427, '1024', 'Azilex Suspension 15ml', 1, '17.5000', '22.0000', '20.0000', 'download-70.jpeg', 1660, 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, '1024', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6426, '1023', 'Koffex Junior Cough Syr 125ml', 1, '5.3000', '7.6000', '20.0000', 'koffex-adt-1.jpg', 1664, 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, '1023', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6425, '1022', 'Zinc Oxide Ointment 40g', 1, '8.1000', '9.0000', '20.0000', 'download-79.jpeg', 1654, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1022', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6424, '1021', 'Durol Tonic  Junior 200ml', 1, '7.9300', '8.5500', '20.0000', 'download-2.jpg', 1662, 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, '1021', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6423, '1020', 'Diphex Junior Cough Syrup 100ml', 1, '6.5000', '6.5000', '20.0000', 'diphex-100.jpg', 1664, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1020', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6422, '1019', 'Diazepam 10mg Tablets 50&apos;s', 1, '30.8000', '30.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1019', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6421, '1018', 'Martins liver salt Plain', 1, '11.4100', '13.1000', '20.0000', 'download-55.jpeg', 1658, NULL, '', '', '', '', '', '', '53.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1018', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6420, '1017', 'Menthox Lozenges', 1, '15.6000', '15.6000', '20.0000', 'download-81.jpeg', 1664, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1017', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6419, '1016', 'Menthox Child Cough Syrup 125ml', 1, '5.3000', '6.1000', '20.0000', 'download-83.jpeg', 1664, NULL, '', '', '', '', '', '', '227.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1016', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6418, '1015', 'Cetrizan 10mg Tablets 20&apos;s', 1, '5.7000', '6.3800', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', '705.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>It is used to temporarily relieve the symptoms of hay fever (allergy to pollen, dust, or other substances in the air) and allergy to other substances (such as dust mites, animal dander, cockroaches, and molds). These symptoms include sneezing; runny nose; itchy, red, watery eyes; and itchy nose or throat.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1015', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6417, '1014', 'No. 10 Liver Salt (All Flavors)', 1, '30.0000', '48.0000', '20.0000', 'no_image.png', 1654, 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, '1014', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6416, '1013', 'Stopkof Dry Cough Syrup 100ml', 1, '8.5000', '11.8000', '20.0000', 'no_image.png', 1654, 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, '1013', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 1, '4.6200', '4.6200', '20.0000', '6a2ea32d1a2b148714e4d53b05dccc28.jpg', 1654, NULL, '', '', '', '', '', '', '201.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This medication is a\r\ncombination of two antibiotics: sulfamethoxazole and trimethoprim. It is usedfor the treatment of Bacterial Infections such as Pneumonia, Bronchitis\r\nand Lung Infections.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1012', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6414, '1011', 'Infa V Wash 50ml', 1, '9.9000', '9.9000', '20.0000', 'download-84.jpeg', 1654, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1011', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6413, '1010', 'Losartan Potassium 100mg Tablets 28&apos;s Teva', 1, '17.4500', '17.4500', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (6412, '1009', 'Kidivite Multivitamin 25ml Drops', 1, '9.9800', '9.9800', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1009', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6411, '1008', 'Infa V Wash 100ml', 1, '17.6000', '17.6000', '20.0000', 'download-84.jpeg', 1654, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1008', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6410, '1007', 'Exclofen (Diclofenac) Eye drops 1% 10ml', 1, '5.7500', '5.7500', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1007', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', 1, '5.3800', '7.9800', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '87.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>E-PANOL Paracetamol Syrup provides effective relief from aches, pain and fever among babies and children from 6 months to 12 years.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1006', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6408, '1005', 'EPanol 100ml Syrup Plain', 1, '5.3800', '7.9800', '20.0000', 'e-panol-plain.jpeg', 1654, NULL, '', '', '', '', '', '', '69.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>E-PANOL Syrup provides effective relief from aches, pain and fever among babies and children from 6 months to 12 years.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '1005', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6407, '1004', 'Ctrizan 10mg Tablets', 1, '4.6000', '4.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1004', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6406, '1003', 'Celecoxib 200mg Capsules Exeter', 1, '26.1800', '26.1800', '20.0000', '22c0e3b457e4a78ea6b76363bc5b36c2.jpg', 1678, 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, '1003', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6405, '1002', 'Benylin 4 Flu 200ml Syrup', 1, '59.8000', '59.8000', '20.0000', 'benyli.jpeg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1002', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6404, '1001', 'Benylin 4 Flu 100ml Syrup', 1, '22.9800', '22.9800', '20.0000', 'benylin.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '1001', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6403, '1000', 'Azomax 200mg/5ml Suspension', 1, '43.2000', '58.4000', '20.0000', 'no_image.png', 1654, 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, '1000', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6402, '999', 'Aciclovir 200mg Tablets 25&apos;s', 1, '18.9800', '18.9800', '20.0000', 'download-97.jpeg', 1654, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '999', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6401, '998', 'Aciclovir 400mg Tablets 56&apos;s', 1, '37.3200', '37.3200', '20.0000', 'aciclovir-400mg.jpeg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '998', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6400, '997', 'Metagyl 400mg Tablets', 1, '41.4000', '58.0000', '20.0000', 'download-92.jpeg', 1654, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metronidazole is an antibiotic that is <em xss=\\\"\\\\\\\">used</em> to treat a wide variety of infections. It works by stopping the growth of certain bacteria and parasites.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '997', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6399, '996', 'Nesben (Albendazole) Tablets 200mg', 1, '6.1000', '6.1000', '20.0000', 'download-95.jpeg', 1684, NULL, '', '', '', '', '', '', '209.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '996', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6398, '995', 'Augmentin 457mg/5ml Susp. 70ml', 1, '49.3900', '49.3900', '20.0000', 'download-88.jpeg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '995', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6397, '994', 'Augmentin 228/5ml Susp. 70ml', 1, '34.5500', '34.5500', '20.0000', 'download-87.jpeg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '994', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6396, '993', 'Menthodex 100ml Syrup', 1, '15.4800', '17.2000', '20.0000', 'images-3.jpeg', 1664, 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, '993', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6395, '992', 'Shaltoux Herbal Cough Syrup', 1, '9.5500', '9.5500', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '992', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6394, '991', 'Mycostat 150mg Capsules 1&apos;s', 1, '5.4400', '7.0000', '20.0000', 'mycostat.jpg', 1654, 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, '991', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6393, '990', 'Luex Baby Cough Syrup 150ml', 1, '15.0000', '20.0000', '20.0000', 'luex-baby.jpeg', 1664, 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, '990', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6392, '989', 'Amoxicillin 125mg/5ml Susp 100ml Luex', 1, '5.0000', '5.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '989', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6391, '988', 'Vaginax-100 Tablets 6&apos;s', 1, '3.3200', '5.7000', '20.0000', 'vaginax-pess.jpg', 1674, 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, '988', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6390, '987', 'Salocold Tablets', 1, '29.4500', '49.7000', '20.0000', 'SALOCOLD.jpeg', 1678, 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, '987', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6389, '986', 'Salocold Syrup', 1, '8.7300', '13.4000', '20.0000', 'SALOCOLD-1.jpeg', 1663, NULL, '', '', '', '', '', '', '288.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '986', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6388, '985', 'Gebexime 500mg Tablets 10&apos;s', 1, '18.8800', '18.8800', '20.0000', 'gebexime-500mg.jpg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '985', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6387, '984', 'Cartef 20/120mg Tablets 24&apos;s', 1, '7.2100', '12.2400', '20.0000', 'cartef-tabs.jpg', 1670, NULL, '', '', '', '', '', '', '185.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '984', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6386, '983', 'Paingay Capsules', 1, '3.7200', '4.2000', '20.0000', 'paingay.jpeg', 1678, NULL, '', '', '', '', '', '', '2093.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '983', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6385, '982', 'Amcof Junior Syrup', 1, '7.4000', '13.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '97.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '982', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6384, '981', 'Gebexime Suspension 50ml', 1, '9.6600', '15.9500', '20.0000', 'gebexime.jpg', 1660, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '981', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6383, '980', 'Amcof Baby Syrup', 1, '8.8200', '13.5000', '20.0000', 'AMCOF-BABY.jpg', 1654, 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, '980', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6382, '979', 'Child Care Cough &amp; Cold 125ml Syrup', 1, '4.1000', '4.9200', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '979', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6381, '978', 'Flucloxacillin 100ml Suspension Letap', 1, '4.8000', '5.3000', '20.0000', '448e54906ff5b8e7cb5cb00ffb1e4a5a.jpg', 1660, NULL, '', '', '', '', '', '', '586.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '978', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6380, '977', 'Cafaprin Tablets', 1, '13.1400', '13.1400', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '42.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '977', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6379, '976', 'Dexone 0.5mg', 1, '2.1000', '2.1000', '20.0000', 'dexone.jpeg', 1654, NULL, '', '', '', '', '', '', '63.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '976', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6378, '975', 'Flucloxacillin 250mg Tablets Letap', 1, '26.5000', '31.8000', '20.0000', '7b3b906e83b5c00b8e57a6be69f21f2f.jpg', 1660, NULL, '', '', '', '', '', '', '162.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '975', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 1, '55.0000', '96.2000', '20.0000', 'no_image.png', 1654, 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, '974', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 1, '1.6000', '1.9200', '20.0000', 'no_image.png', 1674, NULL, '', '', '', '', '', '', '1963.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '973', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6375, '972', 'Metronidazole 100ml Suspension Letap', 1, '3.5200', '5.1000', '20.0000', '34682e359b9b83e1cc6bd3881fc5fd6e.jpg', 1654, NULL, '', '', '', '', '', '', '174.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metronidazole Suspension is an antibiotic that is used\r\nto treat a wide variety of infections by stopping the growth of causative\r\nbacteria or parasites. It is indicated in the prophylaxis\r\nand treatment of infections in which anaerobic bacteria have been identified or\r\nare suspected as the pathogen.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '972', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6374, '971', 'Amoxicillin 250mg (Letap)', 1, '1.6200', '1.8000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '3492.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '971', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6373, '970', 'Letamol Tablets 100&apos;s', 1, '72.2000', '79.4200', '20.0000', 'letamol.jpeg', 1654, NULL, '', '', '', '', '', '', '78.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '970', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6372, '969', 'Babyvite 200ml Syrup', 1, '12.0000', '12.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '969', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6371, '968', 'P-trust Pregnancy Test Kit 25&apos;s', 1, '27.5000', '27.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '968', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6370, '967', 'Supirocin Ointment 15g', 1, '24.5000', '25.3000', '20.0000', 'supirocin.jpg', 1654, 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, '967', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6369, '966', 'Omexet (omeprazole) 20mg Capsules 28&apos;s', 1, '11.9800', '11.9800', '20.0000', 'omexet.jpeg', 1654, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '966', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6367, '964', 'Lynux Ointment', 1, '26.9800', '26.9800', '20.0000', 'LYNUX.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '964', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6368, '965', 'Viscof S 100ml Syrup', 1, '12.8400', '12.8400', '20.0000', 'viscof.jpeg', 1664, NULL, '', '', '', '', '', '', '-18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '965', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6366, '963', 'Flotac Capsules 75mg 20&apos;s', 1, '76.5900', '116.8000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>It analgesic, nonopioid; nonsteroidal anti-inflammatory drug (NSAID), used in the treatment of pain, ankylosing spondylitis, dysmenorrhea, gout, migraine, osteoarthritis and rheumatoid arthritis.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '963', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 1, '30.0000', '42.8000', '20.0000', 'no_image.png', 1660, 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, '962', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6364, '961', 'Daktacort Cream 15g', 1, '35.9000', '48.2000', '20.0000', 'download-62.jpeg', 1677, 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, '961', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6363, '960', 'Bells Vitamin C Syrup', 1, '20.3400', '22.7800', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '130.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>It is used <span xss=removed>to prevent and treat scurvy. It is also used to prevent or treat low levels of vitamin C in people who do not get enough of the vitamin from their diets. Low levels of vitamin C can result in a condition called scurvy.</span></p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '960', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6362, '959', 'Anusol Suppositories 12&apos;s', 1, '24.9800', '32.0000', '20.0000', 'no_image.png', 1654, 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, '959', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6361, '958', 'Basecold Tablets (50x4)', 1, '49.5000', '1.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '4281.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '958', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6360, '957', 'Wormbase Suspension', 1, '2.5000', '2.8000', '20.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '765.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '957', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6359, '956', 'Dipex Capsules', 1, '2.5000', '2.5000', '20.0000', 'dipex.jpeg', 1654, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '956', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6358, '955', 'Fenbase Extra', 1, '3.0000', '3.4000', '20.0000', 'fenbase-extra.jpg', 1654, NULL, '', '', '', '', '', '', '8136.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '955', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6357, '954', 'Cotton Wool 200g', 1, '13.0000', '13.0000', '20.0000', 'cotton.jpeg', 1672, NULL, '', '', '', '', '', '', '53.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '954', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6356, '953', 'Cotton Wool 100g', 1, '7.2000', '7.2000', '20.0000', 'cotton.jpeg', 1672, NULL, '', '', '', '', '', '', '-21.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '953', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6355, '952', 'Dragon Lozenges', 1, '26.9000', '26.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '952', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6354, '951', 'Parafenac', 1, '2.3000', '4.2000', '20.0000', 'PARAFENAC.jpeg', 1678, NULL, '', '', '', '', '', '', '975.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '951', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6353, '950', 'Ronfit Forte Tablets', 1, '3.7500', '3.7500', '20.0000', 'ronfit-forte-tabs.jpeg', 1678, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '950', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6352, '949', 'Roxidol', 1, '2.5000', '4.5000', '20.0000', 'no_image.png', 1654, 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, '949', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6351, '948', 'Ronfit Cold D Syrup', 1, '6.0000', '10.0000', '20.0000', 'no_image.png', 1664, 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, '948', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6350, '947', 'Ronfit Cold P Junior Syrup', 1, '6.0000', '6.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '947', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6348, '945', 'Loperon', 1, '8.1000', '10.5000', '20.0000', 'no_image.png', 1654, 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, '945', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6349, '946', 'Ronfit Cold Forte Syrup', 1, '6.0000', '6.3000', '20.0000', 'no_image.png', 1664, 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, '946', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6347, '944', 'Happyrona forte syrup 200ml', 1, '8.5000', '15.0000', '20.0000', 'happy.jpeg', 1669, 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, '944', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6346, '943', 'Blumoon 50mg', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '220.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '943', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6345, '942', 'Blumoon 100mg', 1, '3.6300', '4.4000', '20.0000', 'no_image.png', 1667, 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, '942', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6344, '941', 'Perfectil platinum 60 (Radiance)', 1, '257.9900', '292.4000', '20.0000', '91d1933823e40564d7a3c8b54c9c0b19.png', 1669, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Perfectil Platinum 60 Tab: Rich of vitamins and nutrients that protects skin elasticity and stimulate cell division</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '941', 1, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6343, '940', 'Wellwoman Capsules', 1, '72.0300', '72.0300', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '940', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6342, '939', 'Wellman 70+ Tablets 30&apos;s', 1, '69.9300', '77.0000', '20.0000', 'no_image.png', 1669, 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, '939', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6341, '938', 'Wellman 50+ Tablets', 1, '71.3800', '80.9000', '20.0000', 'wellman-50.jpeg', 1669, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '938', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6340, '937', 'Pregnacare Conception Tablets', 1, '60.3000', '87.8000', '20.0000', 'no_image.png', 1669, 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, '937', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6339, '936', 'Pregnacare Tablets 19&apos;s', 1, '70.5200', '80.0000', '20.0000', 'no_image.png', 1654, 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, '936', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6338, '935', 'Osteocare Tablets UK', 1, '46.8000', '53.5000', '20.0000', 'osteo.jpeg', 1669, 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, '935', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6337, '934', 'Feroglobin Syrup 200ml', 1, '49.5400', '74.0000', '20.0000', 'fero-syru.jpeg', 1662, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '934', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6336, '933', 'Gericare Capsules 30&apos;s', 1, '12.0000', '12.0000', '20.0000', 'gericare.jpeg', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '933', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6911, '48633904', 'Wellman Plus Capsules', 1, '97.4600', '131.5700', '0.0000', 'no_image.png', 1669, 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, '48633904', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6335, '932', 'Becoatin Tablet 30&apos;s', 1, '10.0000', '10.0000', '20.0000', 'Becoactin-pack-big.gif', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '932', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6334, '931', 'Adom W&amp;G Mixture', 1, '16.5000', '16.5000', '20.0000', 'm-and-g.jpeg', 1659, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '931', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5595, '192', 'Emgiflox 250mg Capsules 50x10', 1, '158.6000', '158.6000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '-9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '192', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 1, '16.8000', '25.8000', '20.0000', 'no_image.png', 1660, 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, '193', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5598, '195', 'Entramol 500mg Tablets 15X12', 1, '2.6000', '4.3000', '20.0000', 'entramol.png', 1663, NULL, '', '', '', '', '', '', '517.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '195', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5600, '197', 'Epiderm Cream 15g', 1, '2.6000', '3.6000', '20.0000', 'epiderm-cream.jpg', 1677, NULL, '', '', '', '', '', '', '855.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '197', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5601, '198', 'Epiderm Cream 30g', 1, '4.3000', '6.0000', '20.0000', 'epiderm-cream.jpg', 1677, NULL, '', '', '', '', '', '', '618.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '198', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5603, '200', 'Etisala Capsules', 1, '4.4000', '4.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5604, '201', 'Evecare Capsules 30&apos;s', 1, '33.8000', '33.8000', '20.0000', 'evecare-caps.jpeg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '201', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 1, '21.5000', '21.5000', '20.0000', 'evening-primrose.jpeg', 1669, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '202', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5607, '204', 'Ezipen Tablets 5x6', 1, '11.4000', '11.4000', '20.0000', 'ezipen-rotated.jpg', 1675, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '204', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5610, '207', 'Feroglobin Capsules 30&apos;s', 1, '53.3200', '60.5000', '20.0000', 'feroglobi.png', 1662, 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, '207', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5611, '208', 'Ferrous Sulphate 200mg Tab 30&apos;s EXE', 1, '6.0000', '7.8000', '20.0000', 'no_image.png', 1679, 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, '208', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5616, '213', 'Fisherman&apos;s Friend All Flavours 24&apos;s', 1, '7.7000', '8.0000', '20.0000', 'f20a211530d7b1989a4c334a7f3d3c05.jpg', 1654, NULL, '', '', '', '', '', '', '-24.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Fisherman\\\'s Friend is a lozenge, which is chock-full of\r\nmenthol, and proven effective at providing fast relief of coughs, sore throats\r\nand nasal congestion. It is actually meant to relieve various\r\nrespiratory problems of people working in the extreme weather conditions similar\r\nto that of the northern deep-sea fishing grounds. It is not suitable and recommended for\r\nthe under-5s. For pregnant or breast feeding mothers, please ask a\r\nhealth professional before use.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '213', NULL, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5617, '214', 'Flagyl Suspension 100ml', 1, '39.3000', '43.8400', '20.0000', 'no_image.png', 1660, 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, '214', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5618, '215', 'Flemex Adult Cough Syrup 100ml', 1, '7.4800', '8.8000', '20.0000', 'flemex-adult.jpg', 1664, NULL, '', '', '', '', '', '', '86.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '215', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 1, '6.6300', '7.8000', '20.0000', 'fle-jnr.jpeg', 1664, 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, '216', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5622, '219', 'Flucor Day Gel', 1, '17.6000', '17.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '219', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5623, '220', 'Flurest Tablets 10&apos;s', 1, '18.9000', '18.9000', '20.0000', 'flu.jpg', 1663, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '220', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5624, '221', 'Foligrow Syrup 200ml', 1, '21.6200', '24.1000', '20.0000', 'folig.jpg', 1662, NULL, '', '', '', '', '', '', '146.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '221', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5625, '222', 'Foliron Tonic 200ml', 1, '4.1000', '4.9200', '20.0000', 'no_image.png', 1654, 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, '222', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5629, '226', 'Funbact A', 1, '9.4500', '10.5000', '20.0000', 'funbact-a.jpeg', 1677, NULL, '', '', '', '', '', '', '320.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '226', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5630, '227', 'Furosemide 40mg Tablets 28&apos;s', 1, '8.0000', '8.0000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '227', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5631, '228', 'Gacet 125mg Suppositories', 1, '6.5000', '8.8000', '20.0000', 'no_image.png', 1678, 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, '228', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5632, '229', 'Gacet 250mg Suppository', 1, '8.0000', '11.8000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '122.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '229', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 1, '226.2100', '377.0200', '20.0000', 'galvus-met.jpeg', 1680, 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, '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 (5634, '231', 'Garlic Pearls Osons', 1, '7.1000', '7.1000', '20.0000', 'osons-garlic.jpeg', 1654, NULL, '', '', '', '', '', '', '31.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '231', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5635, '232', 'Gastrone Plus 200ml Suspension', 1, '14.7600', '19.8000', '20.0000', 'no_image.png', 1654, 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, '232', NULL, '0.0000', NULL, 8, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5637, '234', 'Gaviscon Peppermint Liquid 200ml', 1, '48.7600', '54.2000', '20.0000', 'no_image.png', 1654, 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, '234', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5640, '237', 'Gebedol Tablet', 1, '11.1000', '18.9000', '20.0000', 'gebedol.jpeg', 1654, NULL, '', '', '', '', '', '', '354.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '237', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5641, '238', 'Gebedol Extra', 1, '31.1000', '52.8000', '20.0000', 'gb-extra.jpg', 1654, 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, '238', NULL, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5642, '239', 'Gebedol Plus Capsule', 1, '24.4300', '41.5000', '20.0000', 'gb-plus.jpg', 1654, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '239', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5648, '245', 'Givers P Capsules', 1, '22.0000', '22.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '245', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 1, '7.9000', '8.0000', '20.0000', 'no_image.png', 1654, 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, '247', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5651, '248', 'Glucose Powder 400mg', 1, '6.1700', '6.1700', '20.0000', 'gluc.jpg', 1654, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '248', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5652, '249', 'Roberts Glycerine 90ml', 1, '12.0000', '12.0000', '20.0000', 'no_image.png', 1681, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '249', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5654, '251', 'Gentian violet (GV PAINT)', 1, '2.0000', '2.0000', '20.0000', 'gv-paint.jpg', 1654, NULL, '', '', '', '', '', '', '394.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '251', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5655, '252', 'Gvither Forte 80mg Injection 10&apos;s', 1, '30.6000', '34.0000', '20.0000', 'gvither.jpeg', 1682, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '252', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5656, '253', 'Gyprone Plus 200ml Syrup', 1, '9.9000', '9.9000', '20.0000', 'download-68.jpeg', 1661, NULL, '', '', '', '', '', '', '-17.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '253', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 1, '5.5500', '6.3000', '20.0000', 'haemo.jpeg', 1669, NULL, '', '', '', '', '', '', '634.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '254', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5667, '264', 'Honeykof Herbal Cough Syrup 100ml', 1, '11.8000', '11.8000', '20.0000', 'honey.jpeg', 1664, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '264', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5673, '270', 'Ibex Capsules 24&apos;s', 1, '15.8900', '17.7000', '20.0000', 'no_image.png', 1675, 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, '270', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5674, '271', 'Ibucap Capsules 10C (BamBam)', 1, '1.5000', '2.1500', '20.0000', 'ibucap-cap.jpg', 1678, NULL, '', '', '', '', '', '', '330.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '271', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5675, '272', 'Ideos 500mg Calcium, Vitamin D3', 1, '65.0000', '80.0000', '20.0000', 'no_image.png', 1669, 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, 'ideos-500mg-calcium-vitamin-d3', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5676, '273', 'Imax Delay Spray', 1, '30.0000', '34.0000', '20.0000', 'download-85.jpeg', 1659, 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, '273', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5677, '274', 'Imboost Herbal Mixture 500ml', 1, '14.0000', '15.4000', '20.0000', 'imboost.jpeg', 1659, NULL, '', '', '', '', '', '', '337.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '274', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5683, '280', 'Infacol Drops 55ml', 1, '49.4000', '49.4000', '20.0000', 'infacol.jpeg', 1654, NULL, '', '', '', '', '', '', '54.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '280', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5689, '286', 'Joy Ointment', 1, '3.3000', '3.3000', '20.0000', 'joyoint.jpg', 1657, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '286', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5695, '292', 'Ketazol Cream 30g', 1, '7.6300', '7.6300', '20.0000', 'ketazol.jpg', 1677, 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, '292', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5696, '293', 'Kidicare Srup 200ml', 1, '14.0000', '14.0000', '20.0000', 'kidicare.jpeg', 1654, NULL, '', '', '', '', '', '', '43.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '293', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5699, '296', 'Kidivite Baby Multivitamin Syrup 150ml', 1, '19.9000', '19.9000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '296', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5704, '301', 'Koflet Syrup', 1, '15.0000', '16.0500', '20.0000', 'download-59.jpeg', 1664, 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, '301', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5705, '302', 'Kofof Adult Syrup 150ml', 1, '8.6400', '9.6000', '20.0000', 'kofof-syr.jpeg', 1664, NULL, '', '', '', '', '', '', '129.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '302', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5710, '307', 'Leena Capsules', 1, '4.0200', '4.0200', '20.0000', 'leena.jpeg', 1661, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '307', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5711, '308', 'Lemsip Cold and flu Max 10&apos;s', 1, '44.8000', '49.3000', '20.0000', 'lemsip-cold-and-flu-max.jpeg', 1664, 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, '308', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5712, '309', 'Lenor', 1, '4.5000', '4.5000', '20.0000', 'lenor.jpeg', 1683, NULL, '', '', '', '', '', '', '1140.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '309', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5713, '310', 'Letacam (Piroxicam)', 1, '6.6500', '6.6500', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '310', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5714, '311', 'Letamol Elixir 125ml', 1, '3.3000', '3.9600', '20.0000', 'letamol.jpeg', 1654, NULL, '', '', '', '', '', '', '372.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '311', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5715, '312', 'Letamox 500mg plain Tablets', 1, '13.1400', '19.5000', '20.0000', 'no_image.png', 1684, 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, '312', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5716, '313', 'Letaron 200ml Syrup', 1, '3.6000', '7.5500', '20.0000', 'no_image.png', 1654, 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, '313', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5717, '314', 'Letavit Syrup', 1, '2.4000', '2.8800', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '312.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '314', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5720, '317', 'Lexsporin Skin Ointment 20g', 1, '23.0000', '30.0000', '20.0000', 'lexsporin-oint.jpg', 1657, 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, '317', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5723, '320', 'Bells Liquid Parafin BP 100ml', 1, '9.0000', '9.0000', '20.0000', 'bells-paraffin.jpeg', 1654, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '320', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5724, '321', 'Lisinopril 10mg Tablets Teva', 1, '16.3500', '16.7000', '20.0000', 'no_image.png', 1665, 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, 'lisinopril-10mg-tablets-teva', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5725, '322', 'Lisinopril 20mg Teva', 1, '16.9400', '19.2000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '322', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5726, '323', 'Listerine 250ml all types', 1, '17.6400', '20.0000', '20.0000', 'no_image.png', 1654, 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, '323', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5729, '326', 'Lofnac 100mg Suppository', 1, '10.5000', '13.8000', '20.0000', 'no_image.png', 1675, 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, '326', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5730, '327', 'Lofnac Gel 30mg', 1, '7.0200', '8.8000', '20.0000', 'lofnac.jpeg', 1675, NULL, '', '', '', '', '', '', '212.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '327', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5731, '328', 'Lonart DS Tablets', 1, '18.9000', '24.0000', '21.0000', 'LONART-DS.jpg', 1670, NULL, '', '', '', '', '', '', '1088.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '328', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5733, '330', 'Lubrimax Jelly 50g', 1, '20.0000', '22.0000', '20.0000', 'no_image.png', 1685, 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, '330', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5734, '331', 'Lubrimax Jelly 70g', 1, '22.0000', '27.0000', '20.0000', 'no_image.png', 1667, 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, '331', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5737, '334', 'Luex Adult Chesty Cough 150ml syrup', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 1664, 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, '334', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5738, '335', 'Luex Child Chesty Cough Syrup 100ml', 1, '15.0000', '20.0000', '20.0000', 'luex-child-chesty.jpg', 1664, 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, '335', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5739, '336', 'Luex Child Dry Cough 150ml Syrup', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 1664, 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, '336', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5740, '337', 'Lufart DS Tablets', 1, '15.5000', '17.5000', '20.0000', 'lufart-ds.jpeg', 1670, NULL, '', '', '', '', '', '', '432.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '337', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5742, '339', 'LYRICA 75mg', 1, '311.6000', '447.1900', '20.0000', 'f319e22113350cc9b00487e13147d66e.jpg', 1666, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Lyrica Cap 75mg is used for the treatment of painful diabetic neuropathy in adults only. Lyrica Cap 75mg use as directed by your physician. Pregabalin is used to treat epilepsy and anxiety. It is also taken to treat nerve pain. Nerve pain can be caused by different illnesses including diabetes and shingles, or an injury.</p>', 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', 1, '0.0000', NULL, 8, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5749, '346', 'Major Nasal Drops', 1, '8.1400', '8.1400', '20.0000', 'major.jpg', 1686, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '346', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6945, '41815708', 'Aphromax Plus', 1, '43.6500', '52.8000', '0.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '110.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41815708', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5751, '348', 'Malar-2 Forte Tablets 40/240mg 12&apos;s', 1, '10.8000', '12.8000', '20.0000', 'no_image.png', 1670, 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, '348', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5753, '350', 'Malin Adult', 1, '8.5000', '8.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '350', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5754, '351', 'Malin Baby', 1, '7.2000', '9.2000', '20.0000', 'no_image.png', 1664, 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, '351', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5755, '352', 'Malin Lozenges', 1, '3.0000', '3.0000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '352', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5757, '354', 'Mark 2 Inhaler', 1, '40.0000', '42.0000', '20.0000', 'mak-2.jpeg', 1654, 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, '354', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5759, '356', 'Maxitrol Eye 5ml Drops', 1, '16.2000', '35.2700', '20.0000', 'no_image.png', 1654, 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, '356', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5762, '359', 'Mentat Tablets', 1, '20.7400', '28.5400', '20.0000', 'mentat-tab.jpg', 1669, 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, '359', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6943, '53530670', 'Foligrow Junior 100ml Syrup', 1, '12.7400', '14.2000', '0.0000', 'no_image.png', 1669, 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, '53530670', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5765, '362', 'Metformin Denk 500mg Tablets 100&apos;s', 1, '63.2200', '63.2200', '20.0000', 'no_image.png', 1680, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '362', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5767, '364', 'MetroGR-F Junior Suspension 100ml', 1, '5.7000', '5.7000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '364', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 1, '26.1800', '28.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '183.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '365', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 1, '4.0000', '4.0000', '20.0000', 'pot-cit.jpg', 1654, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '367', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5771, '368', 'Magnesium Trisilicate (MMT)', 1, '3.5000', '3.5000', '20.0000', 'mmt.jpg', 1658, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '368', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5772, '369', 'Mist Mag. Trisilicate 200ml (MMT) Mal-Titi', 1, '4.5000', '4.5000', '20.0000', 'no_image.png', 1654, 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, '369', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5774, '371', 'Mucolex Junior Cough150ml Syrup', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 1678, 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, '371', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5775, '372', 'Multivite Tablets Letap', 1, '22.1000', '36.0000', '20.0000', 'no_image.png', 1654, 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, '372', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5777, '374', 'Mycocort Cream 20g', 1, '24.0000', '26.0000', '20.0000', 'mycocort.jpg', 1677, 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, '374', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5778, '375', 'Mycolex 3 Cream 30gm', 1, '16.3300', '20.0000', '20.0000', 'download-100.jpeg', 1654, 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, '375', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5779, '376', 'Mycolex Cream 20g', 1, '14.5200', '18.0000', '20.0000', 'mycolex-cream.jpg', 1677, NULL, '', '', '', '', '', '', '131.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '376', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5780, '377', 'Mycovin Tabs 500mg 250\\\'', 1, '198.0000', '198.0000', '20.0000', '17d5fb79a54ab81ce26f9af0713ca0cb.jpg', 1654, 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, '377', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6896, '94310781', 'Fleming 457MG Suspension', 1, '28.8100', '32.1000', '20.0000', 'no_image.png', 1660, 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, 0, 0, 0, '94310781', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6897, '80096466', 'Streptol 6X2 Lozenges', 1, '42.7900', '4.8000', '0.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '174.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '80096466', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5784, '381', 'Naprox EC 500mg Tablets 100&apos;s', 1, '85.5000', '130.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Naproxen is used <span xss=\\\"removed\\\">to relieve mild to moderate pain from various conditions. It also reduces pain, swelling, and joint stiffness from arthritis. This medication is known as a nonsteroidal anti-inflammatory drug (NSAID). It works by blocking your body\\\'s production of certain natural substances that cause inflammation.</span></p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '381', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5785, '382', 'Natrilix Sr 1.5mg Tablets 30&apos;s', 1, '63.0000', '63.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '382', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 1, '22.0000', '22.0000', '20.0000', 'neohycolex.jpg', 1671, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '384', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5788, '385', 'Neovita Capsules 30&apos;s', 1, '60.0000', '90.0000', '20.0000', 'neovita-30.jpg', 1669, 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, '385', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5789, '386', 'Nerve and Bone Liniment 100ml', 1, '11.3000', '11.3000', '20.0000', 'no_image.png', 1687, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '386', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5790, '387', 'Nexium 40mg Tablets 14&apos;s', 1, '149.2800', '325.4000', '20.0000', 'nexium.jpeg', 1666, 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, '387', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 1, '35.6400', '50.4000', '20.0000', 'nifecard.jpeg', 1665, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Is used alone or in combination with other drugs to treat high blood pressure (hypertension). It lowers high blood pressure and helps prevent strokes, heart attacks.</p><p>It is a relaxant of vascular smooth muscle and an inhibitor of coronary artery spasm thus improving myocardial oxygen supply. It inhibits the influx of calcium ions causing relaxation and peripheral vasodilatation, which in turn reduces the afterload against which the heart works.</p>', 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-tablets-30s-ecl', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5793, '390', 'Night Nurse Capsules 10&apos;s', 1, '47.0000', '47.0000', '20.0000', 'night-nurse.jpeg', 1664, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '390', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5795, '392', 'Nizoral Cream 15gm', 1, '31.2300', '47.4000', '20.0000', 'download-63.jpeg', 1677, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>It is an antifungal that is primarily used to treat fungal infections of the skin such as ringworm, jock itch and athlete\\\'s foot, seborrheic dermatitis (dry, flaky skin on face, scalp, chest, upper back, or ears), and pityriasis (a type of skin rash that causes scaly, discoloured patches on chest.</p>\r\n<div><div><div>It is as Ketoconazole used to treat skin infections such as athlete\\\'s foot, jock itch, ringworm, and certain kinds of dandruff. This medication is also used to treat a skin condition known as pityriasis (tinea versicolor), a fungal infection that causes a lightening or darkening of the skin of the neck, chest, arms, or legs.</div></div></div>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '392', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5796, '393', 'Normal Saline Infusion 500ml', 1, '4.4800', '4.4800', '20.0000', 'normal-saline.jpg', 1666, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '393', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5797, '394', 'Normo Tears Eye Drop', 1, '17.0100', '18.9000', '20.0000', 'no_image.png', 1654, 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, '394', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5798, '395', 'zincovit', 1, '19.3400', '19.3400', '20.0000', 'nugel-scaled.jpg', 1658, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '395', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5799, '396', 'Nugel-O Suspension 200ml', 1, '24.3400', '27.2600', '20.0000', 'nugel-o.jpg', 1658, 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, '396', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5801, '398', 'O-Formin 500mg (Metformin)', 1, '5.8500', '6.5000', '20.0000', 'no_image.png', 1678, 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, 'o-formin-500mg-metformin', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5803, '400', 'Olfen Gel 20gm', 1, '15.0000', '15.0000', '20.0000', 'olfen.jpg', 1657, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5804, '401', 'Omeprazole 20mg Capsules 28&apos;s uk', 1, '9.8000', '12.3000', '20.0000', 'no_image.png', 1666, 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, '401', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5805, '402', 'Omeprazole 20mg Tablets 28&apos;s Teva', 1, '9.0000', '10.8000', '20.0000', 'Omeprazole-20mg-Tablets-28s-Teva.png', 1654, 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, '402', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5808, '405', 'ORS Flavored', 1, '21.4400', '23.9000', '20.0000', 'no_image.png', 1654, 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, 'ors-flavored', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5809, '406', 'Osons Cod Liver Capsules', 1, '15.1000', '15.1000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '406', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5810, '407', 'Osteocare Chewable Tablets', 1, '39.7500', '39.7500', '20.0000', 'osteocare.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '407', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6922, '60528151', 'Santriax 1000 (Ceftriaxone 1000mg Injection)', 1, '7.3800', '8.2000', '0.0000', 'no_image.png', 1682, 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, '60528151', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6921, '10168287', 'Sanfurox 750 (Cefuroxime 750mg Injection)', 1, '8.7800', '9.7500', '0.0000', 'no_image.png', 1682, 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, '10168287', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5813, '410', 'Paingay Gel 30g', 1, '5.6700', '6.3000', '20.0000', 'no_image.png', 1657, 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, '410', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5814, '411', 'Panadol Advance 500mg 16&apos;s', 1, '24.0900', '24.0900', '20.0000', 'panadol-advance-500mg.jpeg', 1654, NULL, '', '', '', '', '', '', '71.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Panadol Advance 500 mg Tablets are a mild analgesic and antipyretic, and are recommended for the treatment of most painful and febrile conditions, for example, headache including migraine and tension headaches, toothache, backache, rheumatic and muscle pains, dysmenorrhoea, sore throat, and for relieving the fever, aches and pains of colds and flu. Also recommended for the symptomatic relief of pain due to non-serious arthritis.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '411', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5815, '412', 'PARA DENK250 SUPPO', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '412', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6920, '09661075', 'Today Intimate Wash ', 1, '10.3500', '16.5000', '0.0000', 'no_image.png', 1667, 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, '09661075', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6919, '69407201', 'Gsunate 120 Inj (Atesunate 120mg Injection)', 1, '13.0500', '14.5000', '0.0000', 'no_image.png', 1682, 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, 0, 0, 0, '69407201', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6918, '28262304', 'Gsunate 60 Inj (Atesunate 60mg Injection)', 1, '8.3700', '9.3000', '0.0000', 'no_image.png', 1682, 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, '28262304', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6917, '81980248', 'Atorvastatin 40mg Tablets 28s WOCKHARDT', 1, '14.1100', '16.0000', '20.0000', 'no_image.png', 1666, 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, 0, 0, 0, '81980248', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5821, '418', 'Pilex Tablets', 1, '23.7800', '23.7800', '20.0000', 'pilex-tab.jpg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '418', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6916, '62285678', 'Cetirizine 10mg Tablets (Cetirizine dihydrochloride) TEVA', 1, '10.0900', '11.5000', '0.0000', 'no_image.png', 1673, 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, '62285678', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6915, '90384012', 'Nystatin Suspension 30ml', 1, '35.0200', '39.7000', '0.0000', 'no_image.png', 1674, 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, '90384012', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5824, '421', 'Piriton Original Syrup 150ml', 1, '40.0000', '40.0000', '20.0000', 'piriton-syrup.jpeg', 1673, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '421', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5825, '422', 'Piriton Original Tablets 30&apos;s', 1, '35.2000', '35.2000', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '422', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5826, '423', 'Plaster roll Extra care 2Inches', 1, '5.7800', '7.0000', '20.0000', 'plaster-2inc.jpg', 1672, NULL, '', '', '', '', '', '', '352.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '423', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5827, '424', 'Polyfer Capsules 30&apos;s', 1, '6.0000', '6.6000', '20.0000', 'polyfer-caps.jpg', 1662, 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, '424', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5828, '425', 'Polyfer Forte Syrup 150ML', 1, '11.1000', '12.3000', '20.0000', 'polyfer-forte.jpg', 1662, 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, '425', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5829, '426', 'Ponstan 250mg Capsules 50&apos;s', 1, '37.5000', '92.4000', '20.0000', 'ponstan.png', 1675, 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, '426', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5830, '427', 'Pregnacare Plus', 1, '126.4100', '143.3000', '20.0000', 'prenac.jpeg', 1669, 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, '427', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6913, '90899721', 'Listerine Original/ Fresh Burst 250mll', 1, '19.6600', '22.3000', '0.0000', 'no_image.png', 1689, 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, '90899721', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5834, '431', 'Proman Capsules 30s', 1, '41.5800', '41.5800', '20.0000', 'proman.jpeg', 1669, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '431', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5835, '432', 'Proman 50+ Capsules 30&apos;s', 1, '33.9800', '43.7000', '20.0000', 'download-58.jpeg', 1656, 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, '432', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6912, '12236473', 'Wellwoman Drink', 1, '10.3200', '15.4800', '0.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12236473', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6910, '52852667', 'Osteocare Liquid 200ml ', 1, '11.7000', '16.0000', '0.0000', 'no_image.png', 1669, 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, '52852667', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5839, '436', 'Prostacure Tea', 1, '19.0000', '19.0000', '20.0000', 'PROSTACURE-T.jpg', 1667, NULL, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '436', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5840, '437', 'Prostacure X', 1, '27.5000', '27.5000', '20.0000', 'PROSTACURE-1.jpg', 1667, NULL, '', '', '', '', '', '', '213.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '437', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5841, '438', 'Prostafit', 1, '18.0000', '19.8000', '20.0000', 'no_image.png', 1656, 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, '438', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6909, '16662605', 'Osteocare Tablets (India) 30s', 1, '11.7000', '13.4000', '0.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '135.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16662605', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5843, '440', 'Prowoman Caps 30\'', 1, '52.9200', '52.9200', '20.0000', 'prowoman.jpg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '440', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6908, '78818546', 'Congestyl Syrup 60ml', 1, '16.2000', '22.0000', '0.0000', 'no_image.png', 1675, 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, '78818546', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 1, '10.8000', '16.8000', '0.0000', 'no_image.png', 1654, 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, '43254936', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5847, '444', 'Redsun Jelly', 1, '6.1000', '7.5000', '20.0000', 'redsun.jpg', 1667, NULL, '', '', '', '', '', '', '236.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '444', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5848, '445', 'Relcer Gel', 1, '8.2800', '8.2800', '20.0000', 'relcer-gel.jpg', 1658, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '445', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5849, '446', 'Rhizin Syrup', 1, '3.1000', '3.6000', '20.0000', 'download-82.jpeg', 1673, 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, '446', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6905, '07702426', 'Xzole F Metronidazole/ Furazolidone', 1, '8.8000', '8.8000', '0.0000', 'no_image.png', 1654, 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, '07702426', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6904, '53862547', 'Spironolactone 50mg Tablets 30\\\'s Lavina', 1, '16.7400', '18.6000', '0.0000', 'no_image.png', 1654, 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, '53862547', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5853, '450', 'Rooter Mixture', 1, '8.5000', '10.5000', '20.0000', 'rooter-mixture.jpg', 1670, NULL, '', '', '', '', '', '', '432.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '450', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5854, '451', 'Rough Rider Condoms 3&apos;s', 1, '9.7000', '14.8000', '20.0000', 'rough-rider.jpeg', 1667, 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, '451', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6903, '75300114', 'Foligrow Plus 200ml Syrup', 1, '27.0000', '30.0000', '0.0000', 'no_image.png', 1662, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '75300114', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5856, '453', 'Rubbing Alcohol 500ml', 1, '15.0000', '15.0000', '20.0000', 'no_image.png', 1672, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '453', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 1, '34.0200', '38.0000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '69.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '455', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5859, '456', 'Salamol Inhaler 100mg', 1, '20.5000', '20.5000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '456', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6940, '30328845', 'Ekuro Bewu', 1, '4.0000', '4.5000', '0.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '221.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30328845', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5865, '462', 'Secure Contraceptive Pill', 1, '3.5000', '3.5000', '20.0000', 'no_image.png', 1683, NULL, '', '', '', '', '', '', '744.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '462', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6939, '15510705', 'Zahara Man Capsules', 1, '15.0000', '16.5000', '10.0000', 'no_image.png', 1659, 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, 0, 0, 0, '15510705', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6938, '52430931', 'Zahara Gee Capsules', 1, '15.0000', '16.5000', '0.0000', 'no_image.png', 1659, 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, '52430931', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5868, '465', 'Septilin Tablet', 1, '20.1600', '26.0800', '20.0000', 'septilin.jpg', 1678, 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, '465', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5870, '467', 'Shal\\\'Artem Dispersible Tablets 6', 1, '2.6000', '3.5000', '20.0000', 'shalaterm-dis.jpeg', 1670, 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, '467', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5871, '468', 'Shalcip Tablets 500mg 10&apos;s (Ciprofloxacin)', 1, '4.3000', '4.3000', '20.0000', 'shalcip-500.jpg', 1660, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '468', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6937, '79341788', 'Zahara Mixture', 1, '15.0000', '16.5000', '0.0000', 'no_image.png', 1659, 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, '79341788', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5873, '470', 'Sibi Woman Capsules', 1, '12.0000', '12.0000', '20.0000', 'sibi.jpeg', 1667, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '470', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6935, '37255897', 'Vitamin B-Complex Tablets 100x10 Letap', 1, '25.4000', '28.0000', '20.0000', 'no_image.png', 1669, 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, '37255897', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 1, '19.9000', '22.3000', '20.0000', 'no_image.png', 1669, 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, 0, 0, 0, '65328927', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6934, '40289448', 'Alusil Plus Suspension 125ml', 1, '3.3300', '3.7000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '278.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40289448', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6933, '39183320', 'Letafen 400mg Tablets', 1, '1.0500', '1.2000', '0.0000', 'no_image.png', 1675, 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, '39183320', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6932, '78866726', 'Technologist Choice Examination Gloves', 1, '34.0000', '50.0000', '20.0000', 'no_image.png', 1672, NULL, '', '', '', '', '', '', '98.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '78866726', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6931, '90823267', 'Pylin Ointment ', 1, '30.0000', '34.0000', '0.0000', 'no_image.png', 1659, 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, 0, 0, 0, 'pylin-ointment', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5881, '478', 'Solak Mixture', 1, '13.5000', '14.8500', '100.0000', 'no_image.png', 1656, 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, '478', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5882, '479', 'Dispersible Aspirin 75mg Tablets 100&apos;s Aspar', 1, '11.0000', '17.8000', '20.0000', 'disp-asp.jpeg', 1654, NULL, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '479', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6930, '68829408', 'Pylin Capsules ', 1, '40.0000', '44.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pylin-capsules', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5884, '481', 'Stagyl secnidazole Tablet (1 gm)', 1, '3.3200', '3.3200', '20.0000', 'stGLY.jpg', 1660, 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, '481', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5885, '482', 'Stopkof Children 100ml Syrup', 1, '8.4000', '11.8000', '20.0000', 'no_image.png', 1654, 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, '482', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5886, '483', 'Stopkof Adult Cough Syrup 100ml', 1, '8.6000', '11.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '483', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5887, '484', 'Strepsil Orange +Vitamin C Loz 36&apos;s', 1, '52.4000', '52.4000', '20.0000', 'strepsils-orange.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '484', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6929, '32027899', 'Gynicare', 1, '47.0000', '52.0000', '0.0000', 'no_image.png', 1659, 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, '32027899', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5889, '486', 'Sudocrem 125g cream', 1, '44.8200', '49.8000', '20.0000', 'no_image.png', 1677, 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, '486', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6927, '19085995', 'Ayulabs Gripe Water', 1, '8.9000', '9.9000', '0.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '124.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19085995', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5892, '489', 'Super Apeti Plus Syrup 200ml', 1, '8.6000', '11.7000', '20.0000', 'super-apeti-plus-syr.jpg', 1669, 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, '489', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5893, '490', 'Super Apeti Plus Tablets 50X20', 1, '1.6000', '2.1700', '20.0000', 'super-apeti-tbs.jpg', 1669, 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, '490', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6871, '36549551', ' Ascovit Cee (Vit C) Tablets 100mg 300', 1, '36.7200', '43.0000', '0.0000', 'bc722669f61ffc22f89194b9ed0e9847.jpg', 1695, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', '', '<p>Helps to boost the immune system of the body to fight infection and promote healing.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ascovit-cee-vit-c-tablets-100mg-300', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5897, '494', 'Syringe and Needle 5ml Letaject', 1, '23.0000', '48.7000', '20.0000', 'no_image.png', 1672, 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, '494', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5898, '495', 'Taabea Herbal Mixture', 1, '13.2000', '20.2000', '20.0000', 'download-75.jpeg', 1659, NULL, '', '', '', '', '', '', '125.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '495', 1, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6926, '49821716', 'Mist Sennaco (Extem)', 1, '3.6000', '4.0000', '0.0000', 'no_image.png', 1656, 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, '49821716', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6925, '27458123', 'Mist Potassium Citrate (Eextem)', 1, '4.5000', '5.0000', '0.0000', 'no_image.png', 1656, 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, '27458123', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5901, '498', 'Tavanic 500mg Tablets 5&apos;s', 1, '134.9600', '176.7000', '20.0000', 'download-65.jpeg', 1654, 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, '498', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6924, '21613850', 'Hydrogen (Extem)', 1, '2.7000', '3.0000', '0.0000', 'no_image.png', 1672, NULL, '', '', '', '', '', '', '493.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21613850', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 1, '3.6000', '4.0000', '0.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '457.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16693403', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5904, '501', 'Tears Natural II Eye Drops', 1, '24.7000', '24.7000', '20.0000', 'tears-naturale.jpeg', 1671, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '501', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6902, '06640421', 'Grandpa Syrup', 1, '5.8500', '8.9000', '0.0000', 'no_image.png', 1654, 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, '06640421', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5906, '503', 'Tetracycline Capsules', 1, '15.8200', '15.8200', '20.0000', 'tetra.jpg', 1660, NULL, '', '', '', '', '', '', '-8.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '503', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6901, '89069149', 'Paralex D Tablets', 1, '4.0100', '4.5000', '0.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 361, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89069149', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5911, '508', 'Tinatett Venecare 750ml', 1, '23.1000', '28.6000', '20.0000', 'titatet.jpeg', 1659, 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, '508', 1, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5915, '512', 'Tranexamic Acid 500mg Tablets 60&apos;s', 1, '127.0000', '130.0000', '20.0000', 'Tranexamic-Acid-500mg-Tablets-60s.jpeg', 1654, 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, '512', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5916, '513', 'Tres Orix 250ml', 1, '21.6500', '21.6500', '20.0000', 'trex-oris.jpg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '513', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5926, '523', 'Vermox 500mg Tablets', 1, '9.6300', '14.7000', '20.0000', 'vermox-tab.jpg', 1684, NULL, '', '', '', '', '', '', '31.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>For the relief of Gastric Pain, Flatulence, Minor Digestive Upset and Teething Discomfort in babies and children.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '523', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5931, '528', 'Viscof D 100ml Syrup', 1, '12.8400', '12.8400', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '33.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '528', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5932, '529', 'Viscof Plain 100ml Syrup', 1, '11.4000', '11.4000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '529', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6890, '15222916', 'One-Step Maleria Test Kit', 1, '6.0000', '6.6000', '0.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '1340.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15222916', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 1, '35.8400', '40.1400', '0.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '66.0000', NULL, 1, '', NULL, 'code128', '', '<p>This is used to treat bacterial infections in many different parts of the body. It is also used in combination with other medicines to treat duodenal ulcers caused by H. pylori. This medicine is also used to prevent and treat Mycobacterium avium complex (MAC) infection.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04973952', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5936, '533', 'Vitane Liquid 200ml', 1, '45.2400', '45.2400', '20.0000', 'vitane-liq.jpg', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '533', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5939, '536', 'VOLLTFAST 50MG', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '536', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6928, '72296204', 'Impressor Oil', 1, '49.0000', '55.0000', '0.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '104.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '72296204', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6869, '53857813', 'BENDROFLUMETHIAZIDE 2.5mg TABS Accord', 1, '5.7000', '6.7000', '0.0000', 'c7a6c5a1f1885f76b9b0923c0aeb8343.jpg', 1665, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '53857813', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5945, '542', 'Wellbaby Infant 160ml Syrup', 1, '74.3000', '74.3000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '542', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5946, '543', 'Wellman Capsules', 1, '79.5200', '90.2000', '20.0000', 'no_image.png', 1669, 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, '543', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5947, '544', 'Wormbase 400mg Tablets', 1, '12.5000', '13.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '455.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '544', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5948, '545', 'Wormplex Suspension', 1, '8.1000', '10.3000', '20.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '322.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '545', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5949, '546', 'Wormplex 400 Tablets', 1, '6.5700', '9.3000', '20.0000', 'wormplex-400.jpeg', 1684, 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, '546', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5953, '550', 'Zentel 200mg Tablets 2&apos;s', 1, '10.4800', '10.4800', '20.0000', 'download-86.jpeg', 1684, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '550', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5954, '551', 'ZESTRIL 20MG', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '551', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5955, '552', 'Zincofer Capsules 30&apos;s', 1, '23.2400', '25.9000', '20.0000', 'download-78.jpeg', 1662, 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, '552', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5956, '553', 'Zincofer Syrup 200ml', 1, '21.5600', '24.0000', '20.0000', 'download-77.jpeg', 1654, 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, '553', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5957, '554', 'Zincovit Drops 15ml', 1, '8.8200', '8.8200', '20.0000', 'zicovit-drops.jpg', 1669, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '554', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5958, '555', 'Zincovit Syrup 200ml', 1, '19.4700', '21.7000', '20.0000', 'zincovit-syr.jpg', 1669, 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, '555', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5959, '556', 'Zincovit Tablets', 1, '26.7800', '29.8000', '20.0000', 'zicovit.jpeg', 1669, 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, '556', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5960, '557', 'Zinnat 500mg Tablets 10&apos;s', 1, '135.6500', '135.6500', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '557', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5961, '558', 'ZINVITE CAPS', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '558', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5962, '559', 'Zinvite Syrup 200ml', 1, '6.9900', '10.8000', '20.0000', 'zinvite-syr.jpg', 1669, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '559', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5963, '560', 'Zipman Capsules', 1, '14.5000', '15.9500', '50.0000', 'no_image.png', 1656, 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, '560', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5964, '561', 'Zirtek Allegy 10mg Tablets 21&apos;s', 1, '71.5000', '71.5000', '20.0000', 'zirtek-allgy.jpeg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '561', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5965, '562', 'Zubes Expectorant 125ml Syrup', 1, '12.0800', '13.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '138.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '562', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5967, '564', 'Zulu 100mg Tablet', 1, '3.7800', '4.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '5368.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '564', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 1, '10.7800', '13.8000', '20.0000', 'zymax.jpeg', 1654, 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, '565', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5969, '566', 'Teedar Syrup 125ml', 1, '8.8000', '10.7000', '20.0000', 'teedar-syr.jpg', 1675, 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, '566', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5970, '567', 'Virol blood tonic 200ml', 1, '11.5700', '12.8500', '20.0000', 'virol.jpg', 1662, NULL, '', '', '', '', '', '', '110.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '567', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5971, '568', 'Asmadrin Tablets 25&apos;s', 1, '20.4300', '25.0000', '20.0000', 'asmadrin-2-1.jpg', 1654, 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, '568', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5972, '569', 'Durol Tonic 300ml', 1, '12.4500', '17.4800', '20.0000', 'download-2.jpg', 1662, 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, '569', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5973, '570', 'Finelife Blood Tonic 200ml', 1, '7.9600', '8.9000', '20.0000', 'finelife-blood-tonic.jpg', 1662, 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, '570', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5974, '571', 'Magacid Susp 200ml', 1, '8.4900', '9.5000', '20.0000', 'magacid.jpg', 1658, NULL, '', '', '', '', '', '', '193.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '571', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5975, '572', 'Durol Tonic 200ml', 1, '11.5700', '12.9000', '20.0000', 'med2-scaled.jpg', 1662, NULL, '', '', '', '', '', '', '125.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '572', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5976, '573', 'Koffex Adult Cough Syr 125ml', 1, '7.3800', '8.2000', '20.0000', 'koffex-adt-1.jpg', 1664, NULL, '', '', '', '', '', '', '392.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '573', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5977, '574', 'Samalin Adult Cough Syr 125ml', 1, '7.5000', '7.8000', '20.0000', 'samalin-adt-125ml.jpg', 1664, 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, '574', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5978, '575', 'Magacid Tab 25&apos;s', 1, '21.3000', '23.1000', '20.0000', 'Magacid-tab.jpg', 1658, 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, '575', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5979, '576', 'Menthox Adult Cough Syrup 125ml', 1, '6.0800', '6.8000', '20.0000', 'menthox-syr.jpg', 1664, NULL, '', '', '', '', '', '', '532.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '576', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5980, '577', 'Martins liver salt(Lemon)25&apos;s', 1, '11.7100', '13.1000', '20.0000', 'Martins-Liver-Salt.jpg', 1658, NULL, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '577', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5981, '578', 'Magacid Fastmelt(all flavours)35&apos;s', 1, '12.6500', '12.6500', '20.0000', 'fastmeltIMG.jpg', 1658, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '578', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 1, '9.9900', '11.1000', '20.0000', 'SAMALIN-JNR-COUGH.jpg', 1664, NULL, '', '', '', '', '', '', '376.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '579', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5983, '580', 'Rhizin 10mg Tabs10x10', 1, '5.9000', '6.9000', '20.0000', 'rhizin.jpg', 1673, NULL, '', '', '', '', '', '', '200.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '580', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5984, '581', 'Starwin Milk of Magnesia 360ml', 1, '21.7000', '24.2000', '20.0000', 'starwin-milk-of-M.jpg', 1658, 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, '581', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5985, '582', 'APC TABS 10X10', 1, '12.2000', '12.2000', '20.0000', 'apc-10S-2.jpg', 1675, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '582', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5986, '583', 'Rapinol Tab 25X4&apos;s', 1, '13.5000', '15.0000', '20.0000', 'rapinol-tab.jpg', 1654, NULL, '', '', '', '', '', '', '117.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '583', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5987, '584', 'Gluco-Naf C orange 400mg', 1, '11.6000', '11.6000', '20.0000', 'gluconaf-c-orange.jpg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '584', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5988, '585', 'Samalin Lozenges 2x10&apos;s', 1, '3.0000', '3.6000', '20.0000', 'samalin-loz1.jpg', 1664, 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, '585', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5989, '586', 'APC 50X4 TABS', 1, '26.4300', '29.6000', '20.0000', 'APC-Tablets.jpg', 1658, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '586', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5990, '587', 'Whitfield ointment', 1, '8.1900', '9.1000', '20.0000', 'whitfield-oint-40gm.jpg', 1657, 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, '587', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5991, '588', 'Kwik Action Tablets 50x4', 1, '38.4600', '43.0000', '20.0000', 'KA.jpg', 1654, 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, '588', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5992, '589', 'Dithranol ointment 40mg', 1, '9.0000', '10.0000', '20.0000', 'dithranol-oint-40mg.jpg', 1657, 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, '589', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5993, '590', 'Calamine ointment 40mg', 1, '8.7300', '9.7000', '20.0000', 'calamine-oint-40mg.jpg', 1657, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '590', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5994, '591', 'Alugel Tablets 50&apos;s', 1, '33.6000', '33.6000', '20.0000', 'ALUGEL.jpg', 1658, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '591', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5995, '592', 'Haemoglobin Syrup Aryton 200ml', 1, '6.0000', '7.6000', '20.0000', 'haemo.jpg', 1662, 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, '592', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5996, '593', 'Malafan Tabs 50&apos;s', 1, '2.0000', '2.0000', '20.0000', 'malafan.jpg', 1670, NULL, '', '', '', '', '', '', '644.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '593', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5997, '594', 'Linctus Junior Syrup 100ml', 1, '3.4000', '6.6000', '20.0000', 'linctus-adt-syr-100ml.jpg', 1654, 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, 'linctus-junior-syrup-100ml', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5998, '595', 'Linctus Adult Cough syr. 100ml', 1, '5.0000', '6.7000', '20.0000', 'linctus-adt-syr-100ml-1.jpg', 1664, NULL, '', '', '', '', '', '', '53.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '595', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5999, '596', 'Antasil Tablets 50&apos;s', 1, '25.7000', '25.7000', '20.0000', 'Antasil-tab..png', 1658, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '596', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6000, '597', 'Vigorix Forte Syr 200ml', 1, '10.6500', '11.1000', '20.0000', 'vigorix-styr.jpg', 1669, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '597', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6001, '598', 'Paraking Syrup 100ml', 1, '5.1000', '6.5000', '20.0000', 'paraking-scaled.jpg', 1669, 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, '598', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6002, '599', 'Ferrodex Syrup 200ml', 1, '8.1000', '9.0000', '20.0000', 'ferrodex-200ml.jpg', 1662, NULL, '', '', '', '', '', '', '118.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '599', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6003, '600', 'Bella cough Syr 125ml', 1, '6.7000', '9.5800', '20.0000', 'bella-cough-syr-125ml.jpg', 1664, 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, '600', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6004, '601', 'PMF 200g', 1, '12.0000', '12.5400', '20.0000', 'PMF.jpg', 1657, 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, '601', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6005, '602', 'Sulphur Ointment 40g', 1, '8.8200', '9.8000', '20.0000', 'SULPHUR-OINT.jpg', 1657, 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, '602', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6006, '603', 'Panacin Tabs 25X4', 1, '10.8300', '15.9600', '20.0000', 'PANACIN-TAB.jpg', 1675, 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, '603', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6007, '604', 'Penicillin V 125mg Letap', 1, '1.3300', '1.5000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '2558.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '604', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6008, '605', 'Linctus Junior Syr. 100ml ECL', 1, '4.9000', '4.9000', '20.0000', 'linctus-adt-syr-100ml-2.jpg', 1664, NULL, '', '', '', '', '', '', '236.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '605', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6009, '606', 'Rooter Life', 1, '35.9000', '35.9000', '20.0000', 'rooterlife.jpg', 1659, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '606', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6010, '607', 'Rooter Tytonic', 1, '15.0000', '16.5000', '20.0000', 'rooter-tytonic.jpg', 1659, NULL, '', '', '', '', '', '', '408.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '607', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6011, '608', 'Scimether Suspension', 1, '14.2100', '14.5000', '20.0000', 'scimether.jpg', 1670, 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, '608', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6012, '609', 'Scimether 80/480mg Tablet', 1, '16.6600', '16.6600', '20.0000', 'scimether-1.jpg', 1670, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '609', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6013, '610', 'Coartem 20/120mg Tablets 12&apos;s', 1, '18.3300', '18.3300', '20.0000', 'coartem-20.jpg', 1670, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '610', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6014, '611', 'Coartem Dispersible 20/120mg Tablets 6&apos;s', 1, '10.6800', '10.6800', '20.0000', 'c6.jpg', 1670, 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, '611', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6015, '612', 'Sirdalud 2mg Tablets 30&apos;s', 1, '43.7000', '72.8000', '20.0000', 'images-1.jpeg', 1666, 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, '612', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6016, '613', 'Sirdalud 4mg Tablets 30&apos;s', 1, '92.1000', '92.1000', '20.0000', 'download-64.jpeg', 1666, NULL, '', '', '', '', '', '', '86.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '613', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6017, '614', 'Diclofenac 75mg Tablets Sandoz 20&apos;s', 1, '15.0200', '15.0200', '20.0000', 'dicl-sdz.jpg', 1675, NULL, '', '', '', '', '', '', '-10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '614', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6018, '615', 'Ceftriaxone Stericef 1 Gm Injection', 1, '4.8000', '4.8000', '20.0000', 'stericef.jpg', 1660, 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, '615', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6019, '616', 'Cetapol 500mg Tablet 2X10', 1, '2.5300', '2.5300', '20.0000', 'cetapol-tab.jpg', 1654, NULL, '', '', '', '', '', '', '208.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '616', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6020, '617', 'ORS Plain 25&apos;s', 1, '19.8000', '22.0000', '20.0000', 'ors.jpg', 1654, 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, '617', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6021, '618', 'Rizole Suspension 100ml', 1, '3.6000', '3.6000', '20.0000', 'rizole-susp.jpg', 1658, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '618', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6022, '619', 'Herbloz Lozenges (Orange) 300PCS', 1, '55.5400', '55.5400', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '619', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6023, '620', 'Closol Cream', 1, '3.0000', '5.1000', '20.0000', 'closol-cream.jpg', 1657, 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, '620', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6024, '621', 'Vaginax Cream 30gm', 1, '4.9900', '8.5000', '20.0000', 'vnax-scaled.jpg', 1657, 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, '621', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6025, '622', 'Tacizol 400mg Tablet', 1, '0.7200', '1.3000', '20.0000', 'tacizol.png', 1654, NULL, '', '', '', '', '', '', '368.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '622', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6026, '623', 'Tacizol Suspension', 1, '1.8800', '3.2000', '20.0000', 'tacizol-sus.jpg', 1654, 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, '623', NULL, '0.0000', NULL, 7, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6027, '624', 'Clopimol Tablet', 1, '17.2600', '37.8000', '20.0000', 'IMG_20220103_165204_501-rotated.jpg', 1654, 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, '624', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6028, '625', 'Eurovit Multivitamin Gummies Greeen', 1, '18.8800', '33.0000', '20.0000', 'eurovit.jpg', 1669, 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, '625', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6029, '626', 'Eurovit Multivitamin Gummies Strawberry', 1, '18.8800', '18.8800', '20.0000', 'eurovit.jpg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '626', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6030, '627', 'Zipferon Capsule', 1, '4.4300', '7.6000', '20.0000', 'zipferon-cap.png', 1662, NULL, '', '', '', '', '', '', '143.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '627', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6031, '628', 'Blocold Tablet', 1, '17.8200', '45.3000', '20.0000', 'blocold.jpg', 1654, 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, '628', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6032, '629', 'Gebedol Forte', 1, '17.2100', '29.3000', '20.0000', 'gb-forte.jpg', 1654, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '629', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6033, '630', 'Deep Heat Rub 35g', 1, '31.4000', '31.4000', '20.0000', 'deep-heat-rub.jpg', 1657, NULL, '', '', '', '', '', '', '110.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '630', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6034, '631', 'Deep Heat Spray 150ml', 1, '41.8000', '81.2000', '20.0000', 'deep-heat-spray.jpg', 1654, 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, '631', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6035, '632', 'Fasipro Tablets (1*10)', 1, '7.9900', '13.6000', '20.0000', 'deep-heat-spray-1.jpg', 1660, 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, '632', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6036, '633', 'Leorub Gel 30g', 1, '4.4300', '7.6000', '20.0000', 'leorub-gel.jpg', 1688, 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, '633', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6037, '634', 'Kamaclox Mouthwash 300ml', 1, '9.1000', '9.1000', '20.0000', 'kamaclox-mouth-wash.jpg', 1689, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '634', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6038, '635', 'Omega Oil Liniment 50ml', 1, '8.6400', '9.7000', '20.0000', 'omega-oil.jpg', 1687, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '635', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6039, '636', 'Hot Naso- Ephedrine Nasal Drop', 1, '4.5500', '4.5500', '20.0000', 'hot-naso.jpg', 1678, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '636', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6040, '637', 'Cold Naso', 1, '3.0500', '3.0500', '20.0000', 'cold-naso.jpg', 1678, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '637', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6041, '638', 'Calcicare Liquid', 1, '35.9600', '35.9600', '20.0000', 'calcicare-liquid.jpg', 1669, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '638', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6042, '639', 'Vitane Drops 30ml', 1, '25.9500', '25.9500', '20.0000', 'VITANE-DROPS.jpg', 1669, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '639', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6043, '640', '5D Dextrose 5% Infusion 500ml', 1, '5.4000', '5.4000', '20.0000', 'dextrose.jpg', 1666, 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, '640', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6044, '641', 'Ringers Lactate 500ml', 1, '3.4600', '3.4600', '20.0000', 'RINGERS.jpg', 1666, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '641', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6045, '642', 'Omroz Injection- Omeprazol 40mg', 1, '9.7000', '9.7000', '20.0000', 'omroz-inj.jpg', 1666, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '642', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', 1, '7.5000', '7.5000', '20.0000', 'candid-cream-clotri.jpg', 1674, NULL, '', '', '', '', '', '', '81.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '643', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6047, '644', 'Candid B Cream 15mg', 1, '8.7000', '8.7000', '20.0000', 'CANDID-B.jpg', 1674, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '644', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6048, '645', 'Candid V1-Clotrimazole 500mg Pessary 1&apos;s', 1, '7.2300', '7.2300', '20.0000', 'candid-v1-p.jpg', 1674, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '645', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6049, '646', 'Candid V3 Gel Clotrimazole 200mg vaginal inserts with applicator', 1, '7.9500', '7.9500', '20.0000', 'CANDID-V3.jpg', 1674, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Candid-V3 Tablet VT is an antifungal medication that treats vaginal infections. It works by killing the fungi inside the vaginal tract by destroying their cell membrane. This <span xss=removed>reduces the burning, itching, and discharge that may occur with these infections.</span></p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candid-v3-suppository-clotrimazole-200mg-vaginal-insert', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6050, '647', 'Candid V6-Clotrimazole 100mg Pessary', 1, '6.7700', '6.7700', '20.0000', 'candid-V6.jpg', 1674, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '647', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6051, '648', 'Candid V Gel 30gms Clotrimazole gel ', 1, '19.6800', '22.5500', '20.0000', 'candid-v-gel.jpg', 1674, NULL, '', '', '', '', '', '', '42.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>CANDID V GEL 30GMS contains clotrimazole, an antifungal medication used to treat various fungal skin infections such as athlete\\\'s foot, ringworm, fungal nappy rash, and fungal sweat rash. Furthermore, it helps to alleviate the symptoms of thrush.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candid-v-gel-30gms-clotrimazole-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 (6052, '649', 'Candiderm Cream-Triple Action Cream 15mg', 1, '8.8000', '8.8000', '20.0000', 'candiderm-cream.jpg', 1674, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '649', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6053, '650', 'Bonnisan Syrup 120ml', 1, '14.9000', '16.3700', '20.0000', 'bonnisan-syr.jpg', 1658, 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, '650', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6054, '651', 'Confido Capsules 60&apos;s', 1, '30.0000', '30.0000', '20.0000', 'confido-caps.jpg', 1654, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '651', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6055, '652', 'Cystone Tablets', 1, '27.2000', '27.2000', '20.0000', 'cystone.jpg', 1654, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '652', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6056, '653', 'Evecare Syrup 200ml', 1, '26.9000', '26.9000', '20.0000', 'evecare-syr.jpg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '653', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6057, '654', 'Liv 52 Tablets', 1, '33.2100', '41.5000', '20.0000', 'liv-52-tabs.jpg', 1669, NULL, '', '', '', '', '', '', '77.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '654', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6058, '655', 'Liv 52 Syrup', 1, '20.3000', '25.4000', '20.0000', 'live-52-syr.jpg', 1669, 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, '655', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6059, '656', 'Mentat Syrup', 1, '20.4000', '25.3500', '20.0000', 'mentat-syr.jpg', 1669, 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, '656', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6060, '657', 'Pilex Ointment', 1, '21.9000', '21.9000', '20.0000', 'pilex-oint.jpg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '657', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6061, '658', 'Koflet Lozenges (All Flavors)', 1, '10.4000', '10.4000', '20.0000', 'koflet-loz.jpg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '658', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6062, '659', 'Renalka Syrup', 1, '23.8000', '23.8000', '20.0000', 'renalka.jpg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '659', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6063, '660', 'Speman Tablets', 1, '34.6500', '41.3000', '20.0000', 'speman.jpg', 1669, 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, '660', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6064, '661', 'Carbozap Junior Syrup 100ml', 1, '4.7000', '4.7000', '20.0000', 'carbozap-1.jpg', 1664, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '661', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6065, '662', 'Ferofix Syrup 200ml', 1, '4.9900', '4.9900', '20.0000', 'ferofix.jpg, ferfix-syr.jpg', 1662, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '662', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6066, '663', 'Ferofix Capsules', 1, '4.7000', '4.7000', '20.0000', 'magt-scaled.jpg', 1662, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '663', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6068, '665', 'GRMox (Amoxicillin) Suspension 100ml', 1, '3.7200', '3.7200', '20.0000', 'grmox-scaled.jpg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '665', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6069, '666', 'Lumizap 80/480mg Tablets', 1, '5.8800', '5.8800', '20.0000', 'Lumizap-40-80.jpeg', 1670, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '666', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6070, '667', 'Lumizap Suspension 60ml', 1, '5.1900', '5.1900', '20.0000', 'Lumizap-suspension.jpeg', 1670, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '667', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6071, '668', 'Vin C 100mg Tablets 30&apos;s', 1, '19.6000', '19.6000', '20.0000', 'Vin-C.jpeg', 1669, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '668', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6072, '669', 'Zamac Tablets 100mg', 1, '3.1400', '3.1400', '20.0000', 'IMG_20220103_161259_8442.jpg', 1678, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '669', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6073, '670', 'GRMox 500mg (Amoxicillin) Capsules 10x15', 1, '4.0000', '4.0000', '20.0000', 'grmox-scaled.jpg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '670', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6074, '671', 'Lydia Postpill 1Tablet', 1, '8.5000', '8.5000', '20.0000', 'lydia-postpil.jpg', 1683, NULL, '', '', '', '', '', '', '1601.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '671', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6075, '672', 'Kiss Condom Classic', 1, '2.3000', '2.3000', '20.0000', 'kiss-classic.jpg', 1683, NULL, '', '', '', '', '', '', '1438.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '672', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6076, '673', 'Kiss Condom Strawberry', 1, '2.3000', '2.3000', '20.0000', 'kiss-strawberry.jpg', 1683, NULL, '', '', '', '', '', '', '1986.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '673', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6077, '674', 'Fiesta Condom All Night', 1, '4.0000', '4.0000', '20.0000', '730c29b4d5722c8b028141f8476802e7.jpg', 1683, 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, '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 (6078, '675', 'Mr. Q', 1, '42.0000', '55.0000', '20.0000', 'MR.-Q.jpg', 1659, NULL, '', '', '', '', '', '', '499.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '675', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6079, '676', 'Araba Ba Zhen Tablets', 1, '19.0000', '19.0000', '20.0000', 'araba-ba.jpg', 1659, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '676', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6914, '98729079', 'Listerine Gin/Fresh Burst 500ml', 1, '30.5000', '34.6000', '0.0000', 'no_image.png', 1689, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98729079', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6081, '678', 'Xmox (Amoxicillin) 500mg Capsules 10x1x21s Entrance', 1, '10.4000', '10.4000', '20.0000', 'Xmox-500mg-150x150-1.jpg', 1660, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '678', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6082, '679', 'Coldrilif Syrup', 1, '6.9000', '6.9000', '20.0000', 'Coldrilif-Syrup.jpg', 1664, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '679', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6083, '680', 'Methylated Spirit Rokmer 60ml', 1, '2.7000', '2.7000', '20.0000', 'spirit-scaled.jpg', 1654, NULL, '', '', '', '', '', '', '1220.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '680', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6084, '681', 'Amaryl 2mg Tablet 30&apos;s', 1, '72.8000', '91.8900', '20.0000', 'Amaryl-2mg-Tablet.jpg', 1680, 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, '681', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6085, '682', 'Amaryl 4mg Tablets 30&apos;s', 1, '160.7000', '202.8000', '20.0000', 'amaryl-4mg.jpg', 1680, 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, '682', 1, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6086, '683', 'Amedin 10mg Tablets 28&apos;s', 1, '10.5000', '16.6200', '20.0000', 'AMEDIN-10MG.jpg', 1665, 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, '683', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6087, '684', 'Augmentin 1g Tablets 14&apos;s', 1, '75.8000', '142.0500', '20.0000', 'med3-scaled.jpg', 1660, 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, '684', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6088, '685', 'Bioferon Capsules 30&apos;s', 1, '24.1000', '26.8000', '20.0000', 'bioferon-capsules-30s.jpg', 1662, 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, '685', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6089, '686', 'Cebrotonin 800mg Tablets 30&apos;s', 1, '73.5000', '120.0000', '20.0000', 'cebrotonin.jpeg', 1666, 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, '686', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6090, '687', 'Ciprolex Eye Ointment 5g', 1, '10.0000', '15.0000', '20.0000', 'cipro-eye-oint.jpg', 1660, 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, '687', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6091, '688', 'Diclolex Power Heat Gel 30g', 1, '5.9000', '6.9000', '20.0000', 'diclolex-gel.jpg', 1675, 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, '688', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6092, '689', 'Ferrolex Syrup 250ml', 1, '14.9000', '23.0000', '20.0000', 'ferrolex.jpg', 1662, 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, '689', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6093, '690', 'Herbloz Lozenges (Orange) 2*12', 1, '7.7700', '7.7700', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '690', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6094, '691', 'Herbloz Lozenges (Orange) 20X6', 1, '31.1000', '31.1000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '691', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6095, '692', 'Cartef-DS Tablet', 1, '8.3200', '14.3000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '417.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '692', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6096, '693', 'Mist Sennaco ROKMER', 1, '4.0000', '4.0000', '20.0000', 'mist-cenaco.jpg', 1654, NULL, '', '', '', '', '', '', '-9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '693', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6097, '694', 'Methylated Spirit 200ml', 1, '7.2000', '7.2000', '20.0000', 'spirit-scaled.jpg', 1654, NULL, '', '', '', '', '', '', '241.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '694', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6098, '695', 'Klire Tablet 10&apos;s', 1, '5.6000', '5.6000', '20.0000', 'klire-tab-1.jpg', 1654, NULL, '', '', '', '', '', '', '1312.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '695', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6099, '696', 'Clear Inhaler 12&apos;s', 1, '29.5000', '29.5000', '20.0000', 'clear-inhaler.jpg', 1654, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '696', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6100, '697', 'Haem Up Syrup 200ml', 1, '18.0000', '25.0000', '20.0000', 'haemup.jpeg', 1662, 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, '697', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6101, '698', 'Feroclear Syrup 200ml', 1, '28.5000', '28.5000', '20.0000', 'feroclear.jpg', 1662, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '698', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6102, '699', 'Haemo Forte Syrup 200ml', 1, '27.8000', '27.8000', '20.0000', 'hamforte.jpg', 1662, NULL, '', '', '', '', '', '', '63.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '699', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 1, '15.2000', '15.2000', '20.0000', 'klire-cough.jpg', 1664, 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, 'klire-4-way-cough-syrup-125ml-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 (6104, '701', 'Histergan Cream 25g', 1, '30.0000', '30.0000', '20.0000', 'Histergan-2-cream.jpg', 1656, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '701', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6105, '702', 'Kefrox 125mg/5ml suspension 70ml', 1, '10.8800', '15.0000', '20.0000', 'kefrox.jpg', 1660, NULL, '', '', '', '', '', '', '196.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '702', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6106, '703', 'Lexocap 20x10', 1, '1.5000', '3.0000', '20.0000', 'lexocap.jpg', 1678, 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, '703', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6107, '704', 'Lexofen Plus Tablets 2x10', 1, '12.0000', '13.0000', '20.0000', 'lexofen-plus.jpg', 1678, NULL, '', '', '', '', '', '', '160.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '704', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6108, '705', 'Klire Antacid Suspension 125ml', 1, '11.6000', '11.6000', '20.0000', 'klire-anes-1.jpg', 1658, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '705', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6109, '706', 'Maalox Plus Suspension 250ml', 1, '48.6400', '53.7000', '20.0000', 'maalox-plus_5000x.png', 1658, 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, '706', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6110, '707', 'Maalox Stick Packs 20&apos;s', 1, '34.1000', '39.5000', '20.0000', 'MAALOX-sachet.jpg', 1658, 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, '707', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6111, '708', 'Ancigel Suspension 200ml', 1, '14.5000', '14.5000', '20.0000', 'ancige.jpg', 1658, NULL, '', '', '', '', '', '', '41.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '708', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6112, '709', 'Metrolex F Tablets 21&apos;s', 1, '12.7000', '18.0000', '20.0000', 'metrolex-f.jpg', 1660, NULL, '', '', '', '', '', '', '185.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metrolex-F belongs to the class of imidazole derivative antibacterials. It is an effective treatment for infectious diarrhoea, enteritis, cholera, bacteremic salmonellosis and other conditions which cause loose motions.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '709', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6113, '710', 'Plaster roll 3Inches Xtra care', 1, '9.8000', '9.8000', '20.0000', 'plaster-2inc.jpg', 1672, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '710', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6114, '711', 'Plaster roll 4Inches Xtra care', 1, '13.0000', '13.0000', '20.0000', 'plaster-2inc.jpg', 1672, NULL, '', '', '', '', '', '', '187.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '711', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6115, '712', 'Gudapet Syrup 200ml', 1, '7.1000', '7.1000', '20.0000', 'gudapet.jpeg', 1661, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '712', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6116, '713', 'Norvasc 10mg Tablets 30&apos;s', 1, '362.2400', '399.3000', '20.0000', 'NORVASC-10.jpg', 1665, 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, '713', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6117, '714', 'Gudapet Capsules', 1, '6.6000', '6.6000', '20.0000', 'gudapet-caps.jpeg', 1661, NULL, '', '', '', '', '', '', '247.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '714', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6118, '715', 'Norvasc Amlodipine Besylate  5mg Tablets pfizer30&apos;s', 1, '172.8000', '172.8000', '20.0000', 'norvasc-5mg.png', 1665, 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, '715', 1, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6119, '716', 'Otrivin 0.1%Adult Nasal Drop 10ml', 1, '28.6000', '28.6000', '20.0000', 'otrivin-adult.jpg', 1663, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '716', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6120, '717', 'Ancigel O Suspension 200ml', 1, '16.7400', '18.6000', '20.0000', 'ancigel-o.jpeg', 1658, 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, '717', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6121, '718', 'Strobin Lozenges 25x6', 1, '31.5400', '34.1000', '20.0000', 'strobin-LOZ-1.jpeg', 1660, NULL, '', '', '', '', '', '', '86.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '718', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6122, '719', 'Ventolin Inhaler 100 micrograms', 1, '47.2000', '50.7100', '20.0000', 'VENT.jpg', 1666, 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, '719', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6123, '720', 'Strobin Lozenges 54X6', 1, '52.7000', '60.5000', '20.0000', 'strobin-LOZ.jpeg', 1660, 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, '720', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6124, '721', 'Vitaforce Syrup 250ml', 1, '18.1500', '30.0000', '20.0000', 'vitaforce.jpg', 1669, NULL, '', '', '', '', '', '', '114.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '721', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6125, '722', 'Lufart Suspension', 1, '10.5000', '14.5000', '20.0000', 'lufart-scaled.jpg', 1670, NULL, '', '', '', '', '', '', '119.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '722', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6126, '723', 'Amurox Suspension (Cefuroxime Axetil)', 1, '11.7000', '23.3000', '20.0000', 'amurox-1-scaled.jpg', 1660, 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, '723', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6127, '724', 'X\\\'Zole F Suspension', 1, '7.3000', '8.8000', '20.0000', 'exole-scaled.jpg', 1660, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '724', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', 1, '8.7500', '9.8000', '20.0000', 'tobufen-scaled.jpg', 1654, NULL, '', '', '', '', '', '', '134.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '725', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6129, '726', 'Kofof Child Syrup 100ml Entrance', 1, '3.4000', '3.4000', '20.0000', 'a64c559b76b6bf3e07b4f634fe88ef64.jpg', 1664, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This medication is used to\r\ntemporarily treat cough, chest congestion, and stuffy nose symptoms caused by\r\nthe common cold, flu, allergies, hay fever, or other breathing illnesses (such\r\nas sinusitis, bronchitis), Hypotension, Shock, Hypotension during spinal\r\nanaesthesia.</p>', 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-syrup-100ml-entrance', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6130, '727', 'Kofof Family Syrup 150ml', 1, '6.4000', '7.4000', '20.0000', 'kofof-syr.jpeg', 1664, 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, '727', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6131, '728', 'Drez Solution 100ml', 1, '18.0000', '18.0000', '20.0000', 'DREZ-SOL-100ML.jpg', 1660, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '728', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 1, '4.3500', '4.3500', '20.0000', 'CREPE-BAND.jpeg', 1672, NULL, '', '', '', '', '', '', '126.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '729', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6133, '730', 'Livopat Capsules 30&apos;s', 1, '25.9500', '25.9500', '20.0000', 'livopat.png', 1654, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '730', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 1, '5.8000', '5.8000', '20.0000', 'CREPE-BAND.jpeg', 1672, NULL, '', '', '', '', '', '', '108.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '731', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6135, '732', 'Neuropat Capsules 30&apos;s', 1, '35.6000', '35.6000', '20.0000', 'neuropat_plus.png', 1654, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '732', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6136, '733', 'Chlo Eye (Chloramphenicol) drops', 1, '3.5600', '3.8000', '20.0000', 'chlo-eye.jpeg', 1671, NULL, '', '', '', '', '', '', '265.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '733', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6137, '734', 'Foligrow Capsules 30&apos;s', 1, '15.0000', '15.0000', '20.0000', 'foligrow-caps.jpeg', 1662, NULL, '', '', '', '', '', '', '175.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '734', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6138, '735', 'Drez V Gel 30g', 1, '17.5000', '17.5000', '20.0000', 'drez-v-gel.jpg', 1677, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '735', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6139, '736', 'Amino pep Syrup 200ml', 1, '15.9500', '15.9500', '20.0000', 'aminopep.jpg', 1669, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '736', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6140, '737', 'Fabrin Tablets 50X4', 1, '30.8000', '30.8000', '20.0000', 'fabrin-scaled.jpg', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '737', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 1, '15.9500', '15.9500', '20.0000', 'gauze-3.jpg', 1672, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '738', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 1, '9.3000', '9.3000', '20.0000', 'gauze-3.jpg', 1672, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '739', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 1, '11.2000', '11.2000', '20.0000', 'gauze-3.jpg', 1672, NULL, '', '', '', '', '', '', '64.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '740', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 1, '88.9000', '88.9000', '20.0000', 'no_image.png', 1666, 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, '741', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6145, '742', 'Blopen Gel 30g', 1, '4.5000', '5.9000', '20.0000', 'blopen.jpeg', 1688, 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, '742', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6146, '743', 'Amoxicillin 500mg Capsules M&amp; G 10x10', 1, '33.0000', '33.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '743', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6147, '744', 'Cafalgin Caplets 25x10', 1, '35.2000', '42.2400', '20.0000', 'cafalgen-scaled.jpg', 1675, 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, '744', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6148, '745', 'Tobin&apos;s Cod Liver Oil 10X10', 1, '24.3000', '24.3000', '20.0000', 'cod-liver-oil.jpeg', 1669, 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, '745', NULL, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', 1, '41.5800', '41.5800', '20.0000', 'emgivit.jpg', 1669, 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, '746', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6150, '747', 'Tobcee Tablets 50&apos;s', 1, '26.0000', '26.0000', '20.0000', 'tobcee.jpeg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '747', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6151, '748', 'Jeditone Syrup 200ml', 1, '6.7000', '12.6000', '20.0000', 'no_image.png', 1661, 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, '748', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6152, '749', 'Heptolif Tablets 50x2x10', 1, '1.2000', '1.2000', '20.0000', 'heptolif-tab.jpg', 1661, NULL, '', '', '', '', '', '', '884.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '749', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6153, '750', 'Paracetamol 500mg Tablet M&amp;G 100x10', 1, '77.0000', '77.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (6154, '751', 'Paracetamol 500mg M&amp;G Tablets 50x10', 1, '39.1000', '45.0000', '20.0000', 'para.jpg', 1654, 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, '751', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6155, '752', 'Proxicam  20mg Capsules 10x10', 1, '8.9400', '8.9400', '20.0000', 'Piroxicam-Capsules.jpg', 1654, NULL, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '752', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6156, '753', 'Zintab 20mg Disp Tablets 100x10', 1, '0.5000', '0.5500', '20.0000', 'zintab.jpg', 1654, 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, '753', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6157, '754', 'Metrolex-F Junior Suspension 100ml', 1, '15.0000', '20.0000', '20.0000', 'metrolex-f-susp.jpg', 1656, 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, '754', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6158, '755', 'Ascoryl Plus syrup 125ml', 1, '9.8000', '10.8000', '20.0000', 'ascoryl-plus.jpeg', 1669, 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, '755', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6159, '756', 'Cafalgin Junior Suspension 100ml', 1, '8.6000', '10.3200', '20.0000', 'cafalgin-junior.jpg', 1675, NULL, '', '', '', '', '', '', '124.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '756', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6160, '757', 'Emgikof D Syrup100ml', 1, '6.3000', '7.0000', '20.0000', 'emgikof-d.jpg', 1664, 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, '757', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6161, '758', 'Emgiprofen Suspension 100ml', 1, '5.3000', '5.3000', '20.0000', 'emgiprofen-scaled.jpg', 1654, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '758', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6162, '759', 'Go Cough Syrup 125ml', 1, '6.6000', '7.3000', '20.0000', 'no_image.png', 1664, 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, '759', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6163, '760', 'Emgikof S Syrup100ml', 1, '6.3000', '7.0000', '20.0000', 'emgikof-d.jpg', 1664, NULL, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '760', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6164, '761', 'Heptolif Syrup 200ml', 1, '14.6000', '16.0600', '20.0000', 'heptolif.jpg', 1661, 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, '761', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6165, '762', 'Mucosyl Junior Syrup 100ml', 1, '5.9000', '6.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '762', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6166, '763', 'Mucosyl Adult Syrup 100ml', 1, '6.8000', '7.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '117.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '763', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6167, '764', 'Polyfer Forte Syrup 200ml', 1, '9.4000', '10.4000', '20.0000', 'polyfer-forte.jpg', 1662, 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, '764', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6168, '765', 'Vitaglobin 200ml Syrup M &amp; G', 1, '8.4000', '8.4000', '20.0000', 'vitaglobin-scaled.jpg', 1662, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '765', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6169, '766', 'Vitamin B-Complex S yrup 125ml M &amp; G', 1, '4.3000', '7.4000', '20.0000', 'no_image.png', 1669, 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, '766', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6170, '767', 'Zerocid Plus Suspension 200ML', 1, '10.0000', '10.0000', '20.0000', 'zerocid-plus.jpg', 1658, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '767', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6171, '768', 'Zerocid Suspension 200ML', 1, '8.8000', '8.8000', '20.0000', 'zerocid-plus.jpg', 1658, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '768', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6172, '769', 'Metro F Suspension 100ml', 1, '5.7000', '5.7000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '769', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6173, '770', 'Betasol Cream 30g', 1, '3.1500', '4.5000', '20.0000', 'betasol-cream.jpg', 1677, 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, '770', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6174, '771', 'Diproson Cream 30g', 1, '3.1500', '3.1500', '20.0000', 'diproson-cream.jpg', 1677, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '771', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6175, '772', 'Diproson Lotion 30ml', 1, '3.8500', '5.3900', '20.0000', 'diproson-lotion.jpg', 1677, 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, '772', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6176, '773', 'Gogynax Cream 30g', 1, '4.1000', '5.8000', '20.0000', 'gogynax-cream.jpg', 1677, NULL, '', '', '', '', '', '', '277.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '773', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 1, '3.5000', '5.0000', '20.0000', 'gogynax-tabs.jpg', 1674, NULL, '', '', '', '', '', '', '328.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Gogynax Tablet is manufactured by SHALINA LABS. It is commonly used for the diagnosis or treatment of fungal infections of armpit and skin folds, fungal infections of groin, fungal infections of nappy rash .</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '774', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6178, '775', 'Ibucap Capsules 20&apos;s(Monopack)', 1, '1.6000', '2.2300', '20.0000', 'ibucap-cap.jpg', 1678, NULL, '', '', '', '', '', '', '1492.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '775', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6179, '776', 'Ibucap Forte Capsules', 1, '2.1000', '2.1000', '20.0000', 'ibucap-forte.jpg', 1678, NULL, '', '', '', '', '', '', '1740.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '776', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6180, '777', 'Ketazol Shampoo 100ml', 1, '12.2000', '17.4000', '20.0000', 'ketazole.jpg', 1654, 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, '777', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6181, '778', 'Kifaru 100mg Tablets', 1, '6.9000', '9.7500', '20.0000', 'kifaru-100-1.jpg', 1654, 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, '778', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6182, '779', 'Kifaru 50mg Tablets', 1, '5.5000', '7.7500', '20.0000', 'kifaru-50.jpg', 1654, 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, '779', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6183, '780', 'Leopard Balm 30g', 1, '5.7500', '8.1000', '20.0000', 'leopard-balm.jpg', 1657, 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, '780', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6184, '781', 'Magnavit Capsules 30&apos;s', 1, '7.8500', '11.1000', '20.0000', 'magnavit-cap.jpg', 1662, 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, '781', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6185, '782', 'Magnavit Tonic 200ml', 1, '7.8500', '11.1000', '20.0000', 'med4.jpg', 1662, 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, '782', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6186, '783', 'Omeshal Capsule 10X10 (Omeprazole)', 1, '14.4500', '14.4500', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '783', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6187, '784', 'Omeshal D Capsule (Omeprazole+Domperidone)10&apos;s', 1, '7.7000', '10.9000', '20.0000', 'omeshal-d.jpg', 1654, 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, '784', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6188, '785', 'Polygel Suspension 200ml', 1, '7.0000', '9.9000', '20.0000', 'polygel.jpg', 1658, 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, '785', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6189, '786', 'Rufedol Tablets 10&apos;s', 1, '9.4500', '10.5000', '20.0000', 'rufedol.jpg', 1678, 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, '786', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6190, '787', 'Shal\\\'Artem Forte 80/480mg Tablets 6&apos;s', 1, '6.5000', '9.1000', '20.0000', 'shalaterm.jpg', 1670, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '787', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6191, '788', 'Shal\\\'Artem Dry Syrup', 1, '5.5000', '7.7000', '20.0000', 'shalaterm-dry-syrup-1.jpg', 1670, 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, '788', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6192, '789', 'Shal\\\'Artem 20/120mg Tablets 24&apos;s', 1, '4.2500', '5.9500', '20.0000', 'shalaterm-tabs.jpg', 1670, 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, '789', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6193, '790', 'Shalcip TZ Tablets 10&apos;s', 1, '6.6000', '6.6000', '20.0000', 'shacip-tz.jpg', 1660, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '790', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6194, '791', 'Shaltoux 4 Way Syrup 100ml', 1, '5.3000', '7.5000', '20.0000', 'shaltoux-4way.jpg', 1664, NULL, '', '', '', '', '', '', '150.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '791', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', 1, '5.3000', '7.5000', '20.0000', 'shaltoux-cough.jpg', 1664, 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, '792', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6196, '793', 'Shaltoux Natural Cough Lozenges 20X6', 1, '19.5000', '19.5000', '20.0000', 'shaltoux-loz-natural.jpg', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '793', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 1, '45.5000', '45.5000', '20.0000', 'shaltoux-loz-natural.jpg', 1664, NULL, '', '', '', '', '', '', '-9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '794', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 1, '55.0000', '55.0000', '20.0000', 'shaltoux-loz-natural.jpg', 1664, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '795', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6199, '796', 'Tanzol (Albendazol) 400mg/5ml Suspension 10ml', 1, '1.5000', '1.5000', '20.0000', 'tanzol-susp.jpg', 1684, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '796', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6200, '797', 'Tanzol (Albendazole) 400mg Tablets', 1, '1.2000', '1.2000', '20.0000', 'tanzol-tbs.jpg', 1684, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '797', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6201, '798', 'Samalin Junior cough syrup 125ml', 1, '6.9000', '9.1000', '20.0000', 'samalin-jnr.jpg', 1664, NULL, '', '', '', '', '', '', '194.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '798', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6202, '799', 'Starwin Milk of Magnesia 120ml', 1, '9.5000', '10.0000', '20.0000', 'magacid-60ml.jpg', 1658, NULL, '', '', '', '', '', '', '409.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '799', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6203, '800', 'Ferrodex Capsules 30&apos;s', 1, '5.8500', '6.5000', '20.0000', 'ferrodex-200ml.jpg', 1662, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '800', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6204, '801', 'Painoff Tablets 25X4&apos;s', 1, '15.8000', '18.6000', '20.0000', 'painoff.jpg', 1675, 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, '801', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6205, '802', 'Citro C Tablets 25&apos;s', 1, '38.5000', '55.0000', '20.0000', 'CITRO-C.jpg', 1669, 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, '802', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6206, '803', 'Contreg Tablets 10x10', 1, '7.8400', '16.5000', '20.0000', 'contreg.jpeg', 1673, 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, '803', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6207, '804', 'Zinol 500mg Tablets (Paracetamol) 50X10', 1, '38.5000', '38.5000', '20.0000', 'download-12.jpeg', 1654, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '804', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6208, '805', 'Luzatil 20/120mg Tablets 24s Efa Amponsah', 1, '6.0000', '6.0000', '20.0000', 'luzatil.jpeg', 1670, 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, 'luzatil-20120mg-tablets-24s-efa-amponsah', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 1, '4.5000', '8.3000', '20.0000', 'download-15.jpeg', 1654, 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, '806', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6210, '807', 'BX Syrup 200ml', 1, '7.1000', '13.5300', '20.0000', 'BX-SYRUP.jpeg', 1669, 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, '807', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6211, '808', 'Contreg Syrup 30ml', 1, '4.0000', '7.3000', '20.0000', 'contreg-syrup.jpeg', 1673, 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, '808', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6212, '809', 'Hemoforce Family Syrup 200ml', 1, '9.3000', '9.4000', '20.0000', 'hemoforce-family.png', 1662, NULL, '', '', '', '', '', '', '139.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '809', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6213, '810', 'Hemoforce Plus Syrup 200ml', 1, '6.6500', '9.4000', '20.0000', 'hemoforce-plus.jpeg', 1662, NULL, '', '', '', '', '', '', '117.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '810', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6214, '811', 'Rufenac Gel 30g', 1, '2.8000', '3.9000', '20.0000', 'rufenac-gel.jpeg', 1688, 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, '811', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 1, '30.6900', '36.9000', '20.0000', 'amci.jpg', 1660, 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, '812', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 1, '1.6700', '1.9000', '20.0000', 'ampic.jpg', 1654, NULL, '', '', '', '', '', '', '2010.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '813', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6217, '814', 'Ascorbin Syrup (Child Care)100ml', 1, '3.0400', '3.5000', '20.0000', 'ascorbin-c-syr.jpg', 1669, NULL, '', '', '', '', '', '', '882.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '814', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 1, '16.1500', '17.8000', '20.0000', 'ASCOBIN.jpeg', 1669, NULL, '', '', '', '', '', '', '238.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '815', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 1, '2.6900', '2.6900', '20.0000', 'chloram.jpg', 1660, NULL, '', '', '', '', '', '', '-374.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '816', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6220, '817', 'Dynewell Syrup 200ml', 1, '5.4000', '6.0000', '20.0000', 'dynewell-syr.jpeg', 1661, NULL, '', '', '', '', '', '', '381.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '817', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6221, '818', 'Dynewell Tablet 50x10', 1, '15.7500', '17.4000', '20.0000', 'download-4.jpeg', 1661, NULL, '', '', '', '', '', '', '161.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '818', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 1, '17.0000', '17.0000', '20.0000', 'folic.jpg', 1669, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '819', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 1, '0.6000', '0.7200', '20.0000', 'indome.jpg', 1675, NULL, '', '', '', '', '', '', '180.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'indomethacin-250mg-capsules-50x10-letap', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 1, '1.9000', '3.9500', '20.0000', 'childcare.jpg', 1678, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '821', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6225, '822', 'Letalin Expectorant Syrup 125ml', 1, '2.8000', '3.0800', '20.0000', 'letalin-1.jpg', 1664, NULL, '', '', '', '', '', '', '221.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '822', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6226, '823', 'Macrafolin Syrup 125ml', 1, '1.9000', '1.9000', '20.0000', 'macrofolin.jpg', 1669, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '823', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6227, '824', 'Promecine Syrup 125ml', 1, '2.8400', '3.4000', '20.0000', 'promecian.jpg', 1673, NULL, '', '', '', '', '', '', '92.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '824', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 1, '25.4000', '28.0000', '20.0000', 'vitB.jpg', 1669, 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, '825', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6229, '826', 'Vitamin B-12 (Finest Nutrition', 1, '40.0000', '40.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '826', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6231, '828', 'Decatylen Lozenges 20s', 1, '37.0000', '37.0000', '20.0000', 'no_image.png', 1674, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '828', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 1, '8.8200', '9.9000', '20.0000', 'amlodi.jpeg', 1665, NULL, '', '', '', '', '', '', '388.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Amlodipine is a calcium channel blocker medication used to treat high blood pressure and coronary artery disease. It is taken by mouth. Common side effects include swelling, feeling tired, abdominal pain, and nausea.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '829', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 1, '6.0000', '7.2000', '20.0000', 'amlo-5.jpeg', 1665, 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, '830', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6234, '831', 'Amoksiklav 625mg Tablet 14s', 1, '36.2400', '49.0000', '20.0000', 'amoksik-1.jpeg', 1660, 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, '831', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 1, '4.9800', '7.4000', '20.0000', 'no_image.png', 1669, 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, 'vatamin-b-complex-syrup-100ml-jacket-ecl', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6236, '833', 'B Complex Tablets 50X10 ECL', 1, '9.2000', '15.4000', '20.0000', 'no_image.png', 1669, 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, '833', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6237, '834', 'Bendrofluazide 5mg Tablets 28s UK', 1, '11.7000', '11.7000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '834', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6238, '835', 'Cprinol 500mg Tablets 10s', 1, '48.0000', '48.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '835', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6239, '836', 'Clotrimazole 1% Cream 20g ECL', 1, '2.8000', '2.8000', '20.0000', 'no_image.png', 1674, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '836', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6240, '837', 'Metronidazole 400mg tabs 21&apos;s Exeter', 1, '10.6200', '11.9500', '20.0000', 'metro.jpeg', 1660, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metronidazole is an antibiotic that is used to treat a wide variety of infections caused by certain bacteria and parasites. It\\\'s used to treat skin infections, rosacea and mouth infections, including infected gums and dental abscesses. It\\\'s also used to treat conditions such as bacterial vaginosis and pelvic inflammatory disease.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '837', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6241, '838', 'Multivitamin Tablets 50x10 Ecl', 1, '13.2000', '14.9800', '20.0000', 'multivi.jpg', 1669, 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, '838', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6242, '839', 'Doreta 37.5/325mg Tablets 20s', 1, '55.8000', '66.5300', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '112.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Doreta M 80mg/250mg Tablet is a combination medicine used in the <span xss=removed>treatment of abdominal pain. It works effectively to reduce abdominal pain, bloating, discomfort and cramps by relaxing the muscles of the stomach and gut. It also blocks certain chemical messengers that cause pain and discomfort.</span></p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '839', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 1, '61.2000', '88.0000', '20.0000', 'DOXY.jpeg', 1660, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Doxycycline is used to treat many different bacterial infections, such as acne, urinary tract infections, intestinal infections, respiratory infections, eye infections, gonorrhea, chlamydia, syphilis, periodontitis (gum disease), and others.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '840', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6244, '841', 'Metoclopramide 10mg Tablets 28&apos;s uk', 1, '16.7000', '16.7000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '841', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 1, '2.6900', '2.9900', '20.0000', 'nefluco.jpeg', 1674, NULL, '', '', '', '', '', '', '205.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nefluconfluconazole150mg-capsule-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 (6246, '843', 'Nexium 20mg Tablets 14&apos;s', 1, '99.3000', '156.6000', '20.0000', 'no_image.png', 1666, 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, '843', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', 1, '80.7300', '103.0000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '43.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>For the relief of mild to moderate pain and inflammation, dysmenorrhea, migraine, arthritis, sprains, fever. </p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '844', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6248, '845', 'Teething Mixture 100ml ECL', 1, '9.6800', '12.8000', '20.0000', 'ECL-TEETHING.jpg', 1654, 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, '845', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6249, '846', 'Nodium(Loperamide) Capsules 100&apos;s', 1, '10.6000', '10.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '846', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6250, '847', 'Paracetamol 500mg Tablets 16&apos;s uk', 1, '4.8600', '5.5000', '20.0000', 'para-16.jpeg', 1654, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '847', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6251, '848', 'Exetmomol (Timolol) Eye drops 0.5%', 1, '4.8000', '4.8000', '20.0000', 'no_image.png', 1671, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '848', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6252, '849', 'Paracetamol Syrup 100ml Exeter', 1, '4.9800', '4.9800', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '849', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6253, '850', 'Exforge 10/160mg Tablets 28s', 1, '168.6000', '280.9200', '20.0000', 'no_image.png', 1665, 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, '850', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6254, '851', 'Extraflex Glucosamine Chondroitin Capsules 30s', 1, '36.8000', '36.8000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '851', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6255, '852', 'Flucloxacillin 500mg Capsules 28s UK', 1, '13.9000', '13.9000', '20.0000', '832a3feede7aa72e68a2938ae2a01f80.png', 1660, 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, '852', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6256, '853', 'Folic Acid Tablets 5mg 28s UK', 1, '7.9000', '7.9000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '-10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '853', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 1, '6.0000', '7.0000', '20.0000', 'histazine.jpeg', 1673, 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, '854', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 1, '9.7200', '10.9000', '20.0000', 'no_image.png', 1656, 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, '855', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6259, '856', 'Kidivite Child Multivitamin Syrup 150ml', 1, '19.9000', '19.9000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '856', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6260, '857', 'Hydrogen Peroxide 200ml ECL', 1, '5.7600', '6.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 341, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '857', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6261, '858', 'Baby Cough Linctus 125ml ECL', 1, '5.2000', '7.4000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '118.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '858', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6262, '859', 'Neoferon Capsules 30s', 1, '10.6700', '11.9000', '20.0000', 'no_image.png', 1669, 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, '859', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6263, '860', 'Nesben (Albendazole) Suspension 100mg', 1, '5.9800', '5.9800', '20.0000', 'nesben.jpg', 1684, NULL, '', '', '', '', '', '', '-10.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '860', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 1, '6.1200', '7.9800', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Amoxicillin Oral Suspension is an antibiotic. The active ingredient is amoxicillin. This belongs to a group of medicines called \\\'penicillin\\\'. Amoxicillin Oral Suspension is used to treat infections caused by bacteria in different parts of the body.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '861', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6265, '862', 'Folic Acid Tablets 50X10 ECL', 1, '11.8000', '15.0000', '20.0000', 'no_image.png', 1669, 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, '862', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6266, '863', 'Secnidex 1g Tablets 2s', 1, '4.6000', '4.6000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '863', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 1, '7.1800', '8.0400', '20.0000', '0d7afd58859adaa0552756fb97fdfcbc.jpg', 1664, NULL, '', '', '', '', '', '', '-9.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>It belongs to a full range of products for the effective treatment of cough, runny nose, cold and catarrh. It is suitable for adults, children and babies. The Active Ingredients include Acetaminophen; Triprolidine; Pseudoephedrine. Back To Products. Related Products. </p>', 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-tablets-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 (6268, '865', 'Sildenafil 50mg Tablets Teva 4s', 1, '10.6000', '10.6000', '20.0000', 'silf.jpeg', 1654, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '865', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6269, '866', 'Glucophage 500mg Tablets 30s', 1, '23.9000', '43.6000', '20.0000', 'GLUCOPHAGE.jpeg', 1680, 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, '866', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6270, '867', 'Actifed 60mg Tablets 12s', 1, '14.9000', '14.9000', '20.0000', 'ACTIFED.jpeg', 1663, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '867', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6271, '868', 'Ciprinol 500mg Tablets 10s', 1, '62.0000', '62.0000', '20.0000', 'cipri.jpeg', 1660, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '868', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6272, '869', 'Ferrovita B12 Syrup 200ml', 1, '31.5000', '31.5000', '20.0000', 'ferrovita-B12-200ML-SYRUP-EASYLIFE.jpg', 1662, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '869', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6273, '870', 'Vikil 20', 1, '26.0000', '27.5000', '20.0000', 'vikil.jpeg', 1659, 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, '870', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6274, '871', 'Gana Balm 100g', 1, '19.8000', '19.8000', '20.0000', 'gana.jpeg', 1657, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '871', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6275, '872', 'Gana Balm 20g', 1, '4.7000', '4.7000', '20.0000', 'gana-balm.jpeg', 1657, NULL, '', '', '', '', '', '', '283.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '872', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6276, '873', 'Tinatett Malakare 500ml', 1, '16.0000', '17.7000', '20.0000', 'malakare.jpeg', 1659, 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, '873', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6277, '874', 'Tinatett Tomac Mixture 500ml', 1, '25.0000', '27.5000', '20.0000', 'tomac.jpeg', 1659, 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, '874', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6278, '875', 'Tinatett 230 Herbal Capsules', 1, '27.5000', '27.5000', '20.0000', '230.jpeg', 1659, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '875', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6279, '876', 'Tinatett Bf Bf Capsules', 1, '26.4000', '26.4000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '876', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6280, '877', 'Hayan Capsules', 1, '40.0000', '40.0000', '20.0000', 'hayan.jpeg', 1659, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '877', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6281, '878', 'Givers Koo Capsules', 1, '22.0000', '22.0000', '20.0000', 'GIVERS-KOO.jpg', 1659, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '878', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6282, '879', 'Givers Herbal Mixture', 1, '13.0000', '13.0000', '20.0000', 'GIVERS-HERBAL.jpeg', 1659, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '879', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 1, '5.3800', '7.5000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '275.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>For the relief of mild to moderate pain and inflammation, dysmenorrhea, migraine, arthritis, sprains, fever. Active Ingredients.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '880', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6284, '881', 'Amoksiklav 228mg/5ml Suspension 70ml', 1, '21.0000', '21.0000', '20.0000', 'amok.jpeg', 1660, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '881', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6285, '882', 'Auntie Mary Gripewater 150ml', 1, '9.8000', '11.8000', '20.0000', 'auntie-mary.jpeg', 1658, NULL, '', '', '', '', '', '', '64.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>For the relief of Gastric Pain, Flatulence, Minor Digestive Upset and Teething Discomfort in babies and children.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '882', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6286, '883', 'Kidivite Syrup 200ml', 1, '10.6200', '13.9800', '20.0000', 'no_image.png', 1669, 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, '883', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 1, '13.2000', '15.8000', '20.0000', 'zymzx.jpg', 1660, 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, '884', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6288, '885', 'Tadol 50mg Capsules 20&apos;s', 1, '59.4000', '66.5200', '20.0000', 'tadol.jpg', 1654, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Tadol 50mg Tablet is a medicine used to treat moderate to severe acute pain in adults. It is used to treat many conditions such as headache, fever, period pain, toothache, and colds. It effectively alleviates pain when other treatments fail to relieve your pain.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '885', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6289, '886', 'Fluxamox 500mg Capsules 200&apos;s', 1, '117.0000', '148.0000', '20.0000', 'no_image.png', 1660, 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, '886', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6290, '887', 'Fluxacin 500mg Capsules 20X10', 1, '122.4000', '168.0000', '20.0000', 'no_image.png', 1660, 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, '887', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6291, '888', 'Metagyl 200mg Tablets 50x10', 1, '53.8200', '72.0000', '20.0000', 'metagyl.jpg', 1660, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Metronidazole is an antibiotic that is <em xss=\\\"\\\\\\\">used</em> to treat a wide variety of infections. It works by stopping the growth of certain bacteria and parasites.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '888', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6292, '889', 'Fluxacin 100ml Suspension', 1, '8.2800', '11.0000', '20.0000', 'c71aa1a5e0d18818d4fb297c930b149e.jpg', 1660, 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, '889', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 1, '14.6000', '19.9800', '20.0000', 'no_image.png', 1660, 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, '890', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6294, '891', 'Menthodex 200ml Syrup ECL', 1, '26.6400', '30.0000', '20.0000', 'images-3.jpeg', 1664, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Menthodex Cough Mixture is used for the relief of colds, sore throats, irritating and chesty coughs,</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthodex-200ml-syrup-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 (6295, '892', 'Cyprodine 200ml Syrup', 1, '33.1200', '59.8000', '20.0000', 'no_image.png', 1673, 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, '892', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 1, '25.4000', '33.0000', '20.0000', 'download-61.jpeg', 1660, 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, '893', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6297, '894', 'Malar-2 Suspension 60ml', 1, '9.2900', '11.8000', '20.0000', 'malar-2-sus.jpg', 1670, 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, '894', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6298, '895', 'Malar-2 Forte DS Tablets 80/480 6s', 1, '9.7200', '12.8000', '20.0000', 'malar-2.jpeg', 1670, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'malar-2-forte-ds-tablets-80480-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 (6299, '896', 'Nexcofer Capsules 30&apos;s', 1, '7.1800', '7.1800', '20.0000', 'nex-cap.jpeg', 1691, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '896', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6300, '897', 'BG Glutamin Plus Tablets 30&apos;s', 1, '17.5500', '19.7000', '20.0000', 'no_image.png', 1669, 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, '897', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6301, '898', 'Comit-50', 1, '11.2500', '13.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '144.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '898', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6302, '899', 'Klovinal Pessaries', 1, '23.0000', '30.0000', '20.0000', 'download-2022-04-14T103520.858.jpeg', 1654, NULL, '', '', '', '', '', '', '82.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '899', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6303, '900', 'Lofnac 100mg Tablets', 1, '1.8900', '2.2000', '20.0000', 'lof-tab.jpeg', 1675, NULL, '', '', '', '', '', '', '431.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '900', 1, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6304, '901', 'Lonart Suspension', 1, '13.5000', '17.0000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '233.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '901', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6305, '902', 'Menstak', 1, '2.3000', '2.3000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '902', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6306, '903', 'Pofakoff Adult', 1, '6.2300', '6.2300', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '903', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6307, '904', 'Pofakoff Baby', 1, '7.3000', '7.3000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '904', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6308, '905', 'Leena Syrup', 1, '7.2300', '7.2300', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '905', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6309, '906', 'Odymin Syrup', 1, '7.5000', '8.4000', '20.0000', 'no_image.png', 1669, 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, '906', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6310, '907', 'Odymin Capsules', 1, '3.0000', '3.0000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '907', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6311, '908', 'Jarifan 2', 1, '13.2000', '13.2000', '20.0000', 'no_image.png', 1662, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '908', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6312, '909', 'Malin Junior', 1, '7.5000', '7.5000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '909', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6313, '910', 'Flucona-Denk 150mg Capsules', 1, '17.0000', '31.8400', '20.0000', 'no_image.png', 1674, 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, '910', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', 1, '33.0200', '80.3000', '20.0000', 'no_image.png', 1665, 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, '911', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6315, '912', 'Rhinathiol Adult Cough Syrup 6.25g/125ml', 1, '29.9600', '29.9600', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '912', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6316, '913', 'Tothema Box of 20 Bulbs', 1, '54.0000', '74.0000', '20.0000', 'tothema.jpeg', 1662, 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, '913', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6317, '914', 'Para-Denk 125mg Suppository 10&apos;s', 1, '19.1900', '35.8000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '914', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6318, '915', 'Thymair Lozenges 20&apos;s', 1, '24.8500', '24.8500', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '915', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6319, '916', 'Clotri Denk 1% Cream 20g', 1, '25.8000', '25.8000', '20.0000', 'download-49.jpeg', 1690, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '916', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6320, '917', 'Nifedi-Denk 20mg 100&apos;s', 1, '63.2200', '117.6000', '20.0000', 'no_image.png', 1654, 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, '917', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6321, '918', 'Clotri Denk 100mg Pessary', 1, '25.8000', '48.9000', '20.0000', 'no_image.png', 1690, 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, '918', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6322, '919', 'Para-Denk 250mg Suppository 10&apos;s', 1, '21.8300', '40.7000', '20.0000', 'no_image.png', 1654, 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, '919', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6323, '920', 'Polygynax Pessaries 6&apos;s', 1, '35.1000', '48.0000', '20.0000', 'polygnax.jpeg', 1654, 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, '920', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6324, '921', 'Timol 0.5% Eye Drop', 1, '8.4900', '8.4900', '20.0000', 'no_image.png', 1671, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '921', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6325, '922', 'Xylo Acino 0.1% Nasal Spray', 1, '55.0000', '55.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '922', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6326, '923', 'Ciprolex 500mg Tablets 10&apos;s', 1, '14.0000', '14.0000', '20.0000', 'download-74.jpeg', 1660, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '923', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6327, '924', 'Flagentyl 500mg Tablets 4&apos;s secnidazole', 1, '28.6000', '33.7000', '20.0000', 'no_image.png', 1654, 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, '924', NULL, '0.0000', NULL, 7, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6328, '925', 'Gynomycolex 400mg Pessaries 3&apos;s', 1, '24.4100', '30.0000', '20.0000', 'no_image.png', 1654, 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, '925', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6329, '926', 'Neo Hycolex E/E/N 5ML Drops', 1, '16.9000', '16.9000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '926', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6330, '927', 'Orelox 100mg Tablets 10&apos;s', 1, '67.9000', '107.0200', '20.0000', 'no_image.png', 1654, 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, '927', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 1, '1.4900', '2.2000', '20.0000', 'no_image.png', 1654, 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, '928', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6332, '929', 'Adom Koo Capsules', 1, '16.5000', '16.5000', '20.0000', 'adom-koo-cap.jpeg', 1659, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '929', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6333, '930', 'Adom Koo Mixture', 1, '7.7000', '7.7000', '20.0000', 'download-20.jpeg', 1659, NULL, '', '', '', '', '', '', '69.0000', NULL, 1, '', NULL, 'code128', NULL, '', 1, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '930', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5513, '110', 'Celebrex Celecoxib 200mg (pfizer)', 1, '94.0200', '94.0200', '20.0000', 'dace93ad276ff66cd819006d8dcd8e54.jpeg', 1654, 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, '110', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6892, '43611248', 'Gentamycin 80mg/2ml Injection', 1, '11.2100', '12.4000', '20.0000', 'no_image.png', 1672, NULL, '', '', '', '', '', '', '1.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '43611248', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6881, '54874377', 'Dacillin (clindamycin 300mg)', 1, '49.5000', '55.0000', '0.0000', 'no_image.png', 1678, 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, '54874377', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5515, '112', 'Cetapol Syrup', 1, '4.6800', '5.5000', '20.0000', 'CETAPOL-SYRUP-1-600x400-1.jpg', 1654, 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, '112', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 1, '13.5000', '15.0000', '0.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '381.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '88345256', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5519, '116', 'Chlo Ear Chloramphenicol Drops', 1, '3.3000', '3.3000', '20.0000', 'chlo-ear.jpeg', 1671, NULL, '', '', '', '', '', '', '218.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '116', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6879, '34265543', 'Zulu Extra ', 1, '3.8000', '5.0000', '0.0000', 'no_image.png', 1690, NULL, '', '', '', '', '', '', '286.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34265543', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6878, '43797319', 'Obend Albendazole 400mg Tablet', 1, '0.9000', '1.2000', '0.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '350.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '43797319', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6877, '13587208', 'Actilife multivitamin 30s', 1, '12.6000', '14.0000', '0.0000', 'no_image.png', 1669, 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, '13587208', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5525, '122', 'Cipro-Denk 500mg Tablet', 1, '41.6800', '77.3000', '20.0000', 'no_image.png', 1660, 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, '122', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5526, '123', 'Ciprolex Eye/ Ear 5ML Drops', 1, '10.0000', '15.0000', '20.0000', 'cipro-eye.jpeg', 1671, 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, '123', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5527, '124', 'Ciprolex TZ', 1, '27.0000', '35.0000', '20.0000', 'tz.jpeg', 1660, 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, '124', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5528, '125', 'Cirotamin Tonic', 1, '14.8800', '16.6000', '20.0000', 'CIROTAMIN.jpeg', 1669, 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, '125', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5531, '128', 'Cloxacillin 250mg Letap', 1, '80.5000', '80.5000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '128', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5532, '129', 'Coartem 80/480 6s', 1, '58.5000', '82.0000', '20.0000', 'coaterm.jpg', 1670, NULL, '', '', '', '', '', '', '181.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>This medication is used to treat malaria in adults and children. The two ingredients in this medication belong to a class of drugs known as antimalarials. Malaria is an infection caused by mosquito bites received while traveling or living in regions of the world where malaria is common.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'coartem-80480-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 (5535, '132', 'Coldrilif Capsules 10X10', 1, '3.9100', '3.9100', '20.0000', 'coldrilif.jpg', 1663, NULL, '', '', '', '', '', '', '1658.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '132', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5536, '133', 'Colestop 10mg 30&apos;s (Atovastin)', 1, '52.2000', '87.0000', '20.0000', 'no_image.png', 1654, 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, '133', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 1, '22.0000', '33.0000', '20.0000', 'colodium.jpg', 1654, 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, '137', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5541, '138', 'Combact N', 1, '5.5000', '5.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '138', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5545, '142', 'Cororange Drops', 1, '8.5000', '8.5000', '20.0000', 'cororange-drops.jpeg', 1662, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '142', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5546, '143', 'Cotton wool (Zigzag) 50g', 1, '3.9000', '3.9000', '20.0000', 'zigzag.jpeg', 1672, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '143', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5548, '145', 'Crepe Bandage 2Inches Xtra care', 1, '2.9800', '2.9800', '20.0000', 'CREPE-BAND.jpeg', 1672, NULL, '', '', '', '', '', '', '372.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '145', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 1, '8.2000', '8.2000', '20.0000', 'CREPE-BAND.jpeg', 1672, NULL, '', '', '', '', '', '', '472.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '146', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5551, '148', 'Cyfen Syrup', 1, '13.5000', '13.5000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '148', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5552, '149', 'Cyfen Tablets', 1, '1.2000', '1.2000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '149', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 1, '33.1200', '59.8000', '20.0000', 'no_image.png', 1673, 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, '150', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5554, '151', 'Cytotec', 1, '278.7800', '425.2700', '20.0000', '683b1695f077ca355c8b716a31faa885.png', 1666, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>also known as Misoprostol is an oral medication used to prevent NSAID (Nonsteroidal Anti-inflammatory Drugs) -associated gastric ulcers and cause an early abortion in women in their first-trimester pregnancy. It is used in combination with Mifepristone (also known as RU-486) for the termination of pregnancy in women who are no more than nine weeks pregnant. It increases the contractions (by opening the cervix) caused by Mifepristone to empty the uterus and avoid surgical intervention. For the treatment of gastric ulcers, it works by lowering the amount of acid to protect the lining of the stomach. For the termination of pregnancy, four tablets are given to you by the doctor which are needed to be taken either orally or vaginally. The abortion process gets completed within 3-4 days. It can take anywhere around 3 months to reduce the risk of gastric ulcers provided that the doctor’s prescription is followed.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '151', 1, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5555, '152', 'Daflon 500mg Tablets 30&apos;s', 1, '107.0000', '107.0000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '152', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5556, '153', 'Daktarin Cream 15g', 1, '30.0000', '40.3000', '20.0000', 'download-90.jpeg', 1674, 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, '153', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5557, '154', 'Dalacin C 300mg Capsules 16&apos;s', 1, '175.6100', '229.0600', '20.0000', 'no_image.png', 1660, 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, '154', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5559, '156', 'Danrub Ointment 40g', 1, '8.3000', '10.4500', '20.0000', 'download-76.jpeg', 1657, NULL, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '156', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5562, '159', 'Deep Freez Spray 150ml', 1, '47.7700', '63.7000', '20.0000', 'deep-freeze-spray.jpg', 1654, 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, '159', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5569, '166', 'Diazepam 5mg Tablets 500&apos;s', 1, '21.6000', '30.0000', '20.0000', 'no_image.png', 1654, 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, '166', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5570, '167', 'Diclo Denk 100mg Tablet 10x10', 1, '148.0500', '283.5400', '20.0000', 'no_image.png', 1675, 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, '167', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5571, '168', 'Diclo-Denk100mg  Suppository 10&apos;s', 1, '26.5000', '26.5000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '168', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5573, '170', 'Diclolex 100mg Tablets 10X10', 1, '18.0000', '23.0000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '1057.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '170', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5576, '173', 'Dicnac 100mg Suppositories', 1, '8.4200', '9.4000', '20.0000', 'dicnac.jpg', 1675, NULL, '', '', '', '', '', '', '122.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '173', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5577, '174', 'Diflucan 150mg Capsules 1&apos;s', 1, '81.2000', '200.6900', '20.0000', 'DIFLUCAN-150-mg.jpg', 1674, 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, '174', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5580, '177', 'Diphex Cough Syrup', 1, '7.1000', '8.4000', '20.0000', 'diphex.jpg', 1664, 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, '177', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5581, '178', 'Domi 10 Suppositories', 1, '11.3000', '16.0000', '20.0000', 'no_image.png', 1676, NULL, '', '', '', '', '', '', '153.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '178', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5582, '179', 'Domi 30mg Suppositories', 1, '12.5000', '19.0000', '20.0000', 'no_image.png', 1676, NULL, '', '', '', '', '', '', '408.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '179', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5584, '181', 'Doxycycline 100mg Letap', 1, '23.0000', '25.3000', '20.0000', 'DOXY.jpg', 1660, NULL, '', '', '', '', '', '', '222.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '181', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5585, '182', 'Dragon Tablets', 1, '23.4000', '28.5000', '20.0000', 'DRAGON-TABS.jpeg', 1654, 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, '182', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5586, '183', 'Dragon Spray', 1, '28.9000', '34.6000', '20.0000', 'DRAGON.jpeg', 1654, NULL, '', '', '', '', '', '', '146.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '183', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5587, '184', 'Drez Ointment 10g', 1, '8.8000', '8.8000', '20.0000', 'no_image.png', 1677, NULL, '', '', '', '', '', '', '301.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '184', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5588, '185', 'Drez Ointment 30mg', 1, '14.9600', '14.9600', '20.0000', 'drez-oint-30g.jpg', 1657, NULL, '', '', '', '', '', '', '218.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '185', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5589, '186', 'Drez Powder 10g', 1, '9.4000', '9.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '267.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '186', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5590, '187', 'DUO COTECSON', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '187', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5591, '188', 'Easy Life Vitamin C+ Zinc Tablets', 1, '22.0000', '22.0000', '20.0000', 'esay-life.jpg', 1669, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '188', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5592, '189', 'Efpac Junior Syrup', 1, '7.1500', '9.3000', '20.0000', 'efpac-jnr.jpeg', 1654, 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, '189', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5593, '190', 'Efpac Tablets', 1, '38.5000', '38.5000', '20.0000', 'EFPAC-TAB.jpg', 1654, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '190', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6899, '75093808', 'Diclokin TR', 1, '24.8300', '27.8000', '0.0000', 'no_image.png', 1690, 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, '75093808', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6885, '84388732', 'Glimer-2 (Glimeperide 2mg)', 1, '8.1000', '9.0000', '0.0000', 'no_image.png', 1680, 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, '84388732', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5511, '108', 'Inoxime (Cefixime) 200mg Tablets', 1, '9.0000', '9.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '108', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5510, '107', 'Castor Oil 70ml', 1, '11.8000', '11.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '107', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6900, '47596555', 'Badruf Cream', 1, '6.0000', '6.6000', '20.0000', 'no_image.png', 1677, NULL, '', '', '', '', '', '', '375.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47596555', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5509, '106', 'Cartef Suspension', 1, '6.8800', '6.8800', '20.0000', 'cartef.png', 1670, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '106', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5508, '105', 'Cardioace Capsules 80&apos;s', 1, '77.9100', '77.9100', '20.0000', 'cadio.jpeg', 1669, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '105', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5507, '104', 'Carbozap Syrup Adult 100ml FG', 1, '4.9900', '4.9900', '20.0000', 'carbozap-1.jpg', 1664, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '104', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6861, '52042899', 'Prowoman Plus Caps ', 1, '74.6800', '83.6400', '10.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '<p>Prowoman includes a range of vitamins and trace elements designed specifically with the needs of women in mind. The special Prowoman formula includes Evening Primrose and Starflower oils. Helps you maintain health and vitality. Effective support for your nutritional needs. </p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52042899', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6887, '5738767', 'Actilife Flex-14 (Glucosamine Chondroitin)', 1, '16.2000', '18.0000', '0.0000', 'no_image.png', 1678, 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, '5738767', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5405, '2', 'DAYQUIL 2&apos;s DISP.  (25 CT)', 1, '50.0000', '50.0000', '20.0000', 'dayquil-2s-disp-25-ct.jpg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5408, '5', 'ALKA SELTZ PLS COLD 20/2&apos;s BOX', 1, '10.0000', '10.0000', '20.0000', 'alka-seltz-pls-cold-202s-box.jpg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5409, '6', 'HORNY GOAT WEED 24CT', 1, '15.0000', '15.0000', '20.0000', 'horny-goat-weed-24ct.jpg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5410, '7', 'JAGUAR KING 30000 - 24CT', 1, '20.0000', '20.0000', '20.0000', '02MJ2.jpg', 1654, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '7', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5412, '9', 'AIRHEAD BITES FRUIT 24CT', 1, '20.0000', '20.0000', '20.0000', 'airhead-bites-fruit-24ct.jpg', 1655, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '9', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6886, '85373687', 'Glimer 4(Glimepride 4mg)', 1, '10.8000', '12.0000', '0.0000', 'no_image.png', 1680, 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, '85373687', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 1, '6.3000', '7.0000', '0.0000', 'no_image.png', 1665, 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, '54358257', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5415, '12', '3CP Disinfectant Liquid Original ', 1, '0.0000', '0.0000', '20.0000', 'e1cae721320e6e66b16fef807632704d.png', 1693, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '<p>3CP Disinfectant Liquid Original 100ml is an anti-bacterial liquid with 21 different uses around the home to help protect the whole family. Kills 99.9%% of germs.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '3cp-disinfectant-liquid-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 (5418, '15', 'Aboniki', 1, '6.0500', '6.7600', '20.0000', 'no_image.png', 1657, NULL, '', '', '', '', '', '', '460.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5419, '16', 'Acidom 20mg Capsules', 1, '17.1500', '22.0000', '20.0000', 'download-60.jpeg', 1658, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5421, '18', 'Addyzoa Capsules 20&apos;s', 1, '58.0000', '58.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '18', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5422, '19', 'Adom W&amp;G Capsules', 1, '18.7000', '18.7000', '20.0000', 'wng.jpg', 1659, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '19', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5427, '24', 'Agbeve Tonic', 1, '13.2000', '13.2000', '20.0000', 'agbeve.jpg', 1659, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '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 (5435, '32', 'Amcof Adult Syrup', 1, '7.4000', '13.5000', '0.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '164.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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 (5439, '36', 'Amoksiklav 1g Tablet 10s', 1, '52.5200', '71.0000', '20.0000', '1000amok.jpeg', 1660, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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 (5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 1, '3.4100', '4.9200', '20.0000', 'AMOCXI.jpg', 1660, NULL, '', '', '', '', '', '', '395.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '37', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5441, '38', 'Ampicillin 250mg Capsules 50X10 Eskay', 1, '1.9000', '2.2000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '1370.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '38', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5447, '44', 'Apetamin Syrup 200ml', 1, '24.5300', '28.7000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '181.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5448, '45', 'Apetatrust 200ml Syrup', 1, '14.5000', '14.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '45', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5449, '46', 'Aptizoom Syrup 200ml', 1, '38.0000', '38.0000', '20.0000', 'aptizoom-syr.jpg', 1662, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '46', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5451, '48', 'Arfan 20/120mg', 1, '5.8600', '7.3200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '1171.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5452, '49', 'Arziglobin 200ml Syrup', 1, '8.0000', '8.0000', '20.0000', 'download-67.jpeg', 1662, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '49', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5453, '50', 'Ascoryl Syrup 125ml', 1, '8.3000', '9.2000', '20.0000', 'Ascorly-C-scaled.jpg', 1663, 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, '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 (5455, '52', 'Asmanol 100mg Tablets', 1, '16.8000', '22.0000', '20.0000', 'asmanol.jpeg', 1654, 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, '52', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5456, '53', 'Aspanol All In One Syrup', 1, '10.6000', '10.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '53', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5457, '54', 'Aspanol Productive', 1, '7.8000', '7.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '54', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5458, '55', 'Aspirin Tab 300mg', 1, '18.3200', '18.3200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '55', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5459, '56', 'Asthalex Syrup 100ml', 1, '5.9000', '10.0000', '20.0000', 'asthalex.jpg', 1664, 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, '56', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5460, '57', 'Atacand Plus 16/12.5mg', 1, '235.7300', '369.5000', '20.0000', 'atacand.jpeg', 1665, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Atacand (Candesartan) is a type of medicine called an angiotensin II receptor antagonist (or blocker). Atacand is used to treat high blood pressure, also called hypertension. Atacand is also used to treat heart failure. It may be used in combination with other medications.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57', 1, '0.0000', NULL, 6, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5461, '58', 'Atacand 8mg Tablets 28&apos;s', 1, '194.0000', '380.7000', '20.0000', '402f2cd03fc69f5bf92dc5a241c2f66d.jpg', 1665, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Atacand (Candesartan) is a type of medicine called an angiotensin II receptor antagonist (or blocker). Atacand is used to treat high blood pressure, also called hypertension. Atacand is also used to treat heart failure. It may be used in combination with other medications.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5462, '59', 'Atenolol 100mg Tablets 28s Teva', 1, '7.8000', '9.9000', '20.0000', 'no_image.png', 1665, 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, '59', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5463, '60', 'Atorvastatin 20mg Tablets 28&apos;s', 1, '10.8900', '12.4000', '20.0000', 'no_image.png', 1666, 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, '60', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5464, '61', 'Atorvastatin 10mg Tablets 28&apos;s', 1, '7.0000', '7.0000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '61', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5465, '62', 'Augmentin  625mgTablets 14&apos;s', 1, '72.6400', '130.7200', '20.0000', 'images-2.jpeg', 1660, 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, '62', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5467, '64', 'Azilex 250 Capsules 6&apos;s', 1, '14.0000', '14.0000', '20.0000', 'azilex.jpg', 1660, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '64', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6889, '82688230', 'Metronidazole 200mg (O METRO)', 1, '24.3000', '27.0000', '0.0000', 'no_image.png', 1658, 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, '82688230', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6888, '04578245', 'Metronidazole 400mg (O-Metro)', 1, '38.7000', '43.0000', '0.0000', 'f71e38391a5681610ee9fc7fd02693e1.jpg', 1678, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '<p>Metronidazole Suspension is an antibiotic that is used\r\nto treat a wide variety of infections by stopping the growth of causative\r\nbacteria or parasites. It is indicated in the prophylaxis\r\nand treatment of infections in which anaerobic bacteria have been identified or\r\nare suspected as the pathogen.</p><p>It\\\'s also used to treat skin\r\ninfections, rosacea and mouth infections, including infected gums and dental\r\nabscesses.</p>', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04578245', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5471, '68', 'Baby Cough Linctus 100ml ECL', 1, '5.3800', '7.4000', '20.0000', 'BABY-CO.jpeg', 1664, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, 'code128', NULL, '<p>Bells Baby Cough Syrup is suitable for babies from 1 month old For relief of coughs in Babies Suitable for both Day and Night use.</p>', 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-linctus-100ml-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 (5472, '69', 'Baseboom Gel', 1, '4.0000', '4.5000', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '732.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5473, '70', 'Basecold Syrup', 1, '4.5000', '5.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '937.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5476, '73', 'Borges Olive Oil 125ml', 1, '13.3000', '13.3000', '20.0000', 'borges.jpeg', 1668, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '73', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5477, '74', 'Bells Teething Mixture', 1, '24.3000', '27.5000', '20.0000', 'bells-teething.jpeg', 1654, 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, '74', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 1, '6.7000', '6.7000', '20.0000', 'Bendrofluazide-2.5mg-Tablets-28s-UK.jpeg', 1665, 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, '75', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5482, '79', 'Bioferon Syrup 200ml', 1, '24.1000', '24.1000', '20.0000', 'BIOFERON-S.jpg', 1662, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', 0, 'standard', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', NULL, '0.0000', 0, NULL, NULL, NULL, '', '', '', '', '', 1, 1, NULL, '79', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5487, '84', 'Bonaplex Syrup 250ml', 1, '17.1500', '27.0000', '20.0000', 'BONAPLEX.jpg', 1661, NULL, '', '', '', '', '', '', '152.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5497, '94', 'BX Syrup 100ml', 1, '5.6000', '9.1300', '20.0000', 'BX-SYRUP.jpeg', 1669, 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, '94', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5499, '96', 'Calcium B12 Syrup 200ml', 1, '3.8000', '4.6000', '20.0000', 'cal-b12.jpg', 1669, 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, '96', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5500, '97', 'Calpol Infant 2+Suspension 100ml', 1, '41.3100', '46.3000', '20.0000', 'calpol.jpeg', 1669, 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, '97', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5501, '98', 'Calpol 6+ Suspension 80ml', 1, '44.0800', '49.0000', '20.0000', 'cal-6.jpeg', 1654, 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, '98', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 1, '43.2000', '48.0000', '0.0000', 'no_image.png', 1690, 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, '97328996', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6882, '69020596', 'Clopidogrel Frelet 75', 1, '22.5000', '25.0000', '0.0000', 'no_image.png', 1678, 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, '69020596', 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=MyISAM 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,
  `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=MyISAM AUTO_INCREMENT=4422 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31, NULL, NULL, 4659, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 2117, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1647, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 2572, '3425', 'SOFTCARE DIAPER', NULL, '3.6300', '50.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '181.5000', '0.0000', '2022-08-14', 'received', '3.6300', '3.6300', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1691, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6, NULL, NULL, 3032, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7, NULL, NULL, 1814, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8, NULL, NULL, 2179, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9, NULL, NULL, 1670, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10, NULL, NULL, 3036, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11, NULL, NULL, 1871, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12, NULL, NULL, 2047, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1873, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1872, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15, NULL, NULL, 3035, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16, NULL, NULL, 3033, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17, NULL, NULL, 3030, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1753, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1858, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 1634, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21, NULL, NULL, 1629, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22, NULL, NULL, 3031, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23, NULL, NULL, 2048, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24, NULL, NULL, 1625, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25, NULL, NULL, 3039, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (26, NULL, NULL, 1941, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27, NULL, NULL, 2216, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 1699, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4811, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5213, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5273, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4718, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4566, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4568, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5388, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5247, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4542, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5385, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5316, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5335, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4658, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5400, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4505, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 4508, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1076, 6, NULL, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', NULL, '61.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '618.0000', '6.0000', '2022-09-09', 'received', '61.8000', '61.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6859, '1456', 'Klire Odim Capsules', NULL, '18.0000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9000.0000', '498.0000', '2022-09-09', 'received', '18.0000', '18.0000', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1075, 6, NULL, 6802, '1399', 'Allopurinol 300mg Tabs 28&apos;s', NULL, '10.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1074, 6, NULL, 6779, '1376', 'Actifed Multi Action Tabs 12&apos;s', NULL, '46.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '552.0000', '2.0000', '2022-09-09', 'received', '46.0000', '46.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1073, 6, NULL, 6752, '1349', 'Taabea Taacum', NULL, '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1072, 6, NULL, 6721, '1318', 'Robaxin 750mg Tablets 100&apos;s', NULL, '220.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '3.0000', '2022-09-09', 'received', '220.0000', '220.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1071, 6, NULL, 6705, '1302', 'Sildenafil 100mg Tablets 8&apos;s', NULL, '15.8000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '521.4000', '22.0000', '2022-09-09', 'received', '15.8000', '15.8000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1070, 6, NULL, 6704, '1301', 'Digoxin 125mg Tablets 28&apos;s', NULL, '14.9000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '387.4000', '26.0000', '2022-09-09', 'received', '14.9000', '14.9000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1069, 6, NULL, 6703, '1300', 'Carvedilol 12.5mg Tablets 28&apos;s', NULL, '12.0000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '1.0000', '2022-09-09', 'received', '12.0000', '12.0000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1068, 6, NULL, 6702, '1299', 'Carvedilol 6.25mg Tablets 28&apos;s', NULL, '8.8000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.4000', '5.0000', '2022-09-09', 'received', '8.8000', '8.8000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1067, 6, NULL, 6668, '1265', 'Arziglobin Plus 200ml Syrup', NULL, '8.9000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.8000', '0.0000', '2022-09-09', 'received', '8.9000', '8.9000', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1065, 6, NULL, 6653, '1250', 'Carvedi Denk 6.25mgTablets 3X10', NULL, '27.8000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '500.4000', '12.0000', '2022-09-09', 'received', '27.8000', '27.8000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1066, 6, NULL, 6654, '1251', 'Huichun Capsules', NULL, '22.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1760.0000', '70.0000', '2022-09-09', 'received', '22.0000', '22.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1064, 6, NULL, 6585, '1182', 'Fleming 1000mg Tablets', NULL, '46.9900', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '422.9100', '1.0000', '2022-09-09', 'received', '46.9900', '46.9900', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1063, 6, NULL, 6563, '1160', 'Polygynax Pessaries 12&apos;s', NULL, '67.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '469.0000', '5.0000', '2022-09-09', 'received', '67.0000', '67.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1061, 6, NULL, 6534, '1131', 'Vitamin B Denk', NULL, '142.0500', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4971.7500', '34.0000', '2022-09-09', 'received', '142.0500', '142.0500', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1062, 6, NULL, 6560, '1157', 'Metformin Denk 1000mg Tablets', NULL, '41.6300', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '333.0400', '8.0000', '2022-09-09', 'received', '41.6300', '41.6300', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1060, 6, NULL, 6531, '1128', 'Allacan 10 mg Tabs 30&apos;s (Cetirizine)', NULL, '9.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.5000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1059, 6, NULL, 6503, '1100', 'Procomil Tablets 30&apos;s', NULL, '50.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1058, 6, NULL, 6481, '1078', 'Ibuprofen Suspension 100ml/5ml', NULL, '23.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8000', '0.0000', '2022-09-09', 'received', '23.8000', '23.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1056, 6, NULL, 6401, '998', 'Aciclovir 400mg Tablets 56&apos;s', NULL, '37.3200', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.5600', '0.0000', '2022-09-09', 'received', '37.3200', '37.3200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '37.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1057, 6, NULL, 6474, '1071', 'Day Nurse Capsules 20&apos;s', NULL, '71.2000', '49.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3488.8000', '49.0000', '2022-09-09', 'received', '71.2000', '71.2000', '49.0000', NULL, NULL, 1, 'pc', '49.0000', NULL, NULL, NULL, NULL, '71.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1055, 6, NULL, 6323, '920', 'Polygynax Pessaries 6&apos;s', NULL, '39.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.0000', '5.0000', '2022-09-09', 'received', '39.0000', '39.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1054, 6, NULL, 6321, '918', 'Clotri Denk 100mg Pessary', NULL, '25.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '774.0000', '29.0000', '2022-09-09', 'received', '25.8000', '25.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6320, '917', 'Nifedi-Denk 20mg 100&apos;s', NULL, '63.2200', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2402.3600', '17.0000', '2022-09-09', 'received', '63.2200', '63.2200', '38.0000', NULL, NULL, 1, 'pc', '38.0000', NULL, NULL, NULL, NULL, '63.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', NULL, '33.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '2.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6269, '866', 'Glucophage 500mg Tablets 30s', NULL, '23.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '717.0000', '28.0000', '2022-09-09', 'received', '23.9000', '23.9000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '23.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6268, '865', 'Sildenafil 50mg Tablets Teva 4s', NULL, '10.6000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '795.0000', '75.0000', '2022-09-09', 'received', '10.6000', '10.6000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6211, '808', 'Contreg Syrup 30ml', NULL, '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '30.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6089, '686', 'Cebrotonin 800mg Tablets 30&apos;s', NULL, '73.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2352.0000', '28.0000', '2022-09-09', 'received', '73.5000', '73.5000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '73.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1048, 6, NULL, 6206, '803', 'Contreg Tablets 10x10', NULL, '7.8400', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '266.5600', '34.0000', '2022-09-09', 'received', '7.8400', '7.8400', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6063, '660', 'Speman Tablets', NULL, '38.5000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '885.5000', '13.0000', '2022-09-09', 'received', '38.5000', '38.5000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6057, '654', 'Liv 52 Tablets', NULL, '33.2100', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2789.6400', '77.0000', '2022-09-09', 'received', '33.2100', '33.2100', '84.0000', NULL, NULL, 1, 'pc', '84.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6054, '651', 'Confido Capsules 60&apos;s', NULL, '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '9.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 6055, '652', 'Cystone Tablets', NULL, '27.2000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '489.6000', '18.0000', '2022-09-09', 'received', '27.2000', '27.2000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5983, '580', 'Rhizin 10mg Tabs10x10', NULL, '5.9000', '94.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '554.6000', '94.0000', '2022-09-09', 'received', '5.9000', '5.9000', '94.0000', NULL, NULL, 1, 'pc', '94.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5939, '536', 'VOLLTFAST 50MG', NULL, '0.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '20.0000', '2022-09-09', 'received', '0.0000', '0.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1039, 6, NULL, 5868, '465', 'Septilin Tablet', NULL, '20.1600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '302.4000', '15.0000', '2022-09-09', 'received', '20.1600', '20.1600', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5915, '512', 'Tranexamic Acid 500mg Tablets 60&apos;s', NULL, '127.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '762.0000', '4.0000', '2022-09-09', 'received', '127.0000', '127.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '127.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1038, 6, NULL, 5849, '446', 'Rhizin Syrup', NULL, '3.1000', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '161.2000', '52.0000', '2022-09-09', 'received', '3.1000', '3.1000', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5839, '436', 'Prostacure Tea', NULL, '19.0000', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '988.0000', '52.0000', '2022-09-09', 'received', '19.0000', '19.0000', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6858, '1455', 'Klire Acielo O', NULL, '4.4000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '352.0000', '80.0000', '2022-09-09', 'received', '4.4000', '4.4000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 6460, '1057', 'Calamine Lotion 100ml Mal-Titi', NULL, '6.0000', '63.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.0000', '50.0000', '2022-09-09', 'received', '6.0000', '6.0000', '63.0000', NULL, NULL, 1, 'pc', '63.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (563, 7, NULL, 6855, '1452', 'Klire Calcium', NULL, '13.5000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.5000', '22.0000', '2022-09-09', 'received', '13.5000', '13.5000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6853, '1450', 'Mycolex Powder 50g', NULL, '23.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', NULL, '18.4800', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '295.6800', '4.0000', '2022-09-09', 'received', '18.4800', '18.4800', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6686, '1283', 'Letaplex Syrup 125ml', NULL, '2.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-09-09', 'received', '2.5000', '2.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6746, '1343', 'Livertone Tonic 200ml', NULL, '10.5600', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.3200', '12.0000', '2022-09-09', 'received', '10.5600', '10.5600', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6658, '1255', 'Feroglobin Plus Syrup 200ml', NULL, '65.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '0.0000', '2022-09-09', 'received', '65.8000', '65.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6613, '1210', 'Enterogemina 5ml  Ampoles 10&apos;s', NULL, '45.6000', '62.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2827.2000', '62.0000', '2022-09-09', 'received', '45.6000', '45.6000', '62.0000', NULL, NULL, 1, 'pc', '62.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6617, '1214', 'Babyvite 50ml Drops', NULL, '9.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '304.0000', '8.0000', '2022-09-09', 'received', '9.5000', '9.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6594, '1191', 'Malin Baby Plus', NULL, '9.1000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.3000', '23.0000', '2022-09-09', 'received', '9.1000', '9.1000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', NULL, '3.1800', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2600', '7.0000', '2022-09-09', 'received', '3.1800', '3.1800', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6589, '1186', 'Sporanox', NULL, '121.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '975.2000', '7.0000', '2022-09-09', 'received', '121.9000', '121.9000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '121.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6480, '1077', 'Furosemide 20mg Tablets 28&apos;s', NULL, '5.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '2.0000', '2022-09-09', 'received', '5.0000', '5.0000', '17.0000', NULL, NULL, 1, 'pc', '17.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (551, 7, NULL, 6560, '1157', 'Metformin Denk 1000mg Tablets', NULL, '41.6300', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '749.3400', '10.0000', '2022-09-09', 'received', '41.6300', '41.6300', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6580, '1177', 'Lipitor 20mg 30&apos;s', NULL, '328.9000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2960.1000', '6.0000', '2022-09-09', 'received', '328.9000', '328.9000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '328.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6453, '1050', 'Primolut N 5mg 30&apos;s', NULL, '50.6000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '354.2000', '0.0000', '2022-09-09', 'received', '50.6000', '50.6000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6473, '1070', 'Clomid 50mg Tablets 10&apos;s', NULL, '54.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '219.2000', '0.0000', '2022-09-09', 'received', '54.8000', '54.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '54.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (549, 7, NULL, 6474, '1071', 'Day Nurse Capsules 20&apos;s', NULL, '71.2000', '49.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3488.8000', '35.0000', '2022-09-09', 'received', '71.2000', '71.2000', '49.0000', NULL, NULL, 1, 'pc', '49.0000', NULL, NULL, NULL, NULL, '71.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (546, 7, NULL, 6438, '1035', 'Cataflam 50mg Tablets 20&apos;s', NULL, '34.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1360.0000', '36.0000', '2022-09-09', 'received', '34.0000', '34.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6429, '1026', 'Onita Syrup 200ml', NULL, '15.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.0000', '4.0000', '2022-09-09', 'received', '15.5000', '15.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6428, '1025', 'Fericon 200ml Syrup', NULL, '16.5000', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '759.0000', '29.0000', '2022-09-09', 'received', '16.5000', '16.5000', '46.0000', NULL, NULL, 1, 'pc', '46.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6424, '1021', 'Durol Tonic  Junior 200ml', NULL, '7.9300', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.8800', '16.0000', '2022-09-09', 'received', '7.9300', '7.9300', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6395, '992', 'Shaltoux Herbal Cough Syrup', NULL, '9.5500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.4000', '0.0000', '2022-09-09', 'received', '9.5500', '9.5500', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6402, '999', 'Aciclovir 200mg Tablets 25&apos;s', NULL, '18.9800', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.8600', '6.0000', '2022-09-09', 'received', '18.9800', '18.9800', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', NULL, '26.1800', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.3400', '2.0000', '2022-09-09', 'received', '26.1800', '26.1800', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6271, '868', 'Ciprinol 500mg Tablets 10s', NULL, '62.0000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2542.0000', '21.0000', '2022-09-09', 'received', '62.0000', '62.0000', '41.0000', NULL, NULL, 1, 'pc', '41.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6272, '869', 'Ferrovita B12 Syrup 200ml', NULL, '31.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6337, '934', 'Feroglobin Syrup 200ml', NULL, '49.5300', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1089.6600', '3.0000', '2022-09-09', 'received', '49.5300', '49.5300', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', NULL, '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '12.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6220, '817', 'Dynewell Syrup 200ml', NULL, '5.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '32.0000', '2022-09-09', 'received', '5.0000', '5.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (534, 7, NULL, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', NULL, '62.0000', '76.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4712.0000', '70.0000', '2022-09-09', 'received', '62.0000', '62.0000', '76.0000', NULL, NULL, 1, 'pc', '76.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6246, '843', 'Nexium 20mg Tablets 14&apos;s', NULL, '99.3000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1290.9000', '3.0000', '2022-09-09', 'received', '99.3000', '99.3000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', NULL, '5.3000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '397.5000', '75.0000', '2022-09-09', 'received', '5.3000', '5.3000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6169, '766', 'Vitamin B-Complex S yrup 125ml M &amp; G', NULL, '4.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', NULL, '5.3000', '62.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '328.6000', '62.0000', '2022-09-09', 'received', '5.3000', '5.3000', '62.0000', NULL, NULL, 1, 'pc', '62.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6098, '695', 'Klire Tablet 10&apos;s', NULL, '5.6000', '480.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2688.0000', '480.0000', '2022-09-09', 'received', '5.6000', '5.6000', '480.0000', NULL, NULL, 1, 'pc', '480.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6092, '689', 'Ferrolex Syrup 250ml', NULL, '14.9000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '596.0000', '31.0000', '2022-09-09', 'received', '14.9000', '14.9000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6065, '662', 'Ferofix Syrup 200ml', NULL, '4.9900', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9300', '0.0000', '2022-09-09', 'received', '4.9900', '4.9900', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', NULL, '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '45.0000', '2022-09-09', 'received', '6.0000', '6.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (525, 7, NULL, 6035, '632', 'Fasipro Tablets (1*10)', NULL, '7.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9600', '0.0000', '2022-09-09', 'received', '7.9900', '7.9900', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 6038, '635', 'Omega Oil Liniment 50ml', NULL, '8.6400', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1296.0000', '132.0000', '2022-09-09', 'received', '8.6400', '8.6400', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5975, '572', 'Durol Tonic 200ml', NULL, '9.1500', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.7500', '2.0000', '2022-09-09', 'received', '9.1500', '9.1500', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5962, '559', 'Zinvite Syrup 200ml', NULL, '6.9900', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '454.3500', '45.0000', '2022-09-09', 'received', '6.9900', '6.9900', '65.0000', NULL, NULL, 1, 'pc', '65.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5958, '555', 'Zincovit Syrup 200ml', NULL, '16.1000', '47.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '756.7000', '5.0000', '2022-09-09', 'received', '16.1000', '16.1000', '47.0000', NULL, NULL, 1, 'pc', '47.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5943, '540', 'WARFARIN 5MG', NULL, '0.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '9.0000', '2022-09-09', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (519, 7, NULL, 5793, '390', 'Night Nurse Capsules 10&apos;s', NULL, '47.0000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1551.0000', '27.0000', '2022-09-09', 'received', '47.0000', '47.0000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5790, '387', 'Nexium 40mg Tablets 14&apos;s', NULL, '149.2800', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2985.6000', '15.0000', '2022-09-09', 'received', '149.2800', '149.2800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '149.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (517, 7, NULL, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30&apos;s', NULL, '63.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '441.0000', '7.0000', '2022-09-09', 'received', '63.0000', '63.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '63.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (516, 7, NULL, 5742, '339', 'LYRICA 75', NULL, '311.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1558.0000', '3.0000', '2022-09-09', 'received', '311.6000', '311.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '311.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (515, 7, NULL, 5716, '313', 'Letaron 200ml Syrup', NULL, '3.6000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2022-09-09', 'received', '3.6000', '3.6000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5696, '293', 'Kidicare Srup 200ml', NULL, '14.0000', '76.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1064.0000', '43.0000', '2022-09-09', 'received', '14.0000', '14.0000', '76.0000', NULL, NULL, 1, 'pc', '76.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5683, '280', 'Infacol Drops 55ml', NULL, '49.4000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '592.8000', '12.0000', '2022-09-09', 'received', '49.4000', '49.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '4.2000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '38.0000', '2022-09-09', 'received', '4.2000', '4.2000', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5557, '154', 'Dalacin C 300mg Capsules 16&apos;s', NULL, '175.6100', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3160.9800', '18.0000', '2022-09-09', 'received', '175.6100', '175.6100', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '175.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (510, 7, NULL, 5536, '133', 'Colestop 10mg 30&apos;s (Atovastin)', NULL, '52.2000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '783.0000', '13.0000', '2022-09-09', 'received', '52.2000', '52.2000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5792, '389', 'Nifecard XL 30mg Tablets 30&apos;s ECL', NULL, '30.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '906.0000', '0.0000', '2022-09-09', 'received', '30.2000', '30.2000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '30.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1035, 6, NULL, 5765, '362', 'Metformin Denk 500mg Tablets 100&apos;s', NULL, '63.2200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1264.4000', '0.0000', '2022-09-09', 'received', '63.2200', '63.2200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '63.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5762, '359', 'Mentat Tablets', NULL, '20.7400', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.8000', '16.0000', '2022-09-09', 'received', '20.7400', '20.7400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '20.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, NULL, 5555, '152', 'Daflon 500mg Tablets 30&apos;s', NULL, '107.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '749.0000', '4.0000', '2022-09-09', 'received', '107.0000', '107.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '107.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1033, 6, NULL, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', NULL, '226.2100', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4297.9900', '4.0000', '2022-09-09', 'received', '226.2100', '226.2100', '19.0000', NULL, NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, '226.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1031, 6, NULL, 5464, '61', 'Atorvastatin 10mg Tablets 28&apos;s', NULL, '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1030, 6, NULL, 5452, '49', 'Arziglobin 200ml Syrup', NULL, '8.0000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '0.0000', '2022-09-09', 'received', '8.0000', '8.0000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 6075, '672', 'Kiss Condom Classic', NULL, '2.3000', '516.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1186.8000', '516.0000', '2022-09-09', 'received', '2.3000', '2.3000', '516.0000', NULL, NULL, 1, 'pc', '516.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5528, '125', 'Cirotamin Tonic', NULL, '11.5800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '0.0000', '2022-09-09', 'received', '11.5800', '11.5800', '5.0000', NULL, NULL, 1, 'pc', '5.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5461, '58', 'Atacand 8mg Tablets 28&apos;s', NULL, '194.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '970.0000', '4.0000', '2022-09-09', 'received', '194.0000', '194.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '194.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (508, 7, NULL, 5497, '94', 'BX Syrup 100ml', NULL, '5.6000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.4000', '24.0000', '2022-09-09', 'received', '5.6000', '5.6000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5487, '84', 'Bonaplex Syrup 250ml', NULL, '18.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.2000', '0.0000', '2022-09-09', 'received', '18.9000', '18.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 7, NULL, 5460, '57', 'Atacand Plus 16/12.5mg', NULL, '235.7300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1414.3800', '4.0000', '2022-09-09', 'received', '235.7300', '235.7300', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6713, '1310', 'Simvastatin 10mg Tablets 28&apos;s', NULL, '3.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.4000', '8.0000', '2022-09-09', 'received', '3.8000', '3.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6835, '1432', 'Eskypan 10mg (10x1x10)', NULL, '3.6000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2022-09-09', 'received', '3.6000', '3.6000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 5675, '272', 'Ideos', NULL, '65.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '455.0000', '7.0000', '2022-09-09', 'received', '65.0000', '65.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6084, '681', 'Amaryl 2mg Tablet 30&apos;s', NULL, '72.8000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '800.8000', '11.0000', '2022-09-09', 'received', '72.8000', '72.8000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '72.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (292, 8, NULL, 6479, '1076', 'Dulcolax 10mg Suppositories 12&apos;s', NULL, '39.7000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '714.6000', '18.0000', '2022-09-09', 'received', '39.7000', '39.7000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6588, '1185', 'Motilium Tablets 30&apos;s', NULL, '41.4000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '496.8000', '12.0000', '2022-09-09', 'received', '41.4000', '41.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '41.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (294, 8, NULL, 6440, '1037', 'Diamicron 60mg MR Tablets 30&apos;s', NULL, '88.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '880.0000', '10.0000', '2022-09-09', 'received', '88.0000', '88.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6016, '613', 'Sirdalud 4mg Tablets 30&apos;s', NULL, '92.1000', '43.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3960.3000', '43.0000', '2022-09-09', 'received', '92.1000', '92.1000', '43.0000', NULL, NULL, 1, 'pc', '43.0000', NULL, NULL, NULL, NULL, '92.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6325, '922', 'Xylo Acino 0.1% Nasal Spray', NULL, '55.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '495.0000', '9.0000', '2022-09-09', 'received', '55.0000', '55.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6784, '1381', 'Ashton and Parsons Teething Gel 10ml', NULL, '58.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1044.0000', '18.0000', '2022-09-09', 'received', '58.0000', '58.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6760, '1357', 'Tramadol Denk 50 Tabs B/10', NULL, '45.4900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '272.9400', '6.0000', '2022-09-09', 'received', '45.4900', '45.4900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '45.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6800, '1397', 'Simvastatin 20mg Tabs 28&apos;s', NULL, '5.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '9.0000', '2022-09-09', 'received', '5.5000', '5.5000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 8, NULL, 6801, '1398', 'Simvastatin 40mg Tabs 28&apos;s', NULL, '6.2000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '9.0000', '2022-09-09', 'received', '6.2000', '6.2000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6801, '1398', 'Simvastatin 40mg Tabs 28&apos;s', NULL, '6.2000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '9.0000', '2022-09-09', 'received', '6.2000', '6.2000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6800, '1397', 'Simvastatin 20mg Tabs 28&apos;s', NULL, '5.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '7.0000', '2022-09-09', 'received', '5.5000', '5.5000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6784, '1381', 'Ashton and Parsons Teething Gel 10ml', NULL, '58.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1044.0000', '17.0000', '2022-09-09', 'received', '58.0000', '58.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6760, '1357', 'Tramadol Denk 50 Tabs B/10', NULL, '45.4900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '272.9400', '6.0000', '2022-09-09', 'received', '45.4900', '45.4900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '45.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6713, '1310', 'Simvastatin 10mg Tablets 28&apos;s', NULL, '3.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.4000', '8.0000', '2022-09-09', 'received', '3.8000', '3.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6588, '1185', 'Motilium Tablets 30&apos;s', NULL, '41.4000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '496.8000', '11.0000', '2022-09-09', 'received', '41.4000', '41.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '41.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (319, 9, NULL, 6479, '1076', 'Dulcolax 10mg Suppositories 12&apos;s', NULL, '39.7000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '714.6000', '14.0000', '2022-09-09', 'received', '39.7000', '39.7000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6440, '1037', 'Diamicron 60mg MR Tablets 30&apos;s', NULL, '88.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '880.0000', '4.0000', '2022-09-09', 'received', '88.0000', '88.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6325, '922', 'Xylo Acino 0.1% Nasal Spray', NULL, '55.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '495.0000', '9.0000', '2022-09-09', 'received', '55.0000', '55.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6084, '681', 'Amaryl 2mg Tablet 30&apos;s', NULL, '72.8000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '800.8000', '11.0000', '2022-09-09', 'received', '72.8000', '72.8000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '72.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (315, 9, NULL, 6016, '613', 'Sirdalud 4mg Tablets 30&apos;s', NULL, '92.1000', '43.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3960.3000', '43.0000', '2022-09-09', 'received', '92.1000', '92.1000', '43.0000', NULL, NULL, 1, 'pc', '43.0000', NULL, NULL, NULL, NULL, '92.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 5675, '272', 'Ideos', NULL, '65.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '455.0000', '4.0000', '2022-09-09', 'received', '65.0000', '65.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 6835, '1432', 'Eskypan 10mg (10x1x10)', NULL, '3.6000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2022-09-09', 'received', '3.6000', '3.6000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 9, NULL, 5570, '167', 'Diclo Denk 100mg Tablet 10x10', NULL, '148.0500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '296.1000', '0.0000', '2022-09-09', 'received', '148.0500', '148.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '148.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 6076, '673', 'Kiss Condom Strawberry', NULL, '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '12.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 5809, '406', 'Osons Cod Liver Capsules', NULL, '15.1000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '664.4000', '35.0000', '2022-09-09', 'received', '15.1000', '15.1000', '44.0000', NULL, NULL, 1, 'pc', '44.0000', NULL, NULL, NULL, NULL, '15.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 6148, '745', 'Tobin&apos;s Cod Liver Oil 10X10', NULL, '24.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '364.5000', '3.0000', '2022-09-09', 'received', '24.3000', '24.3000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '24.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (392, 10, NULL, 5634, '231', 'Garlic Pearls Osons', NULL, '7.1000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.8000', '31.0000', '2022-09-09', 'received', '7.1000', '7.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 6402, '999', 'Aciclovir 200mg Tablets 25&apos;s', NULL, '18.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9800', '0.0000', '2022-09-09', 'received', '18.9800', '18.9800', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 5815, '412', 'PARA DENK250 SUPPO', NULL, '0.0000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '39.0000', '2022-09-09', 'received', '0.0000', '0.0000', '41.0000', NULL, NULL, 1, 'pc', '41.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (395, 10, NULL, 6380, '977', 'Cafaprin Tablets', NULL, '13.1400', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '262.8000', '20.0000', '2022-09-09', 'received', '13.1400', '13.1400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 10, NULL, 6758, '1355', 'Acyclovir Denk 200mg tabs 25&apos;s', NULL, '54.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.2500', '5.0000', '2022-09-09', 'received', '54.2500', '54.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '54.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 11, NULL, 5557, '154', 'Dalacin C 300mg Capsules 16&apos;s', NULL, '175.6100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1756.1000', '1.0000', '2022-09-09', 'received', '175.6100', '175.6100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '175.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (566, 11, NULL, 6086, '683', 'Amedin 10mg Tablets 28&apos;s', NULL, '10.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '9.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (567, 11, NULL, 6336, '933', 'Gericare Capsules 30&apos;s', NULL, '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (568, 11, NULL, 6015, '612', 'Sirdalud 2mg Tablets 30&apos;s', NULL, '43.7000', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1835.4000', '37.0000', '2022-09-09', 'received', '43.7000', '43.7000', '42.0000', NULL, NULL, 1, 'pc', '42.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (569, 12, NULL, 6586, '1183', 'Gyno-Daktarin Cream', NULL, '62.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1125.0000', '18.0000', '2022-09-09', 'received', '62.5000', '62.5000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '62.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (570, 12, NULL, 6733, '1330', 'Sudafed Mucus Relief Tablets 16&apos;s', NULL, '42.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '252.0000', '6.0000', '2022-09-09', 'received', '42.0000', '42.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (571, 12, NULL, 5573, '170', 'Diclolex 100mg Tablets 10X10', NULL, '18.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1440.0000', '80.0000', '2022-09-09', 'received', '18.0000', '18.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (572, 12, NULL, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', NULL, '17.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '289.0000', '17.0000', '2022-09-09', 'received', '17.0000', '17.0000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (573, 12, NULL, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30&apos;s', NULL, '63.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '441.0000', '7.0000', '2022-09-09', 'received', '63.0000', '63.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '63.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (574, 12, NULL, 6736, '1333', 'Sudafed Head &amp; Congestion Max Strength', NULL, '38.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.8000', '0.0000', '2022-09-09', 'received', '38.2000', '38.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (575, 13, NULL, 6330, '927', 'Orelox 100mg Tablets 10&apos;s', NULL, '67.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '679.0000', '10.0000', '2022-09-09', 'received', '67.9000', '67.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6780, '1377', 'Myfenax Mycophenolate Mofetil Tabs 500mg 50&apos;s', NULL, '90.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '908.0000', '10.0000', '2022-09-09', 'received', '90.8000', '90.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6552, '1149', 'Zithromax 250mg Capsules 6&apos;s', NULL, '186.8000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4670.0000', '9.0000', '2022-09-09', 'received', '186.8000', '186.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (578, 13, NULL, 6513, '1110', 'Vagid CL Suppositories', NULL, '14.0000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '266.0000', '12.0000', '2022-09-09', 'received', '14.0000', '14.0000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (579, 13, NULL, 5784, '381', 'Naprox EC 500mg Tablets 100&apos;s', NULL, '78.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '546.0000', '6.0000', '2022-09-09', 'received', '78.0000', '78.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '78.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (580, 13, NULL, 6521, '1118', 'Diabetone Capsules 30&apos;s UK', NULL, '42.2300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '253.3800', '6.0000', '2022-09-09', 'received', '42.2300', '42.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '42.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6444, '1041', 'Stugeron Tablets 50&apos;s', NULL, '25.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.4000', '5.0000', '2022-09-09', 'received', '25.8000', '25.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6253, '850', 'Exforge 10/160mg Tablets 28s', NULL, '168.6000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2023.2000', '6.0000', '2022-09-09', 'received', '168.6000', '168.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '168.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (583, 13, NULL, 6757, '1354', 'HCT Exforge 5/160/12.5mg 28&apos;s', NULL, '158.4000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1267.2000', '7.0000', '2022-09-09', 'received', '158.4000', '158.4000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '158.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (584, 13, NULL, 6737, '1334', 'Sudafed Sinus Ease Spray 0.1%', NULL, '40.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '405.0000', '10.0000', '2022-09-09', 'received', '40.5000', '40.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 5556, '153', 'Daktarin Cream 15g', NULL, '30.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '600.0000', '4.0000', '2022-09-09', 'received', '30.0000', '30.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 5795, '392', 'Nizoral Cream 15gm', NULL, '35.3000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1694.4000', '28.0000', '2022-09-09', 'received', '35.3000', '35.3000', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '35.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (587, 13, NULL, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', NULL, '10.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-09-09', 'received', '10.0000', '10.0000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (588, 13, NULL, 6364, '961', 'Daktacort Cream 15g', NULL, '35.9000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '825.7000', '23.0000', '2022-09-09', 'received', '35.9000', '35.9000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6561, '1158', 'Olfen Gel 50gm', NULL, '25.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '525.0000', '17.0000', '2022-09-09', 'received', '25.0000', '25.0000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 6688, '1285', 'Travatan Eye Drops 2.5ml', NULL, '80.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.8000', '1.0000', '2022-09-09', 'received', '80.8000', '80.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '80.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (591, 13, NULL, 6722, '1319', 'Keppra 1000mg Tablets', NULL, '252.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1008.0000', '4.0000', '2022-09-09', 'received', '252.0000', '252.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '252.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (592, 13, NULL, 6644, '1241', 'Secnidazole 1g Tablets 2&apos;s (Lavina)', NULL, '4.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.6000', '1.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 13, NULL, 5513, '110', 'Celebrex', NULL, '94.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.0400', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6811, '1408', 'Spironolactone 100mg Tab NorthStar', NULL, '23.0000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '667.0000', '26.0000', '2022-09-09', 'received', '23.0000', '23.0000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6782, '1379', 'Propranolol 10mg Tabs 28&apos;s', NULL, '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '10.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6633, '1230', 'Vit Bco Strong 30&apos;s Krka', NULL, '32.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '352.0000', '2.0000', '2022-09-09', 'received', '32.0000', '32.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6327, '924', 'Flagentyl 500mg Tablets 4&apos;s secnidazole', NULL, '28.6000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '829.4000', '0.0000', '2022-09-09', 'received', '28.6000', '28.6000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6122, '719', 'Ventolin Inhaler 100 micrograms', NULL, '47.2000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1321.6000', '2.0000', '2022-09-09', 'received', '47.2000', '47.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 14, NULL, 6118, '715', 'Norvasc Amlodipine Besylate  5mg Tablets pfizer30&apos;s', NULL, '172.8000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1209.6000', '3.0000', '2022-09-09', 'received', '172.8000', '172.8000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '172.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (646, 14, NULL, 5780, '377', 'Mycovin Tabs 500mg 250\'', NULL, '198.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2022-09-09', 'received', '198.0000', '198.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '198.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (645, 14, NULL, 5470, '67', 'B COMPLEX TAB LOCAL Letap', NULL, '0.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '1.0000', '2022-09-09', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (644, 15, NULL, 6804, '1401', 'Buscopan Org.Tabs10mg 56&apos;s', NULL, '54.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.7000', '0.0000', '2022-09-09', 'received', '54.9000', '54.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '54.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 15, NULL, 6709, '1306', 'Ramipril 2.5mg Tablets 28&apos;s Teva', NULL, '4.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 15, NULL, 6489, '1086', 'Levothyroxin 50mg Tablets 28&apos;s NorthStar', NULL, '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 15, NULL, 6330, '927', 'Orelox 100mg Tablets 10&apos;s', NULL, '67.9000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '475.3000', '7.0000', '2022-09-09', 'received', '67.9000', '67.9000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 15, NULL, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30&apos;s', NULL, '63.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '567.0000', '0.0000', '2022-09-09', 'received', '63.0000', '63.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '63.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (607, 16, NULL, 6513, '1110', 'Vagid CL Suppositories', NULL, '14.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (996, 17, NULL, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', NULL, '8.4000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '604.8000', '54.0000', '2022-09-09', 'received', '8.4000', '8.4000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (997, 17, NULL, 6655, '1252', 'Mayfer Syrup 200ml', NULL, '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '5.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (998, 17, NULL, 6659, '1256', 'Jointace Omega-3 Capsules 30&apos;s', NULL, '63.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.0000', '4.0000', '2022-09-09', 'received', '63.0000', '63.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '63.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (999, 17, NULL, 6666, '1263', 'Examination Gloves', NULL, '50.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '8.0000', '2022-09-09', 'received', '50.0000', '50.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1000, 17, NULL, 6671, '1268', 'Kofof Baby', NULL, '7.1500', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.7500', '25.0000', '2022-09-09', 'received', '7.1500', '7.1500', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1001, 17, NULL, 6672, '1269', 'Kofof Child Expectorant 100ml', NULL, '4.9500', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '10.0000', '2022-09-09', 'received', '4.9500', '4.9500', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1002, 17, NULL, 6683, '1280', 'Liverplex B 200ml', NULL, '8.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1003, 17, NULL, 6694, '1291', 'Prowoman 50+ Capsules 30&apos;s ', NULL, '52.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '422.4000', '2.0000', '2022-09-09', 'received', '52.8000', '52.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1004, 17, NULL, 6719, '1316', 'Glucose and Chondriton 400mg Tab. Valupak 30&apos;s', NULL, '17.4000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.4000', '9.0000', '2022-09-09', 'received', '17.4000', '17.4000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1005, 17, NULL, 6720, '1317', 'B Complex Tablets 60&apos;s Valupak Vitamin', NULL, '9.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1006, 17, NULL, 6726, '1323', 'Morgan&apos;s Auntibactirial Soap', NULL, '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1007, 17, NULL, 6731, '1328', 'Corsodyl Mint 500ml', NULL, '43.1000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '387.9000', '8.0000', '2022-09-09', 'received', '43.1000', '43.1000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1008, 17, NULL, 6753, '1350', 'COA Mixture', NULL, '85.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '935.0000', '11.0000', '2022-09-09', 'received', '85.0000', '85.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1009, 17, NULL, 6755, '1352', 'Salo Simple Linctus', NULL, '5.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1010, 17, NULL, 6762, '1359', 'Femacure X', NULL, '13.8000', '71.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '979.8000', '71.0000', '2022-09-09', 'received', '13.8000', '13.8000', '71.0000', NULL, NULL, 1, 'pc', '71.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', NULL, '59.0000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3304.0000', '22.0000', '2022-09-09', 'received', '59.0000', '59.0000', '56.0000', NULL, NULL, 1, 'pc', '56.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6766, '1363', 'Kidivit Syrup 100ML', NULL, '6.0000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '23.0000', '2022-09-09', 'received', '6.0000', '6.0000', '23.0000', NULL, NULL, 1, 'pc', '23.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1013, 17, NULL, 6788, '1385', 'Fun Time Stim. Joy Ring', NULL, '20.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.0000', '10.0000', '2022-09-09', 'received', '20.6000', '20.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6796, '1393', 'H/AID Vitamin D3 5000IU Caps 30&apos;s', NULL, '58.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '353.4000', '6.0000', '2022-09-09', 'received', '58.9000', '58.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6797, '1394', 'H/Aid Zinc Gluconate Caps 70mg', NULL, '43.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.8000', '4.0000', '2022-09-09', 'received', '43.7000', '43.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6808, '1405', 'Valupak  Vit C Chewable', NULL, '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 6810, '1407', 'Valupak Vit E 400iu', NULL, '30.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '15.0000', '2022-09-09', 'received', '30.0000', '30.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1018, 17, NULL, 6845, '1442', 'Robb Ointment', NULL, '34.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.5000', '5.0000', '2022-09-09', 'received', '34.1000', '34.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1019, 17, NULL, 6854, '1451', 'Luex Baby Powder 200g', NULL, '6.0000', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '34.0000', '2022-09-09', 'received', '6.0000', '6.0000', '34.0000', NULL, NULL, 1, 'pc', '34.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1020, 17, NULL, 6856, '1453', 'Klire Ibupofen', NULL, '14.4000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '25.0000', '2022-09-09', 'received', '14.4000', '14.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1021, 17, NULL, 6857, '1454', 'Klire Zofu', NULL, '11.8000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '295.0000', '20.0000', '2022-09-09', 'received', '11.8000', '11.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1022, 17, NULL, 6861, '52042899', 'Prowoman Plus Caps ', NULL, '74.6800', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '896.1600', '11.0000', '2022-09-09', 'received', '74.6800', '74.6800', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1025, 17, NULL, 6864, '98367406', 'Fiesta Condom Strawberry ', NULL, '3.5000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '14.0000', '2022-09-09', 'received', '3.5000', '3.5000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1024, 17, NULL, 6863, '59208125', 'Fiesta Condom Extra Thin', NULL, '3.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1023, 17, NULL, 6862, '03174833', 'Promethazine Syrup 60ml ECL', NULL, '3.5000', '96.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '94.0000', '2022-09-09', 'received', '3.5000', '3.5000', '96.0000', NULL, NULL, 1, 'pc', '96.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 5577, '174', 'Diflucan 150mg Capsules 1&apos;s', NULL, '81.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.6000', '0.0000', '2022-09-09', 'received', '81.2000', '81.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 6737, '1334', 'Sudafed Sinus Ease Spray 0.1%', NULL, '40.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-09-09', 'received', '40.5000', '40.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', NULL, '33.0200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0800', '0.0000', '2022-09-09', 'received', '33.0200', '33.0200', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 6486, '1083', 'Contiflo XL 400mcg Capsules 30&apos;s', NULL, '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 6325, '922', 'Xylo Acino 0.1% Nasal Spray', NULL, '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 5795, '392', 'Nizoral Cream 15gm', NULL, '35.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.3000', '0.0000', '2022-09-09', 'received', '35.3000', '35.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (659, 18, NULL, 6364, '961', 'Daktacort Cream 15g', NULL, '35.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9000', '0.0000', '2022-09-09', 'received', '35.9000', '35.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 18, NULL, 5525, '122', 'Cipro-Denk 500mg Tablet', NULL, '41.6800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6800', '0.0000', '2022-09-09', 'received', '41.6800', '41.6800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '41.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (661, 18, NULL, 6084, '681', 'Amaryl 2mg Tablet 30&apos;s', NULL, '72.8000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '946.4000', '8.0000', '2022-09-09', 'received', '72.8000', '72.8000', '13.0000', NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, '72.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (662, 18, NULL, 6513, '1110', 'Vagid CL Suppositories', NULL, '14.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.0000', '0.0000', '2022-09-09', 'received', '14.0000', '14.0000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 19, NULL, 5813, '410', 'Paingay Gel 30g', NULL, '4.9000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.5000', '16.0000', '2022-09-09', 'received', '4.9000', '4.9000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 19, NULL, 6145, '742', 'Blopen Gel 30g', NULL, '4.5000', '66.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.0000', '49.0000', '2022-09-09', 'received', '4.5000', '4.5000', '66.0000', NULL, NULL, 1, 'pc', '66.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 19, NULL, 5695, '292', 'Ketazol Cream 30g', NULL, '5.2000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8000', '0.0000', '2022-09-09', 'received', '5.2000', '5.2000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 19, NULL, 6579, '1176', 'Deep Freez Gel 35g', NULL, '35.5400', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '639.7200', '12.0000', '2022-09-09', 'received', '35.5400', '35.5400', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (995, 17, NULL, 6631, '1228', 'Diphex Bronchodilator Cough Syrup 100ml', NULL, '7.7000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '223.3000', '20.0000', '2022-09-09', 'received', '7.7000', '7.7000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (994, 17, NULL, 6628, '1225', 'Multivitamin Syrup 125ml Ayrton', NULL, '5.4000', '51.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '275.4000', '39.0000', '2022-09-09', 'received', '5.4000', '5.4000', '51.0000', NULL, NULL, 1, 'pc', '51.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (993, 17, NULL, 6624, '1221', 'Healthlink Glucosamine &amp; Chodroitin Caplet', NULL, '54.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '1.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (992, 17, NULL, 6622, '1219', 'Health Link Hair, Nails &amp; Skin', NULL, '43.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '1.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (991, 17, NULL, 6582, '1179', 'Adom Ladies Capsules', NULL, '15.4000', '86.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1324.4000', '86.0000', '2022-09-09', 'received', '15.4000', '15.4000', '86.0000', NULL, NULL, 1, 'pc', '86.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (990, 17, NULL, 6578, '1175', '3TOL 250ml Anticeptic &amp; Disinfectant', NULL, '4.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '15.0000', '2022-09-09', 'received', '4.5000', '4.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (989, 17, NULL, 6575, '1172', '3TOL 500ML Anticeptic &amp; Disinfectant', NULL, '9.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.0000', '18.0000', '2022-09-09', 'received', '9.5000', '9.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (988, 17, NULL, 6574, '1171', 'Mucolex Cough Syrup150ml', NULL, '18.0000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '666.0000', '32.0000', '2022-09-09', 'received', '18.0000', '18.0000', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (986, 17, NULL, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', NULL, '17.0000', '47.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '799.0000', '47.0000', '2022-09-09', 'received', '17.0000', '17.0000', '47.0000', NULL, NULL, 1, 'pc', '47.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (987, 17, NULL, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', NULL, '21.4000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-09', 'received', '21.4000', '21.4000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '21.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (985, 17, NULL, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', NULL, '15.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '18.0000', '2022-09-09', 'received', '15.0000', '15.0000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (984, 17, NULL, 6559, '1156', 'Perfectil Capsules 30&apos;s', NULL, '66.2000', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1787.4000', '8.0000', '2022-09-09', 'received', '66.2000', '66.2000', '27.0000', NULL, NULL, 1, 'pc', '27.0000', NULL, NULL, NULL, NULL, '66.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (983, 17, NULL, 6558, '1155', 'Zulu MR 100mg Tablet', NULL, '5.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2022-09-09', 'received', '5.5000', '5.5000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (982, 17, NULL, 6554, '1151', 'Man Up Capsules 60&apos;s', NULL, '130.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (980, 17, NULL, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', NULL, '7.6000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '18.0000', '2022-09-09', 'received', '7.6000', '7.6000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (981, 17, NULL, 6545, '1142', 'Immunocin Capsules 30&apos;s', NULL, '43.8000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '394.2000', '9.0000', '2022-09-09', 'received', '43.8000', '43.8000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '43.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (979, 17, NULL, 6525, '1122', 'Pregnacare Breastfeeding Cap', NULL, '106.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2665.0000', '25.0000', '2022-09-09', 'received', '106.6000', '106.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (978, 17, NULL, 6524, '1121', 'Perfectil Plus Caps', NULL, '170.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '510.0000', '1.0000', '2022-09-09', 'received', '170.0000', '170.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (977, 17, NULL, 6523, '1120', 'Neurozan 30\'8 Caps', NULL, '131.5700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '394.7100', '2.0000', '2022-09-09', 'received', '131.5700', '131.5700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '131.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (976, 17, NULL, 6522, '1119', 'Menopace Tabs UK', NULL, '49.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4000', '0.0000', '2022-09-09', 'received', '49.7000', '49.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (975, 17, NULL, 6519, '1116', 'Wellwoman Max Caps 28 tabs', NULL, '120.3600', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1564.6800', '4.0000', '2022-09-09', 'received', '120.3600', '120.3600', '13.0000', NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, '120.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (974, 17, NULL, 6518, '1115', 'Wellwoman 70+ Capsules 30&apos;s', NULL, '61.2000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1897.2000', '27.0000', '2022-09-09', 'received', '61.2000', '61.2000', '31.0000', NULL, NULL, 1, 'pc', '31.0000', NULL, NULL, NULL, NULL, '61.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (973, 17, NULL, 6508, '1105', 'Alpha Garlic Capsules', NULL, '13.3000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '438.9000', '0.0000', '2022-09-09', 'received', '13.3000', '13.3000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (972, 17, NULL, 6494, '1091', 'Livomyn Tablets 20&apos;s', NULL, '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (971, 17, NULL, 6493, '1090', 'Evanova Capsules 20&apos;s', NULL, '38.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '380.0000', '10.0000', '2022-09-09', 'received', '38.0000', '38.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (970, 17, NULL, 6485, '1082', 'Seven Seas JointCare Active 30&apos;s', NULL, '109.9000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1538.6000', '13.0000', '2022-09-09', 'received', '109.9000', '109.9000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (969, 17, NULL, 6484, '1081', 'Seven Seas JointCare Suplex 30&apos;s', NULL, '59.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '598.0000', '8.0000', '2022-09-09', 'received', '59.8000', '59.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (968, 17, NULL, 6475, '1072', 'Hyponidd Tablets 20&apos;s', NULL, '33.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '4.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (967, 17, NULL, 6470, '1067', 'Vigomax Forte Tablets 20&apos;s', NULL, '38.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '760.0000', '20.0000', '2022-09-09', 'received', '38.0000', '38.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (966, 17, NULL, 6459, '1056', 'Infa V Ointment', NULL, '20.9000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '940.5000', '26.0000', '2022-09-09', 'received', '20.9000', '20.9000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (965, 17, NULL, 6439, '1036', 'Cororange Syrup 200ml', NULL, '10.2000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.8000', '0.0000', '2022-09-09', 'received', '10.2000', '10.2000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (964, 17, NULL, 6426, '1023', 'Koffex Junior Cough Syr 125ml', NULL, '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '5.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (963, 17, NULL, 6419, '1016', 'Menthox Child Cough Syrup 125ml', NULL, '4.6700', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.1100', '33.0000', '2022-09-09', 'received', '4.6700', '4.6700', '33.0000', NULL, NULL, 1, 'pc', '33.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (962, 17, NULL, 6416, '1013', 'Stopkof Dry Cough Syrup 100ml', NULL, '8.5000', '76.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '646.0000', '60.0000', '2022-09-09', 'received', '8.5000', '8.5000', '76.0000', NULL, NULL, 1, 'pc', '76.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (961, 17, NULL, 6389, '986', 'Salocold Syrup', NULL, '7.4000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '244.2000', '0.0000', '2022-09-09', 'received', '7.4000', '7.4000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (960, 17, NULL, 6382, '979', 'Child Care Cough &amp; Cold 125ml Syrup', NULL, '4.1000', '63.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.3000', '63.0000', '2022-09-09', 'received', '4.1000', '4.1000', '63.0000', NULL, NULL, 1, 'pc', '63.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (959, 17, NULL, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', NULL, '26.5000', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '901.0000', '34.0000', '2022-09-09', 'received', '26.5000', '26.5000', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (958, 17, NULL, 6344, '941', 'Perfectil platinum 60&apos;s', NULL, '220.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '0.0000', '2022-09-09', 'received', '220.0000', '220.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (957, 17, NULL, 6342, '939', 'Wellman 70+ Tablets 30&apos;s', NULL, '58.1000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '871.5000', '8.0000', '2022-09-09', 'received', '58.1000', '58.1000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (956, 17, NULL, 6341, '938', 'Wellman 50+ Tablets', NULL, '62.3000', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2180.5000', '30.0000', '2022-09-09', 'received', '62.3000', '62.3000', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (955, 17, NULL, 6340, '937', 'Pregnacare Conception Tablets', NULL, '60.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '482.4000', '0.0000', '2022-09-09', 'received', '60.3000', '60.3000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (954, 17, NULL, 6339, '936', 'Pregnacare Tablets 19&apos;s', NULL, '60.3000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '844.2000', '0.0000', '2022-09-09', 'received', '60.3000', '60.3000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (953, 17, NULL, 6286, '883', 'Kidivite Syrup 200ml', NULL, '9.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '1.0000', '2022-09-09', 'received', '9.6000', '9.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (951, 17, NULL, 6241, '838', 'Multivitamin Tablets 50x10 Ecl', NULL, '13.2000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '224.4000', '15.0000', '2022-09-09', 'received', '13.2000', '13.2000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (952, 17, NULL, 6254, '851', 'Extraflex Glucosamine Chondroitin Capsules 30s', NULL, '36.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.6000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6104, '701', 'Histergan Cream 25g', NULL, '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '10.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6033, '630', 'Deep Heat Rub 35g', NULL, '31.4000', '92.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2888.8000', '92.0000', '2022-09-09', 'received', '31.4000', '31.4000', '92.0000', NULL, NULL, 1, 'pc', '92.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6183, '780', 'Leopard Balm 30g', NULL, '5.7500', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1150.0000', '178.0000', '2022-09-09', 'received', '5.7500', '5.7500', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6214, '811', 'Rufenac Gel 30g', NULL, '2.8000', '153.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '428.4000', '109.0000', '2022-09-09', 'received', '2.8000', '2.8000', '153.0000', NULL, NULL, 1, 'pc', '153.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 5777, '374', 'Mycocort Cream 20g', NULL, '24.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '504.0000', '14.0000', '2022-09-09', 'received', '24.0000', '24.0000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6023, '620', 'Closol Cream', NULL, '3.0000', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '25.0000', '2022-09-09', 'received', '3.0000', '3.0000', '27.0000', NULL, NULL, 1, 'pc', '27.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6173, '770', 'Betasol Cream 30g', NULL, '3.1500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '10.0000', '2022-09-09', 'received', '3.1500', '3.1500', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', NULL, '7.5000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '19.0000', '2022-09-09', 'received', '7.5000', '7.5000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6047, '644', 'Candid B Cream 15mg', NULL, '8.7000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '261.0000', '30.0000', '2022-09-09', 'received', '8.7000', '8.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6472, '1069', 'Canesten 20mg Cream', NULL, '28.0000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '532.0000', '13.0000', '2022-09-09', 'received', '28.0000', '28.0000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6535, '1132', 'Clotrimazole Cream 0.01 20g', NULL, '3.2800', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.6000', '20.0000', '2022-09-09', 'received', '3.2800', '3.2800', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6052, '649', 'Candiderm Cream-Triple Action Cream 15mg', NULL, '8.8000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '255.2000', '19.0000', '2022-09-09', 'received', '8.8000', '8.8000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6176, '773', 'Gogynax Cream 30g', NULL, '4.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6048, '645', 'Candid V1-Clotrimazole 500mg Pessary 1&apos;s', NULL, '7.2300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '5.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 5778, '375', 'Mycolex 3 Cream 30gm', NULL, '16.9000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.8000', '12.0000', '2022-09-09', 'received', '16.9000', '16.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6391, '988', 'Vaginax-100 Tablets 6&apos;s', NULL, '3.3200', '106.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.9200', '9.0000', '2022-09-09', 'received', '3.3200', '3.3200', '106.0000', NULL, NULL, 1, 'pc', '106.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6414, '1011', 'Infa V Wash 50ml', NULL, '9.9000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '306.9000', '23.0000', '2022-09-09', 'received', '9.9000', '9.9000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6411, '1008', 'Infa V Wash 100ml', NULL, '17.6000', '73.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1284.8000', '61.0000', '2022-09-09', 'received', '17.6000', '17.6000', '73.0000', NULL, NULL, 1, 'pc', '73.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6458, '1055', 'Infa V Pessaries', NULL, '22.9000', '123.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2816.7000', '89.0000', '2022-09-09', 'received', '22.9000', '22.9000', '123.0000', NULL, NULL, 1, 'pc', '123.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 6604, '1201', 'Eskyzole Triple Action Cream 30g', NULL, '5.5000', '526.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2893.0000', '406.0000', '2022-09-09', 'received', '5.5000', '5.5000', '526.0000', NULL, NULL, 1, 'pc', '526.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 5589, '186', 'Drez Powder 10g', NULL, '9.4000', '166.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1560.4000', '166.0000', '2022-09-09', 'received', '9.4000', '9.4000', '166.0000', NULL, NULL, 1, 'pc', '166.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 20, NULL, 5588, '185', 'Drez Ointment 30mg', NULL, '14.9600', '142.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2124.3200', '139.0000', '2022-09-09', 'received', '14.9600', '14.9600', '142.0000', NULL, NULL, 1, 'pc', '142.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (769, 20, NULL, 6131, '728', 'Drez Solution 100ml', NULL, '18.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '10.0000', '2022-09-09', 'received', '18.0000', '18.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (770, 20, NULL, 6538, '1135', 'Drez Solution 30ml', NULL, '10.3000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '412.0000', '33.0000', '2022-09-09', 'received', '10.3000', '10.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (771, 20, NULL, 5587, '184', 'Drez Ointment 10g', NULL, '8.8000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.4000', '28.0000', '2022-09-09', 'received', '8.8000', '8.8000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (772, 20, NULL, 6138, '735', 'Drez V Gel 30g', NULL, '17.5000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '577.5000', '26.0000', '2022-09-09', 'received', '17.5000', '17.5000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (773, 21, NULL, 5762, '359', 'Mentat Tablets', NULL, '20.7400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.9600', '0.0000', '2022-09-09', 'received', '20.7400', '20.7400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (950, 17, NULL, 6236, '833', 'B Complex Tablets 50X10 ECL', NULL, '9.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '5.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (949, 17, NULL, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', NULL, '4.9800', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.4200', '12.0000', '2022-09-09', 'received', '4.9800', '4.9800', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (948, 17, NULL, 6227, '824', 'Promecine Syrup 125ml', NULL, '2.8400', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0800', '37.0000', '2022-09-09', 'received', '2.8400', '2.8400', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (947, 17, NULL, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', NULL, '13.5800', '69.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '937.0200', '65.0000', '2022-09-09', 'received', '13.5800', '13.5800', '69.0000', NULL, NULL, 1, 'pc', '69.0000', NULL, NULL, NULL, NULL, '13.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (946, 17, NULL, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', NULL, '2.8800', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-09', 'received', '2.8800', '2.8800', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (945, 17, NULL, 6184, '781', 'Magnavit Capsules 30&apos;s', NULL, '7.8500', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '345.4000', '20.0000', '2022-09-09', 'received', '7.8500', '7.8500', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (944, 17, NULL, 6168, '765', 'Vitaglobin 200ml Syrup M &amp; G', NULL, '8.4000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.2000', '18.0000', '2022-09-09', 'received', '8.4000', '8.4000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (943, 17, NULL, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', NULL, '11.2000', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '302.4000', '27.0000', '2022-09-09', 'received', '11.2000', '11.2000', '27.0000', NULL, NULL, 1, 'pc', '27.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (942, 17, NULL, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', NULL, '4.3500', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.5500', '13.0000', '2022-09-09', 'received', '4.3500', '4.3500', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (941, 17, NULL, 6106, '703', 'Lexocap 20x10', NULL, '1.5000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-09-09', 'received', '1.5000', '1.5000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (940, 17, NULL, 6100, '697', 'Haem Up Syrup 200ml', NULL, '18.0000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.0000', '7.0000', '2022-09-09', 'received', '18.0000', '18.0000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (939, 17, NULL, 6079, '676', 'Araba Ba Zhen Tablets', NULL, '19.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '3.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (938, 17, NULL, 6042, '639', 'Vitane Drops 30ml', NULL, '25.9500', '58.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1505.1000', '45.0000', '2022-09-09', 'received', '25.9500', '25.9500', '58.0000', NULL, NULL, 1, 'pc', '58.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (937, 17, NULL, 6024, '621', 'Vaginax Cream 30gm', NULL, '4.9900', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.6200', '1.0000', '2022-09-09', 'received', '4.9900', '4.9900', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (936, 17, NULL, 6004, '601', 'PMF 200g', NULL, '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (935, 17, NULL, 6003, '600', 'Bella cough Syr 125ml', NULL, '6.7000', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '227.8000', '34.0000', '2022-09-09', 'received', '6.7000', '6.7000', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (934, 17, NULL, 6002, '599', 'Ferrodex Syrup 200ml', NULL, '6.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (933, 17, NULL, 5996, '593', 'Malafan Tabs 50&apos;s', NULL, '2.0000', '746.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1492.0000', '644.0000', '2022-09-09', 'received', '2.0000', '2.0000', '746.0000', NULL, NULL, 1, 'pc', '746.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (932, 17, NULL, 5977, '574', 'Samalin Adult Cough Syr 125ml', NULL, '7.5000', '55.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '412.5000', '54.0000', '2022-09-09', 'received', '7.5000', '7.5000', '55.0000', NULL, NULL, 1, 'pc', '55.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5970, '567', 'Virol blood tonic 200ml', NULL, '9.1500', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9500', '0.0000', '2022-09-09', 'received', '9.1500', '9.1500', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5956, '553', 'Zincofer Syrup 200ml', NULL, '17.8400', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '463.8400', '0.0000', '2022-09-09', 'received', '17.8400', '17.8400', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5946, '543', 'Wellman Capsules', NULL, '58.4000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '700.8000', '5.0000', '2022-09-09', 'received', '58.4000', '58.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5936, '533', 'Vitane Liquid 200ml', NULL, '45.2400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2400', '0.0000', '2022-09-09', 'received', '45.2400', '45.2400', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', NULL, '8.6000', '134.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1152.4000', '99.0000', '2022-09-09', 'received', '8.6000', '8.6000', '134.0000', NULL, NULL, 1, 'pc', '134.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5885, '482', 'Stopkof Children 100ml Syrup', NULL, '8.4000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-09', 'received', '8.4000', '8.4000', '0.0000', NULL, NULL, 1, 'pc', '0.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5840, '437', 'Prostacure X', NULL, '27.5000', '88.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2420.0000', '88.0000', '2022-09-09', 'received', '27.5000', '27.5000', '88.0000', NULL, NULL, 1, 'pc', '88.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5835, '432', 'Proman 50+ Capsules 30&apos;s', NULL, '33.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '203.8800', '3.0000', '2022-09-09', 'received', '33.9800', '33.9800', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5834, '431', 'Proman Capsules 30s', NULL, '41.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.1600', '1.0000', '2022-09-09', 'received', '41.5800', '41.5800', '2.0000', NULL, NULL, 1, 'pc', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 17, NULL, 5830, '427', 'Pregnacare Plus', NULL, '108.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.1000', '1.0000', '2022-09-09', 'received', '108.1000', '108.1000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (921, 17, NULL, 5826, '423', 'Plaster roll Extra care 2Inches', NULL, '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (920, 17, NULL, 5798, '395', 'zincovit', NULL, '19.3400', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.0800', '10.0000', '2022-09-09', 'received', '19.3400', '19.3400', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (919, 17, NULL, 5788, '385', 'Neovita Capsules 30&apos;s', NULL, '60.0000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1560.0000', '23.0000', '2022-09-09', 'received', '60.0000', '60.0000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (918, 17, NULL, 5774, '371', 'Mucolex Junior Cough150ml Syrup', NULL, '15.0000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '6.0000', '2022-09-09', 'received', '15.0000', '15.0000', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (917, 17, NULL, 5739, '336', 'Luex Child Dry Cough 150ml Syrup', NULL, '15.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '600.0000', '40.0000', '2022-09-09', 'received', '15.0000', '15.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (916, 17, NULL, 5738, '335', 'Luex Child Chesty Cough Syrup 100ml', NULL, '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (915, 17, NULL, 5726, '323', 'Listerine 250ml all types', NULL, '15.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2022-09-09', 'received', '15.9000', '15.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (914, 17, NULL, 5720, '317', 'Lexsporin Skin Ointment 20g', NULL, '23.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.0000', '2.0000', '2022-09-09', 'received', '23.0000', '23.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (913, 17, NULL, 5717, '314', 'Letavit Syrup', NULL, '2.4000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '22.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (912, 17, NULL, 5705, '302', 'Kofof Adult Syrup 150ml', NULL, '7.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '350.0000', '45.0000', '2022-09-09', 'received', '7.0000', '7.0000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (911, 17, NULL, 5704, '301', 'Koflet Syrup', NULL, '15.0000', '51.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '765.0000', '5.0000', '2022-09-09', 'received', '15.0000', '15.0000', '51.0000', NULL, NULL, 1, 'pc', '51.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (910, 17, NULL, 5667, '264', 'Honeykof Herbal Cough Syrup 100ml', NULL, '11.8000', '69.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '814.2000', '57.0000', '2022-09-09', 'received', '11.8000', '11.8000', '69.0000', NULL, NULL, 1, 'pc', '69.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (909, 17, NULL, 5629, '226', 'Funbact A', NULL, '8.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (908, 17, NULL, 5624, '221', 'Foligrow Syrup 200ml', NULL, '20.1000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '221.1000', '0.0000', '2022-09-09', 'received', '20.1000', '20.1000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '20.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (907, 17, NULL, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', NULL, '21.5000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '365.5000', '0.0000', '2022-09-09', 'received', '21.5000', '21.5000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (906, 17, NULL, 5592, '189', 'Efpac Junior Syrup', NULL, '7.1500', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '500.5000', '1.0000', '2022-09-09', 'received', '7.1500', '7.1500', '70.0000', NULL, NULL, 1, 'pc', '70.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (905, 17, NULL, 5541, '138', 'Combact N', NULL, '5.5000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.5000', '4.0000', '2022-09-09', 'received', '5.5000', '5.5000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (904, 17, NULL, 5508, '105', 'Cardioace Capsules 80&apos;s', NULL, '77.9100', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '701.1900', '6.0000', '2022-09-09', 'received', '77.9100', '77.9100', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '77.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (903, 17, NULL, 5499, '96', 'Calcium B12 Syrup 200ml', NULL, '3.8000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '36.0000', '2022-09-09', 'received', '3.8000', '3.8000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (902, 17, NULL, 5471, '68', 'Baby Cough Lintus 100ml ECL', NULL, '5.0400', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '504.0000', '55.0000', '2022-09-09', 'received', '5.0400', '5.0400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '5.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1026, 17, NULL, 6865, '55663121', 'Fiesta Condom Dumsor', NULL, '3.5000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.0000', '0.0000', '2022-09-09', 'received', '3.5000', '3.5000', '56.0000', NULL, NULL, 1, 'pc', '56.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1027, 17, NULL, 6867, '01981362', 'Fiesta Condom dotted', NULL, '3.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '2.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1028, 17, NULL, 6868, '70949987', 'Fiesta Condom Classic', NULL, '3.4000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4000', '0.0000', '2022-09-09', 'received', '3.4000', '3.4000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1029, 17, NULL, 6041, '638', 'Calcicare Liquid', NULL, '35.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.8800', '3.0000', '2022-09-09', 'received', '35.9600', '35.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 5991, '588', 'Kwik Action Tablets 50x4', NULL, '37.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '377.0000', '1.0000', '2022-09-09', 'received', '37.7000', '37.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '13.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8000', '6.0000', '2022-09-09', 'received', '13.8000', '13.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1081, 22, NULL, 6455, '1052', 'Paracetamol 500mg Tablets 100&apos;s EXE', NULL, '19.5800', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '548.2400', '28.0000', '2022-09-09', 'received', '19.5800', '19.5800', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '19.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1082, 22, NULL, 5771, '368', 'Magnesium Trisilicate (MMT)', NULL, '3.5000', '71.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.5000', '66.0000', '2022-09-09', 'received', '3.5000', '3.5000', '71.0000', NULL, NULL, 1, 'pc', '71.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1083, 22, NULL, 6465, '1062', 'Mist FAC (Ferric citrate) 200ml', NULL, '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '13.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1084, 22, NULL, 6083, '680', 'Methylated Spirit 60ml', NULL, '2.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '100.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1085, 22, NULL, 5654, '251', 'Gentian violet (GV PAINT)', NULL, '2.0000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '81.0000', '2022-09-09', 'received', '2.0000', '2.0000', '81.0000', NULL, NULL, 1, 'pc', '81.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1086, 22, NULL, 6097, '694', 'Methylated Spirit 200ml', NULL, '7.2000', '129.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '928.8000', '129.0000', '2022-09-09', 'received', '7.2000', '7.2000', '129.0000', NULL, NULL, 1, 'pc', '129.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1087, 22, NULL, 6462, '1059', 'Mist Pot Cit (Potassium Citrate) Mal-Titi', NULL, '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1088, 22, NULL, 6466, '1063', 'Mist Sennaco Mal-Titi', NULL, '4.5000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.5000', '20.0000', '2022-09-09', 'received', '4.5000', '4.5000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1089, 22, NULL, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', NULL, '15.0000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '675.0000', '45.0000', '2022-09-09', 'received', '15.0000', '15.0000', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1090, 22, NULL, 5931, '528', 'Viscof D 100ml Syrup', NULL, '12.8400', '61.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '783.2400', '33.0000', '2022-09-09', 'received', '12.8400', '12.8400', '61.0000', NULL, NULL, 1, 'pc', '61.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1091, 22, NULL, 6368, '965', 'Viscof S 100ml Syrup', NULL, '12.8400', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '449.4000', '0.0000', '2022-09-09', 'received', '12.8400', '12.8400', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1092, 22, NULL, 5932, '529', 'Viscof Plain 100ml Syrup', NULL, '11.4000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '364.8000', '21.0000', '2022-09-09', 'received', '11.4000', '11.4000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1093, 22, NULL, 6383, '980', 'Amcof Baby Syrup', NULL, '8.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '492.0000', '23.0000', '2022-09-09', 'received', '8.2000', '8.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1094, 22, NULL, 5435, '32', 'Amcof Adult Syrup', NULL, '7.4000', '78.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '577.2000', '78.0000', '2022-09-09', 'received', '7.4000', '7.4000', '78.0000', NULL, NULL, 1, 'pc', '78.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1095, 22, NULL, 6385, '982', 'Amcof Junior Syrup', NULL, '7.4000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '30.0000', '2022-09-09', 'received', '7.4000', '7.4000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1096, 22, NULL, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', NULL, '8.8000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.8000', '8.0000', '2022-09-09', 'received', '8.8000', '8.8000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1097, 22, NULL, 6607, '1204', 'Skyclav 625', NULL, '16.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '272.0000', '17.0000', '2022-09-09', 'received', '16.0000', '16.0000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1098, 22, NULL, 6234, '831', 'Amoksiklav 625mg Tablet 14s', NULL, '33.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.9000', '0.0000', '2022-09-09', 'received', '33.3000', '33.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1099, 22, NULL, 6620, '1217', 'Lumetrust 140/360mg Tablets', NULL, '7.5000', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '262.5000', '26.0000', '2022-09-09', 'received', '7.5000', '7.5000', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1100, 22, NULL, 6843, '1440', 'Robb Inhaler', NULL, '22.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1101, 22, NULL, 6845, '1442', 'Robb Ointment', NULL, '34.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '341.0000', '2.0000', '2022-09-09', 'received', '34.1000', '34.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '34.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1102, 22, NULL, 6290, '887', 'Fluxacin 500mg Capsules 20X10', NULL, '122.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.4000', '1.0000', '2022-09-09', 'received', '122.4000', '122.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1103, 22, NULL, 5885, '482', 'Stopkof Children 100ml Syrup', NULL, '8.4000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '714.0000', '64.0000', '2022-09-09', 'received', '8.4000', '8.4000', '85.0000', NULL, NULL, 1, 'pc', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1104, 22, NULL, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', NULL, '15.9500', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5500', '0.0000', '2022-09-09', 'received', '15.9500', '15.9500', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1105, 22, NULL, 5581, '178', 'Domi 10 Suppositories', NULL, '11.3000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '214.7000', '19.0000', '2022-09-09', 'received', '11.3000', '11.3000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1106, 22, NULL, 5582, '179', 'Domi 30mg Suppositories', NULL, '12.5000', '141.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1762.5000', '141.0000', '2022-09-09', 'received', '12.5000', '12.5000', '141.0000', NULL, NULL, 1, 'pc', '141.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1107, 22, NULL, 6509, '1106', 'Gacet 1g Suppository', NULL, '13.2500', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '556.5000', '42.0000', '2022-09-09', 'received', '13.2500', '13.2500', '42.0000', NULL, NULL, 1, 'pc', '42.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1108, 22, NULL, 5576, '173', 'Dicnac 100mg Suppositories', NULL, '8.7000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '565.5000', '22.0000', '2022-09-09', 'received', '8.7000', '8.7000', '65.0000', NULL, NULL, 1, 'pc', '65.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1109, 22, NULL, 5676, '273', 'Imax Delay Spray', NULL, '30.0000', '147.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4410.0000', '147.0000', '2022-09-09', 'received', '30.0000', '30.0000', '147.0000', NULL, NULL, 1, 'pc', '147.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1110, 22, NULL, 5631, '228', 'Gacet 125mg Suppositories', NULL, '6.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '15.0000', '2022-09-09', 'received', '6.5000', '6.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1111, 22, NULL, 5632, '229', 'Gacet 250mg Suppository', NULL, '8.0000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '33.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1112, 22, NULL, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12&apos;s', NULL, '10.8000', '159.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1717.2000', '101.0000', '2022-09-09', 'received', '10.8000', '10.8000', '159.0000', NULL, NULL, 1, 'pc', '159.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1113, 22, NULL, 6749, '1346', 'Jet 2 Inhaler', NULL, '40.0000', '114.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4560.0000', '114.0000', '2022-09-09', 'received', '40.0000', '40.0000', '114.0000', NULL, NULL, 1, 'pc', '114.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1114, 22, NULL, 5655, '252', 'Gvither Forte 80mg Injection 10&apos;s', NULL, '28.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '342.0000', '0.0000', '2022-09-09', 'received', '28.5000', '28.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1115, 22, NULL, 5757, '354', 'Mark 2 Inhaler', NULL, '40.0000', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4400.0000', '85.0000', '2022-09-09', 'received', '40.0000', '40.0000', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1116, 22, NULL, 6110, '707', 'Maalox Stick Packs 20&apos;s', NULL, '34.1000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '545.6000', '9.0000', '2022-09-09', 'received', '34.1000', '34.1000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '34.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1117, 22, NULL, 5753, '350', 'Malin Adult', NULL, '8.5000', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '442.0000', '44.0000', '2022-09-09', 'received', '8.5000', '8.5000', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1118, 22, NULL, 6312, '909', 'Malin Junior', NULL, '7.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '5.0000', '2022-09-09', 'received', '7.5000', '7.5000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1119, 22, NULL, 6594, '1191', 'Malin Baby Plus', NULL, '9.1000', '53.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '482.3000', '48.0000', '2022-09-09', 'received', '9.1000', '9.1000', '53.0000', NULL, NULL, 1, 'pc', '53.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1120, 22, NULL, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', NULL, '5.8000', '145.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '841.0000', '108.0000', '2022-09-09', 'received', '5.8000', '5.8000', '145.0000', NULL, NULL, 1, 'pc', '145.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1121, 22, NULL, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', NULL, '11.2000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '37.0000', '2022-09-09', 'received', '11.2000', '11.2000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1122, 22, NULL, 6225, '822', 'Letalin Expectorant Syrup 125ml', NULL, '2.8000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.2000', '44.0000', '2022-09-09', 'received', '2.8000', '2.8000', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1123, 22, NULL, 6273, '870', 'Vikil 20', NULL, '26.0000', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '702.0000', '27.0000', '2022-09-09', 'received', '26.0000', '26.0000', '27.0000', NULL, NULL, 1, 'pc', '27.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1124, 22, NULL, 5977, '574', 'Samalin Adult Cough Syr 125ml', NULL, '7.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-09-09', 'received', '7.5000', '7.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1125, 22, NULL, 6212, '809', 'Hemoforce Family Syrup 200ml', NULL, '6.6500', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4500', '13.0000', '2022-09-09', 'received', '6.6500', '6.6500', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1126, 22, NULL, 6053, '650', 'Bonnisan Syrup 120ml', NULL, '14.9000', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '402.3000', '0.0000', '2022-09-09', 'received', '14.9000', '14.9000', '27.0000', NULL, NULL, 1, 'pc', '27.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1127, 22, NULL, 6651, '1248', 'Kalamina Lotion 120ml', NULL, '7.4400', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0800', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1128, 22, NULL, 6030, '627', 'Zipferon Capsule', NULL, '4.4300', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '1.0000', '2022-09-09', 'received', '4.4300', '4.4300', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '4.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1129, 22, NULL, 6333, '930', 'Adom Koo Mixture', NULL, '7.7000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '9.0000', '2022-09-09', 'received', '7.7000', '7.7000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1130, 22, NULL, 6687, '1284', 'Broncholin Syrup 125ml', NULL, '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '37.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1131, 22, NULL, 6583, '1180', 'Adom Ladies Mixture', NULL, '14.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '5.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1132, 22, NULL, 6210, '807', 'BX Syrup 200ml', NULL, '7.1000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.9000', '19.0000', '2022-09-09', 'received', '7.1000', '7.1000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1133, 22, NULL, 6698, '1295', 'Biva Plus Syrup', NULL, '13.4400', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.7200', '13.0000', '2022-09-09', 'received', '13.4400', '13.4400', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1134, 22, NULL, 6615, '1212', 'Fada Martins Herbal Mixture', NULL, '11.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.0000', '11.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1135, 22, NULL, 6102, '699', 'Haemo Forte Syrup 200ml', NULL, '27.8000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '583.8000', '21.0000', '2022-09-09', 'received', '27.8000', '27.8000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1136, 22, NULL, 5457, '54', 'Aspanol Productive', NULL, '7.8000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '296.4000', '38.0000', '2022-09-09', 'received', '7.8000', '7.8000', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1137, 22, NULL, 6419, '1016', 'Menthox Child Cough Syrup 125ml', NULL, '4.6700', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0400', '4.0000', '2022-09-09', 'received', '4.6700', '4.6700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1138, 22, NULL, 6272, '869', 'Ferrovita B12 Syrup 200ml', NULL, '31.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-09-09', 'received', '31.5000', '31.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1139, 22, NULL, 6151, '748', 'Jeditone Syrup 200ml', NULL, '6.7000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7000', '11.0000', '2022-09-09', 'received', '6.7000', '6.7000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1140, 22, NULL, 6643, '1240', 'Metro-Z Tablets 20&apos;s', NULL, '5.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.0000', '19.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1141, 22, NULL, 6846, '1443', 'Haemo Forte Syrup 100ml', NULL, '11.5000', '71.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '816.5000', '71.0000', '2022-09-09', 'received', '11.5000', '11.5000', '71.0000', NULL, NULL, 1, 'pc', '71.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1142, 22, NULL, 5976, '573', 'Koffex Adult Cough Syr 125ml', NULL, '7.7000', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.4000', '52.0000', '2022-09-09', 'received', '7.7000', '7.7000', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1143, 22, NULL, 6201, '798', 'Samalin Junior cough syrup 125ml', NULL, '6.9000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '579.6000', '84.0000', '2022-09-09', 'received', '6.9000', '6.9000', '84.0000', NULL, NULL, 1, 'pc', '84.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1144, 22, NULL, 5956, '553', 'Zincofer Syrup 200ml', NULL, '17.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.5200', '0.0000', '2022-09-09', 'received', '17.8400', '17.8400', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1145, 22, NULL, 6744, '1341', 'Nexcofer Blood Tonic 200ml', NULL, '9.9600', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.8000', '0.0000', '2022-09-09', 'received', '9.9600', '9.9600', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1146, 22, NULL, 6650, '1247', 'Nexcofer Blood Tonic 100ml', NULL, '5.7000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '15.0000', '2022-09-09', 'received', '5.7000', '5.7000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1147, 22, NULL, 6277, '874', 'Tinatett Tomac Mixture 500ml', NULL, '22.9000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '343.5000', '13.0000', '2022-09-09', 'received', '22.9000', '22.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1148, 22, NULL, 6213, '810', 'Hemoforce Plus Syrup 200ml', NULL, '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6500', '0.0000', '2022-09-09', 'received', '6.6500', '6.6500', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1149, 22, NULL, 6849, '1446', 'Kelcuf Junior Syrup 100ml', NULL, '6.5000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.5000', '7.0000', '2022-09-09', 'received', '6.5000', '6.5000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1150, 22, NULL, 6847, '1444', 'Kelcuf Adult Syrup 100ml', NULL, '6.5000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-09-09', 'received', '6.5000', '6.5000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1151, 22, NULL, 6848, '1445', 'Kelcuf Baby Syrup 100ml', NULL, '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1152, 22, NULL, 6657, '1254', 'Aspanol Jnr. Syrup', NULL, '5.4000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.8000', '13.0000', '2022-09-09', 'received', '5.4000', '5.4000', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1153, 22, NULL, 5427, '24', 'Agbeve Tonic', NULL, '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1154, 22, NULL, 6082, '679', 'Coldrilif Syrup', NULL, '6.9000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.5000', '16.0000', '2022-09-09', 'received', '6.9000', '6.9000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1155, 22, NULL, 6423, '1020', 'Diphex Junior Cough Syrup 100ml', NULL, '6.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '24.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1156, 22, NULL, 6115, '712', 'Gudapet Syrup 200ml', NULL, '7.1000', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.2000', '5.0000', '2022-09-09', 'received', '7.1000', '7.1000', '42.0000', NULL, NULL, 1, 'pc', '42.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1157, 22, NULL, 6276, '873', 'Tinatett Malakare 500ml', NULL, '17.6000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '334.4000', '7.0000', '2022-09-09', 'received', '17.6000', '17.6000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1158, 22, NULL, 5853, '450', 'Rooter Mixture', NULL, '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '6.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1159, 22, NULL, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', NULL, '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1160, 22, NULL, 6464, '1061', 'Mist Expect Sed Mal-Titi', NULL, '4.0000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '7.0000', '2022-09-09', 'received', '4.0000', '4.0000', '33.0000', NULL, NULL, 1, 'pc', '33.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1161, 22, NULL, 6147, '744', 'Cafalgin Caplets 25x10', NULL, '35.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '1.0000', '2022-09-09', 'received', '35.2000', '35.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1162, 22, NULL, 6099, '696', 'Clear Inhaler 12&apos;s', NULL, '29.5000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1209.5000', '30.0000', '2022-09-09', 'received', '29.5000', '29.5000', '41.0000', NULL, NULL, 1, 'pc', '41.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1163, 22, NULL, 6278, '875', 'Tinatett 230 Herbal Capsules', NULL, '27.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '8.0000', '2022-09-09', 'received', '27.5000', '27.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1164, 22, NULL, 6279, '876', 'Tinatett Bf Bf Capsules', NULL, '26.4000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-09', 'received', '26.4000', '26.4000', '0.0000', NULL, NULL, 1, 'pc', '0.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1165, 22, NULL, 6071, '668', 'Vin C 100mg Tablets 30&apos;s', NULL, '19.6000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.8000', '4.0000', '2022-09-09', 'received', '19.6000', '19.6000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1166, 22, NULL, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', NULL, '15.9500', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '510.4000', '17.0000', '2022-09-09', 'received', '15.9500', '15.9500', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1167, 22, NULL, 5548, '145', 'Crepe Bandage 2Inches Xtra care', NULL, '2.9800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '357.6000', '120.0000', '2022-09-09', 'received', '2.9800', '2.9800', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1168, 22, NULL, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', NULL, '8.2000', '210.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1722.0000', '210.0000', '2022-09-09', 'received', '8.2000', '8.2000', '210.0000', NULL, NULL, 1, 'pc', '210.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1169, 22, NULL, 5705, '302', 'Kofof Adult Syrup 150ml', NULL, '7.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1170, 22, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1171, 22, NULL, 5629, '226', 'Funbact A', NULL, '8.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1172, 22, NULL, 6009, '606', 'Rooter Life', NULL, '35.9000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '574.4000', '16.0000', '2022-09-09', 'received', '35.9000', '35.9000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 6010, '607', 'Rooter Tytonic', NULL, '16.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '8.0000', '2022-09-09', 'received', '16.5000', '16.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', NULL, '4.3500', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.1500', '29.0000', '2022-09-09', 'received', '4.3500', '4.3500', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 22, NULL, 6306, '903', 'Pofakoff Adult', NULL, '6.2300', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6100', '7.0000', '2022-09-09', 'received', '6.2300', '6.2300', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1176, 22, NULL, 6360, '957', 'Wormbase Suspension', NULL, '2.5000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '0.0000', '2022-09-09', 'received', '2.5000', '2.5000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1177, 22, NULL, 5775, '372', 'Multivite Tablets Letap', NULL, '22.1000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.9000', '9.0000', '2022-09-09', 'received', '22.1000', '22.1000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1178, 22, NULL, 6161, '758', 'Emgiprofen Suspension 100ml', NULL, '5.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '16.0000', '2022-09-09', 'received', '5.3000', '5.3000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1179, 22, NULL, 6000, '597', 'Vigorix Forte Syr 200ml', NULL, '11.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.6000', '6.0000', '2022-09-09', 'received', '11.1000', '11.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1180, 22, NULL, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', NULL, '4.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '8.0000', '2022-09-09', 'received', '4.5000', '4.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1181, 22, NULL, 6096, '693', 'Mist Sennaco ROKMER', NULL, '4.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-09-09', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6360, '957', 'Wormbase Suspension', NULL, '2.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6306, '903', 'Pofakoff Adult', NULL, '6.2300', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.5100', '32.0000', '2022-09-10', 'received', '6.2300', '6.2300', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6583, '1180', 'Adom Ladies Mixture', NULL, '14.3000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.3000', '7.0000', '2022-09-10', 'received', '14.3000', '14.3000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6842, '1439', 'Tobufen 60ml', NULL, '4.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '6.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6841, '1438', 'mb-Chlor Eye Drops 0.5%', NULL, '2.6000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.4000', '62.0000', '2022-09-10', 'received', '2.6000', '2.6000', '84.0000', NULL, NULL, 1, 'pc', '84.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6840, '1437', 'Betasol N (Eye,Ear &amp; Nose) Drop', NULL, '5.2000', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '19.0000', '2022-09-10', 'received', '5.2000', '5.2000', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6830, '1427', 'Ganaman Capsules', NULL, '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '2.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6818, '1415', 'Foliron Capsules', NULL, '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6813, '1410', 'Becoatin Syrup 200ml', NULL, '13.0000', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '676.0000', '7.0000', '2022-09-10', 'received', '13.0000', '13.0000', '52.0000', NULL, NULL, 1, 'pc', '52.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1367, 23, NULL, 6781, '1378', 'Omeprazole 40mg Caps 28&apos;s', NULL, '8.5000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '161.5000', '17.0000', '2022-09-10', 'received', '8.5000', '8.5000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6778, '1375', 'Nugel Susp 200ml', NULL, '19.3400', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '696.2400', '36.0000', '2022-09-10', 'received', '19.3400', '19.3400', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6768, '1365', 'Methylated Spirit 125ml ECL', NULL, '5.8000', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.2000', '24.0000', '2022-09-10', 'received', '5.8000', '5.8000', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6767, '1364', 'Methylated Spirit 200ml ECL', NULL, '9.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '24.0000', '2022-09-10', 'received', '9.5000', '9.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6763, '1360', 'Medi Plus', NULL, '13.8000', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '634.8000', '45.0000', '2022-09-10', 'received', '13.8000', '13.8000', '46.0000', NULL, NULL, 1, 'pc', '46.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6745, '1342', 'Durex Extra Safe 3&apos;s Condoms', NULL, '12.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9200', '0.0000', '2022-09-10', 'received', '12.9800', '12.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6741, '1338', 'Lisinopril 5mg Tablets 28&apos;s Teva', NULL, '5.7000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.7000', '6.0000', '2022-09-10', 'received', '5.7000', '5.7000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6711, '1308', 'Bisoprolol 2.5mg Tablets 28&apos;s Teva', NULL, '6.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '8.0000', '2022-09-10', 'received', '6.9000', '6.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6710, '1307', 'Glimepiride 4mg Tablets 30&apos;s Teva', NULL, '14.0000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '322.0000', '23.0000', '2022-09-10', 'received', '14.0000', '14.0000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6708, '1305', 'Loratadine 10mg Tablets 30&apos;s', NULL, '6.0000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '486.0000', '61.0000', '2022-09-10', 'received', '6.0000', '6.0000', '81.0000', NULL, NULL, 1, 'pc', '81.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1357, 23, NULL, 6697, '1294', 'Biva Plus Capsules', NULL, '10.1000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '454.5000', '42.0000', '2022-09-10', 'received', '10.1000', '10.1000', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '10.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6696, '1293', 'Abyvita Capsules', NULL, '4.2000', '79.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '331.8000', '79.0000', '2022-09-10', 'received', '4.2000', '4.2000', '79.0000', NULL, NULL, 1, 'pc', '79.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6689, '1286', 'Chloramphenicol Eye Ointment 0.01 5g', NULL, '3.3000', '126.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '415.8000', '109.0000', '2022-09-10', 'received', '3.3000', '3.3000', '126.0000', NULL, NULL, 1, 'pc', '126.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6688, '1285', 'Travatan Eye Drops 2.5ml', NULL, '80.8000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '888.8000', '9.0000', '2022-09-10', 'received', '80.8000', '80.8000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '80.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1353, 23, NULL, 6647, '1244', 'Durex Feels Condoms 3&apos;s', NULL, '8.9000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '320.4000', '0.0000', '2022-09-10', 'received', '8.9000', '8.9000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6606, '1203', 'Skyclav 1g', NULL, '15.5300', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '776.5000', '30.0000', '2022-09-10', 'received', '15.5300', '15.5300', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', NULL, '12.9000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '374.1000', '6.0000', '2022-09-10', 'received', '12.9000', '12.9000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1350, 23, NULL, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', NULL, '16.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '5.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1349, 23, NULL, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', NULL, '18.9000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '396.9000', '1.0000', '2022-09-10', 'received', '18.9000', '18.9000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1348, 23, NULL, 6593, '1190', 'Milk of Magnesia 125ml Letap', NULL, '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '5.0000', '2022-09-10', 'received', '1.6000', '1.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1347, 23, NULL, 6543, '1140', 'Gastrone Suspension 200ml', NULL, '11.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '672.0000', '59.0000', '2022-09-10', 'received', '11.2000', '11.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1346, 23, NULL, 6517, '1114', 'Res-Q Antacid Suspension', NULL, '8.7000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.4000', '22.0000', '2022-09-10', 'received', '8.7000', '8.7000', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1345, 23, NULL, 6463, '1060', 'Hydrogen Peroxide Mal-Titi', NULL, '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1344, 23, NULL, 6351, '948', 'Ronfit Cold D Syrup', NULL, '6.0000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '28.0000', '2022-09-10', 'received', '6.0000', '6.0000', '37.0000', NULL, NULL, 1, 'pc', '37.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1343, 23, NULL, 6350, '947', 'Ronfit Cold P Junior Syrup', NULL, '6.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1342, 23, NULL, 6349, '946', 'Ronfit Cold Forte Syrup', NULL, '6.0000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '16.0000', '2022-09-10', 'received', '6.0000', '6.0000', '29.0000', NULL, NULL, 1, 'pc', '29.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1341, 23, NULL, 6332, '929', 'Adom Koo Capsules', NULL, '16.5000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '429.0000', '14.0000', '2022-09-10', 'received', '16.5000', '16.5000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1340, 23, NULL, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', NULL, '1.4900', '95.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.5500', '95.0000', '2022-09-10', 'received', '1.4900', '1.4900', '95.0000', NULL, NULL, 1, 'pc', '95.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1339, 23, NULL, 6301, '898', 'Comit-50', NULL, '10.5000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '882.0000', '18.0000', '2022-09-10', 'received', '10.5000', '10.5000', '84.0000', NULL, NULL, 1, 'pc', '84.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1338, 23, NULL, 6291, '888', 'Metagyl 200mg Tablets 50x10', NULL, '45.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '1.0000', '2022-09-10', 'received', '45.6000', '45.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1337, 23, NULL, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', NULL, '5.1000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '433.5000', '85.0000', '2022-09-10', 'received', '5.1000', '5.1000', '85.0000', NULL, NULL, 1, 'pc', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1336, 23, NULL, 6281, '878', 'Givers Koo Capsules', NULL, '22.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '0.0000', '2022-09-10', 'received', '22.0000', '22.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1335, 23, NULL, 6279, '876', 'Tinatett Bf Bf Capsules', NULL, '26.4000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '976.8000', '35.0000', '2022-09-10', 'received', '26.4000', '26.4000', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1334, 23, NULL, 6278, '875', 'Tinatett 230 Herbal Capsules', NULL, '27.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1333, 23, NULL, 6260, '857', 'Hydrogen Peroxide 200ml ECL', NULL, '5.7000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '1.0000', '2022-09-10', 'received', '5.7000', '5.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1332, 23, NULL, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', NULL, '1.9000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '40.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1331, 23, NULL, 6221, '818', 'Dynewell Tablet 50x10', NULL, '12.9800', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.2600', '3.0000', '2022-09-10', 'received', '12.9800', '12.9800', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1330, 23, NULL, 6203, '800', 'Ferrodex Capsules 30&apos;s', NULL, '5.2000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.8000', '24.0000', '2022-09-10', 'received', '5.2000', '5.2000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1329, 23, NULL, 6202, '799', 'Starwin Milk of Magnesia 120ml', NULL, '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1328, 23, NULL, 6188, '785', 'Polygel Suspension 200ml', NULL, '7.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '15.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1327, 23, NULL, 6171, '768', 'Zerocid Suspension 200ML', NULL, '8.8000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.8000', '0.0000', '2022-09-10', 'received', '8.8000', '8.8000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1326, 23, NULL, 6170, '767', 'Zerocid Plus Suspension 200ML', NULL, '10.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1325, 23, NULL, 6159, '756', 'Cafalgin Junior Suspension 100ml', NULL, '8.6000', '94.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '808.4000', '94.0000', '2022-09-10', 'received', '8.6000', '8.6000', '94.0000', NULL, NULL, 1, 'pc', '94.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1324, 23, NULL, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', NULL, '3.8000', '198.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '752.4000', '20.0000', '2022-09-10', 'received', '3.8000', '3.8000', '198.0000', NULL, NULL, 1, 'pc', '198.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1323, 23, NULL, 6135, '732', 'Neuropat Capsules 30&apos;s', NULL, '35.6000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '427.2000', '10.0000', '2022-09-10', 'received', '35.6000', '35.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1322, 23, NULL, 6133, '730', 'Livopat Capsules 30&apos;s', NULL, '25.9500', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '441.1500', '16.0000', '2022-09-10', 'received', '25.9500', '25.9500', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1321, 23, NULL, 6120, '717', 'Ancigel O Suspension 200ml', NULL, '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.8500', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1320, 23, NULL, 6117, '714', 'Gudapet Capsules', NULL, '6.6000', '315.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2079.0000', '247.0000', '2022-09-10', 'received', '6.6000', '6.6000', '315.0000', NULL, NULL, 1, 'pc', '315.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1319, 23, NULL, 6111, '708', 'Ancigel Suspension 200ml', NULL, '14.5000', '57.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '826.5000', '41.0000', '2022-09-10', 'received', '14.5000', '14.5000', '57.0000', NULL, NULL, 1, 'pc', '57.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1318, 23, NULL, 6108, '705', 'Klire Antacid Suspension 125ml', NULL, '11.6000', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '394.4000', '28.0000', '2022-09-10', 'received', '11.6000', '11.6000', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1317, 23, NULL, 6090, '687', 'Ciprolex Eye Ointment 5g', NULL, '10.0000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '650.0000', '65.0000', '2022-09-10', 'received', '10.0000', '10.0000', '65.0000', NULL, NULL, 1, 'pc', '65.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1316, 23, NULL, 6058, '655', 'Liv 52 Syrup', NULL, '20.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '3.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1315, 23, NULL, 6037, '634', 'Kamaclox Mouthwash 300ml', NULL, '9.1000', '49.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '445.9000', '0.0000', '2022-09-10', 'received', '9.1000', '9.1000', '49.0000', NULL, NULL, 1, 'pc', '49.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1314, 23, NULL, 6034, '631', 'Deep Heat Spray 150ml', NULL, '41.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.0000', '5.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1313, 23, NULL, 6001, '598', 'Paraking Syrup 100ml', NULL, '5.1000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '0.0000', '2022-09-10', 'received', '5.1000', '5.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1312, 23, NULL, 5969, '566', 'Teedar Syrup 125ml', NULL, '8.8000', '77.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '677.6000', '18.0000', '2022-09-10', 'received', '8.8000', '8.8000', '77.0000', NULL, NULL, 1, 'pc', '77.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1311, 23, NULL, 5949, '546', 'Wormplex 400 Tablets', NULL, '5.2000', '975.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5070.0000', '60.0000', '2022-09-10', 'received', '5.2000', '5.2000', '975.0000', NULL, NULL, 1, 'pc', '975.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1310, 23, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '13.8000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '496.8000', '36.0000', '2022-09-10', 'received', '13.8000', '13.8000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1309, 23, NULL, 5926, '523', 'Vermox 500mg Tablets', NULL, '10.9000', '98.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1068.2000', '31.0000', '2022-09-10', 'received', '10.9000', '10.9000', '98.0000', NULL, NULL, 1, 'pc', '98.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1308, 23, NULL, 5904, '501', 'Tears Natural II Eye Drops', NULL, '24.7000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '716.3000', '12.0000', '2022-09-10', 'received', '24.7000', '24.7000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1307, 23, NULL, 5873, '470', 'Sibi Woman Capsules', NULL, '12.0000', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '552.0000', '32.0000', '2022-09-10', 'received', '12.0000', '12.0000', '46.0000', NULL, NULL, 1, 'pc', '46.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1306, 23, NULL, 5848, '445', 'Relcer Gel', NULL, '8.2800', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '273.2400', '33.0000', '2022-09-10', 'received', '8.2800', '8.2800', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1305, 23, NULL, 5805, '402', 'Omeprazole 20mg Tablets 28&apos;s Teva', NULL, '9.0000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '342.0000', '15.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1304, 23, NULL, 5799, '396', 'Nugel-O Suspension 200ml', NULL, '20.1300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.7800', '6.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1303, 23, NULL, 5797, '394', 'Normo Tears Eye Drop', NULL, '16.9000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '236.6000', '5.0000', '2022-09-10', 'received', '16.9000', '16.9000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1302, 23, NULL, 5749, '346', 'Major Nasal Drops', NULL, '8.1400', '134.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1090.7600', '44.0000', '2022-09-10', 'received', '8.1400', '8.1400', '134.0000', NULL, NULL, 1, 'pc', '134.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1301, 23, NULL, 5725, '322', 'Lisinopril 20mg Teva', NULL, '9.4000', '49.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '460.6000', '37.0000', '2022-09-10', 'received', '9.4000', '9.4000', '49.0000', NULL, NULL, 1, 'pc', '49.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1300, 23, NULL, 5710, '307', 'Leena Capsules', NULL, '4.0200', '205.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '824.1000', '0.0000', '2022-09-10', 'received', '4.0200', '4.0200', NULL, NULL, NULL, 1, 'pc', '205.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1268, 24, NULL, 6486, '1083', 'Contiflo XL 400mcg Capsules 30&apos;s', NULL, '18.0000', '61.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1098.0000', '52.0000', '2022-09-10', 'received', '18.0000', '18.0000', '61.0000', NULL, NULL, 1, 'pc', '61.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1269, 24, NULL, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', NULL, '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '10.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1270, 24, NULL, 6711, '1308', 'Bisoprolol 2.5mg Tablets 28&apos;s Teva', NULL, '6.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '6.0000', '2022-09-10', 'received', '6.9000', '6.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1271, 24, NULL, 6709, '1306', 'Ramipril 2.5mg Tablets 28&apos;s Teva', NULL, '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '3.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1272, 24, NULL, 6023, '620', 'Closol Cream', NULL, '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1273, 24, NULL, 5531, '128', 'Cloxacillin 250mg Letap', NULL, '80.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '483.0000', '6.0000', '2022-09-10', 'received', '80.5000', '80.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '80.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1274, 24, NULL, 6677, '1274', 'Azirocin 250mg Capules', NULL, '10.0000', '287.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2870.0000', '240.0000', '2022-09-10', 'received', '10.0000', '10.0000', '287.0000', NULL, NULL, 1, 'pc', '287.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1275, 24, NULL, 6437, '1034', 'Imodium Capsules 6&apos;s', NULL, '18.1000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '579.2000', '6.0000', '2022-09-10', 'received', '18.1000', '18.1000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1276, 24, NULL, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', NULL, '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '1.0000', '2022-09-10', 'received', '6.0000', '6.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1277, 24, NULL, 5814, '411', 'Panadol Advance 500mg 16&apos;s', NULL, '24.0900', '115.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2770.3500', '71.0000', '2022-09-10', 'received', '24.0900', '24.0900', '115.0000', NULL, NULL, 1, 'pc', '115.0000', NULL, NULL, NULL, NULL, '24.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1278, 24, NULL, 6369, '966', 'Omexet (omeprazole) 20mg Capsules 28&apos;s', NULL, '11.9800', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '395.3400', '28.0000', '2022-09-10', 'received', '11.9800', '11.9800', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1279, 24, NULL, 5884, '481', 'Stagyl', NULL, '3.3200', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.1600', '0.0000', '2022-09-10', 'received', '3.3200', '3.3200', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1280, 25, NULL, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', NULL, '22.0000', '68.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1496.0000', '40.0000', '2022-09-10', 'received', '22.0000', '22.0000', '68.0000', NULL, NULL, 1, 'pc', '68.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1281, 25, NULL, 6478, '1075', 'Fluconazole 150mg Capsules Teva', NULL, '7.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1282, 25, NULL, 6807, '1404', 'Folic Acid 5mg Crescent', NULL, '9.0000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '0.0000', '2022-09-10', 'received', '9.0000', '9.0000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1283, 25, NULL, 5652, '249', 'Roberts Glycerine 90ml', NULL, '12.0000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.0000', '37.0000', '2022-09-10', 'received', '12.0000', '12.0000', '37.0000', NULL, NULL, 1, 'pc', '37.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1284, 25, NULL, 5510, '107', 'Castor Oil 70ml', NULL, '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1285, 25, NULL, 6634, '1231', 'Bells Olive Oil 70ml', NULL, '13.4000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.4000', '0.0000', '2022-09-10', 'received', '13.4000', '13.4000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1286, 25, NULL, 5723, '320', 'Bells Liquid Parafin BP 100ml', NULL, '9.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.0000', '12.0000', '2022-09-10', 'received', '9.0000', '9.0000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1287, 25, NULL, 6699, '1296', 'Folic Acid 5mg Tablet 28&apos;s Accord', NULL, '7.0000', '199.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1393.0000', '150.0000', '2022-09-10', 'received', '7.0000', '7.0000', '199.0000', NULL, NULL, 1, 'pc', '199.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1288, 25, NULL, 6492, '1089', 'Prednisolone 5mg Tablets 70x10', NULL, '39.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.5000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1289, 25, NULL, 5462, '59', 'Atenolol 100mg Tablets 28s Teva', NULL, '7.8000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.2000', '27.0000', '2022-09-10', 'received', '7.8000', '7.8000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1290, 25, NULL, 5897, '494', 'Syringe and Needle 5ml Letaject', NULL, '23.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.0000', '11.0000', '2022-09-10', 'received', '23.0000', '23.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1291, 25, NULL, 6088, '685', 'Bioferon Capsules 30&apos;s', NULL, '23.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '423.0000', '3.0000', '2022-09-10', 'received', '23.5000', '23.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1292, 25, NULL, 6850, '1447', 'Flucotrust Capsules', NULL, '2.8900', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.6000', '0.0000', '2022-09-10', 'received', '2.8900', '2.8900', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 26, NULL, 6869, '53857813', 'BENDROFLUMETHIAZIDE 2.5mg TABS Accord', NULL, '5.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.7000', '1.0000', '2022-09-10', 'received', '5.7000', '5.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 26, NULL, 6775, '1372', 'Bendrofluazide Tabs 5mg 500\' ECL', NULL, '49.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.8000', '4.0000', '2022-09-10', 'received', '49.2000', '49.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1511, 26, NULL, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', NULL, '6.7000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.5000', '0.0000', '2022-09-10', 'received', '6.7000', '6.7000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1299, 27, NULL, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', NULL, '13.8000', '79.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1090.2000', '54.0000', '2022-09-10', 'received', '13.8000', '13.8000', '79.0000', NULL, NULL, 1, 'pc', '79.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5459, '56', 'Asthalex Syrup 100ml', NULL, '5.9000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '5.0000', '2022-09-10', 'received', '5.9000', '5.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6510, '1107', 'GV- Fluc 150mg Capsules', NULL, '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5507, '104', 'Carbozap Syrup Adult 100ml FG', NULL, '4.9900', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.8100', '5.0000', '2022-09-10', 'received', '4.9900', '4.9900', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6064, '661', 'Carbozap Junior Syrup 100ml', NULL, '4.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6832, '1429', 'Eskadol Nyte', NULL, '2.6000', '403.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1047.8000', '272.0000', '2022-09-10', 'received', '2.6000', '2.6000', '403.0000', NULL, NULL, 1, 'pc', '403.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6679, '1276', 'Gebediclo 100mg Tablets', NULL, '9.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9800', '0.0000', '2022-09-10', 'received', '9.9900', '9.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1383, 23, NULL, 6036, '633', 'Leorub Gel 30g', NULL, '4.4300', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4400', '8.0000', '2022-09-10', 'received', '4.4300', '4.4300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1384, 23, NULL, 6698, '1295', 'Biva Plus Syrup', NULL, '13.4400', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '215.0400', '14.0000', '2022-09-10', 'received', '13.4400', '13.4400', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1385, 23, NULL, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', NULL, '79.1500', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2295.3500', '29.0000', '2022-09-10', 'received', '79.1500', '79.1500', '29.0000', NULL, NULL, 1, 'pc', '29.0000', NULL, NULL, NULL, NULL, '79.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1386, 23, NULL, 5740, '337', 'Lufart DS Tablets', NULL, '15.5000', '430.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6665.0000', '430.0000', '2022-09-10', 'received', '15.5000', '15.5000', '430.0000', NULL, NULL, 1, 'pc', '430.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1387, 23, NULL, 5729, '326', 'Lofnac 100mg Suppository', NULL, '10.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '8.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1388, 23, NULL, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', NULL, '13.5800', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '312.3400', '0.0000', '2022-09-10', 'received', '13.5800', '13.5800', '23.0000', NULL, NULL, 1, 'pc', '23.0000', NULL, NULL, NULL, NULL, '13.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1389, 23, NULL, 5535, '132', 'Coldrilif Capsules 10X10', NULL, '3.9100', '115.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '449.6500', '115.0000', '2022-09-10', 'received', '3.9100', '3.9100', '115.0000', NULL, NULL, 1, 'pc', '115.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5979, '576', 'Menthox Adult Cough Syrup 125ml', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6675, '1272', 'Lydia Postpill 2Tablets', NULL, '8.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '0.0000', '2022-09-10', 'received', '8.5000', '8.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6817, '1414', 'Basecold 1x6 Tab', NULL, '13.8000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.6000', '17.0000', '2022-09-10', 'received', '13.8000', '13.8000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', NULL, '3.3000', '162.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '534.6000', '113.0000', '2022-09-10', 'received', '3.3000', '3.3000', '162.0000', NULL, NULL, 1, 'pc', '162.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', NULL, '4.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '32.0000', '2022-09-10', 'received', '4.5000', '4.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6673, '1270', 'Kofof Child Suppresant 100ml', NULL, '4.9500', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '346.5000', '67.0000', '2022-09-10', 'received', '4.9500', '4.9500', '70.0000', NULL, NULL, 1, 'pc', '70.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5717, '314', 'Letavit Syrup', NULL, '2.4000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '22.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5453, '50', 'Ascoryl Syrup 125ml', NULL, '7.4000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5973, '570', 'Finelife Blood Tonic 200ml', NULL, '8.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6766, '1363', 'Kidivit Syrup 100ML', NULL, '6.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '9.0000', '2022-09-10', 'received', '6.0000', '6.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1400, 23, NULL, 5714, '311', 'Letamol Elixir 125ml', NULL, '3.3000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.7000', '29.0000', '2022-09-10', 'received', '3.3000', '3.3000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6163, '760', 'Emigkof S Syrup100ml', NULL, '5.1000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.2000', '12.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6630, '1227', 'Cetapol PM Syrup 100ml', NULL, '7.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.0000', '7.0000', '2022-09-10', 'received', '7.0000', '7.0000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6147, '744', 'Cafalgin Caplets 25x10', NULL, '35.2000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '457.6000', '13.0000', '2022-09-10', 'received', '35.2000', '35.2000', '13.0000', NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, '35.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1404, 23, NULL, 6601, '1198', 'Starcold', NULL, '44.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '1.0000', '2022-09-10', 'received', '44.6000', '44.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '44.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1405, 23, NULL, 6000, '597', 'Vigorix Forte Syr 200ml', NULL, '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '2.0000', '2022-09-10', 'received', '11.1000', '11.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6303, '900', 'Lofnac 100mg Tablets', NULL, '1.4300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.4300', '0.0000', '2022-09-10', 'received', '1.4300', '1.4300', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', NULL, '5.6000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.8000', '0.0000', '2022-09-10', 'received', '5.6000', '5.6000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6248, '845', 'Teething Mixture 100ml ECL', NULL, '9.4000', '57.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '535.8000', '8.0000', '2022-09-10', 'received', '9.4000', '9.4000', '57.0000', NULL, NULL, 1, 'pc', '57.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6352, '949', 'Roxidol', NULL, '2.5000', '283.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '707.5000', '75.0000', '2022-09-10', 'received', '2.5000', '2.5000', '283.0000', NULL, NULL, 1, 'pc', '283.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5948, '545', 'Wormplex Suspension', NULL, '6.0000', '230.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1380.0000', '230.0000', '2022-09-10', 'received', '6.0000', '6.0000', '230.0000', NULL, NULL, 1, 'pc', '230.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1411, 23, NULL, 6363, '960', 'Bells Vitamin C Syrup', NULL, '14.8000', '211.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3122.8000', '130.0000', '2022-09-10', 'received', '14.8000', '14.8000', '211.0000', NULL, NULL, 1, 'pc', '211.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6294, '891', 'Menthodex 200ml Syrup', NULL, '23.0000', '91.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2093.0000', '26.0000', '2022-09-10', 'received', '23.0000', '23.0000', '91.0000', NULL, NULL, 1, 'pc', '91.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', NULL, '1.9500', '69.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.5500', '69.0000', '2022-09-10', 'received', '1.9500', '1.9500', '69.0000', NULL, NULL, 1, 'pc', '69.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', NULL, '3.8000', '104.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '395.2000', '13.0000', '2022-09-10', 'received', '3.8000', '3.8000', '104.0000', NULL, NULL, 1, 'pc', '104.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5532, '129', 'Coartem 80/480 6&apos;s', NULL, '56.1000', '62.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3478.2000', '62.0000', '2022-09-10', 'received', '56.1000', '56.1000', '62.0000', NULL, NULL, 1, 'pc', '62.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6288, '885', 'Tadol 50mg Capsules 20&apos;s', NULL, '56.0000', '94.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5264.0000', '59.0000', '2022-09-10', 'received', '56.0000', '56.0000', '94.0000', NULL, NULL, 1, 'pc', '94.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6764, '1361', 'Bells Normal Saline Drops 0.9% 10ml', NULL, '6.3000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '630.0000', '74.0000', '2022-09-10', 'received', '6.3000', '6.3000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6366, '963', 'Flotac Capsules 75mg 20&apos;s', NULL, '55.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '551.0000', '3.0000', '2022-09-10', 'received', '55.1000', '55.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6774, '1371', 'Bendrofluazide Tab 2.5mg 500\' ECL', NULL, '32.4000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '615.6000', '17.0000', '2022-09-10', 'received', '32.4000', '32.4000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 5783, '380', 'NAPROX ECL', NULL, '0.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '3.0000', '2022-09-10', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1421, 23, NULL, 5795, '392', 'Nizoral Cream 15gm', NULL, '35.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '353.0000', '0.0000', '2022-09-10', 'received', '35.3000', '35.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '35.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1422, 23, NULL, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', NULL, '4.6700', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.6000', '87.0000', '2022-09-10', 'received', '4.6700', '4.6700', '180.0000', NULL, NULL, 1, 'pc', '180.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', NULL, '37.8200', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1134.6000', '29.0000', '2022-09-10', 'received', '37.8200', '37.8200', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', NULL, '7.1000', '95.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '674.5000', '39.0000', '2022-09-10', 'received', '7.1000', '7.1000', '95.0000', NULL, NULL, 1, 'pc', '95.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6267, '864', 'Stopkof Cold &amp; Catarrh Tablets 12s', NULL, '7.1000', '93.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.3000', '0.0000', '2022-09-10', 'received', '7.1000', '7.1000', '93.0000', NULL, NULL, 1, 'pc', '93.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 23, NULL, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', NULL, '57.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1152.0000', '20.0000', '2022-09-10', 'received', '57.6000', '57.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1427, 23, NULL, 6753, '1350', 'COA Mixture', NULL, '85.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1530.0000', '18.0000', '2022-09-10', 'received', '85.0000', '85.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1428, 23, NULL, 5689, '286', 'Joy Ointment', NULL, '3.3000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '267.3000', '3.0000', '2022-09-10', 'received', '3.3000', '3.3000', '81.0000', NULL, NULL, 1, 'pc', '81.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1429, 23, NULL, 5629, '226', 'Funbact A', NULL, '8.4000', '142.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1192.8000', '0.0000', '2022-09-10', 'received', '8.4000', '8.4000', '142.0000', NULL, NULL, 1, 'pc', '142.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1430, 23, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.2000', '11.0000', '2022-09-10', 'received', '13.2000', '13.2000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1431, 23, NULL, 6005, '602', 'Sulphur Ointment 40g', NULL, '7.2000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.2000', '16.0000', '2022-09-10', 'received', '7.2000', '7.2000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1432, 23, NULL, 6871, '36549551', ' Ascovit Cee (Vit C) Tablets 100mg 300\\\'', NULL, '40.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '10.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1433, 28, NULL, 5796, '393', 'Normal Saline Infusion 500ml', NULL, '4.4800', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '25.0000', '2022-09-10', 'received', '4.4800', '4.4800', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1434, 28, NULL, 6043, '640', '5D Dextrose 5% Infusion 500ml', NULL, '5.4000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.2000', '1.0000', '2022-09-10', 'received', '5.4000', '5.4000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1435, 28, NULL, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', NULL, '30.6900', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1166.2200', '38.0000', '2022-09-10', 'received', '30.6900', '30.6900', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1436, 28, NULL, 5569, '166', 'Diazepam 5mg Tablets 500&apos;s', NULL, '21.6000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '194.4000', '4.0000', '2022-09-10', 'received', '21.6000', '21.6000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '21.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1437, 28, NULL, 6770, '1367', 'Enamycin tab 250mg 500\' ECL', NULL, '168.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '5.0000', '2022-09-10', 'received', '168.0000', '168.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '168.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1438, 28, NULL, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', NULL, '7.9000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '221.2000', '0.0000', '2022-09-10', 'received', '7.9000', '7.9000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', NULL, '16.8000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '369.6000', '22.0000', '2022-09-10', 'received', '16.8000', '16.8000', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6537, '1134', 'Enacin-C (Clindamycin) 300mg Caps 100\'', NULL, '93.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.8000', '3.0000', '2022-09-10', 'received', '93.6000', '93.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '93.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1441, 28, NULL, 6533, '1130', 'Atenolol 50mg Tablets 28&apos;s (ECL)', NULL, '3.9000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.1000', '0.0000', '2022-09-10', 'received', '3.9000', '3.9000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6290, '887', 'Fluxacin 500mg Capsules 20X10', NULL, '122.4000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1713.6000', '14.0000', '2022-09-10', 'received', '122.4000', '122.4000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1443, 28, NULL, 6536, '1133', 'Diclofenac Inj 75mg/3ml 10\'', NULL, '6.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.8000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', NULL, '30.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '11.0000', '2022-09-10', 'received', '30.0000', '30.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6605, '1202', 'Maxmox 500mg', NULL, '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6394, '991', 'Mycostat 150mg Capsules 1&apos;s', NULL, '5.5000', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '0.0000', '2022-09-10', 'received', '5.5000', '5.5000', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', NULL, '0.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.2000', '0.0000', '2022-09-10', 'received', '0.6000', '0.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', NULL, '1.9500', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '8.0000', '2022-09-10', 'received', '1.9500', '1.9500', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1449, 28, NULL, 6446, '1043', 'Dermiron Plus', NULL, '4.9000', '142.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '695.8000', '53.0000', '2022-09-10', 'received', '4.9000', '4.9000', '142.0000', NULL, NULL, 1, 'pc', '142.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1450, 28, NULL, 5869, '466', 'SHALATERM SUSP', NULL, '0.0000', '102.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '102.0000', '2022-09-10', 'received', '0.0000', '0.0000', '102.0000', NULL, NULL, 1, 'pc', '102.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1451, 28, NULL, 6794, '1391', 'Zirtek Syrup 150ml', NULL, '59.9000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1078.2000', '18.0000', '2022-09-10', 'received', '59.9000', '59.9000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1452, 28, NULL, 6795, '1392', 'Benylin Dry &amp; Tickly Cough 150ml', NULL, '55.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '279.0000', '0.0000', '2022-09-10', 'received', '55.8000', '55.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1453, 28, NULL, 6792, '1389', 'Benylin Chesty Cough 150ml(N/D)', NULL, '56.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8400.0000', '149.0000', '2022-09-10', 'received', '56.0000', '56.0000', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1454, 28, NULL, 6730, '1327', 'Nurofen Syrup 100ml Orange', NULL, '27.3000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '245.7000', '5.0000', '2022-09-10', 'received', '27.3000', '27.3000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1455, 28, NULL, 6467, '1064', 'Benylin Infant 125ml', NULL, '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1456, 28, NULL, 6729, '1326', 'Benylin Children Night Cough Syrup 125ml', NULL, '40.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1457, 28, NULL, 6793, '1390', 'Benylin Chesty Cough 300ml', NULL, '91.2000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1641.6000', '16.0000', '2022-09-10', 'received', '91.2000', '91.2000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1458, 28, NULL, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', NULL, '5.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-09-10', 'received', '5.5000', '5.5000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1459, 28, NULL, 6552, '1149', 'Zithromax 250mg Capsules 6&apos;s', NULL, '186.8000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2054.8000', '0.0000', '2022-09-10', 'received', '186.8000', '186.8000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1460, 28, NULL, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', NULL, '6.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '366.0000', '60.0000', '2022-09-10', 'received', '6.1000', '6.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1461, 28, NULL, 6678, '1275', 'Azirocin Suspension', NULL, '14.3000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '443.3000', '9.0000', '2022-09-10', 'received', '14.3000', '14.3000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1462, 28, NULL, 6326, '923', 'Ciprolex 500mg Tablets 10&apos;s', NULL, '14.0000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '980.0000', '0.0000', '2022-09-10', 'received', '14.0000', '14.0000', '70.0000', NULL, NULL, 1, 'pc', '70.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6670, '1267', 'Dicnac 75', NULL, '9.5000', '66.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '627.0000', '30.0000', '2022-09-10', 'received', '9.5000', '9.5000', '66.0000', NULL, NULL, 1, 'pc', '66.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 5527, '124', 'Ciprolex TZ', NULL, '27.0000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '513.0000', '0.0000', '2022-09-10', 'received', '27.0000', '27.0000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', NULL, '55.0000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1705.0000', '12.0000', '2022-09-10', 'received', '55.0000', '55.0000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 28, NULL, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', NULL, '1.6000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.2000', '32.0000', '2022-09-10', 'received', '1.6000', '1.6000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1467, 29, NULL, 5598, '195', 'Entramol 500mg Tablets 15X12', NULL, '2.6000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '21.0000', '2022-09-10', 'received', '2.6000', '2.6000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1468, 29, NULL, 5779, '376', 'Mycolex Cream 20g', NULL, '15.0000', '68.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.0000', '53.0000', '2022-09-10', 'received', '15.0000', '15.0000', '68.0000', NULL, NULL, 1, 'pc', '68.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1469, 29, NULL, 6280, '877', 'Hayan Capsules', NULL, '40.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1470, 29, NULL, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', NULL, '22.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '308.0000', '0.0000', '2022-09-10', 'received', '22.0000', '22.0000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1471, 29, NULL, 6329, '926', 'Neo Hycolex E/E/N 5ML Drops', NULL, '16.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1472, 30, NULL, 6014, '611', 'Coartem Dispersible 20/120mg Tablets 6&apos;s', NULL, '10.6800', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.2400', '2.0000', '2022-09-10', 'received', '10.6800', '10.6800', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1473, 30, NULL, 6126, '723', 'Amurox Suspension (Cefuroxime Axetil)', NULL, '11.7000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '514.8000', '34.0000', '2022-09-10', 'received', '11.7000', '11.7000', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1474, 30, NULL, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', NULL, '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1475, 30, NULL, 6427, '1024', 'Azilex Suspension 15ml', NULL, '17.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '525.0000', '0.0000', '2022-09-10', 'received', '17.5000', '17.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1476, 30, NULL, 6626, '1223', 'Zithromax  200mg/5ml 15ml Suspension', NULL, '99.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '993.0000', '4.0000', '2022-09-10', 'received', '99.3000', '99.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1477, 30, NULL, 6384, '981', 'Gebexime Suspension 50ml', NULL, '9.6600', '131.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1265.4600', '80.0000', '2022-09-10', 'received', '9.6600', '9.6600', '131.0000', NULL, NULL, 1, 'pc', '131.0000', NULL, NULL, NULL, NULL, '9.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1478, 30, NULL, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', NULL, '10.7800', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.2800', '3.0000', '2022-09-10', 'received', '10.7800', '10.7800', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1479, 30, NULL, 6681, '1278', 'Goldy Malaria Suspension', NULL, '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '1.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1480, 30, NULL, 6011, '608', 'Scimether Suspension', NULL, '14.2100', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '369.4600', '26.0000', '2022-09-10', 'received', '14.2100', '14.2100', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 31, NULL, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', NULL, '3.4100', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.9400', '34.0000', '2022-09-10', 'received', '3.4100', '3.4100', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6081, '678', 'X\'mox (Amoxicillin)500mg Capsules 21&apos;s', NULL, '10.4000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '9.0000', '2022-09-10', 'received', '10.4000', '10.4000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6490, '1087', 'Kefrox 500mg Tablets 10&apos;s', NULL, '30.0000', '39.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1170.0000', '39.0000', '2022-09-10', 'received', '30.0000', '30.0000', '39.0000', NULL, NULL, 1, 'pc', '39.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg', NULL, '13.2000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '316.8000', '24.0000', '2022-09-10', 'received', '13.2000', '13.2000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule', NULL, '2.9900', '130.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '388.7000', '130.0000', '2022-09-10', 'received', '2.9900', '2.9900', '130.0000', NULL, NULL, 1, 'pc', '130.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6550, '1147', 'Nestrim Tabs 480 Blister ECL', NULL, '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '6.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6146, '743', 'Amoxicillin 500mg Capsules M&amp; G 10x10', NULL, '33.0000', '74.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2442.0000', '73.0000', '2022-09-10', 'received', '33.0000', '33.0000', '74.0000', NULL, NULL, 1, 'pc', '74.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6823, '1420', 'Fluxamox Susp. 250mg/5ml 100ml', NULL, '10.7800', '86.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '927.0800', '39.0000', '2022-09-10', 'received', '10.7800', '10.7800', '86.0000', NULL, NULL, 1, 'pc', '86.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6292, '889', 'Fluxacin 100ml Suspension', NULL, '7.8000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.6000', '8.0000', '2022-09-10', 'received', '7.8000', '7.8000', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 32, NULL, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', NULL, '4.0000', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '256.0000', '0.0000', '2022-09-10', 'received', '4.0000', '4.0000', '64.0000', NULL, NULL, 1, 'pc', '64.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1934, 33, NULL, 6214, '811', 'Rufenac Gel 30g', NULL, '2.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.8000', '0.0000', '2022-09-10', 'received', '2.8000', '2.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1838, NULL, NULL, 5439, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1933, 33, NULL, 5990, '587', 'Whitfield ointment', NULL, '6.8000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.4000', '0.0000', '2022-09-10', 'received', '6.8000', '6.8000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1932, 33, NULL, 6168, '765', 'Vitaglobin 200ml Syrup M &amp; G', NULL, '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '1.0000', '2022-09-10', 'received', '8.4000', '8.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1931, 33, NULL, 6601, '1198', 'Starcold', NULL, '44.6000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '802.8000', '4.0000', '2022-09-10', 'received', '44.6000', '44.6000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '44.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1930, 33, NULL, 6021, '618', 'Rizole Suspension 100ml', NULL, '3.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.6000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1929, 33, NULL, 6819, '1416', 'Peladol Junior', NULL, '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1927, 33, NULL, 6211, '808', 'Contreg Syrup 30ml', NULL, '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0000', '1.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1928, 33, NULL, 6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', NULL, '5.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.3000', '1.0000', '2022-09-10', 'received', '5.3000', '5.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1924, 33, NULL, 6351, '948', 'Ronfit Cold D Syrup', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1925, 33, NULL, 6100, '697', 'Haem Up Syrup 200ml', NULL, '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1926, 33, NULL, 6847, '1444', 'Kelcuf Adult Syrup 100ml', NULL, '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1923, 33, NULL, 6674, '1271', 'Plaster roll Extra care 1Inch', NULL, '4.4500', '320.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1424.0000', '243.0000', '2022-09-10', 'received', '4.4500', '4.4500', '320.0000', NULL, NULL, 1, 'pc', '320.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1922, 33, NULL, 6345, '942', 'Blumoon 100mg', NULL, '3.6300', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '453.7500', '40.0000', '2022-09-10', 'received', '3.6300', '3.6300', '125.0000', NULL, NULL, 1, 'pc', '125.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1921, 33, NULL, 6346, '943', 'Blumoon 50mg', NULL, '2.2000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '550.0000', '220.0000', '2022-09-10', 'received', '2.2000', '2.2000', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1918, 33, NULL, 6662, '1259', 'Malaria Test Kit', NULL, '4.6000', '610.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2806.0000', '591.0000', '2022-09-10', 'received', '4.6000', '4.6000', '610.0000', NULL, NULL, 1, 'pc', '610.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1919, 33, NULL, 6682, '1279', 'Goldy Forte DS', NULL, '10.0000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '700.0000', '47.0000', '2022-09-10', 'received', '10.0000', '10.0000', '70.0000', NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1920, 33, NULL, 6353, '950', 'Ronfit Forte Tablets', NULL, '3.7500', '345.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1293.7500', '2.0000', '2022-09-10', 'received', '3.7500', '3.7500', '345.0000', NULL, NULL, 1, 'pc', '345.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1916, 33, NULL, 6154, '751', 'Paracetamol 500mg M&amp;G Tablets 50x10', NULL, '39.1000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1485.8000', '38.0000', '2022-09-10', 'received', '39.1000', '39.1000', '38.0000', NULL, NULL, 1, 'pc', '38.0000', NULL, NULL, NULL, NULL, '39.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1917, 33, NULL, 5731, '328', 'Lonart DS Tablets', NULL, '17.2000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5160.0000', '0.0000', '2022-09-10', 'received', '17.2000', '17.2000', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1915, 33, NULL, 5642, '239', 'Gebedol Plus Capsule', NULL, '24.4300', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '732.9000', '30.0000', '2022-09-10', 'received', '24.4300', '24.4300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '24.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1914, 33, NULL, 6582, '1179', 'Adom Ladies Capsules', NULL, '15.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '5.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1913, 33, NULL, 5985, '582', 'APC TABS 10X10', NULL, '12.2000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '500.2000', '41.0000', '2022-09-10', 'received', '12.2000', '12.2000', '41.0000', NULL, NULL, 1, 'pc', '41.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1912, 33, NULL, 5989, '586', 'APC 50X4 TABS', NULL, '28.1000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '505.8000', '18.0000', '2022-09-10', 'received', '28.1000', '28.1000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6390, '987', 'Salocold Tablets', NULL, '29.4500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.8000', '0.0000', '2022-09-10', 'received', '29.4500', '29.4500', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1911, 33, NULL, 6071, '668', 'Vin C 100mg Tablets 30&apos;s', NULL, '19.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '0.0000', '2022-09-10', 'received', '19.6000', '19.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', NULL, '79.1500', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '870.6500', '11.0000', '2022-09-10', 'received', '79.1500', '79.1500', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '79.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6360, '957', 'Wormbase Suspension', NULL, '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1906, 33, NULL, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', NULL, '4.5000', '382.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1719.0000', '346.0000', '2022-09-10', 'received', '4.5000', '4.5000', '382.0000', NULL, NULL, 1, 'pc', '382.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1907, 33, NULL, 6121, '718', 'Strobin Lozenges 25x6', NULL, '25.5000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '663.0000', '15.0000', '2022-09-10', 'received', '25.5000', '25.5000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1905, 33, NULL, 6738, '1335', 'Eskaron Capsules 10X30', NULL, '3.0000', '182.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '546.0000', '7.0000', '2022-09-10', 'received', '3.0000', '3.0000', '182.0000', NULL, NULL, 1, 'pc', '182.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1903, 33, NULL, 6679, '1276', 'Gebediclo 100mg Tablets', NULL, '9.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9500', '0.0000', '2022-09-10', 'received', '9.9900', '9.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1904, 33, NULL, 6680, '1277', 'Gebediclo 50mg Tablets', NULL, '8.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6000', '3.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1902, 33, NULL, 6643, '1240', 'Metro-Z Tablets 20&apos;s', NULL, '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1901, 33, NULL, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', NULL, '70.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1960.0000', '28.0000', '2022-09-10', 'received', '70.0000', '70.0000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1900, 33, NULL, 6590, '1187', 'Peladol Extra', NULL, '25.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '253.0000', '6.0000', '2022-09-10', 'received', '25.3000', '25.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1899, 33, NULL, 6528, '1125', 'Levon 2 Postpill CRD', NULL, '5.9800', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2152.8000', '160.0000', '2022-09-10', 'received', '5.9800', '5.9800', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1897, 33, NULL, 6514, '1111', 'Salicylics Ointment 40g', NULL, '6.6000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.4000', '8.0000', '2022-09-10', 'received', '6.6000', '6.6000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1898, 33, NULL, 6515, '1112', 'Ichthammol Ointment 40g', NULL, '13.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '4.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1895, 33, NULL, 6434, '1031', 'Cotton wool 50g', NULL, '5.2000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '832.0000', '99.0000', '2022-09-10', 'received', '5.2000', '5.2000', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1896, 33, NULL, 6456, '1053', 'Gastrone Tablets 100&apos;s', NULL, '21.6000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '561.6000', '19.0000', '2022-09-10', 'received', '21.6000', '21.6000', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '21.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1894, 33, NULL, 6430, '1027', 'Onidoll Tablets', NULL, '1.6000', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '576.0000', '345.0000', '2022-09-10', 'received', '1.6000', '1.6000', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1893, 33, NULL, 6418, '1015', 'Cetrizan 10mg Tablets 20&apos;s', NULL, '6.3300', '107.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '677.3100', '107.0000', '2022-09-10', 'received', '6.3300', '6.3300', '107.0000', NULL, NULL, 1, 'pc', '107.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1892, 33, NULL, 6371, '968', 'P-trust Pregnancy Test Kit 25&apos;s', NULL, '27.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '12.0000', '2022-09-10', 'received', '27.5000', '27.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1891, 33, NULL, 6356, '953', 'Cotton Wool 100g', NULL, '7.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1890, 33, NULL, 6354, '951', 'Parafenac', NULL, '2.3000', '495.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1138.5000', '495.0000', '2022-09-10', 'received', '2.3000', '2.3000', '495.0000', NULL, NULL, 1, 'pc', '495.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1889, 33, NULL, 6316, '913', 'Tot\'hema Box of 20 Bulbs', NULL, '62.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1240.0000', '14.0000', '2022-09-10', 'received', '62.0000', '62.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1888, 33, NULL, 6274, '871', 'Gana Balm 100g', NULL, '19.8000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '811.8000', '37.0000', '2022-09-10', 'received', '19.8000', '19.8000', '41.0000', NULL, NULL, 1, 'pc', '41.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1887, 33, NULL, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', NULL, '6.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '28.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1886, 33, NULL, 6205, '802', 'Citro C Tablets 25&apos;s', NULL, '38.5000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '616.0000', '8.0000', '2022-09-10', 'received', '38.5000', '38.5000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1884, 33, NULL, 6189, '786', 'Rufedol Tablets 10&apos;s', NULL, '1.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.2000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1885, 33, NULL, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', NULL, '55.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '990.0000', '18.0000', '2022-09-10', 'received', '55.0000', '55.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1883, 33, NULL, 6152, '749', 'Heptolif Tablets 50x2x10', NULL, '1.2000', '984.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1180.8000', '884.0000', '2022-09-10', 'received', '1.2000', '1.2000', '984.0000', NULL, NULL, 1, 'pc', '984.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1882, 33, NULL, 6140, '737', 'Fabrin Tablets 50X4', NULL, '30.8000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '277.2000', '4.0000', '2022-09-10', 'received', '30.8000', '30.8000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '30.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1881, 33, NULL, 6137, '734', 'Foligrow Capsules 30&apos;s', NULL, '15.0000', '58.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '870.0000', '58.0000', '2022-09-10', 'received', '15.0000', '15.0000', '58.0000', NULL, NULL, 1, 'pc', '58.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1880, 33, NULL, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', NULL, '5.8000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.2000', '0.0000', '2022-09-10', 'received', '5.8000', '5.8000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1879, 33, NULL, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', NULL, '4.3500', '133.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '578.5500', '84.0000', '2022-09-10', 'received', '4.3500', '4.3500', '133.0000', NULL, NULL, 1, 'pc', '133.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1878, 33, NULL, 6123, '720', 'Strobin Lozenges 54X6', NULL, '52.7000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '790.5000', '10.0000', '2022-09-10', 'received', '52.7000', '52.7000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1877, 33, NULL, 6114, '711', 'Plaster roll 4Inches Xtra care', NULL, '13.0000', '113.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1469.0000', '113.0000', '2022-09-10', 'received', '13.0000', '13.0000', '113.0000', NULL, NULL, 1, 'pc', '113.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1876, 33, NULL, 6113, '710', 'Plaster roll 3Inches Xtra care', NULL, '9.8000', '127.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1244.6000', '127.0000', '2022-09-10', 'received', '9.8000', '9.8000', '127.0000', NULL, NULL, 1, 'pc', '127.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1875, 33, NULL, 6107, '704', 'Lexofen Plus Tablets 2x10', NULL, '12.0000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2160.0000', '160.0000', '2022-09-10', 'received', '12.0000', '12.0000', '180.0000', NULL, NULL, 1, 'pc', '180.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1873, 33, NULL, 6032, '629', 'Gebedol Forte', NULL, '17.2100', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '550.7200', '32.0000', '2022-09-10', 'received', '17.2100', '17.2100', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '17.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1874, 33, NULL, 6034, '631', 'Deep Heat Spray 150ml', NULL, '41.8000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '668.8000', '5.0000', '2022-09-10', 'received', '41.8000', '41.8000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1872, 33, NULL, 6031, '628', 'Blocold Tablet', NULL, '17.8200', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '926.6400', '52.0000', '2022-09-10', 'received', '17.8200', '17.8200', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1869, 33, NULL, 5994, '591', 'Alugel Tablets 50&apos;s', NULL, '33.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-09-10', 'received', '33.6000', '33.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '33.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1624, NULL, NULL, 5468, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5467, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1871, 33, NULL, 6006, '603', 'Panacin Tabs 25X4', NULL, '10.8300', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.2600', '14.0000', '2022-09-10', 'received', '10.8300', '10.8300', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1870, 33, NULL, 5999, '596', 'Antasil Tablets 50&apos;s', NULL, '25.7000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.9000', '0.0000', '2022-09-10', 'received', '25.7000', '25.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1868, 33, NULL, 5993, '590', 'Calamine ointment 40mg', NULL, '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-09-10', 'received', '7.0000', '7.0000', NULL, 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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1693, NULL, NULL, 5408, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1694, NULL, NULL, 5404, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1695, NULL, NULL, 5407, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1696, NULL, NULL, 5415, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1697, NULL, NULL, 5572, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5448, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5817, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5410, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5521, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5522, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5409, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1839, 34, NULL, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', NULL, '7.8000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '25.0000', '2022-09-10', 'received', '7.8000', '7.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1840, 34, NULL, 6550, '1147', 'Nestrim Tabs 480 Blister ECL', NULL, '14.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '60.0000', '2022-09-10', 'received', '14.0000', '14.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1841, 34, NULL, 6127, '724', 'X\'Zole F Suspension', NULL, '7.3000', '99.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '722.7000', '80.0000', '2022-09-10', 'received', '7.3000', '7.3000', '99.0000', NULL, NULL, 1, 'pc', '99.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1842, 34, NULL, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', NULL, '3.1800', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.9200', '44.0000', '2022-09-10', 'received', '3.1800', '3.1800', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1843, 34, NULL, 5617, '214', 'Flagyl Suspension 100ml', NULL, '39.3000', '35.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1375.5000', '30.0000', '2022-09-10', 'received', '39.3000', '39.3000', '35.0000', NULL, NULL, 1, 'pc', '35.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1844, 34, NULL, 6021, '618', 'Rizole Suspension 100ml', NULL, '3.6000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1845, 34, NULL, 5767, '364', 'MetroGR-F Junior Suspension 100ml', NULL, '5.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1846, 34, NULL, 6506, '1103', 'Fumet Suspension', NULL, '3.8800', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.9200', '11.0000', '2022-09-10', 'received', '3.8800', '3.8800', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1847, 34, NULL, 6837, '1434', 'Maxmox 250mg (50x10)', NULL, '87.4000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1398.4000', '8.0000', '2022-09-10', 'received', '87.4000', '87.4000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '87.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1848, 34, NULL, 6669, '1266', 'Emgiflox Suspension 100ml', NULL, '6.0000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '12.0000', '2022-09-10', 'received', '6.0000', '6.0000', '17.0000', NULL, NULL, 1, 'pc', '17.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1849, 34, NULL, 6375, '972', 'Metronidazole 100ml Suspension Letap', NULL, '3.5200', '47.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.4400', '47.0000', '2022-09-10', 'received', '3.5200', '3.5200', '47.0000', NULL, NULL, 1, 'pc', '47.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1850, 34, NULL, 6769, '1366', 'Metagyl (Metzol) Syrup 200mg/5ml 100', NULL, '0.0000', '67.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '67.0000', '2022-09-10', 'received', '0.0000', '0.0000', '67.0000', NULL, NULL, 1, 'pc', '67.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1851, 34, NULL, 5418, '15', 'Aboniki', NULL, '5.5000', '384.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2112.0000', '14.0000', '2022-09-10', 'received', '5.5000', '5.5000', '384.0000', NULL, NULL, 1, 'pc', '384.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1852, 34, NULL, 6621, '1218', 'Lumetrust Suspension 150ml', NULL, '9.5000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.5000', '20.0000', '2022-09-10', 'received', '9.5000', '9.5000', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1853, 34, NULL, 6304, '901', 'Lonart Suspension', NULL, '13.5000', '175.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2362.5000', '74.0000', '2022-09-10', 'received', '13.5000', '13.5000', '175.0000', NULL, NULL, 1, 'pc', '175.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1854, 34, NULL, 5509, '106', 'Cartef Suspension', NULL, '6.8800', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '316.4800', '0.0000', '2022-09-10', 'received', '6.8800', '6.8800', '46.0000', NULL, NULL, 1, 'pc', '46.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1855, 34, NULL, 6297, '894', 'Malar-2 Suspension 60ml', NULL, '10.4000', '71.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '738.4000', '5.0000', '2022-09-10', 'received', '10.4000', '10.4000', '71.0000', NULL, NULL, 1, 'pc', '71.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1856, 34, NULL, 6125, '722', 'Lufart Suspension', NULL, '10.5000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.5000', '13.0000', '2022-09-10', 'received', '10.5000', '10.5000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1857, 34, NULL, 6690, '1287', 'Seclear Eye Drop', NULL, '8.2500', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.0000', '0.0000', '2022-09-10', 'received', '8.2500', '8.2500', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1858, 34, NULL, 5611, '208', 'Ferrous Sulphate 200mg Tab 30&apos;s EXE', NULL, '6.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '7.0000', '2022-09-10', 'received', '6.0000', '6.0000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1859, 34, NULL, 6639, '1236', 'Ferrous Sulphate Tablets 500s ECL', NULL, '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1860, 34, NULL, 6644, '1241', 'Secnidazole 1g Tablets 2&apos;s (Lavina) ECL', NULL, '4.6000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '207.0000', '1.0000', '2022-09-10', 'received', '4.6000', '4.6000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1861, 34, NULL, 6180, '777', 'Ketazol Shampoo 100ml', NULL, '12.2000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1024.8000', '74.0000', '2022-09-10', 'received', '12.2000', '12.2000', '84.0000', NULL, NULL, 1, 'pc', '84.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1862, 34, NULL, 6776, '1373', 'Lorazepam 2mg Tabs 500\' ECL', NULL, '59.8000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '538.2000', '9.0000', '2022-09-10', 'received', '59.8000', '59.8000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1863, 34, NULL, 6265, '862', 'Folic Acid Tablets 50X10 ECL', NULL, '11.8000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.6000', '11.0000', '2022-09-10', 'received', '11.8000', '11.8000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1864, 35, NULL, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', NULL, '88.9000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1866.9000', '7.0000', '2022-09-10', 'received', '88.9000', '88.9000', '21.0000', NULL, NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, '88.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 36, NULL, 6081, '678', 'Xmox (Amoxicillin) 500mg Capsules 10x1x21s Entrance', NULL, '10.4000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '842.4000', '75.0000', '2022-09-10', 'received', '10.4000', '10.4000', '81.0000', NULL, NULL, 1, 'pc', '81.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1866, NULL, NULL, 5782, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1867, NULL, NULL, 5405, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1935, 33, NULL, 6004, '601', 'PMF 200g', NULL, '12.0000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '528.0000', '38.0000', '2022-09-10', 'received', '12.0000', '12.0000', '44.0000', NULL, NULL, 1, 'pc', '44.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1936, 33, NULL, 5696, '293', 'Kidicare Srup 200ml', NULL, '14.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1937, 33, NULL, 6425, '1022', 'Zinc Oxide Ointment 40g', NULL, '6.7000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7000', '8.0000', '2022-09-10', 'received', '6.7000', '6.7000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1938, 33, NULL, 6516, '1113', 'Methyl Salicylate Ointment 40g', NULL, '7.6000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.8000', '10.0000', '2022-09-10', 'received', '7.6000', '7.6000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1939, 33, NULL, 6005, '602', 'Sulphur Ointment 40g', NULL, '7.2000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.2000', '0.0000', '2022-09-10', 'received', '7.2000', '7.2000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1940, 33, NULL, 5559, '156', 'Danrub Ointment 40g', NULL, '8.3000', '86.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '713.8000', '72.0000', '2022-09-10', 'received', '8.3000', '8.3000', '86.0000', NULL, NULL, 1, 'pc', '86.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1941, 33, NULL, 6350, '947', 'Ronfit Cold P Junior Syrup', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1942, 33, NULL, 6449, '1046', 'Diagellates Elixir 250ml', NULL, '25.5000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1045.5000', '19.0000', '2022-09-10', 'received', '25.5000', '25.5000', '41.0000', NULL, NULL, 1, 'pc', '41.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1943, 33, NULL, 6450, '1047', 'Diagellates Elixir 500ml', NULL, '45.0000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1305.0000', '22.0000', '2022-09-10', 'received', '45.0000', '45.0000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1944, 33, NULL, 6448, '1045', 'Diagellates Elixir 125ml', NULL, '15.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '24.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1945, 33, NULL, 6749, '1346', 'Jet 2 Inhaler', NULL, '40.0000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1800.0000', '21.0000', '2022-09-10', 'received', '40.0000', '40.0000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1946, 33, NULL, 6386, '983', 'Paingay Capsules', NULL, '3.2000', '285.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '912.0000', '285.0000', '2022-09-10', 'received', '3.2000', '3.2000', '285.0000', NULL, NULL, 1, 'pc', '285.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1947, 33, NULL, 6019, '616', 'Cetapol 500mg Tablet 2X10', NULL, '2.5300', '245.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '619.8500', '208.0000', '2022-09-10', 'received', '2.5300', '2.5300', '245.0000', NULL, NULL, 1, 'pc', '245.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1948, 33, NULL, 6027, '624', 'Clopimol Tablet', NULL, '17.2600', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '569.5800', '30.0000', '2022-09-10', 'received', '17.2600', '17.2600', '33.0000', NULL, NULL, 1, 'pc', '33.0000', NULL, NULL, NULL, NULL, '17.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1949, 33, NULL, 6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', NULL, '41.5800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.4800', '2.0000', '2022-09-10', 'received', '41.5800', '41.5800', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1950, 33, NULL, 6179, '776', 'Ibucap Forte Capsules', NULL, '2.1000', '580.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1218.0000', '580.0000', '2022-09-10', 'received', '2.1000', '2.1000', '580.0000', NULL, NULL, 1, 'pc', '580.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1951, 33, NULL, 5713, '310', 'Letacam (Piroxicam)', NULL, '6.6500', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.8000', '32.0000', '2022-09-10', 'received', '6.6500', '6.6500', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1952, 33, NULL, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', NULL, '1.4900', '115.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.3500', '64.0000', '2022-09-10', 'received', '1.4900', '1.4900', '115.0000', NULL, NULL, 1, 'pc', '115.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1953, 33, NULL, 6361, '958', 'Basecold Tablets (50x4)', NULL, '49.5000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1633.5000', '33.0000', '2022-09-10', 'received', '49.5000', '49.5000', '33.0000', NULL, NULL, 1, 'pc', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1954, 33, NULL, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', NULL, '20.9500', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '293.3000', '0.0000', '2022-09-10', 'received', '20.9500', '20.9500', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '20.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1955, 33, NULL, 6864, '98367406', 'Fiesta Condom Strawberry ', NULL, '14.5000', '141.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2044.5000', '141.0000', '2022-09-10', 'received', '14.5000', '14.5000', '141.0000', NULL, NULL, 1, 'pc', '141.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1956, 33, NULL, 6571, '1168', 'Fiesta Lubricant', NULL, '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1957, 33, NULL, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', NULL, '4.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '29.0000', '2022-09-10', 'received', '4.5000', '4.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1958, 33, NULL, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', NULL, '7.6000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '456.0000', '53.0000', '2022-09-10', 'received', '7.6000', '7.6000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1959, 33, NULL, 6822, '1419', 'Malufen 560 Tablets (Artemether Lumefantrine Tablets)', NULL, '10.0000', '310.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3100.0000', '310.0000', '2022-09-10', 'received', '10.0000', '10.0000', '310.0000', NULL, NULL, 1, 'pc', '310.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1960, 33, NULL, 6074, '671', 'Lydia Postpill 1Tablet', NULL, '8.5000', '1521.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12928.5000', '1521.0000', '2022-09-10', 'received', '8.5000', '8.5000', '1521.0000', NULL, NULL, 1, 'pc', '1521.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1961, 33, NULL, 6273, '870', 'Vikil 20', NULL, '26.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1560.0000', '60.0000', '2022-09-10', 'received', '26.0000', '26.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1962, 33, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '990.0000', '75.0000', '2022-09-10', 'received', '13.2000', '13.2000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1963, 33, NULL, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', NULL, '7.9400', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1429.2000', '118.0000', '2022-09-10', 'received', '7.9400', '7.9400', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1964, 33, NULL, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', NULL, '21.4000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '770.4000', '0.0000', '2022-09-10', 'received', '21.4000', '21.4000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '21.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1965, 33, NULL, 5451, '48', 'Arfan 20/120mg', NULL, '5.8600', '224.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1312.6400', '224.0000', '2022-09-10', 'received', '5.8600', '5.8600', '224.0000', NULL, NULL, 1, 'pc', '224.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1966, 33, NULL, 6854, '1451', 'Luex Baby Powder 200g', NULL, '6.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '33.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1967, 33, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '13.8000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '552.0000', '6.0000', '2022-09-10', 'received', '13.8000', '13.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1968, 33, NULL, 6020, '617', 'ORS Plain 25&apos;s', NULL, '16.3100', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '652.4000', '40.0000', '2022-09-10', 'received', '16.3100', '16.3100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '16.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1969, 33, NULL, 5975, '572', 'Durol Tonic 200ml', NULL, '9.1500', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '274.5000', '0.0000', '2022-09-10', 'received', '9.1500', '9.1500', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1970, 33, NULL, 5926, '523', 'Vermox 500mg Tablets', NULL, '10.9000', '430.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4687.0000', '0.0000', '2022-09-10', 'received', '10.9000', '10.9000', '430.0000', NULL, NULL, 1, 'pc', '430.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1971, 33, NULL, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', NULL, '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.8000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1972, 33, NULL, 6718, '1315', 'Canderel Tablets 105&apos;s', NULL, '12.9000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '0.0000', '2022-09-10', 'received', '12.9000', '12.9000', '9.0000', NULL, NULL, 1, 'pc', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1973, 33, NULL, 5853, '450', 'Rooter Mixture', NULL, '10.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '252.0000', '24.0000', '2022-09-10', 'received', '10.5000', '10.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1974, 33, NULL, 6010, '607', 'Rooter Tytonic', NULL, '16.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '12.0000', '2022-09-10', 'received', '16.5000', '16.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1975, 33, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '4.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '40.0000', '2022-09-10', 'received', '4.2000', '4.2000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1976, 33, NULL, 5898, '495', 'Taabea Herbal Mixture', NULL, '13.2000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '25.0000', '2022-09-10', 'received', '13.2000', '13.2000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1977, 33, NULL, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', NULL, '16.8000', '211.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3544.8000', '0.0000', '2022-09-10', 'received', '16.8000', '16.8000', '211.0000', NULL, NULL, 1, 'pc', '211.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1978, 33, NULL, 5792, '389', 'Nifecard XL 30mg Tablets 30&apos;s ECL', NULL, '30.2000', '78.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2355.6000', '0.0000', '2022-09-10', 'received', '30.2000', '30.2000', '78.0000', NULL, NULL, 1, 'pc', '78.0000', NULL, NULL, NULL, NULL, '30.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1979, 33, NULL, 5714, '311', 'Letamol Elixir 125ml', NULL, '3.3000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '60.0000', '2022-09-10', 'received', '3.3000', '3.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1980, 33, NULL, 6285, '882', 'Auntie Mary Gripewater 150ml', NULL, '9.4700', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '284.1000', '30.0000', '2022-09-10', 'received', '9.4700', '9.4700', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5587, '184', 'Drez Ointment 10g', NULL, '8.8000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1056.0000', '117.0000', '2022-09-10', 'received', '8.8000', '8.8000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1982, 33, NULL, 6201, '798', 'Samalin Junior cough syrup 125ml', NULL, '6.9000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '828.0000', '110.0000', '2022-09-10', 'received', '6.9000', '6.9000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5976, '573', 'Koffex Adult Cough Syr 125ml', NULL, '7.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '385.0000', '50.0000', '2022-09-10', 'received', '7.7000', '7.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1984, 33, NULL, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', NULL, '4.6200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '277.2000', '60.0000', '2022-09-10', 'received', '4.6200', '4.6200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6445, '1042', 'Vermox Suspension', NULL, '21.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '654.0000', '20.0000', '2022-09-10', 'received', '21.8000', '21.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1986, 33, NULL, 6408, '1005', 'E-Panol 100ml Syrup Plain', NULL, '4.6700', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.6000', '69.0000', '2022-09-10', 'received', '4.6700', '4.6700', '180.0000', NULL, NULL, 1, 'pc', '180.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5799, '396', 'Nugel-O Suspension 200ml', NULL, '20.1300', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1006.5000', '20.0000', '2022-09-10', 'received', '20.1300', '20.1300', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1988, 33, NULL, 6666, '1263', 'Examination Gloves', NULL, '50.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '8.0000', '2022-09-10', 'received', '50.0000', '50.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5834, '431', 'Proman Capsules 30s', NULL, '41.5800', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '332.6400', '0.0000', '2022-09-10', 'received', '41.5800', '41.5800', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1990, 33, NULL, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', NULL, '30.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.0000', '35.0000', '2022-09-10', 'received', '30.0000', '30.0000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5632, '229', 'Gacet 250mg Suppository', NULL, '8.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '960.0000', '89.0000', '2022-09-10', 'received', '8.0000', '8.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1992, 33, NULL, 5631, '228', 'Gacet 125mg Suppositories', NULL, '6.5000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '780.0000', '86.0000', '2022-09-10', 'received', '6.5000', '6.5000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 5729, '326', 'Lofnac 100mg Suppository', NULL, '10.5000', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1155.0000', '0.0000', '2022-09-10', 'received', '10.5000', '10.5000', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1994, 33, NULL, 6691, '1288', 'Lonart 20/120mg Tablets 24&apos;s', NULL, '6.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '0.0000', '2022-09-10', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6120, '717', 'Ancigel O Suspension 200ml', NULL, '14.8500', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '445.5000', '12.0000', '2022-09-10', 'received', '14.8500', '14.8500', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1996, 33, NULL, 6671, '1268', 'Kofof Baby', NULL, '7.1500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '429.0000', '32.0000', '2022-09-10', 'received', '7.1500', '7.1500', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6076, '673', 'Kiss Condom Strawberry', NULL, '2.3000', '624.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1435.2000', '585.0000', '2022-09-10', 'received', '2.3000', '2.3000', '624.0000', NULL, NULL, 1, 'pc', '624.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1998, 33, NULL, 5535, '132', 'Coldrilif Capsules 10X10', NULL, '3.9100', '800.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3128.0000', '800.0000', '2022-09-10', 'received', '3.9100', '3.9100', '800.0000', NULL, NULL, 1, 'pc', '800.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 33, NULL, 6663, '1260', 'Cotton Wool 25gm', NULL, '2.5000', '119.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.5000', '119.0000', '2022-09-10', 'received', '2.5000', '2.5000', '119.0000', NULL, NULL, 1, 'pc', '119.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2000, 33, NULL, 6843, '1440', 'Robb Inhaler', NULL, '22.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '242.0000', '0.0000', '2022-09-10', 'received', '22.0000', '22.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6740, '1337', 'Nurofen Syrup Ibuprofen 100ml Strawberry', NULL, '36.3000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '399.3000', '9.0000', '2022-09-11', 'received', '36.3000', '36.3000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2002, 37, NULL, 6693, '1290', 'Benylin Mucus Max H&amp;L', NULL, '57.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6701, '1298', 'Benylin Mucus+Decon Syrup100ml', NULL, '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7000', '0.0000', '2022-09-11', 'received', '43.7000', '43.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2004, 37, NULL, 6564, '1161', 'Proximexa 500mg Tablets', NULL, '81.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '407.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 5532, '129', 'Coartem 80/480 6&apos;s', NULL, '56.1000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2468.4000', '25.0000', '2022-09-11', 'received', '56.1000', '56.1000', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2006, 37, NULL, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', NULL, '12.5000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '387.5000', '0.0000', '2022-09-11', 'received', '12.5000', '12.5000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2007, 37, NULL, 6565, '1162', 'Tegretol CR 200mg Divitabs 50&apos;s', NULL, '64.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '323.9000', '1.0000', '2022-09-11', 'received', '64.7800', '64.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '64.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6187, '784', 'Omeshal D Capsule (Omeprazole+Domperidone)10&apos;s', NULL, '7.7000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '346.5000', '42.0000', '2022-09-11', 'received', '7.7000', '7.7000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2009, 37, NULL, 5711, '308', 'Lemsip Cold and flu Max 10&apos;s', NULL, '44.8000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '403.2000', '5.0000', '2022-09-11', 'received', '44.8000', '44.8000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '44.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2010, 37, NULL, 6717, '1314', 'Lemsip Cold and flu Original 10&apos;s', NULL, '38.4000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '537.6000', '6.0000', '2022-09-11', 'received', '38.4000', '38.4000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2011, 37, NULL, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', NULL, '0.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-09-11', 'received', '0.6000', '0.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6012, '609', 'Scimether 80/480mg Tablet', NULL, '16.6600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.9000', '13.0000', '2022-09-11', 'received', '16.6600', '16.6600', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2013, 37, NULL, 6788, '1385', 'Fun Time Stim. Joy Ring', NULL, '20.6000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1483.2000', '72.0000', '2022-09-11', 'received', '20.6000', '20.6000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6681, '1278', 'Goldy Malaria Suspension', NULL, '10.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '600.0000', '54.0000', '2022-09-11', 'received', '10.0000', '10.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2015, 37, NULL, 5435, '32', 'Amcof Adult Syrup', NULL, '7.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.0000', '60.0000', '2022-09-11', 'received', '7.4000', '7.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', NULL, '26.5000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2385.0000', '90.0000', '2022-09-11', 'received', '26.5000', '26.5000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2017, 37, NULL, 6375, '972', 'Metronidazole 100ml Suspension Letap', NULL, '3.5200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '211.2000', '60.0000', '2022-09-11', 'received', '3.5200', '3.5200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 5676, '273', 'Imax Delay Spray', NULL, '30.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3600.0000', '50.0000', '2022-09-11', 'received', '30.0000', '30.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2019, 37, NULL, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', NULL, '6.1000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1464.0000', '149.0000', '2022-09-11', 'received', '6.1000', '6.1000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 5458, '55', 'Aspirin Tab 300mg', NULL, '18.3200', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '439.6800', '24.0000', '2022-09-11', 'received', '18.3200', '18.3200', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '18.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2021, 37, NULL, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', NULL, '3.1800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.8000', '60.0000', '2022-09-11', 'received', '3.1800', '3.1800', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6685, '1282', 'Alu Hyd Tablets', NULL, '0.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.5000', '3.0000', '2022-09-11', 'received', '0.5000', '0.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2023, 37, NULL, 5969, '566', 'Teedar Syrup 125ml', NULL, '8.8000', '43.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.4000', '0.0000', '2022-09-11', 'received', '8.8000', '8.8000', '43.0000', NULL, NULL, 1, 'pc', '43.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6817, '1414', 'Basecold 1x6 Tab', NULL, '13.8000', '74.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1021.2000', '40.0000', '2022-09-11', 'received', '13.8000', '13.8000', '74.0000', NULL, NULL, 1, 'pc', '74.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2025, 37, NULL, 6010, '607', 'Rooter Tytonic', NULL, '16.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '10.0000', '2022-09-11', 'received', '16.5000', '16.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6851, '1448', 'Cotton 500g', NULL, '26.0000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '806.0000', '30.0000', '2022-09-11', 'received', '26.0000', '26.0000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2027, 37, NULL, 6818, '1415', 'Foliron Capsules', NULL, '3.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-09-11', 'received', '3.5000', '3.5000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6117, '714', 'Gudapet Capsules', NULL, '6.6000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.2000', '0.0000', '2022-09-11', 'received', '6.6000', '6.6000', '17.0000', NULL, NULL, 1, 'pc', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2029, 37, NULL, 6206, '803', 'Contreg Tablets 10x10', NULL, '7.8400', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '219.5200', '9.0000', '2022-09-11', 'received', '7.8400', '7.8400', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 5640, '237', 'Gebedol Tablet', NULL, '11.1000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1110.0000', '0.0000', '2022-09-11', 'received', '11.1000', '11.1000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2031, 37, NULL, 5654, '251', 'Gentian violet (GV PAINT)', NULL, '2.0000', '291.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '582.0000', '290.0000', '2022-09-11', 'received', '2.0000', '2.0000', '291.0000', NULL, NULL, 1, 'pc', '291.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6275, '872', 'Gana Balm 20g', NULL, '4.7000', '335.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1574.5000', '283.0000', '2022-09-11', 'received', '4.7000', '4.7000', '335.0000', NULL, NULL, 1, 'pc', '335.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2033, 37, NULL, 5988, '585', 'Samalin Lozenges 2x10&apos;s', NULL, '3.0000', '95.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.0000', '35.0000', '2022-09-11', 'received', '3.0000', '3.0000', '95.0000', NULL, NULL, 1, 'pc', '95.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', NULL, '5.3000', '99.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '524.7000', '60.0000', '2022-09-11', 'received', '5.3000', '5.3000', '99.0000', NULL, NULL, 1, 'pc', '99.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2035, 37, NULL, 5476, '73', 'Borges Olive Oil 125ml', NULL, '13.3000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-11', 'received', '13.3000', '13.3000', '0.0000', NULL, NULL, 1, 'pc', '0.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6812, '1409', 'Sudocrem 60g', NULL, '26.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '636.0000', '9.0000', '2022-09-11', 'received', '26.5000', '26.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2037, 37, NULL, 6813, '1410', 'Becoatin Syrup 200ml', NULL, '13.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '780.0000', '0.0000', '2022-09-11', 'received', '13.0000', '13.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2038, 37, NULL, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', NULL, '30.0000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4800.0000', '95.0000', '2022-09-11', 'received', '30.0000', '30.0000', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2039, 37, NULL, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', NULL, '16.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1680.0000', '100.0000', '2022-09-11', 'received', '16.8000', '16.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 37, NULL, 6225, '822', 'Letalin Expectorant Syrup 125ml', NULL, '2.8000', '53.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.4000', '53.0000', '2022-09-11', 'received', '2.8000', '2.8000', '53.0000', NULL, NULL, 1, 'pc', '53.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2041, 37, NULL, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', NULL, '37.8200', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-11', 'received', '37.8200', '37.8200', '0.0000', NULL, NULL, 1, 'pc', '0.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6846, '1443', 'Haemo Forte Syrup 100ml', NULL, '11.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.0000', '36.0000', '2022-09-11', 'received', '11.5000', '11.5000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2043, 38, NULL, 6075, '672', 'Kiss Condom Classic', NULL, '2.3000', '432.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '993.6000', '369.0000', '2022-09-11', 'received', '2.3000', '2.3000', '432.0000', NULL, NULL, 1, 'pc', '432.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6151, '748', 'Jeditone Syrup 200ml', NULL, '6.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '335.0000', '35.0000', '2022-09-11', 'received', '6.7000', '6.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2045, 38, NULL, 6102, '699', 'Haemo Forte Syrup 200ml', NULL, '27.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '556.0000', '20.0000', '2022-09-11', 'received', '27.8000', '27.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 5906, '503', 'Tetracycline Capsules', NULL, '15.8200', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '427.1400', '0.0000', '2022-09-11', 'received', '15.8200', '15.8200', '27.0000', NULL, NULL, 1, 'pc', '27.0000', NULL, NULL, NULL, NULL, '15.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2047, 38, NULL, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', NULL, '7.8000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '468.0000', '26.0000', '2022-09-11', 'received', '7.8000', '7.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', NULL, '15.9500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '319.0000', '0.0000', '2022-09-11', 'received', '15.9500', '15.9500', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2049, 38, NULL, 6833, '1430', 'Eskafan Tabs 20/120 (1X24)', NULL, '6.1000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '976.0000', '157.0000', '2022-09-11', 'received', '6.1000', '6.1000', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 5689, '286', 'Joy Ointment', NULL, '3.3000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '0.0000', '2022-09-11', 'received', '3.3000', '3.3000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2051, 38, NULL, 6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', NULL, '11.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '0.0000', '2022-09-11', 'received', '11.8000', '11.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6778, '1375', 'Nugel Susp 200ml', NULL, '19.3400', '175.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3384.5000', '114.0000', '2022-09-11', 'received', '19.3400', '19.3400', '175.0000', NULL, NULL, 1, 'pc', '175.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2053, 38, NULL, 6261, '858', 'Baby Cough Linctus 125ml ECL', NULL, '5.2000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '624.0000', '118.0000', '2022-09-11', 'received', '5.2000', '5.2000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', NULL, '5.1000', '192.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '979.2000', '190.0000', '2022-09-11', 'received', '5.1000', '5.1000', '192.0000', NULL, NULL, 1, 'pc', '192.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2055, 38, NULL, 5827, '424', 'Polyfer Capsules 30&apos;s', NULL, '5.9000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.5000', '17.0000', '2022-09-11', 'received', '5.9000', '5.9000', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 38, NULL, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', NULL, '4.6200', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '831.6000', '141.0000', '2022-09-11', 'received', '4.6200', '4.6200', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2057, 39, NULL, 6285, '882', 'Auntie Mary Gripewater 150ml', NULL, '9.4700', '149.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1411.0300', '17.0000', '2022-09-11', 'received', '9.4700', '9.4700', '149.0000', NULL, NULL, 1, 'pc', '149.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', NULL, '78.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2496.0000', '32.0000', '2022-09-11', 'received', '78.0000', '78.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '78.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2059, 39, NULL, 6373, '970', 'Letamol Tablets 100&apos;s', NULL, '72.2000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1371.8000', '19.0000', '2022-09-11', 'received', '72.2000', '72.2000', '19.0000', NULL, NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, '72.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2060, 39, NULL, 6825, '1422', 'Oxytetra Cap 250mg', NULL, '46.2800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2800', '0.0000', '2022-09-11', 'received', '46.2800', '46.2800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '46.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2061, 39, NULL, 5418, '15', 'Aboniki', NULL, '5.5000', '67.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.5000', '0.0000', '2022-09-11', 'received', '5.5000', '5.5000', '67.0000', NULL, NULL, 1, 'pc', '67.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6543, '1140', 'Gastrone Suspension 200ml', NULL, '11.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '0.0000', '2022-09-11', 'received', '11.2000', '11.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2063, 39, NULL, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', NULL, '17.0000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '323.0000', '19.0000', '2022-09-11', 'received', '17.0000', '17.0000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', NULL, '15.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.0000', '32.0000', '2022-09-11', 'received', '15.0000', '15.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2065, 39, NULL, 6273, '870', 'Vikil 20', NULL, '26.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '780.0000', '14.0000', '2022-09-11', 'received', '26.0000', '26.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5799, '396', 'Nugel-O Suspension 200ml', NULL, '20.1300', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4026.0000', '0.0000', '2022-09-11', 'received', '20.1300', '20.1300', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2067, 39, NULL, 6211, '808', 'Contreg Syrup 30ml', NULL, '4.0000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '28.0000', '2022-09-11', 'received', '4.0000', '4.0000', '37.0000', NULL, NULL, 1, 'pc', '37.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2068, 39, NULL, 6408, '1005', 'E-Panol 100ml Syrup Plain', NULL, '4.6700', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.4000', '0.0000', '2022-09-11', 'received', '4.6700', '4.6700', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2069, 39, NULL, 6139, '736', 'Amino pep Syrup 200ml', NULL, '15.9500', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '366.8500', '23.0000', '2022-09-11', 'received', '15.9500', '15.9500', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5991, '588', 'Kwik Action Tablets 50x4', NULL, '37.7000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '791.7000', '0.0000', '2022-09-11', 'received', '37.7000', '37.7000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2071, 39, NULL, 5593, '190', 'Efpac Tablets', NULL, '38.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '770.0000', '1.0000', '2022-09-11', 'received', '38.5000', '38.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5926, '523', 'Vermox 500mg Tablets', NULL, '10.9000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6540.0000', '0.0000', '2022-09-11', 'received', '10.9000', '10.9000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2073, 39, NULL, 6373, '970', 'Letamol Tablets 100&apos;s', NULL, '72.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '866.4000', '12.0000', '2022-09-11', 'received', '72.2000', '72.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '72.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2074, 39, NULL, 6455, '1052', 'Paracetamol 500mg Tablets 100&apos;s EXE', NULL, '19.5800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1174.8000', '57.0000', '2022-09-11', 'received', '19.5800', '19.5800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '19.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2075, 39, NULL, 5948, '545', 'Wormplex Suspension', NULL, '6.0000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3000.0000', '92.0000', '2022-09-11', 'received', '6.0000', '6.0000', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2076, 39, NULL, 6537, '1134', 'Enacin-C (Clindamycin) 300mg Caps 100\'', NULL, '93.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2808.0000', '29.0000', '2022-09-11', 'received', '93.6000', '93.6000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '93.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2077, 39, NULL, 6509, '1106', 'Gacet 1g Suppository', NULL, '13.2500', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1590.0000', '88.0000', '2022-09-11', 'received', '13.2500', '13.2500', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6302, '899', 'Klovinal Pessaries', NULL, '23.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1380.0000', '60.0000', '2022-09-11', 'received', '23.0000', '23.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2079, 39, NULL, 6510, '1107', 'GV- Fluc 150mg Capsules', NULL, '3.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '4.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '252.0000', '60.0000', '2022-09-11', 'received', '4.2000', '4.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2081, 39, NULL, 6382, '979', 'Child Care Cough &amp; Cold 125ml Syrup', NULL, '4.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.0000', '60.0000', '2022-09-11', 'received', '4.1000', '4.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6393, '990', 'Luex Baby Cough Syrup 150ml', NULL, '15.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '29.0000', '2022-09-11', 'received', '15.0000', '15.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2083, 39, NULL, 6423, '1020', 'Diphex Junior Cough Syrup 100ml', NULL, '6.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '31.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6844, '1441', 'Roberts Glycerine 30ml', NULL, '5.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-09-11', 'received', '5.5000', '5.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2085, 39, NULL, 5726, '323', 'Listerine 250ml all types', NULL, '15.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2022-09-11', 'received', '15.9000', '15.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6113, '710', 'Plaster roll 3Inches Xtra care', NULL, '9.8000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '303.8000', '23.0000', '2022-09-11', 'received', '9.8000', '9.8000', '31.0000', NULL, NULL, 1, 'pc', '31.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2087, 39, NULL, 6114, '711', 'Plaster roll 4Inches Xtra care', NULL, '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6418, '1015', 'Cetrizan 10mg Tablets 20&apos;s', NULL, '6.3300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3300', '1.0000', '2022-09-11', 'received', '6.3300', '6.3300', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5996, '593', 'Malafan Tabs 50&apos;s', NULL, '2.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6486, '1083', 'Contiflo XL 400mcg Capsules 30&apos;s', NULL, '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6847, '1444', 'Kelcuf Adult Syrup 100ml', NULL, '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6849, '1446', 'Kelcuf Junior Syrup 100ml', NULL, '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6161, '758', 'Emgiprofen Suspension 100ml', NULL, '5.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.3000', '0.0000', '2022-09-11', 'received', '5.3000', '5.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6166, '763', 'Mucosyl Adult Syrup 100ml', NULL, '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.6000', '2.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6212, '809', 'Hemoforce Family Syrup 200ml', NULL, '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6500', '1.0000', '2022-09-11', 'received', '6.6500', '6.6500', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6213, '810', 'Hemoforce Plus Syrup 200ml', NULL, '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6500', '0.0000', '2022-09-11', 'received', '6.6500', '6.6500', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6152, '749', 'Heptolif Tablets 50x2x10', NULL, '1.2000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6755, '1352', 'Salo Simple Linctus', NULL, '5.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.4000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6604, '1201', 'Eskyzole Triple Action Cream 30g', NULL, '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6011, '608', 'Scimether Suspension', NULL, '14.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4200', '2.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6151, '748', 'Jeditone Syrup 200ml', NULL, '6.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.7000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6165, '762', 'Mucosyl Junior Syrup 100ml', NULL, '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6003, '600', 'Bella cough Syr 125ml', NULL, '6.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.7000', '1.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5456, '53', 'Aspanol All In One Syrup', NULL, '10.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.6000', '1.0000', '2022-09-11', 'received', '10.6000', '10.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6189, '786', 'Rufedol Tablets 10&apos;s', NULL, '1.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.2000', '0.0000', '2022-09-11', 'received', '1.2000', '1.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5471, '68', 'Baby Cough Lintus 100ml ECL', NULL, '5.0400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0400', '0.0000', '2022-09-11', 'received', '5.0400', '5.0400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 5749, '346', 'Major Nasal Drops', NULL, '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.1400', '0.0000', '2022-09-11', 'received', '8.1400', '8.1400', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 39, NULL, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', NULL, '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.8000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6490, '1087', 'Kefrox 500mg Tablets 10&apos;s', NULL, '30.0000', '39.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1170.0000', '10.0000', '2022-09-11', 'received', '30.0000', '30.0000', '39.0000', NULL, NULL, 1, 'pc', '39.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg', NULL, '13.2000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '316.8000', '1.0000', '2022-09-11', 'received', '13.2000', '13.2000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule', NULL, '2.9900', '130.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '388.7000', '75.0000', '2022-09-11', 'received', '2.9900', '2.9900', '130.0000', NULL, NULL, 1, 'pc', '130.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6550, '1147', 'Nestrim Tabs 480 Blister ECL', NULL, '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '6.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6208, '805', 'Luzatil 20/120mg Tablets 24&apos;s', NULL, '6.0000', '112.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '672.0000', '109.0000', '2022-09-11', 'received', '6.0000', '6.0000', '112.0000', NULL, NULL, 1, 'pc', '112.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2114, 40, NULL, 6291, '888', 'Metagyl 200mg Tablets 50x10', NULL, '45.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.4000', '4.0000', '2022-09-11', 'received', '45.6000', '45.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6193, '790', 'Shalcip TZ Tablets 10&apos;s', NULL, '6.6000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '0.0000', '2022-09-11', 'received', '6.6000', '6.6000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6302, '899', 'Klovinal Pessaries', NULL, '23.0000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1288.0000', '22.0000', '2022-09-11', 'received', '23.0000', '23.0000', '56.0000', NULL, NULL, 1, 'pc', '56.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', NULL, '2.6900', '222.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '597.1800', '0.0000', '2022-09-11', 'received', '2.6900', '2.6900', '222.0000', NULL, NULL, 1, 'pc', '222.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 5906, '503', 'Tetracycline Capsules', NULL, '15.8200', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '411.3200', '0.0000', '2022-09-11', 'received', '15.8200', '15.8200', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '15.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2119, 40, NULL, 6605, '1202', 'Maxmox 500mg', NULL, '5.8000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1044.0000', '0.0000', '2022-09-11', 'received', '5.8000', '5.8000', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6838, '1435', 'Maxmox 250mg (10x10)', NULL, '17.7100', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '478.1700', '3.0000', '2022-09-11', 'received', '17.7100', '17.7100', '27.0000', NULL, NULL, 1, 'pc', '27.0000', NULL, NULL, NULL, NULL, '17.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', NULL, '21.7400', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.1800', '0.0000', '2022-09-11', 'received', '21.7400', '21.7400', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '21.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6553, '1150', 'Inopril 10/12.5mg', NULL, '10.5000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '892.5000', '75.0000', '2022-09-11', 'received', '10.5000', '10.5000', '85.0000', NULL, NULL, 1, 'pc', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 5531, '128', 'Cloxacillin 250mg Letap', NULL, '80.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '644.0000', '6.0000', '2022-09-11', 'received', '80.5000', '80.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '80.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2124, 40, NULL, 5584, '181', 'Doxycycline 100mg Letap', NULL, '17.5000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '227.5000', '0.0000', '2022-09-11', 'received', '17.5000', '17.5000', '13.0000', NULL, NULL, 1, 'pc', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', NULL, '6.7000', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '428.8000', '26.0000', '2022-09-11', 'received', '6.7000', '6.7000', '64.0000', NULL, NULL, 1, 'pc', '64.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6&apos;s', NULL, '6.5000', '55.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '357.5000', '45.0000', '2022-09-11', 'received', '6.5000', '6.5000', '55.0000', NULL, NULL, 1, 'pc', '55.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6192, '789', 'Shal\'Artem 20/120mg Tablets 24&apos;s', NULL, '4.2500', '66.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '66.0000', '2022-09-11', 'received', '4.2500', '4.2500', '66.0000', NULL, NULL, 1, 'pc', '66.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 5419, '16', 'Acidom 20mg Capsules', NULL, '14.9000', '61.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '908.9000', '49.0000', '2022-09-11', 'received', '14.9000', '14.9000', '61.0000', NULL, NULL, 1, 'pc', '61.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6684, '1281', 'Amoxicillin 500mg Letap', NULL, '29.7000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '891.0000', '20.0000', '2022-09-11', 'received', '29.7000', '29.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 40, NULL, 6566, '1163', 'Tegretol CR 400mg tablets 30&apos;s', NULL, '88.8800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '888.8000', '8.0000', '2022-09-11', 'received', '88.8800', '88.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '88.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2131, 40, NULL, 6567, '1164', 'Tegretol 200mg tablets 50&apos;s', NULL, '59.7700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.3100', '2.0000', '2022-09-11', 'received', '59.7700', '59.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '59.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2391, 41, NULL, 6007, '604', 'Penicillin V 125mg Letap', NULL, '11.3800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1365.6000', '42.0000', '2022-09-11', 'received', '11.3800', '11.3800', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '11.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2389, 41, NULL, 5715, '312', 'Letamox 500mg Tablets', NULL, '13.1400', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '315.3600', '0.0000', '2022-09-11', 'received', '13.1400', '13.1400', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2390, 41, NULL, 6825, '1422', 'Oxytetra Cap 250mg', NULL, '46.2800', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1388.4000', '0.0000', '2022-09-11', 'received', '46.2800', '46.2800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '46.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2388, 41, NULL, 6220, '817', 'Dynewell Syrup 200ml', NULL, '5.0000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2000.0000', '37.0000', '2022-09-11', 'received', '5.0000', '5.0000', '400.0000', NULL, NULL, 1, 'pc', '400.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2387, 41, NULL, 5451, '48', 'Arfan 20/120mg', NULL, '5.8600', '1350.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7911.0000', '947.0000', '2022-09-11', 'received', '5.8600', '5.8600', '1350.0000', NULL, NULL, 1, 'pc', '1350.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2386, 41, NULL, 5651, '248', 'Glucose Powder 400mg', NULL, '6.1700', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.2400', '27.0000', '2022-09-11', 'received', '6.1700', '6.1700', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2385, 41, NULL, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', NULL, '1.9000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '15.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2384, 41, NULL, 5716, '313', 'Letaron 200ml Syrup', NULL, '3.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2383, 41, NULL, 5714, '311', 'Letamol Elixir 125ml', NULL, '3.3000', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1188.0000', '283.0000', '2022-09-11', 'received', '3.3000', '3.3000', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2381, 41, NULL, 5717, '314', 'Letavit Syrup', NULL, '2.4000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.0000', '268.0000', '2022-09-11', 'received', '2.4000', '2.4000', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2382, 41, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '4.2000', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1512.0000', '133.0000', '2022-09-11', 'received', '4.2000', '4.2000', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2380, 41, NULL, 6424, '1021', 'Durol Tonic  Junior 200ml', NULL, '7.9300', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '237.9000', '19.0000', '2022-09-11', 'received', '7.9300', '7.9300', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2379, 41, NULL, 5975, '572', 'Durol Tonic 200ml', NULL, '9.1500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '549.0000', '0.0000', '2022-09-11', 'received', '9.1500', '9.1500', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2378, 41, NULL, 5499, '96', 'Calcium B12 Syrup 200ml', NULL, '3.8000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '304.0000', '64.0000', '2022-09-11', 'received', '3.8000', '3.8000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2377, 41, NULL, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', NULL, '2.8800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.8000', '0.0000', '2022-09-11', 'received', '2.8800', '2.8800', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2376, 41, NULL, 5775, '372', 'Multivite Tablets Letap', NULL, '22.1000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1768.0000', '43.0000', '2022-09-11', 'received', '22.1000', '22.1000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2374, 41, NULL, 5548, '145', 'Crepe Bandage 2Inches Xtra care', NULL, '2.9800', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '894.0000', '252.0000', '2022-09-11', 'received', '2.9800', '2.9800', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2375, 41, NULL, 6207, '804', 'Zinol 500mg Tablets (Paracetamol) 50X10', NULL, '38.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1232.0000', '29.0000', '2022-09-11', 'received', '38.5000', '38.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2373, 41, NULL, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', NULL, '3.1800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '381.6000', '60.0000', '2022-09-11', 'received', '3.1800', '3.1800', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2372, 41, NULL, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', NULL, '8.2000', '324.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2656.8000', '262.0000', '2022-09-11', 'received', '8.2000', '8.2000', '324.0000', NULL, NULL, 1, 'pc', '324.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2371, 41, NULL, 5796, '393', 'Normal Saline Infusion 500ml', NULL, '4.4800', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.5200', '5.0000', '2022-09-11', 'received', '4.4800', '4.4800', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2370, 41, NULL, 5589, '186', 'Drez Powder 10g', NULL, '9.4000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1692.0000', '101.0000', '2022-09-11', 'received', '9.4000', '9.4000', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2369, 41, NULL, 5848, '445', 'Relcer Gel', NULL, '8.2800', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '331.2000', '28.0000', '2022-09-11', 'received', '8.2800', '8.2800', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2368, 41, NULL, 6615, '1212', 'Fada Martins Herbal Mixture', NULL, '11.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '32.0000', '2022-09-11', 'received', '11.0000', '11.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6009, '606', 'Rooter Life', NULL, '35.9000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1292.4000', '36.0000', '2022-09-11', 'received', '35.9000', '35.9000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5427, '24', 'Agbeve Tonic', NULL, '13.2000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1980.0000', '78.0000', '2022-09-11', 'received', '13.2000', '13.2000', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', NULL, '20.9500', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '502.8000', '0.0000', '2022-09-11', 'received', '20.9500', '20.9500', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '20.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', NULL, '1.6000', '2400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3840.0000', '1931.0000', '2022-09-11', 'received', '1.6000', '1.6000', '2400.0000', NULL, NULL, 1, 'pc', '2400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5853, '450', 'Rooter Mixture', NULL, '10.5000', '184.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1932.0000', '91.0000', '2022-09-11', 'received', '10.5000', '10.5000', '184.0000', NULL, NULL, 1, 'pc', '184.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6010, '607', 'Rooter Tytonic', NULL, '16.5000', '168.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2772.0000', '144.0000', '2022-09-11', 'received', '16.5000', '16.5000', '168.0000', NULL, NULL, 1, 'pc', '168.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6333, '930', 'Adom Koo Mixture', NULL, '7.7000', '140.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1078.0000', '60.0000', '2022-09-11', 'received', '7.7000', '7.7000', '140.0000', NULL, NULL, 1, 'pc', '140.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6316, '913', 'Tot\'hema Box of 20 Bulbs', NULL, '62.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2976.0000', '0.0000', '2022-09-11', 'received', '62.0000', '62.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5977, '574', 'Samalin Adult Cough Syr 125ml', NULL, '7.5000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '0.0000', '2022-09-11', 'received', '7.5000', '7.5000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5976, '573', 'Koffex Adult Cough Syr 125ml', NULL, '7.7000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1925.0000', '122.0000', '2022-09-11', 'received', '7.7000', '7.7000', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5849, '446', 'Rhizin Syrup', NULL, '3.1000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '446.4000', '6.0000', '2022-09-11', 'received', '3.1000', '3.1000', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6225, '822', 'Letalin Expectorant Syrup 125ml', NULL, '2.8000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '124.0000', '2022-09-11', 'received', '2.8000', '2.8000', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', NULL, '3.4100', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '613.8000', '180.0000', '2022-09-11', 'received', '3.4100', '3.4100', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', NULL, '9.3000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '213.9000', '0.0000', '2022-09-11', 'received', '9.3000', '9.3000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '13.8000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '552.0000', '0.0000', '2022-09-11', 'received', '13.8000', '13.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6078, '675', 'Mr. Q', NULL, '42.0000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25200.0000', '499.0000', '2022-09-11', 'received', '42.0000', '42.0000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '350.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4620.0000', '22.0000', '2022-09-11', 'received', '13.2000', '13.2000', '350.0000', NULL, NULL, 1, 'pc', '350.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5898, '495', 'Taabea Herbal Mixture', NULL, '13.2000', '325.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4290.0000', '100.0000', '2022-09-11', 'received', '13.2000', '13.2000', '325.0000', NULL, NULL, 1, 'pc', '325.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5739, '336', 'Luex Child Dry Cough 150ml Syrup', NULL, '15.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.0000', '23.0000', '2022-09-11', 'received', '15.0000', '15.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2348, 41, NULL, 5840, '437', 'Prostacure X', NULL, '27.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '880.0000', '24.0000', '2022-09-11', 'received', '27.5000', '27.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6386, '983', 'Paingay Capsules', NULL, '3.2000', '420.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1344.0000', '263.0000', '2022-09-11', 'received', '3.2000', '3.2000', '420.0000', NULL, NULL, 1, 'pc', '420.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', NULL, '15.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.0000', '30.0000', '2022-09-11', 'received', '15.0000', '15.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2345, 41, NULL, 6822, '1419', 'Malufen 560 Tablets (Artemether Lumefantrine Tablets)', NULL, '10.0000', '320.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3200.0000', '313.0000', '2022-09-11', 'received', '10.0000', '10.0000', '320.0000', NULL, NULL, 1, 'pc', '320.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2344, 41, NULL, 6354, '951', 'Parafenac', NULL, '2.3000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1380.0000', '480.0000', '2022-09-11', 'received', '2.3000', '2.3000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5581, '178', 'Domi 10 Suppositories', NULL, '11.3000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2034.0000', '134.0000', '2022-09-11', 'received', '11.3000', '11.3000', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5582, '179', 'Domi 30mg Suppositories', NULL, '12.5000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3750.0000', '267.0000', '2022-09-11', 'received', '12.5000', '12.5000', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6169, '766', 'Vitamin B-Complex S yrup 125ml M &amp; G', NULL, '4.3000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.0000', '30.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6357, '954', 'Cotton Wool 200g', NULL, '13.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '650.0000', '50.0000', '2022-09-11', 'received', '13.0000', '13.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2339, 41, NULL, 6353, '950', 'Ronfit Forte Tablets', NULL, '3.7500', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1500.0000', '0.0000', '2022-09-11', 'received', '3.7500', '3.7500', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5840, '437', 'Prostacure X', NULL, '27.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2750.0000', '101.0000', '2022-09-11', 'received', '27.5000', '27.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', NULL, '9.6200', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1924.0000', '200.0000', '2022-09-11', 'received', '9.6200', '9.6200', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '9.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', NULL, '79.1500', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2374.5000', '21.0000', '2022-09-11', 'received', '79.1500', '79.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '79.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', NULL, '5.1000', '96.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '489.6000', '0.0000', '2022-09-11', 'received', '5.1000', '5.1000', '96.0000', NULL, NULL, 1, 'pc', '96.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 6202, '799', 'Starwin Milk of Magnesia 120ml', NULL, '9.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '570.0000', '56.0000', '2022-09-11', 'received', '9.5000', '9.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 41, NULL, 5983, '580', 'Rhizin 10mg Tabs10x10', NULL, '5.9000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1180.0000', '106.0000', '2022-09-11', 'received', '5.9000', '5.9000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2250, 42, NULL, 6225, '822', 'Letalin Expectorant Syrup 125ml', NULL, '2.8000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '0.0000', '2022-09-11', 'received', '2.8000', '2.8000', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2251, 42, NULL, 6385, '982', 'Amcof Junior Syrup', NULL, '7.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.0000', '0.0000', '2022-09-11', 'received', '7.4000', '7.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2252, 42, NULL, 5969, '566', 'Teedar Syrup 125ml', NULL, '8.8000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2112.0000', '0.0000', '2022-09-11', 'received', '8.8000', '8.8000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2253, 42, NULL, 5975, '572', 'Durol Tonic 200ml', NULL, '9.1500', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '274.5000', '0.0000', '2022-09-11', 'received', '9.1500', '9.1500', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2254, 42, NULL, 6517, '1114', 'Res-Q Antacid Suspension', NULL, '8.7000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '696.0000', '51.0000', '2022-09-11', 'received', '8.7000', '8.7000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2255, 42, NULL, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', NULL, '26.5000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2385.0000', '38.0000', '2022-09-11', 'received', '26.5000', '26.5000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2256, 42, NULL, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', NULL, '16.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1680.0000', '82.0000', '2022-09-11', 'received', '16.8000', '16.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6179, '776', 'Ibucap Forte Capsules', NULL, '2.1000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.0000', '200.0000', '2022-09-11', 'received', '2.1000', '2.1000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5839, '436', 'Prostacure Tea', NULL, '19.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '608.0000', '31.0000', '2022-09-11', 'received', '19.0000', '19.0000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6666, '1263', 'Examination Gloves', NULL, '50.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1500.0000', '8.0000', '2022-09-11', 'received', '50.0000', '50.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', NULL, '5.3000', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '583.0000', '95.0000', '2022-09-11', 'received', '5.3000', '5.3000', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', NULL, '5.3000', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '583.0000', '88.0000', '2022-09-11', 'received', '5.3000', '5.3000', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6009, '606', 'Rooter Life', NULL, '35.9000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '430.8000', '9.0000', '2022-09-11', 'received', '35.9000', '35.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5580, '177', 'Diphex Cough Syrup', NULL, '7.7000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '308.0000', '37.0000', '2022-09-11', 'received', '7.7000', '7.7000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6361, '958', 'Basecold Tablets (50x4)', NULL, '49.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2970.0000', '58.0000', '2022-09-11', 'received', '49.5000', '49.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6448, '1045', 'Diagellates Elixir 125ml', NULL, '15.0000', '69.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1035.0000', '35.0000', '2022-09-11', 'received', '15.0000', '15.0000', '69.0000', NULL, NULL, 1, 'pc', '69.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2266, 42, NULL, 5448, '45', 'Apetatrust 200ml Syrup', NULL, '14.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1450.0000', '73.0000', '2022-09-11', 'received', '14.5000', '14.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6212, '809', 'Hemoforce Family Syrup 200ml', NULL, '6.6500', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '239.4000', '36.0000', '2022-09-11', 'received', '6.6500', '6.6500', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6371, '968', 'P-trust Pregnancy Test Kit 25&apos;s', NULL, '27.5000', '54.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1485.0000', '9.0000', '2022-09-11', 'received', '27.5000', '27.5000', '54.0000', NULL, NULL, 1, 'pc', '54.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6347, '944', 'Happyrona forte syrup 200ml', NULL, '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '34.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', NULL, '5.8000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '0.0000', '2022-09-11', 'received', '5.8000', '5.8000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', NULL, '70.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2520.0000', '26.0000', '2022-09-11', 'received', '70.0000', '70.0000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2272, 42, NULL, 6178, '775', 'Ibucap Capsules 20&apos;s(Monopack)', NULL, '1.6000', '1000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1600.0000', '1000.0000', '2022-09-11', 'received', '1.6000', '1.6000', '1000.0000', NULL, NULL, 1, 'pc', '1000.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '0.0000', '2022-09-11', 'received', '13.2000', '13.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5740, '337', 'Lufart DS Tablets', NULL, '15.5000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9300.0000', '2.0000', '2022-09-11', 'received', '15.5000', '15.5000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', NULL, '15.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '760.0000', '34.0000', '2022-09-11', 'received', '15.2000', '15.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6137, '734', 'Foligrow Capsules 30&apos;s', NULL, '15.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.0000', '117.0000', '2022-09-11', 'received', '15.0000', '15.0000', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2277, 42, NULL, 5535, '132', 'Coldrilif Capsules 10X10', NULL, '3.9100', '1600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6256.0000', '743.0000', '2022-09-11', 'received', '3.9100', '3.9100', '1600.0000', NULL, NULL, 1, 'pc', '1600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6357, '954', 'Cotton Wool 200g', NULL, '13.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '3.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', NULL, '17.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.0000', '31.0000', '2022-09-11', 'received', '17.0000', '17.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5714, '311', 'Letamol Elixir 125ml', NULL, '3.3000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2022-09-11', 'received', '3.3000', '3.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6590, '1187', 'Peladol Extra', NULL, '25.3000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2024.0000', '0.0000', '2022-09-11', 'received', '25.3000', '25.3000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6696, '1293', 'Abyvita Capsules', NULL, '4.2000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1680.0000', '315.0000', '2022-09-11', 'received', '4.2000', '4.2000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', NULL, '30.6900', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1381.0500', '27.0000', '2022-09-11', 'received', '30.6900', '30.6900', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6380, '977', 'Cafaprin Tablets', NULL, '13.1400', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.2400', '16.0000', '2022-09-11', 'received', '13.1400', '13.1400', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6382, '979', 'Child Care Cough &amp; Cold 125ml Syrup', NULL, '4.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.0000', '27.0000', '2022-09-11', 'received', '4.1000', '4.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6097, '694', 'Methylated Spirit 200ml', NULL, '7.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '40.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', NULL, '4.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-09-11', 'received', '4.5000', '4.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5497, '94', 'BX Syrup 100ml', NULL, '5.6000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '224.0000', '34.0000', '2022-09-11', 'received', '5.6000', '5.6000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6210, '807', 'BX Syrup 200ml', NULL, '7.1000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '511.2000', '62.0000', '2022-09-11', 'received', '7.1000', '7.1000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5593, '190', 'Efpac Tablets', NULL, '38.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '924.0000', '0.0000', '2022-09-11', 'received', '38.5000', '38.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6102, '699', 'Haemo Forte Syrup 200ml', NULL, '27.8000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1668.0000', '22.0000', '2022-09-11', 'received', '27.8000', '27.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6101, '698', 'Feroclear Syrup 200ml', NULL, '28.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1710.0000', '60.0000', '2022-09-11', 'received', '28.5000', '28.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6846, '1443', 'Haemo Forte Syrup 100ml', NULL, '11.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.0000', '32.0000', '2022-09-11', 'received', '11.5000', '11.5000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6373, '970', 'Letamol Tablets 100&apos;s', NULL, '72.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2888.0000', '39.0000', '2022-09-11', 'received', '72.2000', '72.2000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '72.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2295, 42, NULL, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', NULL, '9.6200', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1924.0000', '153.0000', '2022-09-11', 'received', '9.6200', '9.6200', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '9.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5865, '462', 'Secure Contraceptive Pill', NULL, '3.5000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1400.0000', '400.0000', '2022-09-11', 'received', '3.5000', '3.5000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6114, '711', 'Plaster roll 4Inches Xtra care', NULL, '13.0000', '78.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1014.0000', '72.0000', '2022-09-11', 'received', '13.0000', '13.0000', '78.0000', NULL, NULL, 1, 'pc', '78.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2298, 42, NULL, 5712, '309', 'Lenor', NULL, '4.5000', '1200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5400.0000', '1140.0000', '2022-09-11', 'received', '4.5000', '4.5000', '1200.0000', NULL, NULL, 1, 'pc', '1200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5573, '170', 'Diclolex 100mg Tablets 10X10', NULL, '18.0000', '1000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18000.0000', '977.0000', '2022-09-11', 'received', '18.0000', '18.0000', '1000.0000', NULL, NULL, 1, 'pc', '1000.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6613, '1210', 'Enterogemina 5ml  Ampoles 10&apos;s', NULL, '45.6000', '128.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5836.8000', '115.0000', '2022-09-11', 'received', '45.6000', '45.6000', '128.0000', NULL, NULL, 1, 'pc', '128.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6221, '818', 'Dynewell Tablet 50x10', NULL, '12.9800', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '207.6800', '0.0000', '2022-09-11', 'received', '12.9800', '12.9800', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6020, '617', 'ORS Plain 25&apos;s', NULL, '16.3100', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '652.4000', '3.0000', '2022-09-11', 'received', '16.3100', '16.3100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '16.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6074, '671', 'Lydia Postpill 1Tablet', NULL, '8.5000', '1920.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16320.0000', '80.0000', '2022-09-11', 'received', '8.5000', '8.5000', '1920.0000', NULL, NULL, 1, 'pc', '1920.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6375, '972', 'Metronidazole 100ml Suspension Letap', NULL, '3.5200', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '633.6000', '67.0000', '2022-09-11', 'received', '3.5200', '3.5200', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6211, '808', 'Contreg Syrup 30ml', NULL, '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', NULL, '3.4100', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1023.0000', '181.0000', '2022-09-11', 'received', '3.4100', '3.4100', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6753, '1350', 'COA Mixture', NULL, '85.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4080.0000', '23.0000', '2022-09-11', 'received', '85.0000', '85.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5435, '32', 'Amcof Adult Syrup', NULL, '7.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.0000', '26.0000', '2022-09-11', 'received', '7.4000', '7.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6385, '982', 'Amcof Junior Syrup', NULL, '7.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.0000', '67.0000', '2022-09-11', 'received', '7.4000', '7.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5970, '567', 'Virol blood tonic 200ml', NULL, '9.1500', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '366.0000', '0.0000', '2022-09-11', 'received', '9.1500', '9.1500', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5986, '583', 'Rapinol Tab 25X4&apos;s', NULL, '13.7000', '108.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1479.6000', '78.0000', '2022-09-11', 'received', '13.7000', '13.7000', '108.0000', NULL, NULL, 1, 'pc', '108.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6204, '801', 'Painoff Tablets 25X4&apos;s', NULL, '15.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '474.0000', '8.0000', '2022-09-11', 'received', '15.8000', '15.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6821, '1418', 'Bazuka Condoms', NULL, '65.0000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2405.0000', '31.0000', '2022-09-11', 'received', '65.0000', '65.0000', '37.0000', NULL, NULL, 1, 'pc', '37.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6260, '857', 'Hydrogen Peroxide 200ml ECL', NULL, '5.7000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '0.0000', '2022-09-11', 'received', '5.7000', '5.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6201, '798', 'Samalin Junior cough syrup 125ml', NULL, '6.9000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.0000', '0.0000', '2022-09-11', 'received', '6.9000', '6.9000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5979, '576', 'Menthox Adult Cough Syrup 125ml', NULL, '6.0000', '481.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2886.0000', '453.0000', '2022-09-11', 'received', '6.0000', '6.0000', '481.0000', NULL, NULL, 1, 'pc', '481.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2317, 42, NULL, 6000, '597', 'Vigorix Forte Syr 200ml', NULL, '11.1000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '532.8000', '41.0000', '2022-09-11', 'received', '11.1000', '11.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6290, '887', 'Fluxacin 500mg Capsules 20X10', NULL, '122.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1224.0000', '3.0000', '2022-09-11', 'received', '122.4000', '122.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2319, 42, NULL, 5641, '238', 'Gebedol Extra', NULL, '31.1000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3732.0000', '46.0000', '2022-09-11', 'received', '31.1000', '31.1000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5642, '239', 'Gebedol Plus Capsule', NULL, '24.4300', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1465.8000', '52.0000', '2022-09-11', 'received', '24.4300', '24.4300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '24.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6003, '600', 'Bella cough Syr 125ml', NULL, '6.7000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '402.0000', '30.0000', '2022-09-11', 'received', '6.7000', '6.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6032, '629', 'Gebedol Forte', NULL, '17.2100', '58.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '998.1800', '12.0000', '2022-09-11', 'received', '17.2100', '17.2100', '58.0000', NULL, NULL, 1, 'pc', '58.0000', NULL, NULL, NULL, NULL, '17.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6176, '773', 'Gogynax Cream 30g', NULL, '4.1000', '288.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1180.8000', '271.0000', '2022-09-11', 'received', '4.1000', '4.1000', '288.0000', NULL, NULL, 1, 'pc', '288.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6285, '882', 'Auntie Mary Gripewater 150ml', NULL, '9.4700', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '568.2000', '0.0000', '2022-09-11', 'received', '9.4700', '9.4700', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6337, '934', 'Feroglobin Syrup 200ml', NULL, '49.5300', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1188.7200', '0.0000', '2022-09-11', 'received', '49.5300', '49.5300', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', NULL, '78.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1248.0000', '11.0000', '2022-09-11', 'received', '78.0000', '78.0000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '78.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2327, 42, NULL, 6007, '604', 'Penicillin V 125mg Letap', NULL, '11.3800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1365.6000', '0.0000', '2022-09-11', 'received', '11.3800', '11.3800', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '11.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6663, '1260', 'Cotton Wool 25gm', NULL, '2.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '500.0000', '95.0000', '2022-09-11', 'received', '2.5000', '2.5000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', NULL, '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-11', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 5456, '53', 'Aspanol All In One Syrup', NULL, '10.6000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '254.4000', '3.0000', '2022-09-11', 'received', '10.6000', '10.6000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6053, '650', 'Bonnisan Syrup 120ml', NULL, '14.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '745.0000', '0.0000', '2022-09-11', 'received', '14.9000', '14.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 42, NULL, 6083, '680', 'Methylated Spirit 60ml', NULL, '2.7000', '840.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2268.0000', '827.0000', '2022-09-11', 'received', '2.7000', '2.7000', '840.0000', NULL, NULL, 1, 'pc', '840.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2392, NULL, NULL, 5412, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2393, NULL, NULL, 5620, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2394, NULL, NULL, 5994, '591', 'Alugel Tablets 50&apos;s', NULL, '33.6000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '33.6000', '0.0000', '2022-09-11', 'received', '33.6000', '33.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2395, NULL, NULL, 5560, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2396, NULL, NULL, 6488, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2397, NULL, NULL, 6252, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2398, NULL, NULL, 6658, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2399, NULL, NULL, 5847, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2400, NULL, NULL, 5472, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2401, NULL, NULL, 6720, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2402, NULL, NULL, 6664, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 5775, '372', 'Multivite Tablets Letap', NULL, '22.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '221.0000', '0.0000', '2022-09-12', 'received', '22.1000', '22.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6607, '1204', 'Skyclav 625', NULL, '16.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1600.0000', '39.0000', '2022-09-12', 'received', '16.0000', '16.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6337, '934', 'Feroglobin Syrup 200ml', NULL, '49.5300', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2377.4400', '0.0000', '2022-09-12', 'received', '49.5300', '49.5300', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 5986, '583', 'Rapinol Tab 25X4&apos;s', NULL, '13.7000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '493.2000', '0.0000', '2022-09-12', 'received', '13.7000', '13.7000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6418, '1015', 'Cetrizan 10mg Tablets 20&apos;s', NULL, '6.3300', '640.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4051.2000', '556.0000', '2022-09-12', 'received', '6.3300', '6.3300', '640.0000', NULL, NULL, 1, 'pc', '640.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 5976, '573', 'Koffex Adult Cough Syr 125ml', NULL, '7.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '385.0000', '0.0000', '2022-09-12', 'received', '7.7000', '7.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 5856, '453', 'Rubbing Alcohol 500ml', NULL, '15.0000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '345.0000', '16.0000', '2022-09-12', 'received', '15.0000', '15.0000', '23.0000', NULL, NULL, 1, 'pc', '23.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2576, 43, NULL, 6280, '877', 'Hayan Capsules', NULL, '40.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6202, '799', 'Starwin Milk of Magnesia 120ml', NULL, '9.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '304.0000', '31.0000', '2022-09-12', 'received', '9.5000', '9.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 5959, '556', 'Zincovit Tablets', NULL, '23.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '1.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', NULL, '45.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '455.0000', '0.0000', '2022-09-12', 'received', '45.5000', '45.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '45.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2574, 43, NULL, 6418, '1015', 'Cetrizan 10mg Tablets 20&apos;s', NULL, '6.3300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '41.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6303, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6421, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5600, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5601, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6334, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6853, '1450', 'Mycolex Powder 50g', NULL, '23.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6328, '925', 'Gynomycolex 400mg Pessaries 3&apos;s', NULL, '26.9000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '511.1000', '0.0000', '2022-09-12', 'received', '26.9000', '26.9000', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6036, '633', 'Leorub Gel 30g', NULL, '4.4300', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.3100', '14.0000', '2022-09-12', 'received', '4.4300', '4.4300', '17.0000', NULL, NULL, 1, 'pc', '17.0000', NULL, NULL, NULL, NULL, '4.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6575, '1172', '3TOL 500ML Anticeptic &amp; Disinfectant', NULL, '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6576, '1173', '3TOL 500ML Lime Fresh Anticeptic', NULL, '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6578, '1175', '3TOL 250ml Anticeptic &amp; Disinfectant', NULL, '4.5000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '14.0000', '2022-09-12', 'received', '4.5000', '4.5000', '14.0000', NULL, NULL, 1, 'pc', '14.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6577, '1174', '3TOL Lime 250ml Anticeptic &amp; Disinfectant', NULL, '4.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6667, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5476, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5980, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5737, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5586, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6642, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6692, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6095, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6348, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6177, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6595, '1192', 'Azycin 500mg', NULL, '7.9000', '86.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '679.4000', '56.0000', '2022-09-12', 'received', '7.9000', '7.9000', '86.0000', NULL, NULL, 1, 'pc', '86.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6181, '778', 'Kifaru 100mg Tablets', NULL, '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '5.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6830, '1427', 'Ganaman Capsules', NULL, '29.7000', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1306.8000', '38.0000', '2022-09-12', 'received', '29.7000', '29.7000', '44.0000', NULL, NULL, 1, 'pc', '44.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6182, '779', 'Kifaru 50mg Tablets', NULL, '5.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '23.0000', '2022-09-12', 'received', '5.5000', '5.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6829, '1426', 'Prostajoy', NULL, '29.7000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '534.6000', '1.0000', '2022-09-12', 'received', '29.7000', '29.7000', '18.0000', NULL, NULL, 1, 'pc', '18.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6332, '929', 'Adom Koo Capsules', NULL, '16.5000', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1056.0000', '0.0000', '2022-09-12', 'received', '16.5000', '16.5000', '64.0000', NULL, NULL, 1, 'pc', '64.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 43, NULL, 6805, '1402', 'Res-Q Tabs 2x10&apos;s', NULL, '3.4000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '19.0000', '2022-09-12', 'received', '3.4000', '3.4000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2558, 43, NULL, 5988, '585', 'Samalin Lozenges 2x10&apos;s', NULL, '3.0000', '61.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '183.0000', '0.0000', '2022-09-12', 'received', '3.0000', '3.0000', '61.0000', NULL, NULL, 1, 'pc', '61.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2556, 43, NULL, 5623, '220', 'Flurest Tablets 10&apos;s', NULL, '18.9000', '104.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1965.6000', '9.0000', '2022-09-12', 'received', '18.9000', '18.9000', '104.0000', NULL, NULL, 1, 'pc', '104.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2557, 43, NULL, 6420, '1017', 'Menthox Lozenges', NULL, '15.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '780.0000', '47.0000', '2022-09-12', 'received', '15.6000', '15.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6816, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2554, 43, NULL, 6771, '1368', 'Hydrolyte ORS 25 Lemon Flav. ECL', NULL, '19.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2022-09-12', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2555, 43, NULL, 6772, '1369', 'Hydrolyte ORS 25\' Orange Flav. ECL', NULL, '19.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2022-09-12', 'received', '19.2000', '19.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5616, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6059, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6751, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5957, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5911, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5648, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6379, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5978, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6675, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6077, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6866, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6818, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4010, NULL, NULL, 6327, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3995, 44, NULL, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', NULL, '15.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.0000', '16.0000', '2022-09-13', 'received', '15.0000', '15.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3996, 44, NULL, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', NULL, '17.0000', '143.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2431.0000', '61.0000', '2022-09-13', 'received', '17.0000', '17.0000', '143.0000', NULL, NULL, 1, 'pc', '143.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3997, 44, NULL, 6681, '1278', 'Goldy Malaria Suspension', NULL, '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3998, 44, NULL, 6685, '1282', 'Alu Hyd Tablets', NULL, '0.5000', '675.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '337.5000', '289.0000', '2022-09-13', 'received', '0.5000', '0.5000', '675.0000', NULL, NULL, 1, 'pc', '675.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3999, 44, NULL, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', NULL, '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '60.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4000, 44, NULL, 6767, '1364', 'Methylated Spirit 200ml ECL', NULL, '9.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.0000', '16.0000', '2022-09-13', 'received', '9.5000', '9.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4001, 44, NULL, 6818, '1415', 'Foliron Capsules', NULL, '3.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '28.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4002, 44, NULL, 6825, '1422', 'Oxytetra Cap 250mg', NULL, '46.2800', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1388.4000', '0.0000', '2022-09-13', 'received', '46.2800', '46.2800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '46.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4003, 44, NULL, 6838, '1435', 'Maxmox 250mg (10x10)', NULL, '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7100', '0.0000', '2022-09-13', 'received', '17.7100', '17.7100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '17.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4004, 44, NULL, 6872, '97726773', 'Dewome 500mg tablets', NULL, '2.0000', '140.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2022-09-13', 'received', '2.0000', '2.0000', '140.0000', NULL, NULL, 1, 'pc', '140.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2598, NULL, NULL, 6872, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4008, 44, NULL, 6876, '5402680', 'Alazole 400 Tablet', NULL, '0.9800', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4006, 44, NULL, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', NULL, '9.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '32.0000', '2022-09-13', 'received', '9.0000', '9.0000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4007, 44, NULL, 6875, '11896071', 'Mist Expect Sed rockmer', NULL, '3.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4005, 44, NULL, 6873, '06796716', 'Menazole 500mg (Mebenazole)10x1 Ayrtons', NULL, '1.7600', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.4000', '35.0000', '2022-09-13', 'received', '1.7600', '1.7600', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3994, 44, NULL, 6547, '1144', 'Menthodex Lozenges 80G Sachet 25\' ORIG', NULL, '9.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '3.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3990, 44, NULL, 6373, '970', 'Letamol Tablets 100&apos;s', NULL, '72.2000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1371.8000', '8.0000', '2022-09-13', 'received', '72.2000', '72.2000', '19.0000', NULL, NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, '72.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3991, 44, NULL, 6396, '993', 'Menthodex 100ml Syrup', NULL, '13.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.5000', '3.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3992, 44, NULL, 6408, '1005', 'E-Panol 100ml Syrup Plain', NULL, '4.6700', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.3000', '0.0000', '2022-09-13', 'received', '4.6700', '4.6700', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '4.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3993, 44, NULL, 6451, '1048', 'Voltfast Powder 50mg 30&apos;s', NULL, '53.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1064.0000', '4.0000', '2022-09-13', 'received', '53.2000', '53.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '53.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3987, 44, NULL, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', NULL, '1.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.9000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3988, 44, NULL, 6226, '823', 'Macrafolin Syrup 125ml', NULL, '1.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.9000', '1.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3989, 44, NULL, 6349, '946', 'Ronfit Cold Forte Syrup', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3986, 44, NULL, 6220, '817', 'Dynewell Syrup 200ml', NULL, '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2022-09-13', 'received', '5.0000', '5.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3985, 44, NULL, 6202, '799', 'Starwin Milk of Magnesia 120ml', NULL, '9.5000', '420.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3990.0000', '320.0000', '2022-09-13', 'received', '9.5000', '9.5000', '420.0000', NULL, NULL, 1, 'pc', '420.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3983, 44, NULL, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', NULL, '3.5000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.0000', '156.0000', '2022-09-13', 'received', '3.5000', '3.5000', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3984, 44, NULL, 6191, '788', 'Shal\'Artem Dry Syrup', NULL, '5.5000', '102.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '561.0000', '76.0000', '2022-09-13', 'received', '5.5000', '5.5000', '102.0000', NULL, NULL, 1, 'pc', '102.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3982, 44, NULL, 6169, '766', 'Vitamin B-Complex S yrup 125ml M &amp; G', NULL, '4.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '6.0000', '2022-09-13', 'received', '4.3000', '4.3000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3978, 44, NULL, 6101, '698', 'Feroclear Syrup 200ml', NULL, '28.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '427.5000', '1.0000', '2022-09-13', 'received', '28.5000', '28.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3979, 44, NULL, 6130, '727', 'Kofof Family Syrup 150ml', NULL, '6.4000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.2000', '25.0000', '2022-09-13', 'received', '6.4000', '6.4000', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3980, 44, NULL, 6155, '752', 'Proxicam  20mg Capsules 10x10', NULL, '8.9400', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '214.5600', '24.0000', '2022-09-13', 'received', '8.9400', '8.9400', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '8.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3981, 44, NULL, 6160, '757', 'Emgikof D Syrup100ml', NULL, '5.1000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.5000', '25.0000', '2022-09-13', 'received', '5.1000', '5.1000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3976, 44, NULL, 6096, '693', 'Mist Sennaco ROKMER', NULL, '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3977, 44, NULL, 6100, '697', 'Haem Up Syrup 200ml', NULL, '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3975, 44, NULL, 6040, '637', 'Cold Naso', NULL, '3.0500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2022-09-13', 'received', '3.0500', '3.0500', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3973, 44, NULL, 6031, '628', 'Blocold Tablet', NULL, '17.8200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.2000', '7.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3974, 44, NULL, 6039, '636', 'Hot Naso- Ephedrine Nasal Drop', NULL, '4.5500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '0.0000', '2022-09-13', 'received', '4.5500', '4.5500', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3969, 44, NULL, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', NULL, '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3970, 44, NULL, 5967, '564', 'Zulu 100mg Tablet', NULL, '3.7800', '3080.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11642.4000', '3080.0000', '2022-09-13', 'received', '3.7800', '3.7800', '3080.0000', NULL, NULL, 1, 'pc', '3080.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3971, 44, NULL, 5998, '595', 'Linctus Adult Cough syr. 100ml', NULL, '5.0000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '325.0000', '53.0000', '2022-09-13', 'received', '5.0000', '5.0000', '65.0000', NULL, NULL, 1, 'pc', '65.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3972, 44, NULL, 6008, '605', 'Linctus Junior Syr. 100ml ECL', NULL, '4.9000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '274.4000', '56.0000', '2022-09-13', 'received', '4.9000', '4.9000', '56.0000', NULL, NULL, 1, 'pc', '56.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 44, NULL, 5603, '200', 'Etisala Capsules', NULL, '4.4000', '119.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '523.6000', '61.0000', '2022-09-13', 'received', '4.4000', '4.4000', '119.0000', NULL, NULL, 1, 'pc', '119.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 44, NULL, 5651, '248', 'Glucose Powder 400mg', NULL, '6.1700', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0400', '0.0000', '2022-09-13', 'received', '6.1700', '6.1700', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 44, NULL, 5652, '249', 'Roberts Glycerine 90ml', NULL, '12.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '576.0000', '15.0000', '2022-09-13', 'received', '12.0000', '12.0000', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3966, 44, NULL, 5730, '327', 'Lofnac Gel 30mg', NULL, '6.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.0000', '72.0000', '2022-09-13', 'received', '6.0000', '6.0000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3967, 44, NULL, 5733, '330', 'Lubrimax Jelly 50g', NULL, '20.0000', '51.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.0000', '41.0000', '2022-09-13', 'received', '20.0000', '20.0000', '51.0000', NULL, NULL, 1, 'pc', '51.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3968, 44, NULL, 5734, '331', 'Lubrimax Jelly 70g', NULL, '19.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '388.0000', '17.0000', '2022-09-13', 'received', '19.4000', '19.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2875, NULL, NULL, 6512, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4009, NULL, NULL, 5787, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 44, NULL, 5585, '182', 'Dragon Tablets', NULL, '23.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1404.0000', '4.0000', '2022-09-13', 'received', '23.4000', '23.4000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '23.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3960, 44, NULL, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', NULL, '3.4100', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.6000', '0.0000', '2022-09-13', 'received', '3.4100', '3.4100', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 44, NULL, 5476, '73', 'Borges Olive Oil 125ml', NULL, '13.3000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '425.6000', '0.0000', '2022-09-13', 'received', '13.3000', '13.3000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3022, 45, NULL, 6851, '1448', 'Cotton 500g', NULL, '26.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '728.0000', '17.0000', '2022-09-13', 'received', '26.0000', '26.0000', '28.0000', NULL, NULL, 1, 'pc', '28.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3023, 45, NULL, 5715, '312', 'Letamox 500mg plain Tablets', NULL, '13.1400', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1103.7600', '0.0000', '2022-09-13', 'received', '13.1400', '13.1400', '84.0000', NULL, NULL, 1, 'pc', '84.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3024, 45, NULL, 6076, '673', 'Kiss Condom Strawberry', NULL, '2.3000', '2304.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5299.2000', '1389.0000', '2022-09-13', 'received', '2.3000', '2.3000', '2304.0000', NULL, NULL, 1, 'pc', '2304.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3025, 45, NULL, 6075, '672', 'Kiss Condom Classic', NULL, '2.3000', '2080.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4784.0000', '553.0000', '2022-09-13', 'received', '2.3000', '2.3000', '2080.0000', NULL, NULL, 1, 'pc', '2080.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3026, 45, NULL, 6205, '802', 'Citro C Tablets 25&apos;s', NULL, '38.5000', '216.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8316.0000', '25.0000', '2022-09-13', 'received', '38.5000', '38.5000', '216.0000', NULL, NULL, 1, 'pc', '216.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3027, 45, NULL, 6154, '751', 'Paracetamol 500mg M&amp;G Tablets 50x10', NULL, '39.1000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3128.0000', '67.0000', '2022-09-13', 'received', '39.1000', '39.1000', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '39.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3028, 45, NULL, 6011, '608', 'Scimether Suspension', NULL, '14.2100', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '852.6000', '32.0000', '2022-09-13', 'received', '14.2100', '14.2100', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3029, 45, NULL, 6083, '680', 'Methylated Spirit Rokmer 60ml', NULL, '2.7000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '648.0000', '0.0000', '2022-09-13', 'received', '2.7000', '2.7000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3030, 45, NULL, 5654, '251', 'Gentian violet (GV PAINT)', NULL, '2.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-09-13', 'received', '2.0000', '2.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3031, 45, NULL, 5598, '195', 'Entramol 500mg Tablets 15X12', NULL, '2.6000', '540.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1404.0000', '496.0000', '2022-09-13', 'received', '2.6000', '2.6000', '540.0000', NULL, NULL, 1, 'pc', '540.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3032, 45, NULL, 6082, '679', 'Coldrilif Syrup', NULL, '6.9000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1656.0000', '116.0000', '2022-09-13', 'received', '6.9000', '6.9000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3033, 45, NULL, 6273, '870', 'Vikil 20', NULL, '26.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3900.0000', '0.0000', '2022-09-13', 'received', '26.0000', '26.0000', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3034, 45, NULL, 5447, '44', 'Apetamin Syrup 200ml', NULL, '19.8000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '495.0000', '0.0000', '2022-09-13', 'received', '19.8000', '19.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3035, 45, NULL, 5601, '198', 'Epiderm Cream 30g', NULL, '4.3000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '619.2000', '0.0000', '2022-09-13', 'received', '4.3000', '4.3000', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3036, 45, NULL, 5980, '577', 'Martins liver salt(Lemon)25&apos;s', NULL, '11.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '345.0000', '2.0000', '2022-09-13', 'received', '11.5000', '11.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3037, 45, NULL, 6008, '605', 'Linctus Junior Syr. 100ml', NULL, '4.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '490.0000', '100.0000', '2022-09-13', 'received', '4.9000', '4.9000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3038, 45, NULL, 6147, '744', 'Cafalgin Caplets 25x10', NULL, '35.2000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '880.0000', '21.0000', '2022-09-13', 'received', '35.2000', '35.2000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '35.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3039, 45, NULL, 6155, '752', 'Proxicam  20mg Capsules 10x10', NULL, '8.9400', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '429.1200', '48.0000', '2022-09-13', 'received', '8.9400', '8.9400', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '8.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3040, 45, NULL, 6159, '756', 'Cafalgin Junior Suspension 100ml', NULL, '8.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.0000', '30.0000', '2022-09-13', 'received', '8.6000', '8.6000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3041, 45, NULL, 5654, '251', 'Gentian violet (GV PAINT)', NULL, '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3042, 45, NULL, 5911, '508', 'Tinatett Venecare 750ml', NULL, '23.1000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '577.5000', '0.0000', '2022-09-13', 'received', '23.1000', '23.1000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3043, 45, NULL, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', NULL, '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3044, 45, NULL, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', NULL, '4.0000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '64.0000', '2022-09-13', 'received', '4.0000', '4.0000', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3045, 45, NULL, 6097, '694', 'Methylated Spirit 200ml', NULL, '7.2000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '864.0000', '72.0000', '2022-09-13', 'received', '7.2000', '7.2000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3046, 45, NULL, 5592, '189', 'Efpac Junior Syrup', NULL, '7.1500', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '286.0000', '0.0000', '2022-09-13', 'received', '7.1500', '7.1500', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3047, 45, NULL, 6455, '1052', 'Paracetamol 500mg Tablets 100&apos;s EXE', NULL, '19.5800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1174.8000', '15.0000', '2022-09-13', 'received', '19.5800', '19.5800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '19.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3048, 45, NULL, 6212, '809', 'Hemoforce Family Syrup 200ml', NULL, '6.6500', '108.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '718.2000', '89.0000', '2022-09-13', 'received', '6.6500', '6.6500', '108.0000', NULL, NULL, 1, 'pc', '108.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3049, 45, NULL, 6213, '810', 'Hemoforce Plus Syrup 200ml', NULL, '6.6500', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '957.6000', '117.0000', '2022-09-13', 'received', '6.6500', '6.6500', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3050, 45, NULL, 6210, '807', 'BX Syrup 200ml', NULL, '7.1000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.4000', '0.0000', '2022-09-13', 'received', '7.1000', '7.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3051, 45, NULL, 5600, '197', 'Epiderm Cream 15g', NULL, '2.6000', '900.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2340.0000', '855.0000', '2022-09-13', 'received', '2.6000', '2.6000', '900.0000', NULL, NULL, 1, 'pc', '900.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3052, 45, NULL, 5865, '462', 'Secure Contraceptive Pill', NULL, '3.5000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1400.0000', '344.0000', '2022-09-13', 'received', '3.5000', '3.5000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3053, 45, NULL, 6125, '722', 'Lufart Suspension', NULL, '10.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2100.0000', '106.0000', '2022-09-13', 'received', '10.5000', '10.5000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3054, 45, NULL, 5744, '341', 'MACRAFOLIN SRP', NULL, '0.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '60.0000', '2022-09-13', 'received', '0.0000', '0.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3055, 45, NULL, 6139, '736', 'Amino pep Syrup 200ml', NULL, '15.9500', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '398.7500', '16.0000', '2022-09-13', 'received', '15.9500', '15.9500', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3056, 45, NULL, 5985, '582', 'APC TABS 10X10', NULL, '12.2000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '878.4000', '43.0000', '2022-09-13', 'received', '12.2000', '12.2000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5989, '586', 'APC 50X4 TABS', NULL, '28.1000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '730.6000', '24.0000', '2022-09-13', 'received', '28.1000', '28.1000', '26.0000', NULL, NULL, 1, 'pc', '26.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', NULL, '55.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1100.0000', '14.0000', '2022-09-13', 'received', '55.0000', '55.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6179, '776', 'Ibucap Forte Capsules', NULL, '2.1000', '1000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2100.0000', '960.0000', '2022-09-13', 'received', '2.1000', '2.1000', '1000.0000', NULL, NULL, 1, 'pc', '1000.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6178, '775', 'Ibucap Capsules 20&apos;s(Monopack)', NULL, '1.6000', '720.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1152.0000', '492.0000', '2022-09-13', 'received', '1.6000', '1.6000', '720.0000', NULL, NULL, 1, 'pc', '720.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6083, '680', 'Methylated Spirit Rokmer 60ml', NULL, '2.7000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '648.0000', '293.0000', '2022-09-13', 'received', '2.7000', '2.7000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5654, '251', 'Gentian violet (GV PAINT)', NULL, '2.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '23.0000', '2022-09-13', 'received', '2.0000', '2.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5601, '198', 'Epiderm Cream 30g', NULL, '4.3000', '576.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2476.8000', '618.0000', '2022-09-13', 'received', '4.3000', '4.3000', '576.0000', NULL, NULL, 1, 'pc', '576.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6383, '980', 'Amcof Baby Syrup', NULL, '8.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '492.0000', '3.0000', '2022-09-13', 'received', '8.2000', '8.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6375, '972', 'Metronidazole 100ml Suspension Letap', NULL, '3.5200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '211.2000', '0.0000', '2022-09-13', 'received', '3.5200', '3.5200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5640, '237', 'Gebedol Tablet', NULL, '11.1000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2220.0000', '0.0000', '2022-09-13', 'received', '11.1000', '11.1000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6818, '1415', 'Foliron Capsules', NULL, '3.5000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '840.0000', '174.0000', '2022-09-13', 'received', '3.5000', '3.5000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5978, '575', 'Magacid Tab 25&apos;s', NULL, '21.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '511.2000', '13.0000', '2022-09-13', 'received', '21.3000', '21.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '21.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3069, 45, NULL, 5713, '310', 'Letacam (Piroxicam)', NULL, '6.6500', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '299.2500', '20.0000', '2022-09-13', 'received', '6.6500', '6.6500', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6227, '824', 'Promecine Syrup 125ml', NULL, '2.8400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.4000', '55.0000', '2022-09-13', 'received', '2.8400', '2.8400', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', NULL, '6.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '480.0000', '14.0000', '2022-09-13', 'received', '6.0000', '6.0000', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3072, 45, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '4.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-09-13', 'received', '4.2000', '4.2000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6380, '977', 'Cafaprin Tablets', NULL, '13.1400', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.2400', '6.0000', '2022-09-13', 'received', '13.1400', '13.1400', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6538, '1135', 'Drez Solution 30ml', NULL, '10.3000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '515.0000', '0.0000', '2022-09-13', 'received', '10.3000', '10.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5588, '185', 'Drez Ointment 30mg', NULL, '14.9600', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1795.2000', '79.0000', '2022-09-13', 'received', '14.9600', '14.9600', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5587, '184', 'Drez Ointment 10g', NULL, '8.8000', '210.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1848.0000', '156.0000', '2022-09-13', 'received', '8.8000', '8.8000', '210.0000', NULL, NULL, 1, 'pc', '210.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6131, '728', 'Drez Solution 100ml', NULL, '18.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2022-09-13', 'received', '18.0000', '18.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', NULL, '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '65.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', NULL, '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6188, '785', 'Polygel Suspension 200ml', NULL, '7.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.0000', '21.0000', '2022-09-13', 'received', '7.0000', '7.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6098, '695', 'Klire Tablet 10&apos;s', NULL, '5.6000', '900.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5040.0000', '832.0000', '2022-09-13', 'received', '5.6000', '5.6000', '900.0000', NULL, NULL, 1, 'pc', '900.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 45, NULL, 6864, '98367406', 'Fiesta Condom Strawberry ', NULL, '14.5000', '4752.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68904.0000', '4580.0000', '2022-09-13', 'received', '14.5000', '14.5000', '4752.0000', NULL, NULL, 1, 'pc', '4752.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 46, NULL, 5847, '444', 'Redsun Jelly', NULL, '6.1000', '604.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3684.4000', '236.0000', '2022-09-13', 'received', '6.1000', '6.1000', '604.0000', NULL, NULL, 1, 'pc', '604.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 46, NULL, 5586, '183', 'Dragon Spray', NULL, '28.9000', '303.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8756.7000', '146.0000', '2022-09-13', 'received', '28.9000', '28.9000', '303.0000', NULL, NULL, 1, 'pc', '303.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 5967, '564', 'Zulu 100mg Tablet', NULL, '3.6000', '2800.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10080.0000', '2288.0000', '2022-09-13', 'received', '3.6000', '3.6000', '2800.0000', NULL, NULL, 1, 'pc', '2800.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6889, '82688230', 'Metronidazole 200mg (O METRO)', NULL, '24.3000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1093.5000', '42.0000', '2022-09-13', 'received', '24.3000', '24.3000', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '24.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3092, NULL, NULL, 6317, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6881, '54874377', 'Dacillin (clindamycin 300mg)', NULL, '49.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1485.0000', '23.0000', '2022-09-13', 'received', '49.5000', '49.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6882, '69020596', 'Clopidogrel Frelet 75', NULL, '22.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '675.0000', '22.0000', '2022-09-13', 'received', '22.5000', '22.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', NULL, '6.3000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '630.0000', '46.0000', '2022-09-13', 'received', '6.3000', '6.3000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5553, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', NULL, '13.5000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5400.0000', '381.0000', '2022-09-13', 'received', '13.5000', '13.5000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', NULL, '38.7000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1006.2000', '20.0000', '2022-09-13', 'received', '38.7000', '38.7000', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '38.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6887, '5738767', 'Actilife Flex-14 (Glucosamine Chondroitin)', NULL, '16.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '486.0000', '25.0000', '2022-09-13', 'received', '16.2000', '16.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6885, '84388732', 'Glimer-2 (Glimeperide 2mg)', NULL, '8.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '18.0000', '2022-09-13', 'received', '8.1000', '8.1000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6886, '85373687', 'Glimer 4(Glimepride 4mg)', NULL, '10.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '18.0000', '2022-09-13', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 5801, '398', 'O-Formin 500mg (Metformin)', NULL, '5.8500', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '421.2000', '57.0000', '2022-09-13', 'received', '5.8500', '5.8500', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', NULL, '43.2000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3110.4000', '67.0000', '2022-09-13', 'received', '43.2000', '43.2000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6879, '34265543', 'Zulu Extra ', NULL, '3.8700', '390.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1509.3000', '286.0000', '2022-09-13', 'received', '3.8700', '3.8700', '390.0000', NULL, NULL, 1, 'pc', '390.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6878, '43797319', 'Obend Albendazole 400mg Tablet', NULL, '0.9000', '450.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '405.0000', '350.0000', '2022-09-13', 'received', '0.9000', '0.9000', '450.0000', NULL, NULL, 1, 'pc', '450.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6556, '1153', 'T-Sec 1g Tablets', NULL, '3.1500', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '346.5000', '94.0000', '2022-09-13', 'received', '3.1500', '3.1500', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 47, NULL, 6877, '13587208', 'Actilife multivitamin 30s', NULL, '12.6000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '756.0000', '38.0000', '2022-09-13', 'received', '12.6000', '12.6000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 46, NULL, 6317, '914', 'Para-Denk 125mg Suppository 10&apos;s', NULL, '19.1900', '67.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1285.7300', '67.0000', '2022-09-13', 'received', '19.1900', '19.1900', '67.0000', NULL, NULL, 1, 'pc', '67.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 46, NULL, 6095, '692', 'Cartef-DS Tablet', NULL, '8.3200', '227.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1888.6400', '81.0000', '2022-09-13', 'received', '8.3200', '8.3200', '227.0000', NULL, NULL, 1, 'pc', '227.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6359, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6223, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6372, '969', 'Babyvite 200ml Syrup', NULL, '12.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '252.0000', '18.0000', '2022-09-14', 'received', '12.0000', '12.0000', '21.0000', NULL, NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3420, 48, NULL, 6370, '967', 'Supirocin Ointment 15g', NULL, '24.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '490.0000', '1.0000', '2022-09-14', 'received', '24.5000', '24.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6379, '976', 'Dexone 0.5mg', NULL, '2.1000', '218.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '457.8000', '63.0000', '2022-09-14', 'received', '2.1000', '2.1000', '218.0000', NULL, NULL, 1, 'pc', '218.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6309, '906', 'Odymin Syrup', NULL, '7.5000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.5000', '14.0000', '2022-09-14', 'received', '7.5000', '7.5000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 5648, '245', 'Givers P Capsules', NULL, '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 5955, '552', 'Zincofer Capsules 30&apos;s', NULL, '17.9000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '519.1000', '14.0000', '2022-09-14', 'received', '17.9000', '17.9000', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6322, '919', 'Para-Denk 250mg Suppository 10&apos;s', NULL, '21.8300', '44.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '960.5200', '41.0000', '2022-09-14', 'received', '21.8300', '21.8300', '44.0000', NULL, NULL, 1, 'pc', '44.0000', NULL, NULL, NULL, NULL, '21.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3148, NULL, NULL, 6679, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3149, NULL, NULL, 6286, '883', 'Kidivite Syrup 200ml', NULL, '9.6000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '9.6000', '0.0000', '2022-09-14', 'received', '9.6000', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3150, NULL, NULL, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', NULL, '2.6900', '20.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '53.8000', '-374.0000', '2022-09-14', 'received', '2.6900', '2.6900', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3151, NULL, NULL, 6679, '1276', 'Gebediclo 100mg Tablets', NULL, '9.9900', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '19.9800', '0.0000', '2022-09-14', 'received', '9.9900', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3152, NULL, NULL, 6838, '1435', 'Maxmox 250mg (10x10)', NULL, '17.7100', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '35.4200', '0.0000', '2022-09-14', 'received', '17.7100', '17.7100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3153, NULL, NULL, 6434, '1031', 'Cotton wool 50g', NULL, '5.2000', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '10.4000', '0.0000', '2022-09-14', 'received', '5.2000', '5.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3154, NULL, NULL, 5847, '444', 'Redsun Jelly', NULL, '6.1000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '6.1000', '0.0000', '2022-09-14', 'received', '6.1000', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3155, NULL, NULL, 6007, '604', 'Penicillin V 125mg Letap', NULL, '11.3800', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '22.7600', '0.0000', '2022-09-14', 'received', '11.3800', '11.3800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3156, NULL, NULL, 6178, '775', 'Ibucap Capsules 20&apos;s(Monopack)', NULL, '1.6000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '8.0000', '0.0000', '2022-09-14', 'received', '1.6000', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3157, NULL, NULL, 6351, '948', 'Ronfit Cold D Syrup', NULL, '6.0000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '6.0000', '0.0000', '2022-09-14', 'received', '6.0000', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3158, NULL, NULL, 6117, '714', 'Gudapet Capsules', NULL, '6.6000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '6.6000', '0.0000', '2022-09-14', 'received', '6.6000', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3159, NULL, NULL, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', NULL, '8.6000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '8.6000', '0.0000', '2022-09-14', 'received', '8.6000', '8.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3160, NULL, NULL, 6386, '983', 'Paingay Capsules', NULL, '3.2000', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '6.4000', '0.0000', '2022-09-14', 'received', '3.2000', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3161, NULL, NULL, 5451, '48', 'Arfan 20/120mg', NULL, '5.8600', '4.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '23.4400', '0.0000', '2022-09-14', 'received', '5.8600', '5.8600', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3162, NULL, NULL, 5740, '337', 'Lufart DS Tablets', NULL, '15.5000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '15.5000', '0.0000', '2022-09-14', 'received', '15.5000', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3163, NULL, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '13.2000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '13.2000', '0.0000', '2022-09-14', 'received', '13.2000', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3164, NULL, NULL, 5418, '15', 'Aboniki', NULL, '5.5000', '4.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '0.0000', '2022-09-14', 'received', '5.5000', '5.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6664, '1261', 'Pregnancy Test Kit One-Step', NULL, '1.5000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-09-14', 'received', '1.5000', '1.5000', '65.0000', NULL, NULL, 1, 'pc', '65.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6667, '1264', 'Gyprone Plus Tablets', NULL, '2.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-09-14', 'received', '2.0000', '2.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6675, '1272', 'Lydia Postpill 2Tablets', NULL, '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-09-14', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6348, '945', 'Loperon', NULL, '8.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '486.0000', '19.0000', '2022-09-14', 'received', '8.1000', '8.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5674, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5892, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6421, '1018', 'Martins liver salt Plain', NULL, '9.9400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9400', '0.0000', '2022-09-14', 'received', '9.9400', '9.9400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '9.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', NULL, '5.9000', '58.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '342.2000', '0.0000', '2022-09-14', 'received', '5.9000', '5.9000', '58.0000', NULL, NULL, 1, 'pc', '58.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6557, '1154', 'Ocip TZ', NULL, '6.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-09-14', 'received', '6.0000', '6.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3411, 48, NULL, 6584, '1181', 'Cororange Capsules', NULL, '8.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.0000', '1.0000', '2022-09-14', 'received', '8.2000', '8.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6619, '1216', 'Trustzole 400mg Suspension', NULL, '3.5000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '245.0000', '2.0000', '2022-09-14', 'received', '3.5000', '3.5000', '70.0000', NULL, NULL, 1, 'pc', '70.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', NULL, '4.7000', '66.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.2000', '16.0000', '2022-09-14', 'received', '4.7000', '4.7000', '66.0000', NULL, NULL, 1, 'pc', '66.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6505, '1102', 'Deep Heat Rub 67g', NULL, '30.7000', '92.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2824.4000', '92.0000', '2022-09-14', 'received', '30.7000', '30.7000', '92.0000', NULL, NULL, 1, 'pc', '92.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6511, '1108', 'Lofnac P Tablets 50/500', NULL, '1.6000', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.0000', '42.0000', '2022-09-14', 'received', '1.6000', '1.6000', '110.0000', NULL, NULL, 1, 'pc', '110.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6497, '1094', 'Vivadona Capsules 20&apos;s', NULL, '40.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '10.0000', '2022-09-14', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6452, '1049', 'Cyclogest 200mg Pessaries 15&apos;s', NULL, '115.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '460.0000', '4.0000', '2022-09-14', 'received', '115.0000', '115.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '115.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3406, 48, NULL, 5511, '108', 'Inoxime (Cefixime) 200mg Tablets', NULL, '9.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-09-14', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6185, '782', 'Magnavit Tonic 200ml', NULL, '7.8500', '34.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '266.9000', '14.0000', '2022-09-14', 'received', '7.8500', '7.8500', '34.0000', NULL, NULL, 1, 'pc', '34.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6535, '1132', 'Clotrimazole Cream 0.01 20g', NULL, '3.2800', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3600', '12.0000', '2022-09-14', 'received', '3.2800', '3.2800', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6249, '846', 'Nodium(Loperamide) Capsules 100&apos;s', NULL, '10.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.6000', '0.0000', '2022-09-14', 'received', '10.6000', '10.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', NULL, '6.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.0000', '52.0000', '2022-09-14', 'received', '6.0000', '6.0000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3400, 48, NULL, 6153, '750', 'Paracetamol 500mg Tablet M&amp;G 100x10', NULL, '77.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '770.0000', '5.0000', '2022-09-14', 'received', '77.0000', '77.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6129, '726', 'Kofof Child Syrup 100ml', NULL, '3.4000', '79.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '268.6000', '44.0000', '2022-09-14', 'received', '3.4000', '3.4000', '79.0000', NULL, NULL, 1, 'pc', '79.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', NULL, '4.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '20.0000', '2022-09-14', 'received', '4.5000', '4.5000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6059, '656', 'Mentat Syrup', NULL, '20.4000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '428.4000', '18.0000', '2022-09-14', 'received', '20.4000', '20.4000', '21.0000', NULL, NULL, 1, 'pc', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6085, '682', 'Amaryl 4mg Tablets 30&apos;s', NULL, '160.7000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2089.1000', '13.0000', '2022-09-14', 'received', '160.7000', '160.7000', '13.0000', NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, '160.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 5532, '129', 'Coartem 80/480 6&apos;s', NULL, '56.1000', '87.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4880.7000', '0.0000', '2022-09-14', 'received', '56.1000', '56.1000', '87.0000', NULL, NULL, 1, 'pc', '87.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 5472, '69', 'Baseboom Gel', NULL, '4.5000', '78.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.0000', '0.0000', '2022-09-14', 'received', '4.5000', '4.5000', '78.0000', NULL, NULL, 1, 'pc', '78.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 5552, '149', 'Cyfen Tablets', NULL, '1.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.2000', '0.0000', '2022-09-14', 'received', '1.2000', '1.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6836, '1433', 'Fluclox Suspension 100ml Eskay', NULL, '5.2300', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.3600', '23.0000', '2022-09-14', 'received', '5.2300', '5.2300', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6831, '1428', 'Eskadol Blister(25x1x10)', NULL, '1.6000', '707.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1131.2000', '650.0000', '2022-09-14', 'received', '1.6000', '1.6000', '707.0000', NULL, NULL, 1, 'pc', '707.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6720, '1317', 'B Complex Tablets 60&apos;s Valupak Vitamin', NULL, '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '1.0000', '2022-09-14', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6747, '1344', 'Neoferon Syrup 200ml', NULL, '12.9800', '27.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '350.4600', '3.0000', '2022-09-14', 'received', '12.9800', '12.9800', '27.0000', NULL, NULL, 1, 'pc', '27.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6816, '1413', 'Basecam Caps (Piroxicam)', NULL, '11.9000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '773.5000', '51.0000', '2022-09-14', 'received', '11.9000', '11.9000', '65.0000', NULL, NULL, 1, 'pc', '65.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 48, NULL, 6712, '1309', 'Warfarin 5mg Tablets 28&apos;s', NULL, '7.8000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2022-09-14', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 49, NULL, 5881, '478', 'SOLAK MIX', NULL, '13.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1350.0000', '43.0000', '2022-09-14', 'received', '13.5000', '13.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 49, NULL, 5963, '560', 'ZIPMAN CAPS', NULL, '14.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '870.0000', '37.0000', '2022-09-14', 'received', '14.5000', '14.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 49, NULL, 5841, '438', 'PROSTAFIT', NULL, '18.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2160.0000', '71.0000', '2022-09-14', 'received', '18.0000', '18.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3430, NULL, NULL, 6352, '949', 'Roxidol', NULL, '2.5000', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '5.0000', '0.0000', '2022-09-15', 'received', '2.5000', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3431, NULL, NULL, 6035, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3432, NULL, NULL, 5893, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3433, NULL, NULL, 5656, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3434, NULL, NULL, 5607, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4076, 50, NULL, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', NULL, '5.0000', '339.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1695.0000', '59.0000', '2022-09-15', 'received', '5.0000', '5.0000', '339.0000', NULL, NULL, 1, 'pc', '339.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4075, 50, NULL, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', NULL, '9.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '32.0000', '2022-09-15', 'received', '9.0000', '9.0000', '32.0000', NULL, NULL, 1, 'pc', '32.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4069, 50, NULL, 6359, '956', 'Dipex Capsules', NULL, '2.5000', '309.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '772.5000', '100.0000', '2022-09-15', 'received', '2.5000', '2.5000', '309.0000', NULL, NULL, 1, 'pc', '309.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4070, 50, NULL, 6734, '1331', 'Sudafed Sinus &amp; Pain Tablets 24&apos;s', NULL, '60.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-09-15', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4071, 50, NULL, 6803, '1400', 'Cetirizine 10mg Tabs 30&apos;s', NULL, '7.0000', '107.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '749.0000', '107.0000', '2022-09-15', 'received', '7.0000', '7.0000', '107.0000', NULL, NULL, 1, 'pc', '107.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4072, 50, NULL, 6815, '1412', 'Zipferon Forte', NULL, '9.2100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2600', '0.0000', '2022-09-15', 'received', '9.2100', '9.2100', '6.0000', NULL, NULL, 1, 'pc', '6.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4073, 50, NULL, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', NULL, '13.1400', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '275.9400', '0.0000', '2022-09-15', 'received', '13.1400', '13.1400', '21.0000', NULL, NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, '13.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6310, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 51, NULL, 6873, '06796716', 'Menazole 500mg 10x1 Ayrtons', NULL, '1.5800', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '5.0000', '2022-09-15', 'received', '1.5800', '1.5800', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4074, 50, NULL, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', NULL, '8.4000', '55.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '462.0000', '27.0000', '2022-09-15', 'received', '8.4000', '8.4000', '55.0000', NULL, NULL, 1, 'pc', '55.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4068, 50, NULL, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', NULL, '14.6000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3504.0000', '137.0000', '2022-09-15', 'received', '14.6000', '14.6000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 51, NULL, 5984, '581', 'Starwin Milk of Magnesia 360ml', NULL, '19.5300', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1757.7000', '55.0000', '2022-09-15', 'received', '19.5300', '19.5300', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4067, 50, NULL, 6226, '823', 'Macrafolin Syrup 125ml', NULL, '1.9000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.9000', '55.0000', '2022-09-15', 'received', '1.9000', '1.9000', '81.0000', NULL, NULL, 1, 'pc', '81.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4066, 50, NULL, 6174, '771', 'Diproson Cream 30g', NULL, '3.1500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '18.0000', '2022-09-15', 'received', '3.1500', '3.1500', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4065, 50, NULL, 6077, '674', 'Fiesta Condom All Night', NULL, '4.0000', '137.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '548.0000', '41.0000', '2022-09-15', 'received', '4.0000', '4.0000', '137.0000', NULL, NULL, 1, 'pc', '137.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4064, 50, NULL, 6033, '630', 'Deep Heat Rub 35g', NULL, '31.4000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1130.4000', '18.0000', '2022-09-15', 'received', '31.4000', '31.4000', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4063, 50, NULL, 6008, '605', 'Linctus Junior Syr. 100ml ECL', NULL, '4.9000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '416.5000', '80.0000', '2022-09-15', 'received', '4.9000', '4.9000', '85.0000', NULL, NULL, 1, 'pc', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4062, 50, NULL, 5892, '489', 'Super Apeti Plus Syrup 200ml', NULL, '8.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '0.0000', '2022-09-15', 'received', '8.6000', '8.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4061, 50, NULL, 5870, '467', 'Shal\'Artem Dispersible Tablets 6', NULL, '2.6000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '65.0000', '2022-09-15', 'received', '2.6000', '2.6000', '65.0000', NULL, NULL, 1, 'pc', '65.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4059, 50, NULL, 5648, '245', 'Givers P Capsules', NULL, '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-09-15', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4057, 50, NULL, 5616, '213', 'Fisherman&apos;s Friend All Flavours 24&apos;s', NULL, '7.0000', '151.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1057.0000', '0.0000', '2022-09-15', 'received', '7.0000', '7.0000', '151.0000', NULL, NULL, 1, 'pc', '151.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4060, 50, NULL, 5754, '351', 'Malin Baby', NULL, '7.2000', '51.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '367.2000', '0.0000', '2022-09-15', 'received', '7.2000', '7.2000', '51.0000', NULL, NULL, 1, 'pc', '51.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4058, 50, NULL, 5625, '222', 'Foliron Tonic 200ml', NULL, '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '0.0000', '2022-09-15', 'received', '4.1000', '4.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3508, 52, NULL, 5515, '112', 'Cetapol Syrup', NULL, '4.6800', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '936.0000', '65.0000', '2022-09-15', 'received', '4.6800', '4.6800', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3509, 52, NULL, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', NULL, '6.6300', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '795.6000', '63.0000', '2022-09-15', 'received', '6.6300', '6.6300', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3510, 52, NULL, 5618, '215', 'Flemex Adult Cough Syrup 100ml', NULL, '7.4800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '897.6000', '86.0000', '2022-09-15', 'received', '7.4800', '7.4800', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '7.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3511, 52, NULL, 5580, '177', 'Diphex Cough Syrup', NULL, '7.1000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '852.0000', '72.0000', '2022-09-15', 'received', '7.1000', '7.1000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3512, 52, NULL, 6020, '617', 'ORS Plain 25&apos;s', NULL, '13.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-09-15', 'received', '13.5200', '13.5200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3513, 52, NULL, 5808, '405', 'ORS Orange', NULL, '13.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '3.0000', '2022-09-15', 'received', '13.5200', '13.5200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3514, NULL, NULL, 6337, '934', 'Feroglobin Syrup 200ml', NULL, '49.5300', '10.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '495.3000', '0.0000', '2022-09-15', 'received', '49.5300', '49.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3515, NULL, NULL, 6456, '1053', 'Gastrone Tablets 100&apos;s', NULL, '21.6000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '21.6000', '0.0000', '2022-09-15', 'received', '21.6000', '21.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3516, NULL, NULL, 5595, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3517, NULL, NULL, 6394, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3553, 53, NULL, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', NULL, '35.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.0000', '0.0000', '2022-09-17', 'received', '35.0000', '35.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3551, 53, NULL, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', NULL, '0.6000', '708.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '424.8000', '180.0000', '2022-09-17', 'received', '0.6000', '0.6000', '708.0000', NULL, NULL, 1, 'pc', '708.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3552, 53, NULL, 6866, '89649628', 'Fiesta Condom Fruity', NULL, '3.5000', '112.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '392.0000', '91.0000', '2022-09-17', 'received', '3.5000', '3.5000', '112.0000', NULL, NULL, 1, 'pc', '112.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3550, 53, NULL, 6667, '1264', 'Gyprone Plus Tablets', NULL, '2.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3549, 53, NULL, 5674, '271', 'Ibucap Capsules 10C (BamBam)', NULL, '1.5000', '516.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '774.0000', '330.0000', '2022-09-17', 'received', '1.5000', '1.5000', '516.0000', NULL, NULL, 1, 'pc', '516.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3548, 53, NULL, 6890, '15222916', 'One-Step Maleria Test Kit', NULL, '3.5000', '643.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.5000', '501.0000', '2022-09-17', 'received', '3.5000', '3.5000', '643.0000', NULL, NULL, 1, 'pc', '643.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3529, NULL, NULL, 5464, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3530, NULL, NULL, 6546, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3531, NULL, NULL, 6825, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3547, 53, NULL, 6658, '1255', 'Feroglobin Plus Syrup 200ml', NULL, '65.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.6000', '0.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3546, 53, NULL, 6679, '1276', 'Gebediclo 100mg Tablets', NULL, '9.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9500', '0.0000', '2022-09-17', 'received', '9.9900', '9.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3545, 53, NULL, 6334, '931', 'Adom W&amp;G Mixture', NULL, '16.5000', '5.0000', 1, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3544, 53, NULL, 6675, '1272', 'Lydia Postpill 2Tablets', NULL, '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3543, 53, NULL, 5957, '554', 'Zincovit Drops 15ml', NULL, '8.8200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.3000', '3.0000', '2022-09-17', 'received', '8.8200', '8.8200', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3554, NULL, NULL, 5422, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3555, NULL, NULL, 6356, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3556, NULL, NULL, 5726, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3557, NULL, NULL, 6298, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3558, NULL, NULL, 5511, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3559, NULL, NULL, 6189, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3560, NULL, NULL, 5992, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3561, 54, NULL, 6709, '1306', 'Ramipril 2.5mg Tablets 28&apos;s Teva', NULL, '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0000', '1.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3562, 54, NULL, 5871, '468', 'Shalcip Tablets 500mg 10&apos;s (Ciprofloxacin)', NULL, '4.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.3000', '0.0000', '2022-09-17', 'received', '4.3000', '4.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3563, 54, NULL, 6291, '888', 'Metagyl 200mg Tablets 50x10', NULL, '45.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '1.0000', '2022-09-17', 'received', '45.6000', '45.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3564, 54, NULL, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6&apos;s', NULL, '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '0.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3565, 54, NULL, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', NULL, '3.5000', '184.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '644.0000', '172.0000', '2022-09-17', 'received', '3.5000', '3.5000', '184.0000', NULL, NULL, 1, 'pc', '184.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3566, 54, NULL, 6051, '648', 'Candid V Gel 30gms Clotrimazole gel ', NULL, '19.6800', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '826.5600', '42.0000', '2022-09-17', 'received', '19.6800', '19.6800', '42.0000', NULL, NULL, 1, 'pc', '42.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3567, 54, NULL, 6049, '646', 'Candid V3 Gel Clotrimazole 200mg vaginal inserts with applicator', NULL, '7.9500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.4000', '12.0000', '2022-09-17', 'received', '7.9500', '7.9500', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3568, 54, NULL, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', NULL, '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3569, 54, NULL, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', NULL, '7.5000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '525.0000', '62.0000', '2022-09-17', 'received', '7.5000', '7.5000', '70.0000', NULL, NULL, 1, 'pc', '70.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 54, NULL, 6047, '644', 'Candid B Cream 15mg', NULL, '8.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '10.0000', '2022-09-17', 'received', '8.7000', '8.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 54, NULL, 6479, '1076', 'Dulcolax 10mg Suppositories 12&apos;s', NULL, '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7000', '0.0000', '2022-09-17', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 55, NULL, 6871, '36549551', ' Ascovit Cee (Vit C) Tablets 100mg 300\\\'', NULL, '36.7200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '367.2000', '8.0000', '2022-09-18', 'received', '36.7200', '36.7200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '36.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3578, 56, NULL, 6445, '1042', 'Vermox Suspension', NULL, '21.8000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1962.0000', '90.0000', '2022-09-18', 'received', '21.8000', '21.8000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3577, 56, NULL, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', NULL, '5.6700', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.5000', '50.0000', '2022-09-18', 'received', '5.6700', '5.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3576, 56, NULL, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', NULL, '8.3700', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1004.4000', '120.0000', '2022-09-18', 'received', '8.3700', '8.3700', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 57, NULL, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', NULL, '8.3700', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1004.4000', '53.0000', '2022-09-18', 'received', '8.3700', '8.3700', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 57, NULL, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', NULL, '5.6700', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.5000', '26.0000', '2022-09-18', 'received', '5.6700', '5.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 57, NULL, 6445, '1042', 'Vermox Suspension', NULL, '21.8000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1962.0000', '39.0000', '2022-09-18', 'received', '21.8000', '21.8000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 57, NULL, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', NULL, '61.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1224.0000', '9.0000', '2022-09-18', 'received', '61.2000', '61.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '61.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3583, 57, NULL, 5784, '381', 'Naprox EC 500mg Tablets 100&apos;s', NULL, '85.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '855.0000', '8.0000', '2022-09-18', 'received', '85.5000', '85.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '85.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3584, 57, NULL, 6862, '03174833', 'Promethazine Syrup 60ml ECL', NULL, '3.5900', '96.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '344.6400', '63.0000', '2022-09-18', 'received', '3.5900', '3.5900', '96.0000', NULL, NULL, 1, 'pc', '96.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3585, 57, NULL, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', NULL, '35.8400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2150.4000', '37.0000', '2022-09-18', 'received', '35.8400', '35.8400', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '35.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3586, 57, NULL, 6861, '52042899', 'Prowoman Plus Caps ', NULL, '74.6800', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '896.1600', '3.0000', '2022-09-18', 'received', '74.6800', '74.6800', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3587, 57, NULL, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', NULL, '6.3300', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1266.0000', '42.0000', '2022-09-18', 'received', '6.3300', '6.3300', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3588, 57, NULL, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', NULL, '55.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5580.0000', '42.0000', '2022-09-18', 'received', '55.8000', '55.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 57, NULL, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', NULL, '4.7500', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '475.0000', '23.0000', '2022-09-18', 'received', '4.7500', '4.7500', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6581, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', NULL, '13.5800', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '13.5800', '0.0000', '2022-09-19', 'received', '13.5800', '13.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6473, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6636, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 58, NULL, 6166, '763', 'Mucosyl Adult Syrup 100ml', NULL, '5.8000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.4000', '35.0000', '2022-09-19', 'received', '5.8000', '5.8000', '38.0000', NULL, NULL, 1, 'pc', '38.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5826, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 58, NULL, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', NULL, '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 58, NULL, 6636, '1233', 'Cetrizan Syrup 5MG/5ML 60ML', NULL, '6.8000', '67.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '455.6000', '62.0000', '2022-09-19', 'received', '6.8000', '6.8000', '67.0000', NULL, NULL, 1, 'pc', '67.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 58, NULL, 5893, '490', 'Super Apeti Plus Tablets 50X20', NULL, '1.6000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8000', '23.0000', '2022-09-19', 'received', '1.6000', '1.6000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6011, '608', 'Scimether Suspension', NULL, '14.2100', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '14.2100', '0.0000', '2022-09-19', 'received', '14.2100', '14.2100', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 59, NULL, 6646, '1243', 'Xarelto 20mg Tablets 14&apos;s', NULL, '224.0900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1120.4500', '5.0000', '2022-09-20', 'received', '224.0900', '224.0900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '224.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 59, NULL, 6457, '1054', 'Naklofen Duo Capsules 75mg 20&apos;s', NULL, '39.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1995.0000', '2.0000', '2022-09-20', 'received', '39.9000', '39.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 59, NULL, 6892, '43611248', 'Gentamycin 80mg/2ml Injection', NULL, '11.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6300', '1.0000', '2022-09-20', 'received', '11.2100', '11.2100', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5519, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6389, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6744, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6863, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6820, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 60, NULL, 6374, '971', 'Amoxicillin 250mg (Letap)', NULL, '1.6200', '4500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7290.0000', '3492.0000', '2022-09-21', 'received', '1.6200', '1.6200', '4500.0000', NULL, NULL, 1, 'pc', '4500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 60, NULL, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', NULL, '5.3000', '450.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2385.0000', '417.0000', '2022-09-21', 'received', '5.3000', '5.3000', '450.0000', NULL, NULL, 1, 'pc', '450.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 60, NULL, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', NULL, '26.1800', '192.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5026.5600', '183.0000', '2022-09-21', 'received', '26.1800', '26.1800', '192.0000', NULL, NULL, 1, 'pc', '192.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 60, NULL, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', NULL, '1.6700', '3000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5010.0000', '2010.0000', '2022-09-21', 'received', '1.6700', '1.6700', '3000.0000', NULL, NULL, 1, 'pc', '3000.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 60, NULL, 6593, '1190', 'Milk of Magnesia 125ml Letap', NULL, '1.6500', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '990.0000', '587.0000', '2022-09-21', 'received', '1.6500', '1.6500', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3619, 60, NULL, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', NULL, '13.7000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1233.0000', '16.0000', '2022-09-21', 'received', '13.7000', '13.7000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3620, 61, NULL, 5853, '450', 'Rooter Mixture', NULL, '8.5000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5100.0000', '308.0000', '2022-09-21', 'received', '8.5000', '8.5000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3621, 61, NULL, 6010, '607', 'Rooter Tytonic', NULL, '15.0000', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5400.0000', '234.0000', '2022-09-21', 'received', '15.0000', '15.0000', '360.0000', NULL, NULL, 1, 'pc', '360.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3622, NULL, NULL, 6250, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3623, NULL, NULL, 5624, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3624, NULL, NULL, 6017, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6843, '1440', 'Robb Inhaler', NULL, '22.0000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '0.0000', '2022-09-21', 'received', '22.0000', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6749, '1346', 'Jet 2 Inhaler', NULL, '40.0000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2022-09-21', 'received', '40.0000', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3627, NULL, NULL, 6670, '1267', 'Dicnac 75', NULL, '9.5000', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '19.0000', '0.0000', '2022-09-21', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3628, NULL, NULL, 6455, '1052', 'Paracetamol 500mg Tablets 100&apos;s EXE', NULL, '17.6200', '2.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '35.2400', '0.0000', '2022-09-21', 'received', '17.6200', '17.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3629, NULL, NULL, 6411, '1008', 'Infa V Wash 100ml', NULL, '17.6000', '0.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2022-09-21', 'received', '17.6000', '17.6000', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3630, NULL, NULL, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', NULL, '45.5000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '45.5000', '-9.0000', '2022-09-21', 'received', '45.5000', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3631, NULL, NULL, 6121, '718', 'Strobin Lozenges 25x6', NULL, '25.5000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '25.5000', '0.0000', '2022-09-21', 'received', '25.5000', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3632, NULL, NULL, 5898, '495', 'Taabea Herbal Mixture', NULL, '13.2000', '4.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '52.8000', '0.0000', '2022-09-21', 'received', '13.2000', '13.2000', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5853, '450', 'Rooter Mixture', NULL, '8.5000', '3.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '25.5000', '3.0000', '2022-09-21', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5771, '368', 'Magnesium Trisilicate (MMT)', NULL, '3.5000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '17.5000', '1.0000', '2022-09-21', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', NULL, '4.0000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2022-09-21', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3636, NULL, NULL, 5757, '354', 'Mark 2 Inhaler', NULL, '40.0000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2022-09-21', 'received', '40.0000', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3637, NULL, NULL, 5871, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3638, NULL, NULL, 6651, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6706, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6799, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6105, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3669, 62, NULL, 6766, '1363', 'Kidivit Syrup 100ML', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-09-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3668, 62, NULL, 6286, '883', 'Kidivite Syrup 200ml', NULL, '9.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-09-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3667, 62, NULL, 6092, '689', 'Ferrolex Syrup 250ml', NULL, '14.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-09-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3666, 62, NULL, 5892, '489', 'Super Apeti Plus Syrup 200ml', NULL, '8.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-09-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3665, 62, NULL, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', NULL, '8.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2022-09-22', 'received', '8.6000', '8.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3664, 62, NULL, 5683, '280', 'Infacol Drops 55ml', NULL, '49.4000', '43.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2124.2000', '42.0000', '2022-09-22', 'received', '49.4000', '49.4000', '43.0000', NULL, NULL, 1, 'pc', '43.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3663, 62, NULL, 5519, '116', 'Chlo Ear Chloramphenicol Drops', NULL, '3.3000', '338.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1115.4000', '198.0000', '2022-09-22', 'received', '3.3000', '3.3000', '338.0000', NULL, NULL, 1, 'pc', '338.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3649, 63, NULL, 6277, '874', 'Tinatett Tomac Mixture 500ml', NULL, '25.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '625.0000', '5.0000', '2022-09-22', 'received', '25.0000', '25.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3650, 64, NULL, 6893, '233', 'Impressor Capsules', NULL, '53.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '583.0000', '0.0000', '2022-09-22', 'received', '53.0000', '53.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3651, 65, NULL, 5827, '424', 'Polyfer Capsules 30&apos;s', NULL, '6.0000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '960.0000', '0.0000', '2022-09-23', 'received', '6.0000', '6.0000', '160.0000', NULL, NULL, 1, 'pc', '160.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3652, 65, NULL, 5453, '50', 'Ascoryl Syrup 125ml', NULL, '8.3000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '996.0000', '62.0000', '2022-09-23', 'received', '8.3000', '8.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3653, 65, NULL, 6158, '755', 'Ascoryl Plus syrup 125ml', NULL, '9.8000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1176.0000', '0.0000', '2022-09-23', 'received', '9.8000', '9.8000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3654, 65, NULL, 6160, '757', 'Emgikof D Syrup100ml', NULL, '6.3000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.0000', '51.0000', '2022-09-23', 'received', '6.3000', '6.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3655, 65, NULL, 6163, '760', 'Emgikof S Syrup100ml', NULL, '6.3000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.0000', '60.0000', '2022-09-23', 'received', '6.3000', '6.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3656, 65, NULL, 6162, '759', 'Go Cough Syrup 125ml', NULL, '6.6000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '792.0000', '62.0000', '2022-09-23', 'received', '6.6000', '6.6000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3657, 65, NULL, 6164, '761', 'Heptolif Syrup 200ml', NULL, '14.6000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1051.2000', '50.0000', '2022-09-23', 'received', '14.6000', '14.6000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3658, 65, NULL, 6166, '763', 'Mucosyl Adult Syrup 100ml', NULL, '6.8000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '612.0000', '80.0000', '2022-09-23', 'received', '6.8000', '6.8000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3659, 65, NULL, 6165, '762', 'Mucosyl Junior Syrup 100ml', NULL, '5.9000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '531.0000', '79.0000', '2022-09-23', 'received', '5.9000', '5.9000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3660, 65, NULL, 5828, '425', 'Polyfer Forte Syrup 150ML', NULL, '11.1000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1387.5000', '12.0000', '2022-09-23', 'received', '11.1000', '11.1000', '125.0000', NULL, NULL, 1, 'pc', '125.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3661, 65, NULL, 6167, '764', 'Polyfer Forte Syrup 200ml', NULL, '9.4000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '676.8000', '0.0000', '2022-09-23', 'received', '9.4000', '9.4000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3662, 65, NULL, 6501, '1098', 'Heptopep Forte 200ml Syrup', NULL, '9.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '675.0000', '0.0000', '2022-09-23', 'received', '9.0000', '9.0000', '75.0000', NULL, NULL, 1, 'pc', '75.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3670, 62, NULL, 6825, '1422', 'Oxytetra Cap 250mg', NULL, '46.2800', '1166.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53962.4800', '544.0000', '2022-09-22', 'received', '46.2800', '46.2800', '1166.0000', NULL, NULL, 1, 'pc', '1166.0000', NULL, NULL, NULL, NULL, '46.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3723, 66, NULL, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', NULL, '9.0000', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.0000', '27.0000', '2022-09-23', 'received', '9.0000', '9.0000', '42.0000', NULL, NULL, 1, 'pc', '42.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3722, 66, NULL, 6799, '1396', 'H/Aid Vitamin E 200iu Caps 60&apos;s', NULL, '78.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.3000', '0.0000', '2022-09-23', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3721, 66, NULL, 6744, '1341', 'Nexcofer Blood Tonic 200ml', NULL, '9.9600', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.5200', '0.0000', '2022-09-23', 'received', '9.9600', '9.9600', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3720, 66, NULL, 6706, '1303', 'Sildenafil 50mg Tablets 8&apos;s', NULL, '11.8000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1003.0000', '84.0000', '2022-09-23', 'received', '11.8000', '11.8000', '85.0000', NULL, NULL, 1, 'pc', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3719, 66, NULL, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', NULL, '4.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-09-23', 'received', '4.0000', '4.0000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3717, 66, NULL, 6651, '1248', 'Kalamina Lotion 120ml', NULL, '7.4400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3200', '0.0000', '2022-09-23', 'received', '7.4400', '7.4400', '3.0000', NULL, NULL, 1, 'pc', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3718, 66, NULL, 6667, '1264', 'Gyprone Plus Tablets', NULL, '2.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-09-23', 'received', '2.0000', '2.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3716, 66, NULL, 6650, '1247', 'Nexcofer Blood Tonic 100ml', NULL, '5.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.7000', '0.0000', '2022-09-23', 'received', '5.7000', '5.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3715, 66, NULL, 6421, '1018', 'Martins liver salt Plain', NULL, '9.9400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9400', '0.0000', '2022-09-23', 'received', '9.9400', '9.9400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '9.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3714, 66, NULL, 6310, '907', 'Odymin Capsules', NULL, '3.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-09-23', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3713, 66, NULL, 6303, '900', 'Lofnac 100mg Tablets', NULL, '1.4300', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1700', '0.0000', '2022-09-23', 'received', '1.4300', '1.4300', '19.0000', NULL, NULL, 1, 'pc', '19.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3712, 66, NULL, 6252, '849', 'Paracetamol Syrup 100ml Exeter', NULL, '4.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-09-23', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3709, 66, NULL, 5624, '221', 'Foligrow Syrup 200ml', NULL, '20.1000', '33.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '663.3000', '1.0000', '2022-09-23', 'received', '20.1000', '20.1000', '33.0000', NULL, NULL, 1, 'pc', '33.0000', NULL, NULL, NULL, NULL, '20.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3710, 66, NULL, 5656, '253', 'Gyprone Plus 200ml Syrup', NULL, '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2022-09-23', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3711, 66, NULL, 6035, '632', 'Fasipro Tablets (1*10)', NULL, '7.9900', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '287.6400', '19.0000', '2022-09-23', 'received', '7.9900', '7.9900', '36.0000', NULL, NULL, 1, 'pc', '36.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3708, 66, NULL, 5607, '204', 'Ezipen Tablets 5x6', NULL, '11.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-09-23', 'received', '11.4000', '11.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3707, 66, NULL, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\'', NULL, '32.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '0.0000', '2022-09-23', 'received', '32.8000', '32.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3706, 66, NULL, 5464, '61', 'Atorvastatin 10mg Tablets 28&apos;s', NULL, '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-09-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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3705, NULL, NULL, 5993, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3724, NULL, NULL, 6507, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3725, 67, NULL, 6361, '958', 'Basecold Tablets (50x4)', NULL, '49.5000', '4459.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220720.5000', '4190.0000', '2022-09-24', 'received', '49.5000', '49.5000', '4459.0000', NULL, NULL, 1, 'pc', '4459.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3726, NULL, NULL, 6021, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3727, NULL, NULL, 6533, '1130', 'Atenolol 50mg Tablets 28&apos;s (ECL)', NULL, '3.9000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '19.5000', '0.0000', '2022-09-26', 'received', '3.9000', '3.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3728, NULL, NULL, 6333, '930', 'Adom Koo Mixture', NULL, '7.7000', '10.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '77.0000', '0.0000', '2022-09-26', 'received', '7.7000', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3729, NULL, NULL, 6158, '755', 'Ascoryl Plus syrup 125ml', NULL, '9.8000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '49.0000', '0.0000', '2022-09-26', 'received', '9.8000', '9.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3730, NULL, NULL, 6115, '712', 'Gudapet Syrup 200ml', NULL, '7.1000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '35.5000', '0.0000', '2022-09-26', 'received', '7.1000', '7.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3731, NULL, NULL, 5967, '564', 'Zulu 100mg Tablet', NULL, '3.7800', '10.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '37.8000', '0.0000', '2022-09-26', 'received', '3.7800', '3.7800', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3732, NULL, NULL, 5710, '307', 'Leena Capsules', NULL, '4.0200', '20.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '80.4000', '0.0000', '2022-09-26', 'received', '4.0200', '4.0200', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3733, NULL, NULL, 5652, '249', 'Roberts Glycerine 90ml', NULL, '12.0000', '3.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2022-09-26', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3734, NULL, NULL, 6753, '1350', 'COA Mixture', NULL, '85.0000', '5.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '425.0000', '5.0000', '2022-09-26', 'received', '85.0000', '85.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3735, 68, NULL, 6557, '1154', 'Ocip TZ', NULL, '8.1000', '121.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '980.1000', '97.0000', '2022-09-26', 'received', '8.1000', '8.1000', '121.0000', NULL, NULL, 1, 'pc', '121.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3736, 68, NULL, 6555, '1152', 'Ocip 500mg Tablets 10&apos;s', NULL, '2.9700', '121.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '359.3700', '48.0000', '2022-09-26', 'received', '2.9700', '2.9700', '121.0000', NULL, NULL, 1, 'pc', '121.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3737, 69, NULL, 6753, '1350', 'COA Mixture', NULL, '70.0000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16800.0000', '116.0000', '2022-09-26', 'received', '70.0000', '70.0000', '240.0000', NULL, NULL, 1, 'pc', '240.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3738, 70, NULL, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', NULL, '15.1200', '288.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4354.5600', '0.0000', '2022-09-26', 'received', '15.1200', '15.1200', '288.0000', NULL, NULL, 1, 'pc', '288.0000', NULL, NULL, NULL, NULL, '15.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3739, 71, NULL, 5797, '394', 'Normo Tears Eye Drop', NULL, '17.0100', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1701.0000', '82.0000', '2022-09-26', 'received', '17.0100', '17.0100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '17.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3740, 71, NULL, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', NULL, '17.0100', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.6000', '44.0000', '2022-09-26', 'received', '17.0100', '17.0100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '17.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3741, 71, NULL, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', NULL, '17.0100', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1701.0000', '79.0000', '2022-09-26', 'received', '17.0100', '17.0100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '17.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3742, 71, NULL, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', NULL, '17.0100', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.6000', '28.0000', '2022-09-26', 'received', '17.0100', '17.0100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '17.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3743, 71, NULL, 6894, '42292731', 'Epitimol 0.5% Eye Drop', NULL, '12.9600', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1296.0000', '100.0000', '2022-09-26', 'received', '12.9600', '12.9600', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3744, NULL, NULL, 5956, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3745, NULL, NULL, 6013, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3746, NULL, NULL, 5527, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3747, NULL, NULL, 5625, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3748, NULL, NULL, 5804, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3749, NULL, NULL, 5635, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3750, NULL, NULL, 5959, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3751, 72, NULL, 5500, '97', 'Calpol Infant 2+Suspension 100ml', NULL, '41.3100', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '991.4400', '0.0000', '2022-09-28', 'received', '41.3100', '41.3100', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '41.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3752, 72, NULL, 5501, '98', 'Calpol 6+ Suspension 80ml', NULL, '44.0800', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1322.4000', '16.0000', '2022-09-28', 'received', '44.0800', '44.0800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '44.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 73, NULL, 5500, '97', 'Calpol Infant 2+Suspension 100ml', NULL, '41.3100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '247.8600', '0.0000', '2022-09-28', 'received', '41.3100', '41.3100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '41.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 73, NULL, 6323, '920', 'Polygynax Pessaries 6&apos;s', NULL, '35.1000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '842.4000', '24.0000', '2022-09-28', 'received', '35.1000', '35.1000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '35.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 73, NULL, 6563, '1160', 'Polygynax Pessaries 12&apos;s', NULL, '60.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1447.2000', '24.0000', '2022-09-28', 'received', '60.3000', '60.3000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3756, 74, NULL, 5971, '568', 'Asmadrin Tablets 25&apos;s', NULL, '20.4300', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1470.9600', '40.0000', '2022-09-28', 'received', '20.4300', '20.4300', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '20.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3757, 75, NULL, 6316, '913', 'Tot\\\'hema Box of 20 Bulbs', NULL, '54.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6480.0000', '43.0000', '2022-09-28', 'received', '54.0000', '54.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3758, 75, NULL, 6496, '1093', 'Dymol 50/500 Mg Tablets 10&apos;s', NULL, '5.0500', '216.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1090.8000', '80.0000', '2022-09-28', 'received', '5.0500', '5.0500', '216.0000', NULL, NULL, 1, 'pc', '216.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3759, 76, NULL, 6088, '685', 'Bioferon Capsules 30&apos;s', NULL, '24.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1446.0000', '25.0000', '2022-09-28', 'received', '24.1000', '24.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3760, 76, NULL, 5554, '151', 'Cytotec', NULL, '278.7800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1672.6800', '3.0000', '2022-09-28', 'received', '278.7800', '278.7800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '278.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3761, 76, NULL, 6496, '1093', 'Dymol 50/500 Mg Tablets 10&apos;s', NULL, '5.0500', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.2000', '0.0000', '2022-09-28', 'received', '5.0500', '5.0500', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3762, 76, NULL, 5673, '270', 'Ibex Capsules 24&apos;s', NULL, '15.8900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '794.5000', '38.0000', '2022-09-28', 'received', '15.8900', '15.8900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '15.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3763, 77, NULL, 6563, '1160', 'Polygynax Pessaries 12&apos;s', NULL, '60.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '603.0000', '5.0000', '2022-09-28', 'received', '60.3000', '60.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3764, 77, NULL, 6323, '920', 'Polygynax Pessaries 6&apos;s', NULL, '35.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '702.0000', '13.0000', '2022-09-28', 'received', '35.1000', '35.1000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '35.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3765, NULL, NULL, 6609, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3766, NULL, NULL, 6608, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3767, 78, NULL, 5441, '38', 'Ampicillin 250mg Capsules 50X10 Eskay', NULL, '1.9000', '1400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2660.0000', '1370.0000', '2022-09-28', 'received', '1.9000', '1.9000', '1400.0000', NULL, NULL, 1, 'pc', '1400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3768, 78, NULL, 6603, '1200', 'Eskaron Blood Tonic 200ml', NULL, '6.1900', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '557.1000', '34.0000', '2022-09-28', 'received', '6.1900', '6.1900', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '6.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3769, 78, NULL, 6839, '1436', 'Maxmox Suspension 100ml', NULL, '4.9100', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '392.8000', '34.0000', '2022-09-28', 'received', '4.9100', '4.9100', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3770, 78, NULL, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', NULL, '9.1100', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1093.2000', '113.0000', '2022-09-28', 'received', '9.1100', '9.1100', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '9.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3771, 78, NULL, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', NULL, '5.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '590.0000', '87.0000', '2022-09-28', 'received', '5.9000', '5.9000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3772, 78, NULL, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', NULL, '16.5600', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1987.2000', '60.0000', '2022-09-28', 'received', '16.5600', '16.5600', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '16.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3773, 78, NULL, 6609, '1206', 'Skyclav 228.5mg', NULL, '11.3900', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2278.0000', '93.0000', '2022-09-28', 'received', '11.3900', '11.3900', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '11.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3774, 78, NULL, 6608, '1205', 'Skyclav 457mg', NULL, '12.6300', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2526.0000', '115.0000', '2022-09-28', 'received', '12.6300', '12.6300', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3775, NULL, NULL, 5981, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3776, NULL, NULL, 5465, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3777, NULL, NULL, 6234, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3778, NULL, NULL, 6087, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3779, NULL, NULL, 5528, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3780, NULL, NULL, 5965, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3781, NULL, NULL, 6895, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3782, NULL, NULL, 6156, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3783, NULL, NULL, 5640, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3784, NULL, NULL, 6807, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3785, 79, NULL, 6843, '1440', 'Robb Inhaler', NULL, '22.9200', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '825.1200', '21.0000', '2022-09-30', 'received', '22.9200', '22.9200', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '22.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3786, 79, NULL, 6895, '49637846', 'Zubes Child Cough Syrup', NULL, '9.7900', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1409.7600', '32.0000', '2022-09-30', 'received', '9.7900', '9.7900', '144.0000', NULL, NULL, 1, 'pc', '144.0000', NULL, NULL, NULL, NULL, '9.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3787, 79, NULL, 5965, '562', 'Zubes Expectorant 125ml Syrup', NULL, '12.0800', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1739.5200', '90.0000', '2022-09-30', 'received', '12.0800', '12.0800', '144.0000', NULL, NULL, 1, 'pc', '144.0000', NULL, NULL, NULL, NULL, '12.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3809, 80, NULL, 6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', NULL, '9.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '15.0000', '2022-09-30', 'received', '9.0000', '9.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3808, 80, NULL, 6897, '80096466', 'Streptol 6X2 Lozenges', NULL, '4.2800', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '856.0000', '174.0000', '2022-09-30', 'received', '4.2800', '4.2800', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '4.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3807, 80, NULL, 6896, '94310781', 'Fleming 457MG Suspension', NULL, '28.8100', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2304.8000', '42.0000', '2022-09-30', 'received', '28.8100', '28.8100', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '28.8100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3806, 80, NULL, 6614, '1211', 'Orelox 40mg/5ml Suspension 100ml', NULL, '105.1000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2627.5000', '25.0000', '2022-09-30', 'received', '105.1000', '105.1000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '105.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3805, 80, NULL, 6581, '1178', 'Cirotamin Caplets 28&apos;s', NULL, '10.3500', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '517.5000', '25.0000', '2022-09-30', 'received', '10.3500', '10.3500', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3804, 80, NULL, 6442, '1039', 'NoSpa 40mg 100&apos;s', NULL, '75.1600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '751.6000', '3.0000', '2022-09-30', 'received', '75.1600', '75.1600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '75.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3803, 80, NULL, 6441, '1038', 'Exforge HCT 10/160/12. 5mg 28&apos;s', NULL, '207.6800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2076.8000', '7.0000', '2022-09-30', 'received', '207.6800', '207.6800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '207.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3802, 80, NULL, 6403, '1000', 'Azomax 200mg/5ml Suspension', NULL, '43.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2160.0000', '49.0000', '2022-09-30', 'received', '43.2000', '43.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3801, 80, NULL, 6234, '831', 'Amoksiklav 625mg Tablet 14s', NULL, '36.2400', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5436.0000', '5.0000', '2022-09-30', 'received', '36.2400', '36.2400', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '36.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3800, 80, NULL, 5528, '125', 'Cirotamin Tonic', NULL, '14.8800', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '952.3200', '40.0000', '2022-09-30', 'received', '14.8800', '14.8800', '64.0000', NULL, NULL, 1, 'pc', '64.0000', NULL, NULL, NULL, NULL, '14.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3799, 80, NULL, 5439, '36', 'Amoksiklav 1g Tablet 10s', NULL, '52.5200', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7878.0000', '80.0000', '2022-09-30', 'received', '52.5200', '52.5200', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '52.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3810, NULL, NULL, 6755, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3811, NULL, NULL, 5478, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3812, NULL, NULL, 6570, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3813, NULL, NULL, 6691, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3814, NULL, NULL, 6106, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3815, 81, NULL, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', NULL, '25.4000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5080.0000', '169.0000', '2022-10-04', 'received', '25.4000', '25.4000', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '25.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3816, 81, NULL, 5487, '84', 'Bonaplex Syrup 250ml', NULL, '17.1500', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3430.0000', '152.0000', '2022-10-04', 'received', '17.1500', '17.1500', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3817, 81, NULL, 6328, '925', 'Gynomycolex 400mg Pessaries 3&apos;s', NULL, '24.4100', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1562.2400', '33.0000', '2022-10-04', 'received', '24.4100', '24.4100', '64.0000', NULL, NULL, 1, 'pc', '64.0000', NULL, NULL, NULL, NULL, '24.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3818, 81, NULL, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', NULL, '10.8800', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2176.0000', '195.0000', '2022-10-04', 'received', '10.8800', '10.8800', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '10.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3819, 81, NULL, 6109, '706', 'Maalox Plus Suspension 250ml', NULL, '48.6400', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1167.3600', '23.0000', '2022-10-04', 'received', '48.6400', '48.6400', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '48.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3820, 81, NULL, 6112, '709', 'Metrolex F Tablets 21&apos;s', NULL, '12.7000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2540.0000', '185.0000', '2022-10-04', 'received', '12.7000', '12.7000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3821, 81, NULL, 5779, '376', 'Mycolex Cream 20g', NULL, '14.5200', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1452.0000', '78.0000', '2022-10-04', 'received', '14.5200', '14.5200', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3822, 81, NULL, 5778, '375', 'Mycolex 3 Cream 30gm', NULL, '16.3300', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1633.0000', '61.0000', '2022-10-04', 'received', '16.3300', '16.3300', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3823, 81, NULL, 6394, '991', 'Mycostat 150mg Capsules 1&apos;s', NULL, '5.4400', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1632.0000', '169.0000', '2022-10-04', 'received', '5.4400', '5.4400', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3824, 81, NULL, 6116, '713', 'Norvasc 10mg Tablets 30&apos;s', NULL, '362.2400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1811.2000', '4.0000', '2022-10-04', 'received', '362.2400', '362.2400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '362.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3825, 81, NULL, 6124, '721', 'Vitaforce Syrup 250ml', NULL, '18.1500', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2178.0000', '114.0000', '2022-10-04', 'received', '18.1500', '18.1500', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '18.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3826, 81, NULL, 5419, '16', 'Acidom 20mg Capsules', NULL, '17.1500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1029.0000', '50.0000', '2022-10-04', 'received', '17.1500', '17.1500', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3827, 81, NULL, 6568, '1165', 'Lexofen 150ml Suspension', NULL, '13.6100', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '680.5000', '35.0000', '2022-10-04', 'received', '13.6100', '13.6100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '13.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3828, 81, NULL, 6570, '1167', 'Luex Nasal Inhaler (Jar)', NULL, '3.6300', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '435.6000', '0.0000', '2022-10-04', 'received', '3.6300', '3.6300', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3829, NULL, NULL, 5968, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3830, NULL, NULL, 6850, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3831, NULL, NULL, 6370, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3832, NULL, NULL, 6853, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 82, NULL, 6435, '1032', 'Coldiron Syrup 125ml', NULL, '8.1000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '810.0000', '54.0000', '2022-10-05', 'received', '8.1000', '8.1000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 83, NULL, 6431, '1028', 'Ladinas 2X10', NULL, '4.3200', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1296.0000', '261.0000', '2022-10-05', 'received', '4.3200', '4.3200', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 83, NULL, 6667, '1264', 'Gyprone Plus Tablets', NULL, '2.7000', '1125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3037.5000', '935.0000', '2022-10-05', 'received', '2.7000', '2.7000', '1125.0000', NULL, NULL, 1, 'pc', '1125.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5509, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5605, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6170, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6360, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6752, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 84, NULL, 5656, '253', 'Gyprone Plus 200ml Syrup', NULL, '9.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2022-10-07', 'received', '9.9000', '9.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 85, NULL, 6752, '1349', 'Taabea Taacum', NULL, '22.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '0.0000', '2022-10-07', 'received', '22.0000', '22.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6835, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5592, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6267, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 86, NULL, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', NULL, '2.6900', '424.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1140.5600', '0.0000', '2022-10-08', 'received', '2.6900', '2.6900', '424.0000', NULL, NULL, 1, 'pc', '424.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 87, NULL, 5422, '19', 'Adom W&amp;G Capsules', NULL, '18.7000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1122.0000', '49.0000', '2022-10-08', 'received', '18.7000', '18.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5991, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5655, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5447, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 88, NULL, 5447, '44', 'Apetamin Syrup 200ml', NULL, '24.5300', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6132.5000', '177.0000', '2022-10-11', 'received', '24.5300', '24.5300', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6844, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5792, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5731, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4124, 89, NULL, 6890, '15222916', 'One-Step Maleria Test Kit', NULL, '5.4000', '1000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5400.0000', '839.0000', '2022-10-11', 'received', '5.4000', '5.4000', '1000.0000', NULL, NULL, 1, 'pc', '1000.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4123, 89, NULL, 6665, '1262', 'Plaster Strips Easy Care', NULL, '9.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '95.0000', '2022-10-11', 'received', '9.0000', '9.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4122, 89, NULL, 6664, '1261', 'Pregnancy Test Kit One-Step', NULL, '1.2600', '1000.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1260.0000', '527.0000', '2022-10-11', 'received', '1.2600', '1.2600', '1000.0000', NULL, NULL, 1, 'pc', '1000.0000', NULL, NULL, NULL, NULL, '1.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4090, 90, NULL, 6899, '75093808', 'Diclokin TR', NULL, '24.8300', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1142.1800', '46.0000', '2022-10-11', 'received', '24.8300', '24.8300', '46.0000', NULL, NULL, 1, 'pc', '46.0000', NULL, NULL, NULL, NULL, '24.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4089, 90, NULL, 6656, '1253', 'Martins liver salt (Orange)25&apos;s', NULL, '11.7100', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '702.6000', '58.0000', '2022-10-11', 'received', '11.7100', '11.7100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '11.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4088, 90, NULL, 6655, '1252', 'Mayfer Syrup 200ml', NULL, '8.7000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '23.0000', '2022-10-11', 'received', '8.7000', '8.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 90, NULL, 6421, '1018', 'Martins liver salt Plain', NULL, '15.4200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '925.2000', '53.0000', '2022-10-11', 'received', '15.4200', '15.4200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '15.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4086, 90, NULL, 6419, '1016', 'Menthox Child Cough Syrup 125ml', NULL, '5.3000', '192.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1017.6000', '190.0000', '2022-10-11', 'received', '5.3000', '5.3000', '192.0000', NULL, NULL, 1, 'pc', '192.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4085, 90, NULL, 6000, '597', 'Vigorix Forte Syr 200ml', NULL, '10.6500', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '511.2000', '42.0000', '2022-10-11', 'received', '10.6500', '10.6500', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '10.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4083, 90, NULL, 5989, '586', 'APC 50X4 TABS', NULL, '26.4300', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '687.1800', '25.0000', '2022-10-11', 'received', '26.4300', '26.4300', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '26.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4084, 90, NULL, 5991, '588', 'Kwik Action Tablets 50x4', NULL, '38.4600', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3230.6400', '61.0000', '2022-10-11', 'received', '38.4600', '38.4600', '84.0000', NULL, NULL, 1, 'pc', '84.0000', NULL, NULL, NULL, NULL, '38.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4082, 90, NULL, 5980, '577', 'Martins liver salt(Lemon)25&apos;s', NULL, '11.7100', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1053.9000', '81.0000', '2022-10-11', 'received', '11.7100', '11.7100', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '11.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4081, 90, NULL, 5979, '576', 'Menthox Adult Cough Syrup 125ml', NULL, '6.0800', '96.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '583.6800', '78.0000', '2022-10-11', 'received', '6.0800', '6.0800', '96.0000', NULL, NULL, 1, 'pc', '96.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4080, 90, NULL, 5974, '571', 'Magacid Susp 200ml', NULL, '8.4900', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2037.6000', '193.0000', '2022-10-11', 'received', '8.4900', '8.4900', '240.0000', NULL, NULL, 1, 'pc', '240.0000', NULL, NULL, NULL, NULL, '8.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4079, 90, NULL, 5973, '570', 'Finelife Blood Tonic 200ml', NULL, '7.9600', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '382.0800', '37.0000', '2022-10-11', 'received', '7.9600', '7.9600', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '7.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5772, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6026, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6025, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6167, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6457, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6026, '623', 'Tacizol Suspension', NULL, '1.8800', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.0000', '64.0000', '2022-10-12', 'received', '1.8800', '1.8800', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6025, '622', 'Tacizol 400mg Tablet', NULL, '0.7200', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '368.0000', '2022-10-12', 'received', '0.7200', '0.7200', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 5642, '239', 'Gebedol Plus Capsule', NULL, '24.4300', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1465.8000', '50.0000', '2022-10-12', 'received', '24.4300', '24.4300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '24.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6032, '629', 'Gebedol Forte', NULL, '17.2100', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1721.0000', '88.0000', '2022-10-12', 'received', '17.2100', '17.2100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '17.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 5641, '238', 'Gebedol Extra', NULL, '31.1000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1866.0000', '33.0000', '2022-10-12', 'received', '31.1000', '31.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6028, '625', 'Eurovit Multivitamin Gummies Greeen', NULL, '18.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '5.0000', '2022-10-12', 'received', '18.8800', '18.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3892, 91, NULL, 6387, '984', 'Cartef 20/120mg Tablets 24&apos;s', NULL, '7.2100', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1442.0000', '185.0000', '2022-10-12', 'received', '7.2100', '7.2100', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '7.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6095, '692', 'Cartef-DS Tablet', NULL, '8.3200', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3328.0000', '336.0000', '2022-10-12', 'received', '8.3200', '8.3200', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6036, '633', 'Leorub Gel 30g', NULL, '4.4300', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.4800', '30.0000', '2022-10-12', 'received', '4.4300', '4.4300', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '4.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6030, '627', 'Zipferon Capsule', NULL, '4.4300', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '664.5000', '142.0000', '2022-10-12', 'received', '4.4300', '4.4300', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '4.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 6024, '621', 'Vaginax Cream 30gm', NULL, '4.9900', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '399.2000', '41.0000', '2022-10-12', 'received', '4.9900', '4.9900', '80.0000', NULL, NULL, 1, 'pc', '80.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 91, NULL, 5640, '237', 'Gebedol Tablet', NULL, '11.1000', '700.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7770.0000', '354.0000', '2022-10-12', 'received', '11.1000', '11.1000', '700.0000', NULL, NULL, 1, 'pc', '700.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3907, 92, NULL, 6360, '957', 'Wormbase Suspension', NULL, '2.5000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1000.0000', '365.0000', '2022-10-12', 'received', '2.5000', '2.5000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 92, NULL, 6358, '955', 'Fenbase Extra', NULL, '3.0200', '4200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12684.0000', '3936.0000', '2022-10-12', 'received', '3.0200', '3.0200', '4200.0000', NULL, NULL, 1, 'pc', '4200.0000', NULL, NULL, NULL, NULL, '3.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 92, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '12.5000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3000.0000', '167.0000', '2022-10-12', 'received', '12.5000', '12.5000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 92, NULL, 5473, '70', 'Basecold Syrup', NULL, '4.5000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.0000', '437.0000', '2022-10-12', 'received', '4.5000', '4.5000', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 92, NULL, 5472, '69', 'Baseboom Gel', NULL, '4.0000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2000.0000', '232.0000', '2022-10-12', 'received', '4.0000', '4.0000', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3908, 92, NULL, 6900, '47596555', 'Badruf Cream', NULL, '6.0000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1200.0000', '175.0000', '2022-10-12', 'received', '6.0000', '6.0000', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3909, NULL, NULL, 6390, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3910, NULL, NULL, 6591, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4055, 50, NULL, 5545, '142', 'Cororange Drops', NULL, '8.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '255.0000', '19.0000', '2022-09-15', 'received', '8.5000', '8.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4056, 50, NULL, 5562, '159', 'Deep Freez Spray 150ml', NULL, '47.7700', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '955.4000', '9.0000', '2022-09-15', 'received', '47.7700', '47.7700', '20.0000', NULL, NULL, 1, 'pc', '20.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4077, 93, NULL, 6691, '1288', 'Lonart 20/120mg Tablets 24&apos;s', NULL, '6.5000', '341.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2216.5000', '183.0000', '2022-10-12', 'received', '6.5000', '6.5000', '341.0000', NULL, NULL, 1, 'pc', '341.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4078, 94, NULL, 5731, '328', 'Lonart DS Tablets', NULL, '17.2000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '378.4000', '0.0000', '2022-10-12', 'received', '17.2000', '17.2000', '22.0000', NULL, NULL, 1, 'pc', '22.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4102, 95, NULL, 6360, '957', 'Wormbase Suspension', NULL, '2.5000', '400.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1000.0000', '400.0000', '2022-10-12', 'received', '2.5000', '2.5000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4101, 95, NULL, 6900, '47596555', 'Badruf Cream', NULL, '6.0000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1200.0000', '200.0000', '2022-10-12', 'received', '6.0000', '6.0000', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4100, 95, NULL, 6358, '955', 'Fenbase Extra', NULL, '3.0000', '4200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12600.0000', '4200.0000', '2022-10-12', 'received', '3.0000', '3.0000', '4200.0000', NULL, NULL, 1, 'pc', '4200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4099, 95, NULL, 5947, '544', 'Wormbase 400mg Tablets', NULL, '12.5000', '240.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3000.0000', '240.0000', '2022-10-12', 'received', '12.5000', '12.5000', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4098, 95, NULL, 5473, '70', 'Basecold Syrup', NULL, '4.5000', '500.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.0000', '500.0000', '2022-10-12', 'received', '4.5000', '4.5000', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4097, 95, NULL, 5472, '69', 'Baseboom Gel', NULL, '4.0000', '500.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2000.0000', '500.0000', '2022-10-12', 'received', '4.0000', '4.0000', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4103, NULL, NULL, 6259, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4104, 96, NULL, 5990, '587', 'Whitfield ointment', NULL, '8.1900', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '491.4000', '58.0000', '2022-10-12', 'received', '8.1900', '8.1900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '8.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4105, 96, NULL, 5976, '573', 'Koffex Adult Cough Syr 125ml', NULL, '7.3800', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1845.0000', '168.0000', '2022-10-12', 'received', '7.3800', '7.3800', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4106, 96, NULL, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', NULL, '9.9900', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2997.0000', '258.0000', '2022-10-12', 'received', '9.9900', '9.9900', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '9.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4107, 96, NULL, 5986, '583', 'Rapinol Tab 25X4&apos;s', NULL, '13.5000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '972.0000', '39.0000', '2022-10-12', 'received', '13.5000', '13.5000', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4108, 96, NULL, 6901, '89069149', 'Paralex D Tablets', NULL, '4.0100', '130.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '521.3000', '84.0000', '2022-10-12', 'received', '4.0100', '4.0100', '130.0000', NULL, NULL, 1, 'pc', '130.0000', NULL, NULL, NULL, NULL, '4.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4109, 97, NULL, 6696, '1293', 'Abyvita Capsules', NULL, '4.3000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '860.0000', '140.0000', '2022-10-12', 'received', '4.3000', '4.3000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4110, 97, NULL, 6591, '1188', 'Abyvita Syrup 200ml', NULL, '10.0000', '96.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '960.0000', '91.0000', '2022-10-12', 'received', '10.0000', '10.0000', '96.0000', NULL, NULL, 1, 'pc', '96.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4111, 97, NULL, 6697, '1294', 'Biva Plus Capsules', NULL, '11.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '60.0000', '2022-10-12', 'received', '11.0000', '11.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4112, 97, NULL, 6698, '1295', 'Biva Plus Syrup', NULL, '12.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '384.0000', '32.0000', '2022-10-12', 'received', '12.0000', '12.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4113, 98, NULL, 6386, '983', 'Paingay Capsules', NULL, '3.7200', '1600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5952.0000', '1545.0000', '2022-10-12', 'received', '3.7200', '3.7200', '1600.0000', NULL, NULL, 1, 'pc', '1600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4114, 99, NULL, 6389, '986', 'Salocold Syrup', NULL, '8.7300', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3142.8000', '288.0000', '2022-10-12', 'received', '8.7300', '8.7300', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4115, 99, NULL, 6902, '06640421', 'Grandpa Syrup', NULL, '5.8500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.0000', '32.0000', '2022-10-12', 'received', '5.8500', '5.8500', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4116, 99, NULL, 6755, '1352', 'Salo Simple Linctus', NULL, '5.8500', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1053.0000', '170.0000', '2022-10-12', 'received', '5.8500', '5.8500', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4117, 99, NULL, 6383, '980', 'Amcof Baby Syrup', NULL, '8.8200', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1058.4000', '64.0000', '2022-10-12', 'received', '8.8200', '8.8200', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4118, 99, NULL, 5813, '410', 'Paingay Gel 30g', NULL, '5.6700', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.1000', '30.0000', '2022-10-12', 'received', '5.6700', '5.6700', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4119, NULL, NULL, 6001, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4120, 100, NULL, 5624, '221', 'Foligrow Syrup 200ml', NULL, '18.0200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1081.2000', '25.0000', '2022-10-13', 'received', '18.0200', '18.0200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4121, 100, NULL, 6903, '75300114', 'Foligrow Plus', NULL, '22.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '675.0000', '15.0000', '2022-10-13', 'received', '22.5000', '22.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4125, NULL, NULL, 6726, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4126, NULL, NULL, 6777, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4127, NULL, NULL, 6217, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4128, NULL, NULL, 6454, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4129, NULL, NULL, 6876, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4130, NULL, NULL, 5854, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4131, NULL, NULL, 6053, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4132, NULL, NULL, 5858, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4133, NULL, NULL, 6096, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4134, NULL, NULL, 6573, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4135, NULL, NULL, 6295, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4136, NULL, NULL, 6605, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4137, NULL, NULL, 5477, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4138, NULL, NULL, 5637, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4139, 101, NULL, 6905, '07702426', 'Xzole F Metronidazole/ Furazolidone', NULL, '8.8000', '69.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '607.2000', '67.0000', '2022-10-15', 'received', '8.8000', '8.8000', '69.0000', NULL, NULL, 1, 'pc', '69.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4140, 102, NULL, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', NULL, '10.8000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '972.0000', '55.0000', '2022-10-15', 'received', '10.8000', '10.8000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4141, 103, NULL, 6295, '892', 'Cyprodine 200ml Syrup', NULL, '33.1200', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4769.2800', '61.0000', '2022-10-16', 'received', '33.1200', '33.1200', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4142, 103, NULL, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', NULL, '33.1200', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2384.6400', '33.0000', '2022-10-16', 'received', '33.1200', '33.1200', '72.0000', NULL, NULL, 1, 'pc', '72.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4143, 104, NULL, 6260, '857', 'Hydrogen Peroxide 200ml ECL', NULL, '5.7600', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.7200', '58.0000', '2022-10-16', 'received', '5.7600', '5.7600', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '5.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4144, 105, NULL, 6260, '857', 'Hydrogen Peroxide 200ml ECL', NULL, '5.7600', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2400', '0.0000', '2022-10-16', 'received', '5.7600', '5.7600', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '5.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4145, 105, NULL, 6285, '882', 'Auntie Mary Gripewater 150ml', NULL, '9.8000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '882.0000', '17.0000', '2022-10-16', 'received', '9.8000', '9.8000', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4146, NULL, NULL, 6258, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4147, NULL, NULL, 6829, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4148, NULL, NULL, 6368, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4218, 106, NULL, 6812, '1409', 'Sudocrem 60g', NULL, '31.3200', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.3600', '7.0000', '2022-10-17', 'received', '31.3200', '31.3200', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4217, 106, NULL, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\\\' ECL', NULL, '23.6700', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '710.1000', '25.0000', '2022-10-17', 'received', '23.6700', '23.6700', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4216, 106, NULL, 6744, '1341', 'Nexcofer Blood Tonic 200ml', NULL, '10.7800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '646.8000', '11.0000', '2022-10-17', 'received', '10.7800', '10.7800', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4215, 106, NULL, 6644, '1241', 'Secnidazole 1g Tablets 2&apos;s (Lavina) ECL', NULL, '4.6800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.8000', '50.0000', '2022-10-17', 'received', '4.6800', '4.6800', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4214, 106, NULL, 6548, '1145', 'Metoclopramide 10mg Tablets 28&apos;s Exeter', NULL, '8.8200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '529.2000', '46.0000', '2022-10-17', 'received', '8.8200', '8.8200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4213, 106, NULL, 6457, '1054', 'Naklofen Duo Capsules 75mg 20&apos;s', NULL, '41.4000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2980.8000', '57.0000', '2022-10-17', 'received', '41.4000', '41.4000', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '41.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4212, 106, NULL, 6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', NULL, '3.7800', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '453.6000', '104.0000', '2022-10-17', 'received', '3.7800', '3.7800', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4211, 106, NULL, 6400, '997', 'Metagyl 400mg Tablets', NULL, '41.4000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1242.0000', '25.0000', '2022-10-17', 'received', '41.4000', '41.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '41.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4210, 106, NULL, 6396, '993', 'Menthodex 100ml Syrup', NULL, '15.4800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '928.8000', '39.0000', '2022-10-17', 'received', '15.4800', '15.4800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '15.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4209, 106, NULL, 6298, '895', 'Malar-2 Forte DS Tablets 6&apos;s', NULL, '9.7200', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1555.2000', '94.0000', '2022-10-17', 'received', '9.7200', '9.7200', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6297, '894', 'Malar-2 Suspension 60ml', NULL, '9.2900', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '557.4000', '26.0000', '2022-10-17', 'received', '9.2900', '9.2900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '9.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6294, '891', 'Menthodex 200ml Syrup ECL', NULL, '26.6400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1598.4000', '48.0000', '2022-10-17', 'received', '26.6400', '26.6400', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '26.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6292, '889', 'Fluxacin 100ml Suspension', NULL, '8.2800', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.6000', '32.0000', '2022-10-17', 'received', '8.2800', '8.2800', '45.0000', NULL, NULL, 1, 'pc', '45.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6291, '888', 'Metagyl 200mg Tablets 50x10', NULL, '53.8200', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1237.8600', '23.0000', '2022-10-17', 'received', '53.8200', '53.8200', '23.0000', NULL, NULL, 1, 'pc', '23.0000', NULL, NULL, NULL, NULL, '53.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4204, 106, NULL, 6289, '886', 'Fluxamox 500mg Capsules 200&apos;s', NULL, '117.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1170.0000', '6.0000', '2022-10-17', 'received', '117.0000', '117.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '117.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4203, 106, NULL, 6262, '859', 'Neoferon Capsules 30s', NULL, '10.6700', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1067.0000', '100.0000', '2022-10-17', 'received', '10.6700', '10.6700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '10.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', NULL, '9.7200', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '972.0000', '56.0000', '2022-10-17', 'received', '9.7200', '9.7200', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6248, '845', 'Teething Mixture 100ml ECL', NULL, '9.6800', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1742.4000', '151.0000', '2022-10-17', 'received', '9.6800', '9.6800', '180.0000', NULL, NULL, 1, 'pc', '180.0000', NULL, NULL, NULL, NULL, '9.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4200, 106, NULL, 6240, '837', 'Metronidazole 400mg tabs 21&apos;s Exeter', NULL, '10.6200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '637.2000', '48.0000', '2022-10-17', 'received', '10.6200', '10.6200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '10.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 106, NULL, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', NULL, '8.8200', '280.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2469.6000', '279.0000', '2022-10-17', 'received', '8.8200', '8.8200', '280.0000', NULL, NULL, 1, 'pc', '280.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4198, 106, NULL, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', NULL, '10.7800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '646.8000', '31.0000', '2022-10-17', 'received', '10.7800', '10.7800', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4197, 106, NULL, 5959, '556', 'Zincovit Tablets', NULL, '26.7800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1606.8000', '30.0000', '2022-10-17', 'received', '26.7800', '26.7800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '26.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4196, 106, NULL, 5958, '555', 'Zincovit Syrup 200ml', NULL, '19.4700', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '973.5000', '23.0000', '2022-10-17', 'received', '19.4700', '19.4700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '19.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4195, 106, NULL, 5956, '553', 'Zincofer Syrup 200ml', NULL, '21.5600', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1078.0000', '17.0000', '2022-10-17', 'received', '21.5600', '21.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '21.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4194, 106, NULL, 5955, '552', 'Zincofer Capsules 30&apos;s', NULL, '23.2400', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '697.2000', '25.0000', '2022-10-17', 'received', '23.2400', '23.2400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '23.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4193, 106, NULL, 5889, '486', 'Sudocrem 125g cream', NULL, '44.8200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '896.4000', '18.0000', '2022-10-17', 'received', '44.8200', '44.8200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '44.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4192, 106, NULL, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', NULL, '34.0200', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3061.8000', '69.0000', '2022-10-17', 'received', '34.0200', '34.0200', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '34.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4191, 106, NULL, 5854, '451', 'Rough Rider Condoms 3&apos;s', NULL, '9.7000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1396.8000', '68.0000', '2022-10-17', 'received', '9.7000', '9.7000', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4190, 106, NULL, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', NULL, '35.6400', '112.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3991.6800', '74.0000', '2022-10-17', 'received', '35.6400', '35.6400', '112.0000', NULL, NULL, 1, 'pc', '112.0000', NULL, NULL, NULL, NULL, '35.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4189, 106, NULL, 5637, '234', 'Gaviscon Peppermint Liquid 200ml', NULL, '48.7600', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1414.0400', '24.0000', '2022-10-17', 'received', '48.7600', '48.7600', '29.0000', NULL, NULL, 1, 'pc', '29.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4188, 106, NULL, 5532, '129', 'Coartem 80/480 6s', NULL, '58.5000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7020.0000', '94.0000', '2022-10-17', 'received', '58.5000', '58.5000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '58.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4187, 106, NULL, 5477, '74', 'Bells Teething Mixture', NULL, '24.3000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1749.6000', '29.0000', '2022-10-17', 'received', '24.3000', '24.3000', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '24.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4184, NULL, NULL, 5997, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4185, NULL, NULL, 6819, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4186, NULL, NULL, 6558, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4219, 106, NULL, 6904, '53862547', 'Spironolactone 50mg Tablets 30\\\'s Lavina', NULL, '16.7400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1004.4000', '56.0000', '2022-10-17', 'received', '16.7400', '16.7400', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4220, 106, NULL, 6250, '847', 'Paracetamol 500mg Tablets 16&apos;s uk', NULL, '4.8600', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '486.0000', '46.0000', '2022-10-17', 'received', '4.8600', '4.8600', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4221, 106, NULL, 6535, '1132', 'Clotrimazole Cream 0.01 20g', NULL, '3.4200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '205.2000', '38.0000', '2022-10-17', 'received', '3.4200', '3.4200', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4222, 106, NULL, 6286, '883', 'Kidivite Syrup 200ml', NULL, '10.6200', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '637.2000', '43.0000', '2022-10-17', 'received', '10.6200', '10.6200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '10.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4223, NULL, NULL, 6865, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4224, NULL, NULL, 6256, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4225, NULL, NULL, 5551, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4226, NULL, NULL, 5629, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4227, NULL, NULL, 5452, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4228, NULL, NULL, 6338, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4229, NULL, NULL, 5610, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4230, NULL, NULL, 6142, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4231, NULL, NULL, 6478, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4232, NULL, NULL, 6907, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4265, 107, NULL, 6911, '48633904', 'Wellman Plus Capsules', NULL, '97.4600', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3118.7200', '30.0000', '2022-10-19', 'received', '97.4600', '97.4600', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '97.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4264, 107, NULL, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', NULL, '72.2300', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2600.2800', '35.0000', '2022-10-19', 'received', '72.2300', '72.2300', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '72.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4263, 107, NULL, 6559, '1156', 'Perfectil Capsules 30&apos;s', NULL, '77.4000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3096.0000', '32.0000', '2022-10-19', 'received', '77.4000', '77.4000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '77.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4262, 107, NULL, 6526, '1123', 'Pregnacare Max', NULL, '154.7900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1857.4800', '9.0000', '2022-10-19', 'received', '154.7900', '154.7900', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '154.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 107, NULL, 6524, '1121', 'Perfectil Plus Caps', NULL, '206.3900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2476.6800', '9.0000', '2022-10-19', 'received', '206.3900', '206.3900', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '206.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 107, NULL, 6344, '941', 'Perfectil platinum 60&apos;s', NULL, '257.9900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3095.8800', '11.0000', '2022-10-19', 'received', '257.9900', '257.9900', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '257.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 107, NULL, 6341, '938', 'Wellman 50+ Tablets', NULL, '71.3800', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3569.0000', '50.0000', '2022-10-19', 'received', '71.3800', '71.3800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '71.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 107, NULL, 6339, '936', 'Pregnacare Tablets 19&apos;s', NULL, '70.5200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2820.8000', '39.0000', '2022-10-19', 'received', '70.5200', '70.5200', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 107, NULL, 6338, '935', 'Osteocare Tablets UK', NULL, '36.1200', '52.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1878.2400', '44.0000', '2022-10-19', 'received', '36.1200', '36.1200', '52.0000', NULL, NULL, 1, 'pc', '52.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4256, 107, NULL, 6337, '934', 'Feroglobin Syrup 200ml', NULL, '49.5400', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5944.8000', '52.0000', '2022-10-19', 'received', '49.5400', '49.5400', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '49.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4255, 107, NULL, 5946, '543', 'Wellman Capsules', NULL, '79.5200', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2544.6400', '30.0000', '2022-10-19', 'received', '79.5200', '79.5200', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '79.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4254, 107, NULL, 5830, '427', 'Pregnacare Plus', NULL, '126.4100', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3033.8400', '21.0000', '2022-10-19', 'received', '126.4100', '126.4100', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '126.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4253, 107, NULL, 5610, '207', 'Feroglobin Capsules 30&apos;s', NULL, '53.3200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2132.8000', '22.0000', '2022-10-19', 'received', '53.3200', '53.3200', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4247, 108, NULL, 6813, '1410', 'Becoatin Syrup 200ml', NULL, '12.6000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1512.0000', '102.0000', '2022-10-19', 'received', '12.6000', '12.6000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4248, 108, NULL, 6907, '01827710', 'Congestyl Tablets 12s', NULL, '9.0000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2250.0000', '181.0000', '2022-10-19', 'received', '9.0000', '9.0000', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4249, 108, NULL, 6908, '78818546', 'Congestyl Syrup 60ml', NULL, '16.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1620.0000', '74.0000', '2022-10-19', 'received', '16.2000', '16.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4250, 108, NULL, 6909, '16662605', 'Osteocare Tablets (India) 30s', NULL, '11.7000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1684.8000', '135.0000', '2022-10-19', 'received', '11.7000', '11.7000', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4251, 108, NULL, 6910, '52852667', 'Osteocare Liquid 200ml ', NULL, '11.7000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '702.0000', '44.0000', '2022-10-19', 'received', '11.7000', '11.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4252, NULL, NULL, 5724, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4266, 107, NULL, 6912, '12236473', 'Wellwoman Drink', NULL, '10.3200', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '185.7600', '3.0000', '2022-10-19', 'received', '10.3200', '10.3200', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '10.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 109, NULL, 6915, '90384012', 'Nystatin Suspension 30ml', NULL, '35.0200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '700.4000', '14.0000', '2022-10-19', 'received', '35.0200', '35.0200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '35.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 109, NULL, 6914, '98729079', 'Listerine Gin/Fresh Burst 500ml', NULL, '30.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '366.0000', '3.0000', '2022-10-19', 'received', '30.5000', '30.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 109, NULL, 6913, '90899721', 'Listerine Original/ Fresh Burst 250mll', NULL, '19.6600', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '235.9200', '8.0000', '2022-10-19', 'received', '19.6600', '19.6600', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '19.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4332, 109, NULL, 6799, '1396', 'H/Aid Vitamin E 200iu Caps 60&apos;s', NULL, '86.4100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '518.4600', '6.0000', '2022-10-19', 'received', '86.4100', '86.4100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '86.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4331, 109, NULL, 6798, '1395', 'H/Aid Vitamin E 1000iu Natural Caps', NULL, '119.5300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '717.1800', '4.0000', '2022-10-19', 'received', '119.5300', '119.5300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '119.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4330, 109, NULL, 6789, '1386', 'Hydrocortisone Cream 10g COPHARMA', NULL, '18.3400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1100.4000', '60.0000', '2022-10-19', 'received', '18.3400', '18.3400', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '18.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4329, 109, NULL, 6787, '1384', 'K.Y. Jelly Sterile 82G', NULL, '44.6400', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1339.2000', '28.0000', '2022-10-19', 'received', '44.6400', '44.6400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '44.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4328, 109, NULL, 6786, '1383', 'Femfresh Wash 250ml', NULL, '33.1800', '54.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1791.7200', '52.0000', '2022-10-19', 'received', '33.1800', '33.1800', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '33.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4327, 109, NULL, 6785, '1382', 'Femfresh Wash 150ml', NULL, '13.0200', '54.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '703.0800', '52.0000', '2022-10-19', 'received', '13.0200', '13.0200', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '13.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4326, 109, NULL, 6725, '1322', 'Bonjela Adult Gel 15g', NULL, '62.6900', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1504.5600', '22.0000', '2022-10-19', 'received', '62.6900', '62.6900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '62.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4325, 109, NULL, 6724, '1321', 'Bonjela Teething Gel 15g', NULL, '45.5600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '683.4000', '15.0000', '2022-10-19', 'received', '45.5600', '45.5600', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '45.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4324, 109, NULL, 6714, '1311', 'Vitamin E 400 IU Capsules H/A 30&apos;s', NULL, '84.4400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '506.6400', '6.0000', '2022-10-19', 'received', '84.4400', '84.4400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '84.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4323, 109, NULL, 6487, '1084', 'Tamsulosin 400mcg Capsules 30&apos;s Teva', NULL, '21.5700', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2157.0000', '100.0000', '2022-10-19', 'received', '21.5700', '21.5700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '21.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4322, 109, NULL, 6478, '1075', 'Fluconazole 150mg Capsules Teva', NULL, '8.5700', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '857.0000', '59.0000', '2022-10-19', 'received', '8.5700', '8.5700', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4321, 109, NULL, 6467, '1064', 'Benylin Infant 125ml', NULL, '44.6300', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2677.8000', '46.0000', '2022-10-19', 'received', '44.6300', '44.6300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '44.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4320, 109, NULL, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', NULL, '8.2600', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '991.2000', '28.0000', '2022-10-19', 'received', '8.2600', '8.2600', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4319, 109, NULL, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100&apos;s Aspar', NULL, '10.3400', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1034.0000', '83.0000', '2022-10-19', 'received', '10.3400', '10.3400', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4318, 109, NULL, 5726, '323', 'Listerine 250ml all types', NULL, '17.6400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.8400', '0.0000', '2022-10-19', 'received', '17.6400', '17.6400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4317, 109, NULL, 5725, '322', 'Lisinopril 20mg Teva', NULL, '16.9400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1016.4000', '57.0000', '2022-10-19', 'received', '16.9400', '16.9400', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '16.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4316, 109, NULL, 5724, '321', 'Lisinopril 10mg Tablets Teva', NULL, '14.7200', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1472.0000', '62.0000', '2022-10-19', 'received', '14.7200', '14.7200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '14.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4315, 109, NULL, 5463, '60', 'Atorvastatin 20mg Tablets 28&apos;s', NULL, '10.8900', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1306.8000', '98.0000', '2022-10-19', 'received', '10.8900', '10.8900', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4307, 110, NULL, 6920, '09661075', 'Today Intimate Wash ', NULL, '10.3500', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '414.0000', '36.0000', '2022-10-19', 'received', '10.3500', '10.3500', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4306, 110, NULL, 6511, '1108', 'Lofnac P Tablets 50/500', NULL, '1.5900', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '381.6000', '240.0000', '2022-10-19', 'received', '1.5900', '1.5900', '240.0000', NULL, NULL, 1, 'pc', '240.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4305, 110, NULL, 6510, '1107', 'GV- Fluc 150mg Capsules', NULL, '4.0500', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '405.0000', '94.0000', '2022-10-19', 'received', '4.0500', '4.0500', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '4.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4304, 110, NULL, 6304, '901', 'Lonart Suspension', NULL, '14.4000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2880.0000', '159.0000', '2022-10-19', 'received', '14.4000', '14.4000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4303, 110, NULL, 6301, '898', 'Comit-50', NULL, '11.2500', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1687.5000', '126.0000', '2022-10-19', 'received', '11.2500', '11.2500', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4302, 110, NULL, 6300, '897', 'BG Glutamin Plus Tablets 30&apos;s', NULL, '17.5500', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2106.0000', '116.0000', '2022-10-19', 'received', '17.5500', '17.5500', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '17.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4301, 110, NULL, 5731, '328', 'Lonart DS Tablets', NULL, '18.9000', '1200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22680.0000', '1088.0000', '2022-10-19', 'received', '18.9000', '18.9000', '1200.0000', NULL, NULL, 1, 'pc', '1200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4300, 110, NULL, 5730, '327', 'Lofnac Gel 30mg', NULL, '7.0200', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1053.0000', '140.0000', '2022-10-19', 'received', '7.0200', '7.0200', '150.0000', NULL, NULL, 1, 'pc', '150.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4299, 110, NULL, 5629, '226', 'Funbact A', NULL, '9.4500', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3402.0000', '320.0000', '2022-10-19', 'received', '9.4500', '9.4500', '360.0000', NULL, NULL, 1, 'pc', '360.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4308, 110, NULL, 6918, '28262304', 'Gsunate 60 Inj (Atesunate 60mg Injection)', NULL, '8.3700', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '502.2000', '50.0000', '2022-10-19', 'received', '8.3700', '8.3700', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4309, 110, NULL, 6919, '69407201', 'Gsunate 120 Inj (Atesunate 120mg Injection)', NULL, '13.0500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '783.0000', '50.0000', '2022-10-19', 'received', '13.0500', '13.0500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '13.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4310, 110, NULL, 5655, '252', 'Gvither Forte 80mg Injection 10&apos;s', NULL, '30.6000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1836.0000', '55.0000', '2022-10-19', 'received', '30.6000', '30.6000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4311, 110, NULL, 6921, '10168287', 'Sanfurox 750 (Cefuroxime 750mg Injection)', NULL, '8.7800', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '439.0000', '40.0000', '2022-10-19', 'received', '8.7800', '8.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4312, 110, NULL, 6922, '60528151', 'Santriax 1000 (Ceftriaxone 1000mg Injection)', NULL, '7.3800', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '369.0000', '28.0000', '2022-10-19', 'received', '7.3800', '7.3800', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4313, 110, NULL, 6303, '900', 'Lofnac 100mg Tablets', NULL, '1.8900', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '945.0000', '431.0000', '2022-10-19', 'received', '1.8900', '1.8900', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4314, 111, NULL, 5911, '508', 'Tinatett Venecare 750ml', NULL, '23.1000', '46.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1062.6000', '19.0000', '2022-10-20', 'received', '23.1000', '23.1000', '46.0000', NULL, NULL, 1, 'pc', '46.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 109, NULL, 6916, '62285678', 'Cetirizine 10mg Tablets (Cetirizine dihydrochloride) TEVA', NULL, '10.0900', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1009.0000', '100.0000', '2022-10-19', 'received', '10.0900', '10.0900', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 109, NULL, 6917, '81980248', 'Atorvastatin 40mg Tablets 28s WOCKHARDT', NULL, '14.1100', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '423.3000', '27.0000', '2022-10-19', 'received', '14.1100', '14.1100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '14.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 112, NULL, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', NULL, '3.6000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1800.0000', '457.0000', '2022-10-21', 'received', '3.6000', '3.6000', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 112, NULL, 6924, '21613850', 'Hydrogen (Extem)', NULL, '2.7000', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1350.0000', '493.0000', '2022-10-21', 'received', '2.7000', '2.7000', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 112, NULL, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', NULL, '4.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '53.0000', '2022-10-21', 'received', '4.5000', '4.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 112, NULL, 6926, '49821716', 'Mist Sennaco (Extem)', NULL, '3.6000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.0000', '194.0000', '2022-10-21', 'received', '3.6000', '3.6000', '200.0000', NULL, NULL, 1, 'pc', '200.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 113, NULL, 6927, '19085995', 'Ayulabs Gripe Water', NULL, '8.9000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1281.6000', '124.0000', '2022-10-21', 'received', '8.9000', '8.9000', '144.0000', NULL, NULL, 1, 'pc', '144.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5970, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 6228, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 5754, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 114, NULL, 6276, '873', 'Tinatett Malakare 500ml', NULL, '16.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '800.0000', '50.0000', '2022-10-21', 'received', '16.0000', '16.0000', '50.0000', NULL, NULL, 1, 'pc', '50.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 115, NULL, 6893, '233', 'Impressor Capsules', NULL, '49.0000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8820.0000', '157.0000', '2022-10-22', 'received', '49.0000', '49.0000', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 115, NULL, 6928, '72296204', 'Impressor Oil', NULL, '49.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5880.0000', '104.0000', '2022-10-22', 'received', '49.0000', '49.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 115, NULL, 6929, '32027899', 'Gynicare', NULL, '47.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5640.0000', '100.0000', '2022-10-22', 'received', '47.0000', '47.0000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 115, NULL, 6931, '90823267', 'Pylin Ointment ', NULL, '30.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3000.0000', '80.0000', '2022-10-22', 'received', '30.0000', '30.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 115, NULL, 6930, '68829408', 'Pylin Capsules ', NULL, '40.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4000.0000', '73.0000', '2022-10-22', 'received', '40.0000', '40.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 116, NULL, 6932, '78866726', 'Technologist Choice Examination Gloves', NULL, '34.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3400.0000', '98.0000', '2022-10-22', 'received', '34.0000', '34.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', NULL, '3.0400', '900.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2736.0000', '882.0000', '2022-10-22', 'received', '3.0400', '3.0400', '900.0000', NULL, NULL, 1, 'pc', '900.0000', NULL, NULL, NULL, NULL, '3.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', NULL, '5.5500', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2220.0000', '363.0000', '2022-10-22', 'received', '5.5500', '5.5500', '400.0000', NULL, NULL, 1, 'pc', '400.0000', NULL, NULL, NULL, NULL, '5.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', NULL, '4.8000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2880.0000', '586.0000', '2022-10-22', 'received', '4.8000', '4.8000', '600.0000', NULL, NULL, 1, 'pc', '600.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', NULL, '16.1500', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2907.0000', '157.0000', '2022-10-22', 'received', '16.1500', '16.1500', '180.0000', NULL, NULL, 1, 'pc', '180.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6007, '604', 'Penicillin V 125mg Letap', NULL, '1.3300', '2400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3192.0000', '2400.0000', '2022-10-22', 'received', '1.3300', '1.3300', '2400.0000', NULL, NULL, 1, 'pc', '2400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6933, '39183320', 'Letafen 400mg Tablets', NULL, '1.0500', '500.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '525.0000', '330.0000', '2022-10-22', 'received', '1.0500', '1.0500', '500.0000', NULL, NULL, 1, 'pc', '500.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6934, '40289448', 'Alusil Plus Suspension 125ml', NULL, '3.3300', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '999.0000', '278.0000', '2022-10-22', 'received', '3.3300', '3.3300', '300.0000', NULL, NULL, 1, 'pc', '300.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6220, '817', 'Dynewell Syrup 200ml', NULL, '5.4000', '400.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2160.0000', '312.0000', '2022-10-22', 'received', '5.4000', '5.4000', '400.0000', NULL, NULL, 1, 'pc', '400.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 5584, '181', 'Doxycycline 100mg Letap', NULL, '23.0000', '225.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5175.0000', '222.0000', '2022-10-22', 'received', '23.0000', '23.0000', '225.0000', NULL, NULL, 1, 'pc', '225.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 117, NULL, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', NULL, '25.4000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '914.4000', '33.0000', '2022-10-22', 'received', '25.4000', '25.4000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '25.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4363, 117, NULL, 6221, '818', 'Dynewell Tablet 50x10', NULL, '15.7500', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2520.0000', '158.0000', '2022-10-22', 'received', '15.7500', '15.7500', '160.0000', NULL, NULL, 1, 'pc', '160.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 118, NULL, 6007, '604', 'Penicillin V 125mg Letap', NULL, '1.3300', '396.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '526.6800', '116.0000', '2022-10-22', 'received', '1.3300', '1.3300', '396.0000', NULL, NULL, 1, 'pc', '396.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 119, NULL, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', NULL, '17.9100', '143.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2561.1300', '79.0000', '2022-10-22', 'received', '17.9100', '17.9100', '143.0000', NULL, NULL, 1, 'pc', '143.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 120, NULL, 6938, '52430931', 'Zahara Gee Capsules', NULL, '15.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '16.0000', '2022-10-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 120, NULL, 6937, '79341788', 'Zahara Mixture', NULL, '15.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '11.0000', '2022-10-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 120, NULL, 6939, '15510705', 'Zahara Man Capsules', NULL, '15.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '22.0000', '2022-10-22', '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 121, NULL, 6940, '30328845', 'Ekuro Bewu', NULL, '4.0000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1000.0000', '221.0000', '2022-10-22', 'received', '4.0000', '4.0000', '250.0000', NULL, NULL, 1, 'pc', '250.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4371, NULL, NULL, 5906, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6263, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6860, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6037, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 122, NULL, 6692, '1289', 'Mist Mag. Trisilicate 200ml Extem Pharma', NULL, '4.0000', '271.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1084.0000', '224.0000', '2022-10-25', 'received', '4.0000', '4.0000', '271.0000', NULL, NULL, 1, 'pc', '271.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4376, NULL, NULL, 6848, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 123, NULL, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', NULL, '0.9600', '3177.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3049.9200', '3017.0000', '2022-10-26', 'received', '0.9600', '0.9600', '3177.0000', NULL, NULL, 1, 'pc', '3177.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5716, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6121, '718', 'Strobin Lozenges 25x6', NULL, '31.5400', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2270.8800', '71.0000', '2022-10-26', 'received', '31.5400', '31.5400', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '31.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 5576, '173', 'Dicnac 100mg Suppositories', NULL, '8.4200', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '842.0000', '100.0000', '2022-10-26', 'received', '8.4200', '8.4200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '8.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6942, '01539886', 'Dicnac Injection (Diclofenac)', NULL, '5.4600', '320.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1747.2000', '310.0000', '2022-10-26', 'received', '5.4600', '5.4600', '320.0000', NULL, NULL, 1, 'pc', '320.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', NULL, '8.7500', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1050.0000', '114.0000', '2022-10-26', 'received', '8.7500', '8.7500', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 5705, '302', 'Kofof Adult Syrup 150ml', NULL, '8.6400', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '777.6000', '84.0000', '2022-10-26', 'received', '8.6400', '8.6400', '90.0000', NULL, NULL, 1, 'pc', '90.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6120, '717', 'Ancigel O Suspension 200ml', NULL, '16.7400', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '502.2000', '25.0000', '2022-10-26', 'received', '16.7400', '16.7400', '30.0000', NULL, NULL, 1, 'pc', '30.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6903, '75300114', 'Foligrow Plus 200ml Syrup', NULL, '27.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1620.0000', '60.0000', '2022-10-26', 'received', '27.0000', '27.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 124, NULL, 6943, '53530670', 'Foligrow Junior 100ml Syrup', NULL, '12.7400', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '764.4000', '60.0000', '2022-10-26', 'received', '12.7400', '12.7400', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 125, NULL, 5418, '15', 'Aboniki', NULL, '6.0500', '480.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2904.0000', '446.0000', '2022-10-26', 'received', '6.0500', '6.0500', '480.0000', NULL, NULL, 1, 'pc', '480.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 126, NULL, 5677, '274', 'Imboost Herbal Mixture 500ml', NULL, '14.0000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3500.0000', '227.0000', '2022-10-26', 'received', '14.0000', '14.0000', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6091, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6002, '599', 'Ferrodex Syrup 200ml', NULL, '8.1000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '972.0000', '118.0000', '2022-10-27', 'received', '8.1000', '8.1000', '120.0000', NULL, NULL, 1, 'pc', '120.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6203, '800', 'Ferrodex Capsules 30&apos;s', NULL, '5.8500', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.0000', '60.0000', '2022-10-27', 'received', '5.8500', '5.8500', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5808, '405', 'ORS Flavored', NULL, '21.4400', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1715.2000', '78.0000', '2022-10-27', 'received', '21.4400', '21.4400', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '21.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4393, 127, NULL, 6020, '617', 'ORS Plain 25&apos;s', NULL, '19.8000', '66.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1306.8000', '64.0000', '2022-10-27', 'received', '19.8000', '19.8000', '66.0000', NULL, NULL, 1, 'pc', '66.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5992, '589', 'Dithranol ointment 40mg', NULL, '9.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '44.0000', '2022-10-27', 'received', '9.0000', '9.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6515, '1112', 'Ichthammol Ointment 40g', NULL, '18.6800', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1120.8000', '60.0000', '2022-10-27', 'received', '18.6800', '18.6800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '18.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4396, 127, NULL, 6514, '1111', 'Salicylics Ointment 40g', NULL, '8.8200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '352.8000', '40.0000', '2022-10-27', 'received', '8.8200', '8.8200', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5993, '590', 'Calamine ointment 40mg', NULL, '8.7300', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '523.8000', '55.0000', '2022-10-27', 'received', '8.7300', '8.7300', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6516, '1113', 'Methyl Salicylate Ointment 40g', NULL, '8.1000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '324.0000', '40.0000', '2022-10-27', 'received', '8.1000', '8.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6425, '1022', 'Zinc Oxide Ointment 40g', NULL, '8.1000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '324.0000', '40.0000', '2022-10-27', 'received', '8.1000', '8.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5975, '572', 'Durol Tonic 200ml', NULL, '11.5700', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1735.5000', '123.0000', '2022-10-27', 'received', '11.5700', '11.5700', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '11.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 6005, '602', 'Sulphur Ointment 40g', NULL, '8.8200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '352.8000', '38.0000', '2022-10-27', 'received', '8.8200', '8.8200', '40.0000', NULL, NULL, 1, 'pc', '40.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5970, '567', 'Virol blood tonic 200ml', NULL, '11.5700', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1388.4000', '110.0000', '2022-10-27', 'received', '11.5700', '11.5700', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '11.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 127, NULL, 5984, '581', 'Starwin Milk of Magnesia 360ml', NULL, '21.7000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1302.0000', '60.0000', '2022-10-27', 'received', '21.7000', '21.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 6828, '', '', NULL, '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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4416, 128, NULL, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', NULL, '20.8300', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '749.8800', '30.0000', '2022-10-27', 'received', '20.8300', '20.8300', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '20.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, 5650, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4407, 129, NULL, 5624, '221', 'Foligrow Syrup 200ml', NULL, '21.6200', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2594.4000', '116.0000', '2022-10-28', 'received', '21.6200', '21.6200', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '21.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4408, 129, NULL, 6671, '1268', 'Kofof Baby', NULL, '8.4200', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1010.4000', '118.0000', '2022-10-28', 'received', '8.4200', '8.4200', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '8.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4409, 129, NULL, 5826, '423', 'Plaster roll Extra care 2Inches', NULL, '5.7800', '360.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2080.8000', '352.0000', '2022-10-28', 'received', '5.7800', '5.7800', '360.0000', NULL, NULL, 1, 'pc', '360.0000', NULL, NULL, NULL, NULL, '5.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4410, 129, NULL, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', NULL, '3.5600', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '890.0000', '245.0000', '2022-10-28', 'received', '3.5600', '3.5600', '250.0000', NULL, NULL, 1, 'pc', '250.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4411, 130, NULL, 6944, '50560029', 'Metformin 500MG (ENTRANCE)', NULL, '14.9000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '342.7000', '22.0000', '2022-10-28', 'received', '14.9000', '14.9000', '23.0000', NULL, NULL, 1, 'pc', '23.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4412, NULL, NULL, 6193, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4413, NULL, NULL, 6635, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4414, 131, NULL, 6945, '41815708', 'Aphromax Plus', NULL, '43.6500', '110.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4801.5000', '110.0000', '2022-10-29', 'received', '43.6500', '43.6500', '110.0000', NULL, NULL, 1, 'pc', '110.0000', NULL, NULL, NULL, NULL, '43.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4415, NULL, NULL, 6668, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4417, 128, NULL, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', NULL, '15.6300', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '750.2400', '48.0000', '2022-10-27', 'received', '15.6300', '15.6300', '48.0000', NULL, NULL, 1, 'pc', '48.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`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4418, 128, NULL, 5965, '562', 'Zubes Expectorant 125ml Syrup', NULL, '12.0800', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '579.8400', '48.0000', '2022-10-27', 'received', '12.0800', '12.0800', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '12.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4419, 128, NULL, 6895, '49637846', 'Zubes Child Cough Syrup', NULL, '9.7900', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '469.9200', '48.0000', '2022-10-27', 'received', '9.7900', '9.7900', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '9.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4420, 128, NULL, 6845, '1442', 'Robb Ointment', NULL, '16.8800', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1350.4000', '80.0000', '2022-10-27', 'received', '16.8800', '16.8800', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '16.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4421, 128, NULL, 6843, '1440', 'Robb Inhaler', NULL, '22.9200', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '550.0800', '24.0000', '2022-10-27', 'received', '22.9200', '22.9200', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '22.9200');


#
# 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=MyISAM AUTO_INCREMENT=132 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 (6, 'PO2022/09/0006', '2022-09-09 09:47:00', 2, 'Default Supplier', 1, '', '48126.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '48126.6700', '0.0000', 'received', 'pending', 2, 2, '2022-09-09 18:03: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 (7, 'PO2022/09/0007', '2022-09-09 10:36:00', 2, 'Default Supplier', 1, '', '48867.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '48867.4900', '0.0000', 'received', 'pending', 2, 2, '2022-09-09 11:56: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 (8, 'PO2022/09/0008', '2022-09-09 12:05:00', 2, 'Default Supplier', 1, '', '9348.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9348.7400', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0009', '2022-09-09 12:05:00', 2, 'Default Supplier', 1, '', '9644.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9644.8400', '0.0000', 'received', 'pending', 2, 2, '2022-09-09 11:27: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 (10, 'PO2022/09/0010', '2022-09-09 12:29:00', 2, 'Default Supplier', 1, '', '3137.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3137.1300', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0011', '2022-09-09 12:56:00', 2, 'Default Supplier', 1, '', '3698.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3698.0000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0012', '2022-09-09 13:17:00', 2, 'Default Supplier', 1, '', '3699.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3699.8000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0013', '2022-09-09 14:33:00', 2, 'Default Supplier', 1, '', '16290.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '16290.7200', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0014', '2022-09-09 14:51:00', 2, 'Default Supplier', 1, '', '4649.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4649.6000', '0.0000', 'received', 'pending', 2, 5, '2022-09-09 15:06: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 (15, 'PO2022/09/0015', '2022-09-09 15:23:00', 2, 'Default Supplier', 1, '', '1275.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1275.0000', '0.0000', 'received', 'pending', 2, 5, '2022-09-09 15:05: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 (16, 'PO2022/09/0016', '2022-09-09 15:44:00', 2, 'Default Supplier', 1, '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '14.0000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0017', '2022-09-09 13:29:00', 2, 'Default Supplier', 1, '', '59130.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '59130.8200', '0.0000', 'received', 'pending', 5, 5, '2022-09-09 17:37: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 (18, 'PO2022/09/0018', '2022-09-09 15:46:00', 2, 'Default Supplier', 1, '', '1804.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1804.4600', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0019', '2022-09-09 16:28:00', 2, 'Default Supplier', 1, '', '1230.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1230.0200', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0020', '2022-09-09 16:28:00', 2, 'Default Supplier', 1, '', '19868.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '19868.9900', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0021', '2022-09-09 17:57:00', 2, 'Default Supplier', 1, '', '82.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '82.9600', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0022', '2022-09-09 22:04:00', 2, 'Default Supplier', 1, '', '45088.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '45088.5200', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0023', '2022-09-10 10:02:00', 2, 'Default Supplier', 1, '', '75360.5500', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '75360.5500', '0.0000', 'received', 'pending', 5, 5, '2022-09-10 13:47:24', '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 (24, 'PO2022/09/0024', '2022-09-10 12:20:00', 2, 'Default Supplier', 1, '', '8909.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '8909.2500', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0025', '2022-09-10 12:32:00', 2, 'Default Supplier', 1, '', '5180.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '5180.9000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0026', '2022-09-10 13:15:00', 2, 'Default Supplier', 1, '', '303.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '303.0000', '0.0000', 'received', 'pending', 2, 5, '2022-09-10 16: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 (27, 'PO2022/09/0027', '2022-09-10 13:40:00', 2, 'Default Supplier', 1, '', '1090.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1090.2000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0028', '2022-09-10 13:45:00', 2, 'Default Supplier', 1, '', '25071.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '25071.1200', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0029', '2022-09-10 14:20:00', 2, 'Default Supplier', 1, '', '1576.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1576.4000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0030', '2022-09-10 14:34:00', 2, 'Default Supplier', 1, '', '4162.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4162.2400', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0031', '2022-09-10 14:50:00', 2, 'Default Supplier', 1, '', '115.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '115.9400', '0.0000', 'received', 'pending', 5, 5, '2022-09-10 16:16: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 (32, 'PO2022/09/0032', '2022-09-10 14:55:00', 2, 'Default Supplier', 1, '', '5966.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '5966.7800', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0033', '2022-09-10 15:59:00', 2, 'Default Supplier', 1, '', '112844.2200', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '112844.2200', '0.0000', 'received', 'pending', 5, 5, '2022-09-11 01:13:18', '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 (34, 'PO2022/09/0034', '2022-09-10 18:09:00', 2, 'Default Supplier', 1, '', '13624.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '13624.0600', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0035', '2022-09-10 19:04:00', 2, 'Default Supplier', 1, '', '1866.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1866.9000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO2022/09/0036', '2022-09-10 19:12:00', 2, 'Default Supplier', 1, '', '842.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '842.4000', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 10: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 (37, 'PO0037', '2022-09-11 09:44:00', 2, 'Default Supplier', 1, '', '31376.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '31376.3000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0038', '2022-09-11 10:47:00', 2, 'Default Supplier', 1, '', '11327.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '11327.9400', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0039', '2022-09-11 13:10:00', 2, 'Default Supplier', 1, '', '34185.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '34185.4900', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0040', '2022-09-11 16:26:00', 2, 'Default Supplier', 1, '', '12747.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '12747.5600', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0041', '2022-09-11 18:00:00', 2, 'Default Supplier', 1, '', '109106.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '109106.8200', '0.0000', 'received', 'pending', 5, 5, '2022-09-11 20:32: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 (42, 'PO0042', '2022-09-11 18:57:00', 2, 'Default Supplier', 1, '', '143193.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '143193.3700', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0043', '2022-09-12 09:22:00', 2, 'Default Supplier', 1, '', '18043.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '18043.1500', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 10:42: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 (44, 'PO0044', '2022-09-13 10:43:00', 2, 'Default Supplier', 1, '', '34132.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '34132.8100', '0.0000', 'received', 'pending', 5, 2, '2022-10-12 11:48: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 (45, 'PO0045', '2022-09-13 11:47:00', 2, 'Default Supplier', 1, '', '141683.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '141683.4200', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0046', '2022-09-13 14:23:00', 2, 'Default Supplier', 1, '', '15615.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '15615.4700', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 17:26: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 (47, 'PO0047', '2022-09-13 14:39:00', 2, 'Default Supplier', 1, '', '27782.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '27782.1000', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 17:25: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 (48, 'PO0048', '2022-09-14 13:40:00', 2, 'Default Supplier', 1, '', '21043.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '21043.7400', '0.0000', 'received', 'pending', 5, 5, '2022-09-14 16: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 (49, 'FMMS/W/SOLAK BIOCHEMIST/0001', '2022-09-14 16:45:00', 365, 'SOLAK BIOCHEMIST CO. LTD.', 1, '', '4380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4380.0000', '4380.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0049', '2022-09-15 13:15:00', 2, 'Default Supplier', 1, '', '13201.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '13201.3000', '0.0000', 'received', 'pending', 5, 2, '2022-10-12 12:22: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 (51, 'PO0050', '2022-09-15 14:42:00', 361, 'Dannex Ayrton Starwin Pie.', 1, '', '1820.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1820.9000', '0.0000', 'received', 'pending', 6, 5, '2022-09-15 15: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 (52, 'PO0051', '2022-09-15 15:36:00', 355, 'PHYTO-RIKER  (GIHOC) PHARMACEUTICALS', 1, '', '3616.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3616.4000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0052', '2022-09-17 00:08:00', 2, 'Default Supplier', 1, '', '4691.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4691.1500', '0.0000', 'received', 'pending', 5, 5, '2022-09-16 17:27: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 (54, 'PO0053', '2022-09-17 13:55:00', 2, 'Default Supplier', 1, '', '2285.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2285.5600', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0054', '2022-09-18 14:04:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '367.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '367.2000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0055', '2022-09-18 14:15:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '3249.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3249.9000', '0.0000', 'received', 'pending', 2, 2, '2022-09-18 15:17: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 (57, 'PO0055', '2022-09-18 14:15:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '16041.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '16041.1000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0056', '2022-09-19 11:16:00', 2, 'Default Supplier', 1, '', '832.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '832.8000', '0.0000', 'received', 'pending', 5, 5, '2022-09-19 15:55: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 (59, 'Mpharma/GHS 4784', '2022-09-20 12:55:00', 368, 'Mpharma', 1, '', '3149.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3149.0800', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Letap/20/09/22/Wholesale', '2022-09-21 10:53:00', 343, 'LETAP PHARMACEUTICALS LTD.', 1, '', '21934.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '21934.5600', '21925.5600', 'received', 'partial', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ROOTER/19/9/22/INV.0003782', '2022-09-21 11:24:00', 357, 'ROOTER NATURAL PRODUCTS', 1, '', '10500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '10500.0000', '10500.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0057', '2022-09-22 13:21:00', 2, 'Default Supplier', 1, '', '57380.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '57380.7800', '0.0000', 'received', 'pending', 5, 5, '2022-09-23 12:55: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 (63, 'TINATETTE/15089/21/09/22/ WHOLESALE', '2022-09-22 16:42:00', 337, 'TINATTE HERBAL', 1, '', '625.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '625.0000', '625.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'impresser', '2022-09-22 16:59:00', 2, 'Default Supplier', 1, '', '583.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '583.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'M&G/M28692/20/09/22/WHOLESALE', '2022-09-23 07:33:00', 345, 'M&G PHARMA LTD', 1, '', '9613.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9613.5000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0058', '2022-09-23 13:22:00', 2, 'Default Supplier', 1, '', '3004.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3004.3900', '0.0000', 'received', 'pending', 5, 5, '2022-09-23 13:50: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 (67, 'basecold/divided', '2022-09-24 11:26:00', 2, 'Default Supplier', 1, '', '220720.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '220720.5000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'OAJ/ACCRA/INV NO:10167', '2022-09-26 13:41:00', 307, 'OA & J PHARMACEUTICALS LTD.', 1, '&lt;p&gt;TOTAL ORDER IS 1353&lt;&sol;p&gt;', '1339.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1339.4700', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'COA/4662/24/09/22/WHOLESALE', '2022-09-26 15:20:00', 378, 'COA HEALTH CARE CENTRE', 1, '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '16800.0000', '16800.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ASD/VAT/INV/786/2022', '2022-09-26 15:26:00', 329, 'RENIE CHEMIST LTD', 1, '', '4354.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4354.5600', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'RENIE/0007124/23/09/22', '2022-09-26 17:17:00', 329, 'RENIE CHEMIST LTD', 1, '', '6739.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6739.2000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'GOKALS-L-00-284315-00', '2022-09-28 11:03:00', 333, 'GOKALS-LABOREX LTD.', 1, '', '2313.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2313.8400', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'GOKALS-L-284314-00', '2022-09-28 14:44:00', 333, 'GOKALS-LABOREX LTD.', 1, '', '2537.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2537.4600', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'DAS/0012940/28/09/22', '2022-09-28 15:00:00', 361, 'Dannex Ayrton Starwin Pie.', 1, '', '1470.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1470.9600', '1470.9600', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'GOKALS-L00284246-00', '2022-09-28 15:04:00', 333, 'GOKALS-LABOREX LTD.', 1, '', '7570.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '7570.8000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'GOKALS-L-002824245-00', '2022-09-28 15:21:00', 333, 'GOKALS-LABOREX LTD.', 1, '', '4034.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4034.3800', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'GOKALS-L-00284291-00', '2022-09-28 15:41:00', 333, 'GOKALS-LABOREX LTD.', 1, '', '1305.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1305.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'C2739', '2022-09-28 16:48:00', 302, 'ESKAY THERAPEUTIC LTD.', 1, '', '12084.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '12084.3000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Frimata/0009321', '2022-09-30 11:35:00', 305, 'FRIMATA PHARMACY', 1, '', '3974.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3974.4000', '3974.4000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'OSONS/340683/28/09/22', '2022-09-30 16:32:00', 319, 'OSONS CHEMIST', 1, '', '25785.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '25785.5200', '0.0000', 'received', 'pending', 6, 6, '2022-10-01 08:32: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 (81, 'UNICHEM/M.20227706/03/10/22', '2022-10-04 18:05:00', 346, 'Unichem(Ghana) Limited', 1, '&lt;p&gt;TOTAL INVOICE&period;&period;&period; 26807&period;99&lt;&sol;p&gt;', '26806.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '26806.9000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'BEDITA/CR/1401/2022', '2022-10-05 16:14:00', 320, 'BEDITA PHARMACEUTICALS', 1, '', '810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '810.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'BEDITA/CR/1400/2022', '2022-10-05 16:16:00', 320, 'BEDITA PHARMACEUTICALS', 1, '', '4333.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4333.5000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0059', '2022-10-07 08:41:00', 320, 'BEDITA PHARMACEUTICALS', 1, '', '198.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '198.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0060', '2022-10-07 09:35:00', 323, 'TAABEA COMPANY LTD', 1, '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '330.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'stock/chloramtabs', '2022-10-08 14:29:00', 343, 'LETAP PHARMACEUTICALS LTD.', 1, '', '1140.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1140.5600', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'stock/adomwg', '2022-10-08 14:31:00', 332, 'DEPENDABLE HERBAL HOME', 1, '', '1122.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1122.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Triue/000448/10/10/22', '2022-10-11 19:47:00', 311, 'TRIUNE-TRUEVINE VENTURES/ DAROSE', 1, '', '6132.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6132.5000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'MTV MARKETING/0000195/10/10/22', '2022-10-11 21:12:00', 300, 'MTV MARKETING', 1, '', '7560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '7560.0000', '0.0000', 'received', 'pending', 6, 6, '2022-10-13 16:58: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 (90, 'KINAPHARMA LIMITED/0093276/10/10/22', '2022-10-11 21:23:00', 360, 'Kinapharma Limited', 1, '', '12482.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '12482.6600', '0.0000', 'received', 'pending', 6, 6, '2022-10-12 13:16: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 (91, 'GB PHARMA 7/10/22/A/3156/2210', '2022-10-12 00:43:00', 396, 'G B PHARMA', 1, '', '19552.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '19552.3800', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Base Pharmacy Ltd/10/10/22/bpw0460', '2022-10-12 09:26:00', 327, 'BASE PHARMACY', 1, '', '22134.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '22134.0000', '22134.0000', 'received', 'paid', 5, 5, '2022-10-12 09:54: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 (99, 'SALOM/00578779', '2022-10-12 21:08:00', 324, 'SALOM PHARMACY LTD.', 1, '', '5775.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '5775.3000', '5775.3000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0061', '2022-10-12 12:46:00', 2, 'Default Supplier', 1, '', '2216.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2216.5000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0062', '2022-10-12 12:50:00', 2, 'Default Supplier', 1, '', '378.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '378.4000', '0.0000', 'received', 'pending', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0063', '2022-10-12 13:52:00', 327, 'BASE PHARMACY', 3, '', '22050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '22050.0000', '0.0000', 'received', 'pending', 2, 2, '2022-10-12 14: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 (96, 'DAS/0018762/12/10/2022', '2022-10-12 20:28:00', 361, 'Dannex Ayrton Starwin Pie.', 1, '', '6826.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6826.7000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'FIRDAWS/120221010-077/10/10/22', '2022-10-12 20:32:00', 303, 'FIRDAWS PHARMACY', 1, '&lt;p&gt;60 Cedis discount received&period; total payment&period;&period;&period; 2804&lt;&sol;p&gt;', '2864.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2864.0000', '2804.0000', 'received', 'partial', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'SALOM/0057891/11/10/22', '2022-10-12 20:38:00', 324, 'SALOM PHARMACY LTD.', 1, '&lt;p&gt;TOTAL&period;&period;&period; 5947&period;2&lt;&sol;p&gt;', '5952.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '5952.0000', '5952.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'TOBINCO/03689333', '2022-10-13 16:50:00', 347, 'Tobinco Pharmaceuticals', 1, '', '1756.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1756.2000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Xzole/stock', '2022-10-15 10:40:00', 347, 'Tobinco Pharmaceuticals', 1, '', '607.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '607.2000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'SALOM/0057802/14/10/22', '2022-10-15 14:55:00', 324, 'SALOM PHARMACY LTD.', 1, '', '972.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '972.0000', '972.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ERNEST/HS0042210SDH00000195/14/10/22', '2022-10-16 18:49:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '7153.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '7153.9200', '7153.9200', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ERNEST/HS0042210SDH00000193/14/10/22', '2022-10-16 18:58:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '414.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '414.7200', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ERNEST/HS0042210SDH00000192/14/10/22', '2022-10-16 19:02:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '1020.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1020.2400', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ERNESTSIN2210HS004000178/13-OCT-2022', '2022-10-17 09:52:00', 341, 'ERNEST CHEMISTS LTD', 1, '', '48737.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '48737.5400', '0.0000', 'received', 'pending', 6, 6, '2022-10-18 10:56: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 (107, 'OMEGA MEYER/1777/18/10/22', '2022-10-19 12:10:00', 331, 'OMEGA MEYER GHANA LTD.', 1, '', '38354.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '38354.9200', '0.0000', 'received', 'pending', 6, 6, '2022-10-19 16:10: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 (108, 'OMEGA MEYER/1730/18/10/22', '2022-10-19 15:33:00', 331, 'OMEGA MEYER GHANA LTD.', 1, '', '7768.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '7768.8000', '7768.8000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ROYAL DACH/SA21017-7', '2022-10-19 17:03:00', 297, 'ROYAL DACH PHARMACEUTICALS', 1, '', '23217.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '23217.3000', '0.0000', 'received', 'pending', 6, 6, '2022-10-20 16:02: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 (110, 'Asterisks/470/19/10/22', '2022-10-19 20:59:00', 358, 'ASTERISKS LIFESCIENCES (GH) LIMITED', 1, '', '39883.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '39883.3000', '0.0000', 'received', 'pending', 6, 6, '2022-10-20 10:56: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 (111, 'TINA VENECARE', '2022-10-20 13:50:00', 337, 'TINATTE HERBAL', 1, '', '1062.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1062.6000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'JEKENU ENT/0000209/21/12/22', '2022-10-21 09:39:00', 413, 'JEKENU ENTERPRISE', 1, '', '4320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4320.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'KELMED/0005032/20/10/22', '2022-10-21 09:53:00', 414, 'KELMED PHARMACEUTICALS LTD.', 1, '', '1281.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1281.6000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'Tinatett/15263/20/10/22', '2022-10-21 19:22:00', 337, 'TINATTE HERBAL', 1, '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '800.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'IONA/000759/21/10/22', '2022-10-22 07:45:00', 415, 'IONA PHARMACY LTD.', 1, '', '27340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '27340.0000', '27340.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ATTA BAMPOH/2205', '2022-10-22 08:03:00', 416, 'ATTA BAMPO VENTURES', 1, '', '3400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3400.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'LETAP/384214/20/10/22', '2022-10-22 08:27:00', 343, 'LETAP PHARMACEUTICALS LTD.', 1, '', '26228.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '26228.4000', '26228.4000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'penicillin V/stock/22/10/22', '2022-10-22 09:26:00', 343, 'LETAP PHARMACEUTICALS LTD.', 1, '', '526.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '526.6800', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (119, 'RENIE/ 0007141', '2022-10-22 09:57:00', 329, 'RENIE CHEMIST LTD', 1, '', '2561.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2561.1300', '2561.1300', 'received', 'paid', 6, 6, '2022-10-22 09:58: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 (120, 'ZAHARA/H0-3/20/10/22', '2022-10-22 10:29:00', 417, 'CARINSTIC VENTURES AGENT 5', 1, '', '1080.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1080.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'EKUROBEWU/000030/22/10/22', '2022-10-22 10:39:00', 418, 'E. B. PHARMACEUTICALS LTD.', 1, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', 'received', 'paid', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0064', '2022-10-25 15:20:00', 413, 'JEKENU ENTERPRISE', 1, '', '1084.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1084.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'STOCK/SEPTRIN/LETAP', '2022-10-26 09:37:00', 343, 'LETAP PHARMACEUTICALS LTD.', 1, '', '3049.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3049.9200', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'TOBINCO/0369064/B1-9384/25/10/22', '2022-10-26 11:44:00', 347, 'Tobinco Pharmaceuticals', 1, '', '9574.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9574.2800', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'ABONIKI/NEW ORDER/26/10/22', '2022-10-26 12:07:00', 321, 'Hajia', 1, '&lt;p&gt;TOTAL COST&period;&period;&period;&period;&period; 2900&lt;&sol;p&gt;', '2904.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2904.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'SHARPHERBS/24/10/22', '2022-10-26 13:27:00', 338, 'SHARP HERBS', 1, '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3500.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'DAS/0018791', '2022-10-27 05:25:00', 361, 'Dannex Ayrton Starwin Pie.', 1, '', '12309.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '12309.1000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'PO0065', '2022-10-27 14:21:00', 305, 'FRIMATA PHARMACY', 1, '', '4450.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4450.3600', '4450.3600', 'received', 'paid', 9, 6, '2022-10-29 14:51: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 (129, 'TOBINCO/0369076/27/10/22', '2022-10-28 16:10:00', 347, 'Tobinco Pharmaceuticals', 1, '', '6575.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6575.6000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'TOBINCO/0369077/27/10/22', '2022-10-28 16:21:00', 347, 'Tobinco Pharmaceuticals', 1, '', '342.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '342.7000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `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, 'STIPPS/11955/29/10/22', '2022-10-29 12:43:00', 427, 'STIPPS COMPANY LTD.', 1, '', '4801.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4801.5000', '0.0000', 'received', 'pending', 6, NULL, NULL, '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=MyISAM 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=MyISAM 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=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2, 2, 6488, '1085', 'Levothyroxine 100mg Tablets 28\'s', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.0000', 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);


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

INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`, `shipping`) VALUES (2, '2022-09-13 14:07:00', 'SR0001', 37, 'Dr Appiah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '36.0000', 5, NULL, NULL, 3, '0.0000', '0.0000', NULL, '01c632b26575b5a70a59ff064ac8ea9fe74a0b56090b726db6d7550d0cd13a28', NULL, NULL, NULL, '0.0000');


#
# TABLE STRUCTURE FOR: sma_sale_items
#

DROP TABLE IF EXISTS `sma_sale_items`;

CREATE TABLE `sma_sale_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `sale_item_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sale_id` (`sale_id`),
  KEY `product_id` (`product_id`),
  KEY `product_id_2` (`product_id`,`sale_id`),
  KEY `sale_id_2` (`sale_id`,`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=19476 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 (364, 85, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 85, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '9.9400', '9.9400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9400', '', '9.9400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 84, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (336, 84, 6389, '986', 'Salocold Syrup', 'standard', NULL, '7.4000', '7.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '7.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 (334, 84, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (335, 84, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.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 (261, 77, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 78, 6518, '1115', 'Wellwoman 70+ Capsules 30\'s', 'standard', NULL, '61.2000', '61.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.2000', '', '61.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 (263, 78, 6800, '1397', 'Simvastatin 20mg Tabs 28\'s', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (264, 79, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 6445, '1042', 'Vermox Suspension', 'standard', 0, '21.8000', '21.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '21.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 (266, 80, 6488, '1085', 'Levothyroxine 100mg Tablets 28\'s', 'standard', 0, '12.0000', '12.0000', '3.0000', 1, '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 (267, 80, 6252, '849', 'Paracetamol Syrup 100ml Exeter', 'standard', 0, '4.9800', '4.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.8000', '', '4.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 5993, '590', 'Calamine ointment 40mg', 'standard', 0, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (269, 80, 5634, '231', 'Garlic Pearls Osons', 'standard', 0, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (270, 80, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '42.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 6434, '1031', 'Cotton wool 50g', 'standard', 0, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (272, 80, 6294, '891', 'Menthodex 200ml Syrup', 'standard', 0, '23.0000', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '23.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 (273, 80, 6658, '1255', 'Feroglobin Plus Syrup 200ml', 'standard', 0, '65.8000', '65.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.6000', '', '65.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 (274, 80, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '226.2100', '226.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '452.4200', '', '226.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 5847, '444', 'Redsun Jelly', 'standard', 0, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (277, 80, 5556, '153', 'Daktarin Cream 15g', 'standard', 0, '30.0000', '30.0000', '2.0000', 1, '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 (278, 80, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.3000', '', '31.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', 0, '14.9000', '14.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '14.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 (281, 80, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '9.4700', '9.4700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.7000', '', '9.4700', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 6601, '1198', 'Starcold', 'standard', 0, '44.6000', '44.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '44.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 (283, 80, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '15.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 (284, 80, 6341, '938', 'Wellman 50+ Tablets', 'standard', 0, '62.3000', '62.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.6000', '', '62.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 (285, 80, 5793, '390', 'Night Nurse Capsules 10\'s', 'standard', 0, '47.0000', '47.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '47.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 80, 6720, '1317', 'B Complex Tablets 60\'s Valupak Vitamin', 'standard', 0, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (287, 80, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', 0, '9.9600', '9.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.8000', '', '9.9600', 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 (288, 80, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', 0, '21.5000', '21.5000', '1.0000', 1, '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 (289, 80, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', 0, '21.5000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.5000', '', '21.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 (290, 80, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', 0, '7.1000', '7.1000', '10.0000', 1, '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 (291, 80, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', 0, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.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 (292, 80, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', 0, '7.0000', '7.0000', '2.0000', 1, '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 (1146, 81, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 81, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.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 (1144, 81, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (1143, 81, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (1142, 81, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 81, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '4.7000', 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 (1140, 81, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (1139, 81, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 81, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '2.8800', 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 (1137, 81, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (1136, 81, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '33.3000', '33.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '33.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 81, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (1134, 81, 6764, '1361', 'Bells Normal Saline Drops 0.9% 10ml', 'standard', NULL, '6.3000', '6.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '6.3000', 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 (1133, 81, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (921, 82, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.8000', '', '9.9600', 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 (920, 82, 5793, '390', 'Night Nurse Capsules 10\'s', 'standard', NULL, '47.0000', '47.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '47.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 (919, 82, 6341, '938', 'Wellman 50+ Tablets', 'standard', NULL, '62.3000', '62.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.6000', '', '62.3000', 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 (918, 82, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '15.5000', 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 (917, 82, 6601, '1198', 'Starcold', 'standard', NULL, '44.6000', '44.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '44.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 (916, 82, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.7000', '', '9.4700', 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 (915, 82, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '14.9000', '14.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '14.9000', 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 (914, 82, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.3000', '', '31.1000', 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 (913, 82, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.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 (912, 82, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '226.2100', '226.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '452.4200', '', '226.2100', 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 (911, 82, 6294, '891', 'Menthodex 200ml Syrup', 'standard', NULL, '23.0000', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '23.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 (910, 82, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (909, 82, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '42.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 (908, 82, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', NULL, '21.5000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.5000', '', '21.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 (907, 82, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (906, 82, 5634, '231', 'Garlic Pearls Osons', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (905, 82, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (904, 82, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (903, 82, 6658, '1255', 'Feroglobin Plus Syrup 200ml', 'standard', NULL, '65.8000', '65.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.8000', '', '65.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 82, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', NULL, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (411, 88, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (532, 95, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (362, 85, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '1.4300', '1.4300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '1.4300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 82, 6720, '1317', 'B Complex Tablets 60\'s Valupak Vitamin', 'standard', NULL, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (332, 83, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.5000', '1.5000', '2.0000', 1, '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 (333, 83, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (365, 85, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (366, 86, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (367, 86, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (368, 86, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.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 (369, 86, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.2000', '', '18.1000', 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 (370, 86, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (371, 86, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '16.8000', '16.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '16.8000', 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 (372, 86, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '7.6000', '7.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '7.6000', 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 (373, 86, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (374, 86, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '2.6000', '2.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '2.6000', 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 (375, 86, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.3000', 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 (376, 86, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '70.0000', '70.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 87, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 87, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 87, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4100', '', '9.4700', 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 (380, 87, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (381, 87, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (382, 87, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (383, 87, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (384, 87, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '2.6000', '2.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', 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 (385, 87, 6334, '931', 'Adom W&G Mixture', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (386, 87, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '3.8000', 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 (387, 87, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (412, 88, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (413, 88, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '70.0000', '70.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (414, 88, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (415, 88, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', 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 (416, 88, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (417, 88, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (418, 88, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (419, 88, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.3500', '', '4.6700', 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 (420, 88, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (421, 88, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '30.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 89, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.2000', 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 (554, 89, 5476, '73', 'Borges Olive Oil 125ml', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.3000', 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 (555, 89, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (556, 89, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5400', '', '3.1800', 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 (557, 89, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (558, 89, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (559, 89, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8800', '', '9.4700', 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 (560, 89, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.2000', 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 (561, 89, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (562, 89, 6463, '1060', 'Hydrogen Peroxide Mal-Titi', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.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 (563, 89, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.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 (564, 89, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.3500', '', '4.6700', 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 (565, 89, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.8000', 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 (566, 89, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (567, 89, 6114, '711', 'Plaster roll 4Inches Xtra care', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (568, 89, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (569, 89, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (570, 89, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (571, 89, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.8000', 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 (572, 89, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (573, 89, 6281, '878', 'Givers Koo Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (574, 89, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (575, 89, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '56.0000', '56.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '56.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 (576, 89, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (577, 89, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (578, 89, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', 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 (579, 89, 6466, '1063', 'Mist Sennaco Mal-Titi', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.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 (580, 89, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (581, 89, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '2.0000', 1, '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 (545, 89, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (546, 89, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '2.0000', '2.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.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 (547, 89, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (548, 89, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.3000', 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 (549, 89, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (550, 89, 6424, '1021', 'Durol Tonic  Junior 200ml', 'standard', NULL, '7.9300', '7.9300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8600', '', '7.9300', 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 (551, 89, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', 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 (552, 89, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (553, 89, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (484, 90, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (485, 90, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (486, 90, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (487, 91, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (488, 91, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1500', '', '9.1500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (489, 91, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (490, 91, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0100', '', '4.6700', 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 (491, 91, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (492, 91, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (493, 91, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.7000', 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 (494, 91, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (495, 91, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (496, 91, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', 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 (497, 91, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (498, 91, 6348, '945', 'Loperon', 'standard', NULL, '8.1000', '8.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '8.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (499, 91, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.2000', 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 (500, 91, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (501, 91, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (502, 92, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.8500', '', '25.9500', 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 (503, 93, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '2.9900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (504, 93, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '4.1000', '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '4.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (505, 93, 6177, '774', 'Gogynax Tablets 100mg', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (506, 93, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (507, 93, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (508, 93, 6005, '602', 'Sulphur Ointment 40g', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.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 (509, 94, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (533, 95, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (534, 95, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '7.7000', 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 (535, 95, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.4000', '', '18.9000', 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 (536, 95, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '42.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 (537, 95, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.7000', '', '4.6700', 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 (538, 95, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '11.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 (539, 95, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (540, 95, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (541, 95, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (542, 95, 6651, '1248', 'Kalamina Lotion 120ml', 'standard', NULL, '7.4400', '7.4400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7600', '', '7.4400', 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 (543, 95, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (544, 95, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (583, 96, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (584, 97, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (585, 97, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (586, 97, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (587, 97, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (588, 97, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '5.0000', 1, '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 (589, 97, 6807, '1404', 'Folic Acid 5mg Crescent', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (590, 97, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, 97, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (592, 97, 6059, '656', 'Mentat Syrup', 'standard', 0, '25.4000', '25.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '25.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 (593, 97, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2800', '', '3.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, 97, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.7000', '', '6.1000', 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 (595, 98, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (596, 98, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (597, 98, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (598, 98, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (599, 98, 6106, '703', 'Lexocap 20x10', 'standard', NULL, '1.5000', '1.5000', '6.0000', 1, '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 (600, 98, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, 98, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (602, 98, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, 99, 5856, '453', 'Rubbing Alcohol 500ml', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (604, 99, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '16.3100', '16.3100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.6200', '', '16.3100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 99, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.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 (606, 99, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '1.9500', '1.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.7500', '', '1.9500', 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 (607, 99, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '3.6300', '3.6300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.1500', '', '3.6300', 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 (608, 100, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (609, 100, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (610, 100, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (611, 100, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (612, 100, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.3000', '8.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.3000', '', '8.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 (613, 100, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.3000', '8.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9000', '', '8.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 (614, 100, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 100, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (616, 100, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 100, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 100, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 100, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (620, 100, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 100, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 100, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 100, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (624, 100, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (625, 100, 6083, '680', 'Methylated Spirit 60ml', 'standard', NULL, '2.7000', '2.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.7000', '', '2.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 (626, 101, 6419, '1016', 'Menthox Child Cough Syrup 125ml', 'standard', NULL, '4.6700', '4.6700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.3500', '', '4.6700', 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 (1338, 102, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (1323, 102, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '2.0000', '2.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.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 (1324, 102, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (1325, 102, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (1326, 102, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (1327, 102, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (1328, 102, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.8000', 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 (1329, 102, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.6000', 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 (1330, 102, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (1331, 102, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (1332, 102, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (1333, 102, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', 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 (1334, 102, 6865, '55663121', 'Fiesta Condom Dumsor', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 102, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.3000', 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 (1336, 102, 6002, '599', 'Ferrodex Syrup 200ml', 'standard', NULL, '6.8000', '6.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '6.8000', 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 (1337, 102, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (644, 103, 6473, '1070', 'Clomid 50mg Tablets 10\'s', 'standard', NULL, '54.8000', '54.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.8000', '', '54.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 (645, 103, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (646, 103, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', NULL, '7.8500', '7.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.7000', '', '7.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (647, 103, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9600', '', '2.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (648, 103, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9500', '', '25.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (649, 103, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8200', '', '8.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (650, 103, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (651, 103, 6133, '730', 'Livopat Capsules 30\'s', 'standard', NULL, '25.9500', '25.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9500', '', '25.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 103, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (653, 103, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (772, 104, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', 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 (771, 104, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', 'standard', NULL, '78.0000', '78.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '78.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (770, 104, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (769, 104, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (658, 105, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.3000', '', '23.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (659, 105, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (660, 105, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.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 (661, 106, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '3.6300', '3.6300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8900', '', '3.6300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (662, 107, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (663, 107, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (664, 107, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '1.0000', 1, '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 (884, 108, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '4.6700', '4.6700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6700', '', '4.6700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 108, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (886, 108, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (888, 108, 6054, '651', 'Confido Capsules 60\'s', 'standard', 0, '39.4000', '39.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4000', '', '39.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 108, 6662, '1259', 'Malaria Test Kit', 'standard', NULL, '4.6000', '4.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '4.6000', 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 (883, 108, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3400', '', '4.6700', 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 (872, 108, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '20.1000', 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 (873, 108, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.4500', '', '9.1500', 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 (874, 108, 6594, '1191', 'Malin Baby Plus', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', 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 (875, 108, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.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 (876, 108, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (877, 108, 6740, '1337', 'Nurofen Syrup Ibuprofen 100ml Strawberry', 'standard', NULL, '36.3000', '36.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.3000', '', '36.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 108, 6730, '1327', 'Nurofen Syrup Ibuprofen 100ml Orange', 'standard', NULL, '27.3000', '27.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '27.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 108, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '4.0200', 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 (880, 108, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (881, 108, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (882, 108, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '25.5000', '25.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '25.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 (866, 108, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '7.2000', '7.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '7.2000', 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 (867, 108, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (868, 108, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (869, 108, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.8000', 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 (870, 108, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (871, 108, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', 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 (847, 108, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '6.1000', 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 (848, 108, 6276, '873', 'Tinatett Malakare 500ml', 'standard', NULL, '17.6000', '17.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '17.6000', 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 (849, 108, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (850, 108, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.3000', 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 (851, 108, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (852, 108, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (853, 108, 6281, '878', 'Givers Koo Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (854, 108, 5648, '245', 'Givers P Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (855, 108, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (856, 108, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '4.7000', 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 (857, 108, 6274, '871', 'Gana Balm 100g', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (858, 108, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '23.1000', 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 (859, 108, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.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 (860, 108, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (861, 108, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.8800', '', '14.9600', 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 (862, 108, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.9000', '', '10.3000', 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 (863, 108, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (864, 108, 5667, '264', 'Honeykof Herbal Cough Syrup 100ml', 'standard', NULL, '11.8000', '11.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '11.8000', 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 (865, 108, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', 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 (846, 108, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (845, 108, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (843, 108, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (844, 108, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (1026, 109, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.2000', 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 (1025, 109, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', 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 (1024, 109, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (1023, 109, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (1022, 109, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (1021, 109, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (1020, 109, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', NULL, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1019, 109, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (1018, 109, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3500', '', '4.4500', 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 (1017, 109, 6851, '1448', 'Cotton 500g', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (1016, 109, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0200', '', '5.8600', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (768, 110, 5715, '312', 'Letamox 500mg Tablets', 'standard', NULL, '13.1400', '13.1400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5600', '', '13.1400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (793, 111, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.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 (792, 111, 6779, '1376', 'Actifed Multi Action Tabs 12\'s', 'standard', NULL, '46.0000', '46.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (791, 111, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', 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 (790, 111, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (789, 111, 6015, '612', 'Sirdalud 2mg Tablets 30\'s', 'standard', NULL, '43.7000', '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7000', '', '43.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (788, 111, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.6000', 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 (787, 111, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.9000', 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 (786, 111, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.3400', '', '10.7800', 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 (785, 111, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', 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 (783, 112, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1.9000', '', '1.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 (784, 112, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (794, 111, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 113, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (796, 114, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (889, 115, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '20.0000', 1, '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 (890, 116, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (891, 116, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.4000', '', '30.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 (892, 116, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (893, 116, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '21.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 (894, 116, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (895, 116, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5600', '', '10.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 117, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.6000', '', '99.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 (897, 118, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '39.8200', '39.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.8200', '', '39.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 119, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (899, 119, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (900, 119, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 82, 6489, '1086', 'Levothyroxin 50mg Tablets 28\'s NorthStar', 'standard', NULL, '13.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '13.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 (923, 120, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (924, 120, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.1000', '', '15.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 121, 5715, '312', 'Letamox 500mg Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 122, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (943, 123, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 123, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '56.0000', '56.0000', '1.0000', 1, '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 (945, 123, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '14.9000', '14.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.6000', '', '14.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 123, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (947, 123, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.8000', '21.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '21.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 (948, 123, 5948, '545', 'Wormplex Suspension', 'standard', 0, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (949, 123, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (950, 123, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6800', '', '17.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 123, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (952, 123, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '5.6000', '5.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '5.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 (953, 123, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '33.3000', '33.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '33.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 (954, 123, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (955, 123, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.3400', '', '10.7800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 123, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (957, 123, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (958, 124, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4300', '', '24.4300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.5800', '19.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5800', '', '19.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 (961, 125, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (962, 125, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8400', '', '17.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.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 (964, 125, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (965, 125, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.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 (966, 125, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9400', '', '5.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (968, 125, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (969, 125, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (970, 125, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.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 (971, 125, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (972, 125, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (973, 125, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (974, 125, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (975, 126, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.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 (976, 127, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (977, 127, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (978, 127, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.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 (979, 127, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (980, 127, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (981, 127, 6274, '871', 'Gana Balm 100g', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (982, 127, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2600', '', '20.1300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (983, 127, 6571, '1168', 'Fiesta Lubricant', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (984, 127, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '7.1500', 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 (985, 127, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '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 (986, 127, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (987, 127, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (988, 127, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (989, 127, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (990, 128, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, 128, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '18.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 (992, 128, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (993, 128, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (994, 128, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (995, 128, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (996, 128, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (997, 128, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.7000', '', '28.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, 128, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '23.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 (999, 128, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.5200', '', '20.1300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, 128, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '19.3400', '19.3400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.3600', '', '19.3400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, 128, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '11.2000', '11.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.8000', '', '11.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 (1002, 128, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 128, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.6000', '', '60.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 (1004, 128, 6118, '715', 'Norvasc Amlodipine Besylate  5mg Tablets pfizer30\'s', 'standard', NULL, '172.8000', '172.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.8000', '', '172.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 (1005, 128, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (1006, 128, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (1007, 128, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (1008, 128, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', 0, '4.0000', '4.0000', '4.0000', 1, '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 (1009, 128, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (1010, 128, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (1011, 128, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (1012, 128, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '8.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 (1013, 128, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8800', '', '9.9600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 128, 6083, '680', 'Methylated Spirit 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (1015, 128, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (1027, 129, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 130, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.3600', '', '17.8400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 130, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 130, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (1031, 130, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (1032, 131, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 131, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 132, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '8.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 (1035, 132, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (1036, 133, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1037, 134, 6071, '668', 'Vin C 100mg Tablets 30\'s', 'standard', 0, '21.6000', '21.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.4000', '', '21.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 (1038, 134, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '315.0000', '', '3.5000', NULL, 1, 'pc', '90.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.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 (1040, 134, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (1041, 134, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (1042, 134, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (1110, 135, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (1109, 135, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.9000', 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 (1108, 135, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (1107, 135, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (1106, 135, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (1105, 135, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (1104, 135, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4600', '', '3.4100', 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 (1103, 135, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '8.5000', 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 (1102, 135, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (1101, 135, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '30.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.3000', 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 (1099, 135, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1057, 136, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (1058, 137, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '3.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 6872, '97726773', 'Deworme 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (1063, 138, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1082, 140, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '9.0000', '9.0000', '2.0000', 1, '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 (1081, 140, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '290.0000', '', '5.8000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 141, 6745, '1342', 'Durex Extra Safe 3\'s Condoms', 'standard', NULL, '12.9800', '12.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.9400', '', '12.9800', 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 (1095, 141, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 141, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.9000', '8.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '8.9000', 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 (1094, 141, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (1085, 141, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.4000', '', '13.7000', 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 (1086, 141, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (1087, 141, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', 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 (1088, 141, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.4000', '', '5.2000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 141, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (1090, 141, 6872, '97726773', 'Deworme 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '2.2000', 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 (1091, 141, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (1092, 141, 6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (1093, 141, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8000', '', '6.1000', 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 (1083, 140, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (1098, 141, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (1111, 135, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (1112, 142, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (1113, 143, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.8000', '', '5.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 (1114, 143, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 5532, '129', 'Coartem 80/480 6\'s', 'standard', NULL, '56.1000', '56.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.1000', '', '56.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (1117, 145, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (1118, 145, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (1119, 145, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (1121, 145, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (1122, 145, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (1123, 145, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (1125, 145, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '5.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 (1128, 145, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (1129, 145, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4100', '', '3.4100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (1132, 145, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (1183, 146, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (1182, 146, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (1174, 146, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.2000', '', '8.3200', 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 (1175, 146, 5532, '129', 'Coartem 80/480 6\'s', 'standard', NULL, '56.1000', '56.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.3000', '', '56.1000', 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 (1176, 146, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.6000', '', '5.8600', 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 (1177, 146, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (1178, 146, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.5800', '19.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1600', '', '19.5800', 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 (1180, 146, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (1181, 146, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (1172, 146, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (1173, 146, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (1160, 147, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (1161, 147, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 147, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (1163, 147, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', '5.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 (1164, 148, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 149, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 149, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 149, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 149, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (1169, 149, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (1170, 149, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 149, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.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 (1185, 146, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (1186, 146, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (1190, 150, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (1189, 150, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', 0, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 150, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.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 (1192, 150, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 151, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '173.4000', '', '28.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 (1194, 151, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (1195, 152, 5790, '387', 'Nexium 40mg Tablets 14\'s', 'standard', 0, '149.2800', '149.2800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.2800', '', '149.2800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6509, '1106', 'Gacet 1g Suppository', 'standard', 0, '13.2500', '13.2500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7500', '', '13.2500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', 0, '28.6000', '28.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '28.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 (1198, 152, 5733, '330', 'Lubrimax Jelly 50g', 'standard', 0, '20.0000', '20.0000', '2.0000', 1, '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 (1199, 152, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', 0, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 5585, '182', 'Dragon Tablets', 'standard', 0, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', 0, '27.5000', '27.5000', '1.0000', 1, '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 (1203, 152, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (1204, 152, 6077, '674', 'Fiesta Condom All Night', 'standard', 0, '4.0000', '4.0000', '3.0000', 1, '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 (1205, 152, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', 0, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.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 (1206, 152, 6807, '1404', 'Folic Acid 5mg Crescent', 'standard', 0, '9.0000', '9.0000', '2.0000', 1, '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 (1207, 152, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '3.5200', '3.5200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0800', '', '3.5200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', 0, '3.0000', '3.0000', '2.0000', 1, '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 (1209, 152, 5617, '214', 'Flagyl Suspension 100ml', 'standard', 0, '39.3000', '39.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.6000', '', '39.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 (1210, 152, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', 0, '10.7800', '10.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5600', '', '10.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', 0, '2.8900', '2.8900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4500', '', '2.8900', 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 (1212, 152, 5948, '545', 'Wormplex Suspension', 'standard', 0, '6.0000', '6.0000', '5.0000', 1, '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 (1213, 152, 6306, '903', 'Pofakoff Adult', 'standard', 0, '6.2300', '6.2300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6900', '', '6.2300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 5580, '177', 'Diphex Cough Syrup', 'standard', 0, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (1216, 152, 6329, '926', 'Neo Hycolex E/E/N 5ML Drops', 'standard', 0, '16.9000', '16.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.9000', '', '16.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 (1217, 152, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.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 (1218, 152, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '62.0000', '62.0000', '1.0000', 1, '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 (1219, 152, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', 0, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', 0, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (1221, 152, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', 0, '56.0000', '56.0000', '1.0000', 1, '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 (1222, 152, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '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 (1224, 152, 6214, '811', 'Rufenac Gel 30g', 'standard', 0, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.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 (1225, 152, 6595, '1192', 'Azycin 500mg', 'standard', 0, '7.9000', '7.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '7.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 152, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (1227, 152, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (1228, 152, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (1229, 153, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '33.3000', '33.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '33.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 (1231, 154, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (1232, 154, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '13.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 (1233, 154, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '3.0000', 1, '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 (1234, 154, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '27.0000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.0000', '', '27.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (1236, 154, 6035, '632', 'Fasipro Tablets (1*10)', 'standard', NULL, '7.9900', '7.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9700', '', '7.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '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 (1238, 154, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '2.9900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.4000', '', '30.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 (1241, 154, 6369, '966', 'Omexet (omeprazole) 20mg Capsules 28\'s', 'standard', NULL, '11.9800', '11.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9800', '', '11.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (1243, 154, 6781, '1378', 'Omeprazole 40mg Caps 28\'s', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (1244, 154, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '45.6000', '45.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.6000', '', '45.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 (1245, 154, 6473, '1070', 'Clomid 50mg Tablets 10\'s', 'standard', NULL, '54.8000', '54.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.8000', '', '54.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 (1246, 154, 6534, '1131', 'Vitamin B Denk', 'standard', NULL, '142.0500', '142.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.0500', '', '142.0500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (1248, 154, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (1249, 154, 6294, '891', 'Menthodex 200ml Syrup', 'standard', NULL, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.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 (1252, 154, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '19.8000', '19.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '19.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 (1253, 154, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5200', '', '17.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5900', '', '49.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '19.3400', '19.3400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0200', '', '19.3400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3900', '', '20.1300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '5.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 (1258, 154, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (1259, 154, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '66.2000', '66.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2000', '', '66.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 (1260, 154, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (1261, 154, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (1262, 154, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (1263, 154, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.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 (1264, 154, 6317, '914', 'Para-Denk 125mg Suppository 10\'s', 'standard', NULL, '19.1900', '19.1900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.7600', '', '19.1900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5733, '330', 'Lubrimax Jelly 50g', 'standard', NULL, '20.0000', '20.0000', '2.0000', 1, '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 (1266, 154, 5734, '331', 'Lubrimax Jelly 70g', 'standard', NULL, '19.4000', '19.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.8000', '', '19.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 154, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (1268, 154, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (1269, 155, 6444, '1041', 'Stugeron Tablets 50\'s', 'standard', NULL, '25.8000', '25.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '25.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 (1270, 156, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (1271, 157, 6764, '1361', 'Bells Normal Saline Drops 0.9% 10ml', 'standard', NULL, '6.3000', '6.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '6.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 (1272, 157, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 157, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.3200', '', '37.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 157, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 157, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.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 (1276, 157, 6571, '1168', 'Fiesta Lubricant', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.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 (1277, 157, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '7.0000', '7.0000', '10.0000', 1, '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 (1278, 158, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.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 (1279, 158, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 158, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 158, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 158, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (1283, 158, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '16.8000', '16.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.2000', '', '16.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 (1284, 159, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 159, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.1000', '', '10.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 (1286, 160, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (1287, 160, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (1288, 161, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\'', 'standard', NULL, '32.8000', '32.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '32.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 (1289, 162, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1290, 162, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 162, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (1292, 162, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.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 (1293, 162, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.6000', '', '11.1000', 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 (1294, 162, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4600', '', '3.4100', 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 (1295, 162, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', NULL, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.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 (1296, 162, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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, 162, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 162, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (1299, 162, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (1300, 162, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (1301, 162, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (1302, 162, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (1303, 162, 6601, '1198', 'Starcold', 'standard', NULL, '44.6000', '44.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '44.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 (1304, 162, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.1000', '', '13.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 (1305, 162, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (1306, 162, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.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 (1307, 162, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (1308, 162, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 162, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (1310, 162, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '2.9800', 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 (1311, 163, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '26.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 (1312, 164, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (1313, 165, 6697, '1294', 'Biva Plus Capsules', 'standard', 0, '10.1000', '10.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.1000', '', '10.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 6352, '949', 'Roxidol', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '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 (1315, 165, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.2000', '4.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '4.2000', 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 (1317, 165, 6379, '976', 'Dexone 0.5mg', 'standard', 0, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (1318, 165, 5906, '503', 'Tetracycline Capsules', 'standard', 0, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (1320, 165, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 166, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1551, 167, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (1552, 167, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '14.9000', '14.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '14.9000', 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 (1553, 167, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.9000', '', '10.7800', 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 (1554, 167, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.4000', '', '30.2000', 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 (1555, 167, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (1556, 167, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (1549, 167, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1550, 167, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '6.7000', NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1546, 167, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.3600', '', '17.8400', 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 (1547, 167, 6114, '711', 'Plaster roll 4Inches Xtra care', 'standard', NULL, '13.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '13.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 (1548, 167, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (1541, 167, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '25.5000', '25.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '25.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 (1542, 167, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.7000', '', '28.9000', 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 (1543, 167, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (1544, 167, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1545, 167, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (1356, 168, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (1357, 168, 5695, '292', 'Ketazol Cream 30g', 'standard', NULL, '7.6300', '7.6300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.1500', '', '7.6300', 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 (1358, 168, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (1359, 168, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (1360, 168, 6662, '1259', 'Malaria Test Kit', 'standard', NULL, '4.6000', '4.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '4.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 (1361, 169, 5557, '154', 'Dalacin C 300mg Capsules 16\'s', 'standard', NULL, '175.6100', '175.6100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.6100', '', '175.6100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 170, 6348, '945', 'Loperon', 'standard', NULL, '8.1000', '8.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '8.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 171, 6882, '69020596', 'Clopidogrel Frelet 75', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 172, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1366, 174, 5476, '73', 'Borges Olive Oil 125ml', 'standard', NULL, '13.3000', '13.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '319.2000', '', '13.3000', 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 (1367, 175, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4200', '', '13.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 176, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', NULL, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 177, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', NULL, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 178, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (1371, 179, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '11.5800', '11.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1600', '', '11.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 179, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (1373, 179, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '16.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 179, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 179, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (1376, 179, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 179, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (1378, 180, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (1379, 181, 6741, '1338', 'Lisinopril 5mg Tablets 28\'s Teva', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (1380, 181, 5725, '322', 'Lisinopril 20mg Teva', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 181, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (1382, 181, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', 0, '7.7000', '7.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '7.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 (1383, 181, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (1384, 181, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 181, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6400', '', '3.9100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 182, 6189, '786', 'Rufedol Tablets 10\'s', 'standard', NULL, '1.2000', '1.2000', '1.0000', 1, '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 (1387, 183, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (1388, 184, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 184, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '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 (1390, 184, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 184, 6096, '693', 'Mist Sennaco ROKMER', '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 (1392, 184, 6486, '1083', 'Contiflo XL 400mcg Capsules 30\'s', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (1393, 185, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (1394, 186, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1395, 186, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 187, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1397, 188, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (1398, 189, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (1399, 189, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (1400, 189, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 189, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (1402, 189, 5967, '564', 'Zulu 100mg Tablet', '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 (1403, 189, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (1404, 189, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (1405, 189, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (1406, 189, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.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 (1407, 189, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (1408, 189, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '9.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 189, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 189, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (1411, 189, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (1412, 189, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (1413, 190, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '330.0000', '', '13.2000', 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 (1414, 191, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7000', '', '11.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 191, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '4.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 (1416, 191, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (1417, 191, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '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 (1418, 191, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (1419, 191, 6492, '1089', 'Prednisolone 5mg Tablets 70x10', 'standard', NULL, '39.5000', '39.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.5000', '', '39.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 (1420, 191, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 193, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (1423, 194, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (1424, 194, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '14.8000', '14.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '14.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 (1425, 194, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (1426, 194, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '26.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 194, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.8000', '', '30.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 (1428, 194, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (1429, 194, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (1430, 194, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4500', '', '24.0900', 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 (1431, 194, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (1432, 194, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (1433, 194, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (1434, 194, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '3.0000', 1, '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 (1435, 194, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (1436, 194, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (1437, 194, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (1438, 195, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (1439, 195, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '16.3100', '16.3100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3100', '', '16.3100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 195, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (1442, 196, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.4000', '', '37.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 (1444, 196, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (1445, 196, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.4000', '', '13.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 (1446, 196, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (1447, 196, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (1448, 196, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (1449, 196, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '0.6000', 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 (1450, 197, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (1451, 197, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (1452, 197, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '1.0000', 1, '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 (1453, 197, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '5.8600', '5.8600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4400', '', '5.8600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 6386, '983', 'Paingay Capsules', 'standard', 0, '3.2000', '3.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.4000', '', '3.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 (1455, 197, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', 0, '8.6000', '8.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '8.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 (1456, 197, 6117, '714', 'Gudapet Capsules', 'standard', 0, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (1457, 197, 6351, '948', 'Ronfit Cold D Syrup', 'standard', 0, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1458, 197, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', 0, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.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 (1459, 197, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 5847, '444', 'Redsun Jelly', 'standard', 0, '6.1000', '6.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1000', '', '6.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 6434, '1031', 'Cotton wool 50g', 'standard', 0, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.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 (1462, 197, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', 0, '9.9900', '9.9900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.8000', '', '9.9900', 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 (1464, 197, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (1465, 197, 6286, '883', 'Kidivite Syrup 200ml', 'standard', 0, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (1466, 198, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (1467, 199, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (1468, 199, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1469, 200, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (1470, 200, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.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 (1471, 200, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 201, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '20.0000', 1, '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 (1473, 202, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 202, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (1475, 202, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 202, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (1477, 202, 6872, '97726773', 'Deworme 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '2.0000', 1, '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 (1478, 202, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (1479, 202, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (1480, 203, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '-4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-22.0000', '', '5.5000', 1450, 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 (1481, 203, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-13.2000', '', '13.2000', 1451, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-15.5000', '', '15.5000', 1452, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '5.8600', '5.8600', '-4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-23.4400', '', '5.8600', 1453, 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 (1484, 203, 6386, '983', 'Paingay Capsules', 'standard', 0, '3.2000', '3.2000', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-6.4000', '', '3.2000', 1454, 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 (1485, 203, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', 0, '8.6000', '8.6000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-8.6000', '', '8.6000', 1455, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 6117, '714', 'Gudapet Capsules', 'standard', 0, '6.6000', '6.6000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-6.6000', '', '6.6000', 1456, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 6351, '948', 'Ronfit Cold D Syrup', 'standard', 0, '6.0000', '6.0000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-6.0000', '', '6.0000', 1457, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', 0, '1.6000', '1.6000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-8.0000', '', '1.6000', 1458, 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 (1489, 203, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-22.7600', '', '11.3800', 1459, 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 (1490, 203, 5847, '444', 'Redsun Jelly', 'standard', 0, '6.1000', '6.1000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-6.1000', '', '6.1000', 1460, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 203, 6434, '1031', 'Cotton wool 50g', 'standard', 0, '5.2000', '5.2000', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-10.4000', '', '5.2000', 1461, 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 (1492, 203, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-35.4200', '', '17.7100', 1462, 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 (1493, 203, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', 0, '9.9900', '9.9900', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-19.9800', '', '9.9900', 1463, 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 (1494, 203, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '-20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-53.8000', '', '2.6900', 1464, 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 (1495, 203, 6286, '883', 'Kidivite Syrup 200ml', 'standard', 0, '9.6000', '9.6000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-9.6000', '', '9.6000', 1465, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', NULL, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', NULL, '21.5000', '21.5000', '1.0000', 1, '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 (1498, 205, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '25.0000', 1, '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 (1499, 205, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', '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 (1500, 205, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (1501, 205, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (1502, 205, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (1503, 205, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4400', '', '5.8600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '3.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 (1505, 205, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '8.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 (1506, 205, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (1507, 205, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1508, 205, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.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 (1509, 205, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1000', '', '6.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.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 (1512, 205, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9800', '', '9.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (1515, 205, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (1516, 205, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (1517, 205, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (1573, 206, 6420, '1017', 'Menthox Lozenges', 'standard', NULL, '15.6000', '15.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '15.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 (1572, 206, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '8.6000', 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 (1571, 206, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (1570, 206, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (1569, 206, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '1.4300', '1.4300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '1.4300', 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 (1568, 206, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (1582, 207, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.3000', 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 (1581, 207, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.2000', 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 (1580, 207, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.1000', '', '16.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 207, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (1578, 207, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 207, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (1576, 207, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (1575, 207, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 207, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (1536, 208, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 209, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '2.0000', 1, '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 (1538, 209, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', 0, '30.2000', '30.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '30.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 (1539, 209, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 209, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1557, 167, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (1566, 206, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '18.4800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 207, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (1584, 210, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (1585, 210, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '17.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 (1586, 210, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (1588, 210, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (1589, 210, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 6662, '1259', 'Malaria Test Kit', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.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 (1591, 210, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.4500', '', '9.1500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (1593, 210, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '7.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 (1594, 210, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (1595, 210, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (1596, 211, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (1597, 211, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3900', '', '20.1300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (1600, 212, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (1601, 212, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.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 (1602, 212, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (1604, 212, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (1605, 212, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (1606, 212, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '30.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 (1607, 212, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (1608, 213, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', NULL, '41.6300', '41.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6300', '', '41.6300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (1613, 215, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (1614, 215, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (1615, 215, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (1616, 215, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1617, 215, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '5.2000', '5.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '5.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 (1719, 216, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (1718, 216, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', 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 (1717, 216, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '23.7000', '23.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '23.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (1715, 216, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', 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 (1714, 216, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (1713, 216, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (1712, 216, 6372, '969', 'Babyvite 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.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 (1711, 216, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '2.6000', '2.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', 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 (1710, 216, 6281, '878', 'Givers Koo Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (1709, 216, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '26.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 (1708, 216, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.3000', 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 (1707, 216, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.9000', '', '10.3000', 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 (1706, 216, 5990, '587', 'Whitfield ointment', 'standard', NULL, '6.8000', '6.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '6.8000', 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 (1705, 216, 5993, '590', 'Calamine ointment 40mg', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '7.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 (1704, 216, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '15.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 (1703, 216, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (1702, 216, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (1701, 216, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.4000', 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 (1700, 216, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '14.8000', '14.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '14.8000', 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 (1699, 216, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.8000', 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 (1698, 216, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.6000', 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 (1697, 216, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (1696, 216, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '5.1000', '5.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '5.1000', 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 (1695, 216, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (1694, 216, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '2.8000', 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 (1693, 216, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9000', '', '4.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (1691, 216, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (1689, 216, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (1688, 216, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '82.9800', '82.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.9800', '', '82.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 216, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (1684, 216, 5499, '96', 'Calcium B12 Syrup 200ml', 'standard', NULL, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.8000', 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 (1683, 216, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (1659, 217, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1660, 218, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (1661, 218, 6052, '649', 'Candiderm Cream-Triple Action Cream 15mg', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (1662, 218, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (1663, 218, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (1664, 218, 6206, '803', 'Contreg Tablets 10x10', 'standard', NULL, '7.8400', '7.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6800', '', '7.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 218, 6211, '808', 'Contreg Syrup 30ml', '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 (1666, 218, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '2.6000', '2.6000', '5.0000', 1, '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 (1667, 218, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (1668, 218, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (1669, 218, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (1670, 218, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 218, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (1672, 218, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (1673, 219, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (1674, 219, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (1675, 219, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (1676, 219, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (1677, 219, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (1678, 219, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (1679, 219, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (1680, 219, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (1681, 219, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (1682, 220, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.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 (1720, 216, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', 0, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (1721, 216, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (1722, 216, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (1723, 216, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (1724, 221, 6267, '864', 'Stopkof Cold & Catarrh Tablets 12s', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (1725, 221, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '15.9500', '15.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8500', '', '15.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 221, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.1200', '', '10.7800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 221, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (1728, 221, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (1729, 221, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 221, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.6000', '', '11.1000', 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 (1731, 221, 5767, '364', 'MetroGR-F Junior Suspension 100ml', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (1732, 221, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (1733, 221, 6764, '1361', 'Bells Normal Saline Drops 0.9% 10ml', 'standard', NULL, '6.3000', '6.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '6.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 (1734, 221, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '9.1500', '9.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.7500', '', '9.1500', 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 (1735, 221, 5841, '438', 'PROSTAFIT', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (1750, 222, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (1751, 222, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (1752, 222, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (1745, 222, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (1746, 222, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (1747, 222, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.8400', '', '17.7100', 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 (1749, 222, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '6.6000', 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 (1744, 223, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (1753, 224, 6063, '660', 'Speman Tablets', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (1754, 224, 6752, '1349', 'Taabea Taacum', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (1755, 225, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 226, 6063, '660', 'Speman Tablets', 'standard', NULL, '41.3000', '41.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.6000', '', '41.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 (1757, 227, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '6.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 (1758, 228, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.6000', '', '186.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 (1759, 228, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 228, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '8.5000', 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 (1761, 228, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '2.0000', 1, '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 (1762, 228, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (1763, 228, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (1764, 228, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (1765, 229, 5897, '494', 'Syringe and Needle 5ml Letaject', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (1766, 230, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.3000', '8.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '8.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 (1767, 230, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 230, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 230, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 230, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (1771, 230, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3800', '', '2.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 (1772, 230, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (1773, 231, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8600', '', '5.8600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 5447, '44', 'Apetamin Syrup 200ml', 'standard', 0, '19.8000', '19.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '19.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 (1775, 233, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-5.0000', '', '2.5000', 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 (1777, 234, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 6764, '1361', 'Bells Normal Saline Drops 0.9% 10ml', 'standard', 0, '6.3000', '6.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '6.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 (1779, 234, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (1780, 234, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', 0, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.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 (1781, 234, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (1782, 234, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 6304, '901', 'Lonart Suspension', 'standard', 0, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (1784, 234, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', 0, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.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 (1785, 234, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (1786, 234, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '8.3200', '8.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '8.3200', 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 (1787, 234, 5509, '106', 'Cartef Suspension', 'standard', 0, '6.8800', '6.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '6.8800', 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 (1788, 234, 6873, '06796716', 'Menazole 500mg 10x1 Ayrtons', 'standard', 0, '2.0000', '2.0000', '5.0000', 1, '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 (1789, 234, 6876, '5402680', 'Alazole 400 Tablet', 'standard', 0, '1.5000', '1.5000', '5.0000', 1, '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 (1790, 234, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (1791, 234, 5948, '545', 'Wormplex Suspension', 'standard', 0, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (1792, 234, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', 0, '6.1000', '6.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '6.1000', 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 (1793, 234, 6872, '97726773', 'Deworme 500mg tablets', 'standard', 0, '2.2000', '2.2000', '10.0000', 1, '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 (1794, 234, 6445, '1042', 'Vermox Suspension', 'standard', 0, '21.8000', '21.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.8000', '', '21.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 (1795, 234, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (1796, 234, 5532, '129', 'Coartem 80/480 6\'s', 'standard', 0, '56.1000', '56.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '561.0000', '', '56.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 (1797, 234, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (1798, 234, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (1799, 234, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5900', '', '15.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 6607, '1204', 'Skyclav 625', 'standard', NULL, '16.0000', '16.0000', '3.0000', 1, '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 (1801, 234, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (1802, 234, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.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 (1803, 234, 6035, '632', 'Fasipro Tablets (1*10)', 'standard', NULL, '7.9900', '7.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9700', '', '7.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 6081, '678', 'Xmox (Amoxicillin) 500mg Capsules 10x1x21s Entrance', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 234, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', NULL, '29.7000', '29.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.1000', '', '29.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 (1806, 234, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '3.0000', 1, '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 (1807, 234, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '5.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 (1808, 234, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (1809, 235, 6189, '786', 'Rufedol Tablets 10\'s', 'standard', NULL, '1.2000', '1.2000', '1.0000', 1, '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 (1810, 236, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (1811, 237, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '151.0000', '', '30.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 (1812, 237, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (1813, 237, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (1814, 237, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '22.0000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '22.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 237, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (1816, 237, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.6500', '', '15.5300', 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 (1817, 237, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (1818, 237, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', '7.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 (1819, 237, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 237, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '62.0000', '62.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '62.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 (1821, 237, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '16.3100', '16.3100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3100', '', '16.3100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 237, 6281, '878', 'Givers Koo Capsules', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (1823, 237, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2600', '', '20.1300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 237, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '19.3400', '19.3400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0200', '', '19.3400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 237, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (1826, 237, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (1827, 238, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (1828, 238, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 239, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (1830, 239, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (1831, 240, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (1832, 240, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 240, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 240, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (1835, 240, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 240, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (1837, 240, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '3.0000', 1, '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 (1838, 241, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.3000', '35.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '176.5000', '', '35.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 (1904, 242, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (1903, 242, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (1902, 242, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (1901, 242, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (1900, 242, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (1899, 242, 6021, '618', 'Rizole Suspension 100ml', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.6000', 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 (1898, 242, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (1897, 242, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', 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 (1896, 242, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.3000', 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 (1895, 242, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (1894, 242, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.4000', '', '3.1000', 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 (1893, 242, 5552, '149', 'Cyfen Tablets', 'standard', NULL, '1.2000', '1.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '1.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 242, 5865, '462', 'Secure Contraceptive Pill', 'standard', 0, '3.5000', '3.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.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 (1891, 242, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 242, 5593, '190', 'Efpac Tablets', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (1889, 242, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', 0, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.6000', 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 (1856, 243, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1600', '', '13.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 243, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (1858, 244, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', 0, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (1859, 244, 5607, '204', 'Ezipen Tablets 5x6', 'standard', 0, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.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 (1860, 244, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', 0, '2.8900', '2.8900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7800', '', '2.8900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 5589, '186', 'Drez Powder 10g', 'standard', 0, '9.4000', '9.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '9.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 (1863, 244, 5587, '184', 'Drez Ointment 10g', 'standard', 0, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (1864, 244, 6131, '728', 'Drez Solution 100ml', 'standard', 0, '18.0000', '18.0000', '1.0000', 1, '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 (1865, 244, 6302, '899', 'Klovinal Pessaries', 'standard', 0, '23.0000', '23.0000', '1.0000', 1, '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 (1866, 244, 6177, '774', 'Gogynax Tablets 100mg', 'standard', 0, '3.5000', '3.5000', '2.0000', 1, '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 (1867, 244, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', 0, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 5726, '323', 'Listerine 250ml all types', 'standard', 0, '15.9000', '15.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '15.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 (1869, 244, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.5000', '', '8.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 (1870, 244, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (1871, 244, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', 0, '3.0000', '3.0000', '2.0000', 1, '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 (1872, 244, 6853, '1450', 'Mycolex Powder 50g', 'standard', 0, '23.0000', '23.0000', '1.0000', 1, '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 (1873, 244, 6176, '773', 'Gogynax Cream 30g', 'standard', 0, '4.1000', '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '4.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', 0, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 5993, '590', 'Calamine ointment 40mg', 'standard', 0, '7.0000', '7.0000', '2.0000', 1, '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 (1876, 244, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '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 (1877, 244, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', 0, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (1878, 244, 5970, '567', 'Virol blood tonic 200ml', 'standard', 0, '9.1500', '9.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '9.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', 0, '6.0000', '6.0000', '2.0000', 1, '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 (1880, 244, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', 0, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (1881, 244, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1000', '', '6.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (1883, 244, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (1884, 244, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.7000', '', '6.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 (1885, 244, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1300', '', '20.1300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 244, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (1887, 244, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.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 (1888, 244, 5884, '481', 'Stagyl secnidazole Tablet (1 gm)', 'standard', NULL, '3.3200', '3.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3200', '', '3.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 242, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (1906, 242, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 242, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '3.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 245, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.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 (1909, 246, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 247, 6683, '1280', 'Liverplex B 200ml', 'standard', NULL, '8.2000', '8.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '8.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 (1949, 248, 6271, '868', 'Ciprinol 500mg Tablets 10s', 'standard', NULL, '62.0000', '62.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '62.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 (1952, 249, 6683, '1280', 'Liverplex B 200ml', 'standard', NULL, '8.2000', '8.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '8.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6800, '1397', 'Simvastatin 20mg Tabs 28\'s', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (1915, 250, 6633, '1230', 'Vit Bco Strong 30\'s Krka', 'standard', NULL, '32.0000', '32.0000', '1.0000', 1, '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 (1916, 250, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '3.0000', 1, '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 (1917, 250, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (1918, 250, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (1919, 250, 5695, '292', 'Ketazol Cream 30g', 'standard', NULL, '7.6300', '7.6300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2600', '', '7.6300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6400', '', '6.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (1924, 250, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2800', '', '8.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 250, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (1926, 250, 5562, '159', 'Deep Freez Spray 150ml', 'standard', NULL, '47.7700', '47.7700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.7700', '', '47.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 (1927, 250, 5648, '245', 'Givers P Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (1928, 251, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (1929, 252, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (1930, 253, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '495.3000', '', '49.5300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 254, 5476, '73', 'Borges Olive Oil 125ml', 'standard', NULL, '13.3000', '13.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '13.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 (1932, 255, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 6359, '956', 'Dipex Capsules', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '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 (1934, 255, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (1936, 255, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (1938, 255, 6030, '627', 'Zipferon Capsule', 'standard', NULL, '4.4300', '4.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8600', '', '4.4300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (1941, 255, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 255, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (1943, 255, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (1944, 256, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (1945, 256, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (1951, 257, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '13.7000', '13.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '13.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 257, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 259, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '-10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-495.3000', '', '49.5300', 1930, 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 (1955, 258, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '4.0200', 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 (1957, 260, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '-4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-52.8000', '', '13.2000', 1944, 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 (1958, 260, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-21.6000', '', '21.6000', 1945, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 261, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '495.3000', '', '49.5300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 261, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (1961, 261, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (1962, 262, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '4.0200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 262, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 262, 6348, '945', 'Loperon', 'standard', NULL, '8.1000', '8.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '8.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 263, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (1966, 263, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 263, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (1968, 263, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '19.8000', '19.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '19.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 (1969, 263, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 263, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1971, 264, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (1972, 264, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (1973, 265, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3300', '6.3300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3300', '', '6.3300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 266, 6628, '1225', 'Multivitamin Syrup 125ml Ayrton', 'standard', NULL, '5.4000', '5.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.4000', '', '5.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 (1975, 266, 6855, '1452', 'Klire Calcium', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (1976, 267, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '66.2000', '66.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2000', '', '66.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 (1977, 268, 6180, '777', 'Ketazol Shampoo 100ml', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (1978, 269, 6336, '933', 'Gericare Capsules 30\'s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 270, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1600', '', '13.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 271, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (2011, 271, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '14.0000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 271, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '7.9400', '7.9400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '7.9400', 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 (2009, 271, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (2008, 271, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (2007, 271, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5000', '', '13.3000', 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 (1986, 272, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (1987, 272, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (1988, 273, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (2115, 274, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 274, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (2113, 274, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '8.4000', 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 (2105, 274, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '14.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 (2106, 274, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 274, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (2108, 274, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (2109, 274, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (2110, 274, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (2111, 274, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.8000', 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 (2112, 274, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (2099, 274, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (2100, 274, 6125, '722', 'Lufart Suspension', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (2101, 274, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '135.0000', '', '13.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 (2102, 274, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.7000', '', '4.6700', 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 (2103, 274, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.8200', '', '9.4700', 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 (2104, 274, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.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 (2013, 271, 6643, '1240', 'Metroz Tablets 20\'s', 'standard', NULL, '5.9000', '5.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '5.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 (2014, 275, 6138, '735', 'Drez V Gel 30g', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (2015, 275, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (2016, 275, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (2017, 275, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (2018, 275, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '16.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 (2019, 275, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '4.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 (2020, 275, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (2021, 275, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (2022, 275, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (2023, 275, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (2024, 275, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '4.6700', '4.6700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0100', '', '4.6700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 275, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (2026, 275, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.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 (2027, 275, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 275, 5962, '559', 'Zinvite Syrup 200ml', 'standard', NULL, '6.9900', '6.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.9800', '', '6.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 275, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (2030, 275, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5600', '', '10.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 275, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3000', '', '11.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 (2032, 275, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '7.6000', '7.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '7.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 (2033, 275, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 275, 6556, '1153', 'TSec 1g Tablets', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (2035, 276, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 276, 6747, '1344', 'Neoferon Syrup 200ml', 'standard', NULL, '12.9800', '12.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.9400', '', '12.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 276, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8800', '', '9.4700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 276, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '14.9000', '14.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.7000', '', '14.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 276, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5900', '', '49.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 276, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (2169, 277, 6607, '1204', 'Skyclav 625', 'standard', NULL, '16.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '16.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 (2168, 277, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6473, '1070', 'Clomid 50mg Tablets 10\'s', 'standard', NULL, '54.8000', '54.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.8000', '', '54.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (2165, 277, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (2164, 277, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (2163, 277, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (2161, 277, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (2160, 277, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (2159, 277, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (2157, 277, 6294, '891', 'Menthodex 200ml Syrup', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.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 (2156, 277, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (2155, 277, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (2154, 277, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '3.9000', 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 (2153, 277, 6033, '630', 'Deep Heat Rub 35g', 'standard', NULL, '31.4000', '31.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.8000', '', '31.4000', 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 (2152, 277, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '19.8000', '19.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '19.8000', 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 (2151, 277, 6014, '611', 'Coartem Dispersible 20/120mg Tablets 6\'s', 'standard', NULL, '10.6800', '10.6800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3600', '', '10.6800', 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 (2150, 277, 6015, '612', 'Sirdalud 2mg Tablets 30\'s', 'standard', NULL, '43.7000', '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7000', '', '43.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', NULL, '6.7000', '6.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '6.7000', 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 (2148, 277, 5784, '381', 'Naprox EC 500mg Tablets 100\'s', 'standard', NULL, '78.0000', '78.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '78.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', '63.2200', 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 (2144, 277, 5675, '272', 'Ideos 500mg Calcium, Vitamin D3', 'standard', NULL, '65.0000', '65.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6633, '1230', 'Vit Bco Strong 30\'s Krka', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (2141, 277, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (2140, 277, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (2139, 277, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (2138, 277, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.7000', '', '7.1000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 5725, '322', 'Lisinopril 20mg Teva', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', 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 (2136, 277, 6741, '1338', 'Lisinopril 5mg Tablets 28\'s Teva', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.7000', 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 (2135, 277, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.7000', '', '12.9000', 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 (2134, 277, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (2133, 277, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '14.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 (2132, 277, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '45.6000', '45.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.6000', '', '45.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 (2131, 277, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3900', '', '20.1300', 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 (2129, 278, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', NULL, '41.6300', '41.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6300', '', '41.6300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 278, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', '63.2200', 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 (2127, 278, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (2126, 278, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 278, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (2124, 278, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '38.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 (2123, 278, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (2122, 278, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (2121, 278, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (2120, 278, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (2119, 278, 6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 278, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 278, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.9000', 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 (2116, 274, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', NULL, '158.6000', '158.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.6000', '', '158.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 (2130, 278, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (2170, 277, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.2000', 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 (2171, 277, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (2172, 277, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (2173, 277, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '16.3100', '16.3100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3100', '', '16.3100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 277, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4100', '', '9.4700', 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 (2228, 279, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 279, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (2230, 286, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 286, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (2225, 279, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.3000', 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 (2226, 279, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '1.9500', '1.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.7500', '', '1.9500', 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 (2227, 279, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 279, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.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 (2223, 279, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (2224, 279, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.4000', 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 (2185, 280, 6872, '97726773', 'Deworme 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '2.2000', 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 (2186, 280, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 280, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', NULL, '1.4900', '1.4900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '1.4900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 280, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 281, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (2190, 282, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (2193, 282, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (2194, 282, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (2195, 282, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (2198, 282, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (2200, 282, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (2201, 282, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (2202, 282, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (2203, 282, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.7000', '', '4.3500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '5.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 (2205, 282, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '2.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 (2208, 282, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '16.3100', '16.3100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3100', '', '16.3100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (2210, 282, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (2211, 282, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '6.9000', '6.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '6.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 (2212, 282, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (2213, 282, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1500', '', '7.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 282, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (2215, 282, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3200', '', '3.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 283, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (2217, 284, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 284, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (2219, 285, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (2220, 285, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (2221, 285, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (2232, 287, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '3.6300', '3.6300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8900', '', '3.6300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 288, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5600', '', '13.1400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 289, 5695, '292', 'Ketazol Cream 30g', 'standard', NULL, '7.6300', '7.6300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2600', '', '7.6300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 289, 6675, '1272', 'Lydia Postpill 2Tablets', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (2236, 290, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.2800', '', '6.8800', 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 (2237, 290, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.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 (2238, 290, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2600', '', '20.1300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 290, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '19.3400', '19.3400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.6800', '', '19.3400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 290, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (2241, 290, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (2242, 290, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '9.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 290, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (2244, 290, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1200', '', '3.5200', 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 (2245, 290, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4000', '', '7.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 290, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (2247, 291, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (2248, 292, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (2249, 292, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.1200', '', '49.5300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 292, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (2251, 292, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.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 (2252, 292, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '5.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 (2253, 292, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '66.2000', '66.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2000', '', '66.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 (2254, 292, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (2255, 292, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (2256, 292, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4300', '', '24.4300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 292, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '26.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 292, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 292, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '20.1300', '20.1300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2600', '', '20.1300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 292, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (2261, 292, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (2262, 292, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (2263, 292, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '3.0000', 1, '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 (2264, 292, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (2265, 292, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (2266, 292, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (2267, 293, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 293, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.5000', '', '8.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 (2269, 293, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 294, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.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 (2271, 294, 5532, '129', 'Coartem 80/480 6\'s', 'standard', NULL, '56.1000', '56.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '280.5000', '', '56.1000', 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 (2272, 294, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (2273, 295, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '11.5800', '11.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1600', '', '11.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 295, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 295, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4600', '', '8.8200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 295, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.1900', '', '3.9100', 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 (2277, 295, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (2278, 295, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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, 296, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4700', '', '9.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 (2280, 296, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 296, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (2282, 296, 6889, '82688230', 'Metronidazole 200mg (O METRO)', 'standard', 0, '14.0000', '14.0000', '1.0000', 1, '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 (2283, 296, 6182, '779', 'Kifaru 50mg Tablets', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (2284, 296, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (2285, 297, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (2286, 298, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (2287, 298, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '4.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 (2288, 298, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (2289, 298, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (2290, 299, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2291, 299, 5826, '423', 'Plaster roll Extra care 2Inches', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (2292, 299, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 299, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 299, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (2295, 299, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (2296, 300, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (2297, 300, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (2298, 300, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.6000', '', '30.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 (2299, 300, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9600', '', '18.4800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 300, 6546, '1143', 'Menthodex Lozenges 80G Sachet 25\' H&L', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.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 (2301, 300, 6123, '720', 'Strobin Lozenges 54X6', 'standard', NULL, '52.7000', '52.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.7000', '', '52.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 (2302, 301, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.3000', '', '10.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 (2303, 301, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 301, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '7.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 (2305, 301, 6161, '758', 'Emgiprofen Suspension 100ml', 'standard', NULL, '5.3000', '5.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3000', '', '5.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 (2306, 301, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '10.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 (2307, 301, 6464, '1061', 'Mist Expect Sed Mal-Titi', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (2308, 301, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6600', '', '9.6600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 301, 5967, '564', 'Zulu 100mg Tablet', '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 (2310, 302, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 302, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '4.0200', 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 (2312, 302, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '1.0000', NULL, 1, 'pc', '150.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 302, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (2314, 302, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '2.1000', 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 (2315, 302, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 302, 6492, '1089', 'Prednisolone 5mg Tablets 70x10', 'standard', NULL, '39.5000', '39.5000', '2.0000', 1, '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 (2317, 302, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9600', '', '12.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 302, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.4000', '', '22.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 302, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.8000', '', '20.9500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 303, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (2321, 304, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (2322, 305, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (2323, 305, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (2324, 305, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2800', '', '3.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 305, 6183, '780', 'Leopard Balm 30g', 'standard', NULL, '5.7500', '5.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '5.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 305, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 306, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', 0, '41.6300', '41.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6300', '', '41.6300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 307, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (2329, 307, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 308, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (2331, 309, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 309, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1600', '', '13.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 310, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (2334, 310, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 310, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1600', '', '13.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 311, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '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 (2337, 311, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (2338, 311, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (2339, 311, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (2340, 311, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 311, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (2342, 311, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 311, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6400', '', '6.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 311, 6191, '788', 'Shal\'Artem Dry Syrup', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (2345, 312, 5840, '437', 'Prostacure X', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (2346, 312, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (2347, 312, 5993, '590', 'Calamine ointment 40mg', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (2348, 312, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 312, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (2350, 312, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.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 (2351, 312, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 312, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (2353, 313, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', NULL, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.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 (2370, 314, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (2371, 314, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8400', '', '14.9600', 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 (2372, 314, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '6.1000', 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 (2373, 314, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (2369, 314, 6356, '953', 'Cotton Wool 100g', 'standard', NULL, '7.2000', '7.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '7.2000', 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 (2367, 315, 6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (2374, 314, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '4.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 315, 5497, '94', 'BX Syrup 100ml', 'standard', NULL, '5.6000', '5.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '5.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 (2375, 316, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (2376, 317, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 317, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (2378, 317, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 317, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (2380, 317, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (2381, 318, 6873, '06796716', 'Menazole 500mg 10x1 Ayrtons', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (2382, 318, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (2383, 318, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (2384, 318, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (2385, 318, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.3000', '', '23.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 318, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (2387, 318, 5704, '301', 'Koflet Syrup', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (2388, 318, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 318, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (2390, 318, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2100', '', '14.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 318, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '6.0000', 1, '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 (2392, 318, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (2393, 318, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '2.2000', '2.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '2.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 (2394, 318, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (2395, 318, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (2396, 318, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (2397, 318, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (2398, 318, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (2399, 318, 6021, '618', 'Rizole Suspension 100ml', 'standard', NULL, '3.6000', '3.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '3.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 (2400, 318, 6130, '727', 'Kofof Family Syrup 150ml', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (2662, 319, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (2663, 319, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '6.1000', 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 (2664, 319, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (2665, 319, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (2666, 319, 5726, '323', 'Listerine 250ml all types', 'standard', NULL, '15.9000', '15.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '15.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (2668, 319, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2800', '', '3.9100', 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 (2669, 319, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (2671, 319, 5792, '389', 'Nifecard XL 30mg Tablets 30\'s ECL', 'standard', NULL, '30.2000', '30.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '30.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 6306, '903', 'Pofakoff Adult', 'standard', NULL, '6.2300', '6.2300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.4600', '', '6.2300', 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 (2673, 319, 5695, '292', 'Ketazol Cream 30g', 'standard', NULL, '7.6300', '7.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6300', '', '7.6300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (2783, 342, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (2659, 319, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (2653, 319, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (2654, 319, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2500', '', '13.2500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 319, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', 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 (2656, 319, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.5000', '', '8.5000', NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 320, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (2425, 320, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (2426, 320, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', NULL, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.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 (2427, 320, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 320, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (2429, 320, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '4.0200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 320, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.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 (2431, 320, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (2432, 320, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (2433, 320, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (2434, 320, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '5.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 (2435, 320, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.9800', '', '2.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 320, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.3500', '', '4.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 (2437, 320, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '8.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 (2438, 320, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (2439, 320, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 320, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (2441, 320, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (2658, 319, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '1.9500', '1.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '1.9500', 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 (2465, 321, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '4.6700', '4.6700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6800', '', '4.6700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (2511, 322, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', 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 (2508, 322, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4000', '', '7.1000', 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 (2509, 322, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '3.9000', 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 (2507, 322, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (2506, 322, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 6332, '929', 'Adom Koo Capsules', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '9.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 (2503, 322, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', 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 (2502, 322, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.8000', 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 (2500, 322, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (2514, 323, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', 0, '7.7000', '7.7000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.8000', '', '7.7000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 323, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '62.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 (2482, 324, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (2483, 324, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (2484, 324, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6300', '', '14.2100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 322, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (2657, 319, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (2562, 325, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.8000', '', '9.9600', 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 (2563, 325, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (2564, 325, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 325, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (2566, 325, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (2567, 326, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '10.5000', 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 (2568, 326, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (2569, 326, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (2570, 326, 6389, '986', 'Salocold Syrup', 'standard', NULL, '7.4000', '7.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '7.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 (2571, 326, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (2572, 326, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5900', '', '49.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.5000', '', '25.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 (2577, 326, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', NULL, '158.6000', '158.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '317.2000', '', '158.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 (2578, 326, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (2579, 326, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', NULL, '8.9000', '8.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '8.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '6.6500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 326, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '6.6500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 327, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4400', '', '5.8600', 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 (2752, 327, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (2751, 327, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '2.8800', 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 (2750, 327, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '9.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 (2749, 327, 6071, '668', 'Vin C 100mg Tablets 30\'s', 'standard', NULL, '19.6000', '19.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '19.6000', 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 (2748, 327, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 327, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (2746, 327, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (2745, 327, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7200', '', '3.1800', 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 (2744, 327, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '6.6000', 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 (2743, 327, 5511, '108', 'Inoxime (Cefixime) 200mg Tablets', 'standard', NULL, '9.0000', '9.0000', '1.0000', 1, '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 (2594, 328, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1600', '', '13.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 329, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '11.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 (2596, 329, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (2597, 329, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (2598, 329, 6189, '786', 'Rufedol Tablets 10\'s', 'standard', NULL, '1.2000', '1.2000', '10.0000', 1, '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 (2599, 329, 6831, '1428', 'Eskadol Blister(25x1x10)', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (2600, 330, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (2601, 331, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (2602, 331, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (2735, 332, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '7.9000', '7.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '7.9000', 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 (2604, 333, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '8.3200', 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 (2606, 333, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (2607, 333, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (2609, 333, 6010, '607', 'Rooter Tytonic', '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 (2610, 333, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.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 (2611, 333, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (2612, 333, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 6153, '750', 'Paracetamol 500mg Tablet M&G 100x10', 'standard', NULL, '77.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '77.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.5800', '19.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5800', '', '19.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 (2616, 333, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (2617, 333, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (2618, 333, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (2619, 333, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (2620, 333, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '9.9400', '9.9400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9400', '', '9.9400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 333, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (2622, 334, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', 'standard', 0, '5.3000', '5.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '5.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 (2623, 334, 6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', 'standard', 0, '5.3000', '5.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '5.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 (2624, 334, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', 0, '88.9000', '88.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '444.5000', '', '88.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 (2625, 334, 5586, '183', 'Dragon Spray', 'standard', 0, '28.9000', '28.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1445.0000', '', '28.9000', 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 (2626, 334, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', 0, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (2627, 334, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '49.5300', '49.5300', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '396.2400', '', '49.5300', 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 (2628, 334, 6032, '629', 'Gebedol Forte', 'standard', 0, '17.2100', '17.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.1000', '', '17.2100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 334, 6878, '43797319', 'Obend Albendazole 400mg Tablet', 'standard', NULL, '1.2000', '1.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '1.2000', 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 (2780, 335, 5557, '154', 'Dalacin C 300mg Capsules 16\'s', 'standard', NULL, '175.6100', '175.6100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.6100', '', '175.6100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 335, 6479, '1076', 'Dulcolax 10mg Suppositories 12\'s', 'standard', NULL, '39.7000', '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7000', '', '39.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 335, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.3000', '35.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.3000', '', '35.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 335, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.7000', 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 (2775, 335, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.9000', 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 (2776, 335, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (2774, 335, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 335, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.3000', 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 (2772, 335, 6416, '1013', 'Stopkof Dry Cough Syrup 100ml', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (2770, 335, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.5000', '', '25.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 (2771, 335, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '7.7000', '7.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '7.7000', 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 (2769, 335, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (2768, 335, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (2767, 335, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.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 (2766, 335, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', 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 (2765, 335, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (2764, 335, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (2763, 335, 5456, '53', 'Aspanol All In One Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.6000', 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 (2761, 335, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (2762, 335, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (2760, 335, 6039, '636', 'Hot Naso- Ephedrine Nasal Drop', 'standard', NULL, '4.5500', '4.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.5500', '', '4.5500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 335, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (2702, 336, 5471, '68', 'Baby Cough Lintus 100ml ECL', 'standard', 0, '5.0400', '5.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0800', '', '5.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 336, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', 0, '4.6000', '4.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '4.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 (2704, 336, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', 0, '14.5000', '14.5000', '1.0000', 1, '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 (2705, 336, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (2706, 336, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 336, 5625, '222', 'Foliron Tonic 200ml', 'standard', 0, '4.1000', '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '4.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 337, 6557, '1154', 'Ocip TZ', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (2709, 337, 6035, '632', 'Fasipro Tablets (1*10)', 'standard', NULL, '7.9900', '7.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9500', '', '7.9900', 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 (2758, 335, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (2734, 338, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 332, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (2737, 332, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '5.9000', 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 (2738, 332, 6438, '1035', 'Cataflam 50mg Tablets 20\'s', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 332, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '8.6400', '8.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '8.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 332, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8200', '', '8.8200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 332, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (2742, 332, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (2782, 339, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '344.2000', '', '17.2100', 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 (2755, 340, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (2756, 341, 6139, '736', 'Amino pep Syrup 200ml', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 341, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '23.5000', '23.5000', '1.0000', 1, '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 (2784, 342, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (2785, 342, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (2786, 342, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '9.4700', '9.4700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9400', '', '9.4700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 342, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 342, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (2789, 342, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (2790, 342, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 342, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (2792, 342, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (2793, 342, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (2794, 342, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (2795, 343, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (2796, 343, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (2810, 344, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (2805, 344, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '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 (2806, 344, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 344, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 344, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (2809, 344, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.9000', 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 (2803, 345, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '2.6000', '2.6000', '1.0000', 1, '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 (2804, 345, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (2812, 346, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (2814, 346, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (2816, 346, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '49.5000', '49.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '49.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1200', '', '3.5200', 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 (2819, 346, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0200', '', '5.8600', 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 (2820, 346, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (2821, 346, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (2822, 346, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (2824, 346, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (2825, 346, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2826, 346, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 346, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (2828, 347, 6151, '748', 'Jeditone Syrup 200ml', 'standard', NULL, '6.7000', '6.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.7000', '', '6.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 (2829, 347, 6651, '1248', 'Kalamina Lotion 120ml', 'standard', NULL, '7.4400', '7.4400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4400', '', '7.4400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 348, 6889, '82688230', 'Metronidazole 200mg (O METRO)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (2831, 349, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (2832, 350, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (2833, 350, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 350, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '19.8000', '19.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '19.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 (2835, 350, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 351, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 351, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 351, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (2839, 351, 6180, '777', 'Ketazol Shampoo 100ml', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.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 (2840, 351, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.3000', '8.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '8.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 (2841, 351, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9200', '', '9.9600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 351, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 351, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (2844, 352, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (2845, 352, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 352, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 352, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 352, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (2849, 352, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.7800', '', '60.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 352, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 353, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (2852, 353, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (2853, 353, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (2854, 353, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (2855, 353, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (2856, 353, 6531, '1128', 'Allacan 10 mg Tabs 30\'s (Cetirizine)', 'standard', NULL, '9.5000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '9.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 (2857, 353, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.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 (2858, 353, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 353, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (2860, 353, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (2873, 354, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (2871, 354, 6310, '907', 'Odymin Capsules', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (2872, 354, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.2000', 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 (2868, 354, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 354, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (2870, 354, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 355, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 356, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5800', '', '13.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 (3031, 357, 5476, '73', 'Borges Olive Oil 125ml', 'standard', NULL, '13.3000', '13.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '13.3000', 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 (3032, 357, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (3029, 357, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (3023, 357, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (3024, 357, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (3025, 357, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.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 (3026, 357, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (3027, 357, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (3028, 357, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (3005, 357, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', 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 (3006, 357, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', 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 (3007, 357, 6389, '986', 'Salocold Syrup', 'standard', NULL, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.4000', 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 (3008, 357, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '7.2000', 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 (3009, 357, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (3010, 357, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.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 (3011, 357, 6464, '1061', 'Mist Expect Sed Mal-Titi', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (3012, 357, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (3013, 357, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (3014, 357, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.7000', 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 (3015, 357, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.8000', 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 (3016, 357, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (3017, 357, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (3018, 357, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (3019, 357, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (3020, 357, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.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 (3021, 357, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (2993, 357, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '21.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (2996, 357, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9200', '', '9.9600', 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 (2998, 357, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (2999, 357, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (3000, 357, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (3001, 357, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.8000', 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 (3002, 357, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (3003, 357, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (3004, 357, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', 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 (2981, 357, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (2983, 357, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (2984, 357, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (2985, 357, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '23.5000', '23.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.5000', '', '23.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 (2986, 357, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (2987, 357, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.2000', 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 (2988, 357, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (2990, 357, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '2.5000', 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 (2991, 357, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.6000', '', '11.1000', 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 (2992, 357, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (2931, 358, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (2932, 359, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (2933, 359, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 359, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '6.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 (2935, 359, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 359, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2500', '', '27.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 (2937, 359, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 359, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 359, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (2940, 359, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (2941, 359, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (2942, 359, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (2943, 359, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (2944, 359, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (2945, 359, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (2946, 359, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (2947, 359, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 359, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (2949, 360, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '13.5800', '13.5800', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-13.5800', '', '13.5800', 2874, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 361, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 361, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.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 (3047, 361, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', 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 (3046, 361, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 361, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (3044, 361, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 361, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (3042, 361, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (3041, 361, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.3000', 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 (3040, 361, 5993, '590', 'Calamine ointment 40mg', 'standard', NULL, '9.2200', '9.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4400', '', '9.2200', 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 (3039, 361, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (3038, 361, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 361, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 362, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '243.1200', '', '60.7800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 362, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '42.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 362, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.2000', '', '23.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 362, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '21.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 (2968, 362, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (2969, 362, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (2970, 362, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (2971, 362, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 362, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (2973, 362, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (2974, 362, 6057, '654', 'Liv 52 Tablets', 'standard', NULL, '33.2100', '33.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.4200', '', '33.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 363, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '9.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 (2976, 363, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (2977, 363, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 364, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.0000', '35.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '35.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 (2979, 364, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.6000', '', '9.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 (2980, 364, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 357, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (3035, 357, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '11.5800', '11.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5800', '', '11.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 (3036, 365, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.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 (3050, 361, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (3095, 369, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 368, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 366, 6473, '1070', 'Clomid 50mg Tablets 10\'s', 'standard', NULL, '54.8000', '54.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.8000', '', '54.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 366, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '177.0000', '', '59.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 (3092, 366, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30\'s', 'standard', NULL, '63.0000', '63.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '63.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 366, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.9000', '', '26.1800', 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 (3089, 366, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '7.7000', '7.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '7.7000', 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 (3088, 366, 5993, '590', 'Calamine ointment 40mg', 'standard', NULL, '9.2200', '9.2200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.1000', '', '9.2200', 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 (3087, 366, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.9000', 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 (3086, 366, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '85.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 (3061, 367, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.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 (3062, 367, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (3063, 367, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (3064, 367, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (3065, 367, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8500', '', '9.3700', 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 (3066, 367, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (3067, 367, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.9500', '', '6.8500', 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 (3068, 367, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '38.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 (3069, 367, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '6.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 367, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 367, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', '14.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 (3072, 367, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 367, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '1.0000', 1, '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 (3074, 367, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '20.0000', 1, '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 (3075, 367, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 367, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (3077, 367, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5200', '', '17.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 367, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (3096, 369, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (3097, 369, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (3098, 369, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (3099, 369, 5717, '314', 'Letavit Syrup', 'standard', NULL, '2.4000', '2.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '2.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 (3100, 369, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '2.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 (3101, 369, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 369, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 369, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 370, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7600', '', '2.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 (3105, 371, 6191, '788', 'Shal\'Artem Dry Syrup', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (3106, 372, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (6065, 373, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (6066, 373, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', 0, '14.0000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '14.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 (6064, 373, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', 0, '11.8000', '11.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '11.8000', 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 (6061, 373, 6818, '1415', 'Foliron Capsules', 'standard', 0, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (6062, 373, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (6063, 373, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', 0, '2.8900', '2.8900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '2.8900', 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 (6039, 373, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', 0, '14.0000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '14.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 (6040, 373, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '49.5300', '49.5300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.1200', '', '49.5300', 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 (6041, 373, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '3.7500', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 373, 6428, '1025', 'Fericon 200ml Syrup', 'standard', 0, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (6043, 373, 6429, '1026', 'Onita Syrup 200ml', 'standard', 0, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (6044, 373, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', 0, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (6045, 373, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', 0, '10.4500', '10.4500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '10.4500', 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 (6046, 373, 6538, '1135', 'Drez Solution 30ml', 'standard', 0, '10.3000', '10.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.4000', '', '10.3000', 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 (6047, 373, 6547, '1144', 'Menthodex Lozenges 80G Sachet 25\' ORIG', 'standard', 0, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.8000', 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 (6048, 373, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', 0, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 373, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', 0, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.6000', 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 (6050, 373, 6607, '1204', 'Skyclav 625', 'standard', 0, '16.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '16.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 (6051, 373, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '8.8000', '8.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '8.8000', 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 (6052, 373, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '15.9500', '15.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', '15.9500', 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 (6053, 373, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', 0, '29.7000', '29.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.1000', '', '29.7000', 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 (6054, 373, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (6055, 373, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', 0, '6.7000', '6.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '6.7000', 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 (6056, 373, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', 'standard', 0, '4.5000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '4.5000', 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 (6057, 373, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', 0, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (6058, 373, 6804, '1401', 'Buscopan Org.Tabs10mg 56\'s', 'standard', 0, '54.9000', '54.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '54.9000', 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 (6059, 373, 6815, '1412', 'Zipferon Forte', 'standard', 0, '9.2100', '9.2100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2600', '', '9.2100', 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 (6060, 373, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.8000', '', '11.9000', 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 (6001, 373, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (6002, 373, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', 0, '14.5000', '14.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '14.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 (6003, 373, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (6004, 373, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', 0, '8.7000', '8.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.2000', '', '8.7000', 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 (6005, 373, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.5000', '', '7.1500', 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 (6006, 373, 5593, '190', 'Efpac Tablets', 'standard', 0, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (6007, 373, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '11.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 (6008, 373, 5676, '273', 'Imax Delay Spray', 'standard', 0, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (6009, 373, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (6010, 373, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '5.9000', '5.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '5.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 (6011, 373, 5849, '446', 'Rhizin Syrup', 'standard', 0, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (6012, 373, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.9000', 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 (6013, 373, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.5000', '', '7.3000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 373, 5962, '559', 'Zinvite Syrup 200ml', 'standard', 0, '6.9900', '6.9900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9400', '', '6.9900', 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 (6015, 373, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '10.5500', '10.5500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.4000', '', '10.5500', 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 (6016, 373, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '14.2500', '14.2500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '14.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 (6017, 373, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', 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 (6018, 373, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '20.9000', '20.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.7000', '', '20.9000', 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 (6019, 373, 6033, '630', 'Deep Heat Rub 35g', 'standard', 0, '31.4000', '31.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.2000', '', '31.4000', 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 (6020, 373, 6034, '631', 'Deep Heat Spray 150ml', 'standard', 0, '41.8000', '41.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '41.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 (6021, 373, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', 0, '9.1000', '9.1000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.8000', '', '9.1000', 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 (6022, 373, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 373, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', 0, '23.5000', '23.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.5000', '', '23.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 (6024, 373, 6100, '697', 'Haem Up Syrup 200ml', 'standard', 0, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (6025, 373, 6125, '722', 'Lufart Suspension', 'standard', 0, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (6026, 373, 6188, '785', 'Polygel Suspension 200ml', 'standard', 0, '7.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '7.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 (6027, 373, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', 0, '17.7000', '17.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.8000', '', '17.7000', 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 (6028, 373, 6207, '804', 'Zinol 500mg Tablets (Paracetamol) 50X10', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (6029, 373, 6211, '808', 'Contreg Syrup 30ml', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (6030, 373, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '10.0000', 1, '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 (6031, 373, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', 0, '6.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.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 (6032, 373, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', 0, '68.5000', '68.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '68.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 (6033, 373, 6272, '869', 'Ferrovita B12 Syrup 200ml', 'standard', 0, '31.5000', '31.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.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 (6034, 373, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', 0, '6.0200', '6.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.2000', '', '6.0200', 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 (6035, 373, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '10.9800', 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 (6036, 373, 6286, '883', 'Kidivite Syrup 200ml', 'standard', 0, '9.6000', '9.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '9.6000', 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 (6037, 373, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '14.6000', 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 (6038, 373, 6304, '901', 'Lonart Suspension', 'standard', 0, '13.5000', '13.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.0000', '', '13.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 (3177, 374, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '3.4000', 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 (3178, 375, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', 0, '15.0000', '15.0000', '2.0000', 1, '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 (3179, 375, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (3180, 375, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '3.6300', '3.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.6300', '', '3.6300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 376, 6779, '1376', 'Actifed Multi Action Tabs 12\'s', 'standard', NULL, '46.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '46.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 376, 6736, '1333', 'Sudafed Head & Congestion Max Strength', 'standard', NULL, '38.2000', '38.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.4000', '', '38.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 (3183, 376, 6474, '1071', 'Day Nurse Capsules 20\'s', 'standard', NULL, '71.2000', '71.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2000', '', '71.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 (3184, 376, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '8.7500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 377, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (3235, 377, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (3236, 377, 6745, '1342', 'Durex Extra Safe 3\'s Condoms', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 377, 6000, '597', 'Vigorix Forte Syr 200ml', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (3219, 377, 6584, '1181', 'Cororange Capsules', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (3220, 377, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (3221, 377, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (3222, 377, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (3223, 377, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (3224, 377, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.7000', 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 (3225, 377, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (3226, 377, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.7000', 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 (3227, 377, 6322, '919', 'Para-Denk 250mg Suppository 10\'s', 'standard', NULL, '21.8300', '21.8300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6600', '', '21.8300', 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 (3228, 377, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (3229, 377, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '21.6000', 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 (3230, 377, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (3231, 377, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (3232, 377, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 377, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (3216, 377, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (3217, 377, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5200', '', '17.8400', 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 (3207, 378, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 378, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (3209, 378, 5847, '444', 'Redsun Jelly', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 378, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 378, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (3212, 378, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (3213, 379, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (3214, 380, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (3215, 381, 6847, '1444', 'Kelcuf Adult Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3237, 377, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '8.7500', 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 (3238, 382, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6580, '1177', 'Lipitor 20mg 30\'s', 'standard', NULL, '328.9000', '328.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '328.9000', '', '328.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 5623, '220', 'Flurest Tablets 10\'s', 'standard', 0, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (3461, 383, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (3459, 383, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', 0, '4.6000', '4.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '230.0000', '', '4.6000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6389, '986', 'Salocold Syrup', 'standard', 0, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (3458, 383, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', 0, '27.5000', '27.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '687.5000', '', '27.5000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (3457, 383, 6879, '34265543', 'Zulu Extra ', 'standard', 0, '4.3000', '4.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '4.3000', 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 (3455, 383, 6760, '1357', 'Tramadol Denk 50 Tabs B/10', 'standard', 0, '45.4900', '45.4900', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '45.4900', NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', 0, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6099, '696', 'Clear Inhaler 12\'s', 'standard', 0, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.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 (3452, 383, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', 0, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.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 (3451, 383, 6819, '1416', 'Peladol Junior', 'standard', 0, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 5793, '390', 'Night Nurse Capsules 10\'s', 'standard', 0, '47.0000', '47.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '47.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 (3448, 383, 6677, '1274', 'Azirocin 250mg Capules', 'standard', 0, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (3449, 383, 6678, '1275', 'Azirocin Suspension', 'standard', 0, '14.3000', '14.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '14.3000', 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 (3447, 383, 6595, '1192', 'Azycin 500mg', 'standard', 0, '7.9000', '7.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '7.9000', 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 (3445, 383, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', 0, '14.0000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '14.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 (3446, 383, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (3444, 383, 6166, '763', 'Mucosyl Adult Syrup 100ml', 'standard', 0, '5.8000', '5.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '5.8000', 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 (3443, 383, 6107, '704', 'Lexofen Plus Tablets 2x10', 'standard', 0, '12.0000', '12.0000', '2.0000', 1, '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 (3441, 383, 6140, '737', 'Fabrin Tablets 50X4', 'standard', 0, '30.8000', '30.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '30.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 383, 6601, '1198', 'Starcold', 'standard', 0, '50.3500', '50.3500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.3500', '', '50.3500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 384, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', NULL, '1.9000', '1.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '1.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 (3266, 384, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (3267, 385, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (3268, 386, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (3269, 386, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 386, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (3271, 387, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '9.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 388, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (3671, 399, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (3669, 398, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 398, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (3653, 389, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (3654, 389, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (3655, 389, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (3656, 389, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (3657, 389, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.7000', '', '28.9000', 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 (3658, 389, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.2000', '', '23.4000', 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 (3659, 389, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.1200', '', '22.7800', 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 (3660, 389, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9000', '', '25.9500', 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 (3661, 389, 5798, '395', 'zincovit', 'standard', NULL, '19.3400', '19.3400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.6800', '', '19.3400', 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 (3568, 389, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (3569, 389, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', 0, '16.8000', '16.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.2000', '', '16.8000', 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 (3570, 389, 6126, '723', 'Amurox Suspension (Cefuroxime Axetil)', 'standard', 0, '11.7000', '11.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '11.7000', 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 (3571, 389, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', 'standard', 0, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (3572, 389, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', 0, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (3573, 389, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.8000', '', '7.1000', 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 (3575, 389, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', 0, '36.9900', '36.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.9600', '', '36.9900', 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 (3576, 389, 6741, '1338', 'Lisinopril 5mg Tablets 28\'s Teva', 'standard', 0, '5.7000', '5.7000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.6000', '', '5.7000', 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 (3577, 389, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', 0, '12.5000', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '12.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 (3578, 389, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', 0, '30.6900', '30.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.3800', '', '30.6900', 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 (3579, 389, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '7.1500', 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 (3580, 389, 6389, '986', 'Salocold Syrup', 'standard', 0, '7.4000', '7.4000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.2000', '', '7.4000', 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 (3581, 389, 5515, '112', 'Cetapol Syrup', 'standard', 0, '5.5000', '5.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '5.5000', 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 (3582, 389, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', 0, '14.9000', '14.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '14.9000', 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 (3583, 389, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (3584, 389, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', 'standard', 0, '5.3000', '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '5.3000', 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 (3585, 389, 6195, '792', 'Shaltoux Chesty Cough Syrup 100ml', 'standard', 0, '5.3000', '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '5.3000', 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 (3586, 389, 5459, '56', 'Asthalex Syrup 100ml', 'standard', 0, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', 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 (3587, 389, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', 0, '17.0000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '17.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 (3588, 389, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', 0, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.8000', 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 (3589, 389, 6368, '965', 'Viscof S 100ml Syrup', 'standard', 0, '12.8400', '12.8400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0400', '', '12.8400', 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 (3590, 389, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', 0, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (3591, 389, 5704, '301', 'Koflet Syrup', 'standard', 0, '15.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.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 (3592, 389, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', 0, '15.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.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 (3593, 389, 6385, '982', 'Amcof Junior Syrup', 'standard', 0, '7.4000', '7.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '7.4000', 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 (3594, 389, 5435, '32', 'Amcof Adult Syrup', 'standard', 0, '7.4000', '7.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '7.4000', 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 (3595, 389, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', 0, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (3596, 389, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '8.2000', '8.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '8.2000', 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 (3597, 389, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', 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 (3598, 389, 6753, '1350', 'COA Mixture', 'standard', 0, '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '85.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 (3599, 389, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.6000', '', '11.1000', 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 (3600, 389, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', 0, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (3601, 389, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (3602, 389, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', 0, '66.5200', '66.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5600', '', '66.5200', 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 (3603, 389, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '4.0000', 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 (3604, 389, 5570, '167', 'Diclo Denk 100mg Tablet 10x10', 'standard', 0, '148.0500', '148.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0500', '', '148.0500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 6509, '1106', 'Gacet 1g Suppository', 'standard', 0, '13.2500', '13.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2500', '', '13.2500', 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 (3606, 389, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 6033, '630', 'Deep Heat Rub 35g', 'standard', 0, '31.4000', '31.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.6000', '', '31.4000', 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 (3608, 389, 6561, '1158', 'Olfen Gel 50gm', 'standard', 0, '25.0000', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '25.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 (3609, 389, 5730, '327', 'Lofnac Gel 30mg', 'standard', 0, '6.0000', '6.0000', '4.0000', 1, '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 (3610, 389, 5629, '226', 'Funbact A', 'standard', 0, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (3611, 389, 6446, '1043', 'Dermiron Plus', 'standard', 0, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (3612, 389, 5589, '186', 'Drez Powder 10g', 'standard', 0, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (3613, 389, 6131, '728', 'Drez Solution 100ml', 'standard', 0, '18.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.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 (3614, 389, 5587, '184', 'Drez Ointment 10g', 'standard', 0, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (3615, 389, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', 0, '2.0000', '2.0000', '10.0000', 1, '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 (3616, 389, 6097, '694', 'Methylated Spirit 200ml', 'standard', 0, '7.2000', '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.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 (3617, 389, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', 0, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (3618, 389, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (3619, 389, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '10.5000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (3621, 389, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '66.5300', '66.5300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '266.1200', '', '66.5300', 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 (3622, 389, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '10.5000', '10.5000', '5.0000', 1, '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 (3623, 389, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', 0, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 6690, '1287', 'Seclear Eye Drop', 'standard', 0, '8.2500', '8.2500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '8.2500', 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 (3625, 389, 5581, '178', 'Domi 10 Suppositories', 'standard', 0, '11.3000', '11.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.9000', '', '11.3000', 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 (3626, 389, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', 0, '5.3200', '5.3200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '5.3200', 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 (3627, 389, 6188, '785', 'Polygel Suspension 200ml', 'standard', 0, '7.0000', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '7.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 (3628, 389, 5723, '320', 'Bells Liquid Parafin BP 100ml', 'standard', 0, '9.0000', '9.0000', '2.0000', 1, '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 (3629, 389, 5580, '177', 'Diphex Cough Syrup', 'standard', 0, '8.4000', '8.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '8.4000', 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 (3630, 389, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.8000', 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 (3631, 389, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '10.5500', '10.5500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.7500', '', '10.5500', 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 (3632, 389, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (3633, 389, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (3634, 389, 6126, '723', 'Amurox Suspension (Cefuroxime Axetil)', 'standard', NULL, '23.3000', '23.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.6000', '', '23.3000', 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 (3635, 389, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.9000', 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 (3636, 389, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '3.4100', 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 (3637, 389, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '45.6000', '45.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.8000', '', '45.6000', 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 (3638, 389, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 389, 6882, '69020596', 'Clopidogrel Frelet 75', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '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 (3640, 389, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (3641, 389, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.6000', '', '5.8600', 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 (3642, 389, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (3643, 389, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (3644, 389, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '7.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 (3645, 389, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '15.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 (3646, 389, 6101, '698', 'Feroclear Syrup 200ml', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (3647, 389, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.1200', '', '49.5300', 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 (3648, 389, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.4000', '', '18.1000', 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 (3649, 389, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '22.0000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '22.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 (3650, 389, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '141.6000', '', '47.2000', 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 (3651, 389, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.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 (3652, 389, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '14.9000', '14.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.7000', '', '14.9000', 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 (3376, 390, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5600', '', '13.1400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 391, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (3378, 391, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '2.3000', NULL, 1, 'pc', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 392, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.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 (3440, 383, 6354, '951', 'Parafenac', 'standard', 0, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (3438, 383, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', 0, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (3439, 383, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', 0, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 393, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2100', '', '14.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 394, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (3408, 395, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-14.2100', '', '14.2100', 3406, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 396, 6557, '1154', 'Ocip TZ', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (3437, 383, 6474, '1071', 'Day Nurse Capsules 20\'s', 'standard', 0, '71.2000', '71.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2000', '', '71.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 397, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 397, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (3718, 401, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (3666, 389, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (3667, 389, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '24.5000', '24.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '24.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 (3668, 398, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.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 (3662, 389, 6628, '1225', 'Multivitamin Syrup 125ml Ayrton', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.8000', 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 (3663, 389, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '9.6000', 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 (3664, 389, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '14.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 (3665, 389, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', 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 (3717, 400, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (3716, 400, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.3000', 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 (3715, 400, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '6.1000', 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 (3714, 400, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', 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 (3713, 400, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (3712, 400, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '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 (3711, 400, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.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 (3710, 400, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 400, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '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 (3708, 400, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '4.1000', '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '4.1000', 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 (3707, 400, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3200', '', '3.3200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 400, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '5.6000', '5.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '5.6000', 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 (3706, 400, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 400, 5848, '445', 'Relcer Gel', 'standard', NULL, '8.2800', '8.2800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5600', '', '8.2800', 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 (3703, 400, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '3.2000', 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 (3719, 401, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 401, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8000', '', '3.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 402, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (3780, 402, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '27.0000', '27.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '27.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 (3781, 402, 6607, '1204', 'Skyclav 625', 'standard', NULL, '16.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '16.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 (3782, 402, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (3783, 402, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 409, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (3776, 402, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '122.4000', '122.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.4000', '', '122.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 402, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '12.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 (3778, 402, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 403, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.4000', '', '10.4000', 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 (3731, 403, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '4.0000', 1, '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 (3732, 403, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '14.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 (3733, 403, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (3734, 403, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.3200', '', '37.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 403, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '7.7000', '7.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '7.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 (3736, 403, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '4.6200', 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 (3737, 403, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (3738, 403, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 403, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '4.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 (3740, 404, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (3741, 405, 6755, '1352', 'Salo Simple Linctus', 'standard', NULL, '5.4000', '5.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '5.4000', 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 (3742, 405, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (3743, 406, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '248.9000', '248.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '248.9000', '', '248.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 (4266, 407, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '28.6000', '28.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '28.6000', 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 (4265, 407, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (4264, 407, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 407, 6332, '929', 'Adom Koo Capsules', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 407, 5840, '437', 'Prostacure X', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (4261, 407, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (4260, 407, 6278, '875', 'Tinatett 230 Herbal Capsules', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (4259, 407, 6211, '808', 'Contreg Syrup 30ml', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 407, 6206, '803', 'Contreg Tablets 10x10', 'standard', NULL, '7.8400', '7.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6800', '', '7.8400', 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 (4257, 407, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8200', '', '22.9100', 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 (4256, 407, 5848, '445', 'Relcer Gel', 'standard', NULL, '8.2800', '8.2800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2800', '', '8.2800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 407, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '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 (4254, 407, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', NULL, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 407, 6170, '767', 'Zerocid Plus Suspension 200ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (4252, 407, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (4251, 407, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (4250, 407, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (4249, 407, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (4248, 407, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (4247, 407, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (4246, 407, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (4245, 407, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 408, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '7.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 (3769, 408, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (3770, 408, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (3771, 408, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 408, 6220, '817', 'Dynewell Syrup 200ml', '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 (3773, 408, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (3774, 408, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.7500', '', '3.7500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 408, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3800', '', '2.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 (3785, 409, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (3786, 409, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.9000', '', '5.8600', 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 (3787, 409, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (3788, 409, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (3789, 409, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (3790, 410, 6653, '1250', 'Carvedi Denk 6.25mgTablets 3X10', 'standard', NULL, '27.8000', '27.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '166.8000', '', '27.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 (3791, 411, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (3794, 411, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.9700', '', '2.6900', NULL, 1, 'pc', '13.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (3797, 411, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (3798, 411, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1700', '', '6.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 (3799, 411, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (3800, 411, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6400', '', '3.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 411, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '23.5000', '23.5000', '1.0000', 1, '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 (3803, 411, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (3911, 412, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (3910, 412, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '8.1400', 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 (3909, 412, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '4.3000', '4.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '4.3000', 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 (3908, 412, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (3907, 412, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1600', '', '8.0400', 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 (3906, 412, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (3905, 412, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (3904, 412, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5200', '', '6.8800', 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 (3903, 412, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (3902, 412, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (3901, 412, 6161, '758', 'Emgiprofen Suspension 100ml', 'standard', NULL, '5.3000', '5.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '5.3000', 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 (3900, 412, 6389, '986', 'Salocold Syrup', 'standard', NULL, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.4000', 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 (3899, 412, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (3898, 412, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (3897, 412, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2800', '', '8.3200', 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 (3896, 412, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.2000', 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 (3895, 412, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (3894, 412, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (3823, 413, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (3824, 413, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (3825, 413, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (3826, 413, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.2000', '', '3.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 413, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (3828, 413, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (3829, 413, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (3830, 413, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (3831, 413, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (3832, 413, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (3833, 413, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (3834, 413, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (3835, 413, 6867, '01981362', 'Fiesta Condom dotted', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (3836, 413, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (3837, 413, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '2.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 413, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 414, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.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 (3840, 414, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (3841, 414, 6424, '1021', 'Durol Tonic  Junior 200ml', 'standard', 0, '8.5500', '8.5500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6500', '', '8.5500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 414, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (3843, 414, 5532, '129', 'Coartem 80/480 6s', 'standard', 0, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 415, 6118, '715', 'Norvasc Amlodipine Besylate  5mg Tablets pfizer30\'s', 'standard', 0, '172.8000', '172.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.8000', '', '172.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 (3845, 415, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', 0, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.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 (3846, 415, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', 0, '12.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 415, 5711, '308', 'Lemsip Cold and flu Max 10\'s', 'standard', 0, '44.8000', '44.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.8000', '', '44.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 (3848, 415, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', 0, '186.8000', '186.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '560.4000', '', '186.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 (3849, 415, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (3850, 415, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (3851, 415, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.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 (3852, 415, 5675, '272', 'Ideos 500mg Calcium, Vitamin D3', 'standard', 0, '65.0000', '65.0000', '1.0000', 1, '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 (3853, 416, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 416, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 416, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 417, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 417, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (4240, 417, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (4239, 417, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (4238, 417, 6438, '1035', 'Cataflam 50mg Tablets 20\'s', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 417, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '42.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 (4236, 417, 6747, '1344', 'Neoferon Syrup 200ml', 'standard', NULL, '12.9800', '12.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9200', '', '12.9800', 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 (4235, 417, 6342, '939', 'Wellman 70+ Tablets 30\'s', 'standard', NULL, '58.1000', '58.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.1000', '', '58.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 417, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '11.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 (4233, 417, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 417, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '8.3200', 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 (4231, 417, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '6.5000', 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 (4230, 417, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '7.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 (3870, 418, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 419, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (3872, 420, 5725, '322', 'Lisinopril 20mg Teva', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 420, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (3874, 420, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (3875, 420, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 412, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.8000', 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 (3913, 421, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (3914, 421, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (3915, 421, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (3916, 421, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 421, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (3918, 421, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (3919, 421, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 422, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '66.2000', '66.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2000', '', '66.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 (3921, 422, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', NULL, '120.3600', '120.3600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.3600', '', '120.3600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 423, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 423, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '66.2000', '66.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2000', '', '66.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 (3924, 424, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 424, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (3926, 425, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', 0, '3.3000', '3.3000', '10.0000', 1, '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 (3927, 425, 5713, '310', 'Letacam (Piroxicam)', 'standard', 0, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 425, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', 0, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 425, 5582, '179', 'Domi 30mg Suppositories', 'standard', 0, '12.5000', '12.5000', '2.0000', 1, '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 (3930, 425, 5581, '178', 'Domi 10 Suppositories', 'standard', 0, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.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 (3931, 425, 6389, '986', 'Salocold Syrup', 'standard', 0, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 425, 5948, '545', 'Wormplex Suspension', 'standard', 0, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (3933, 425, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '8.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 (3934, 425, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3935, 425, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3936, 425, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '27.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 (3937, 425, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (3938, 425, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 425, 6633, '1230', 'Vit Bco Strong 30\'s Krka', 'standard', NULL, '32.0000', '32.0000', '1.0000', 1, '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 (3940, 425, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 425, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '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 (3942, 426, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (3943, 426, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (3944, 426, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (3945, 426, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (3946, 426, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 426, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (3948, 426, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (3949, 426, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '3.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 (3950, 427, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 427, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 427, 6220, '817', 'Dynewell Syrup 200ml', '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 (4443, 428, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (4442, 428, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (4441, 428, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (4440, 428, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '17.6000', 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 (4439, 428, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.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 (4438, 428, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 428, 6059, '656', 'Mentat Syrup', 'standard', NULL, '25.3500', '25.3500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3500', '', '25.3500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 428, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (4435, 428, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (4434, 428, 5771, '368', 'Magnesium Trisilicate (MMT)', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.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 (4433, 428, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (4432, 428, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (4431, 428, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (4430, 428, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (3968, 429, 5767, '364', 'MetroGR-F Junior Suspension 100ml', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (3969, 430, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (3970, 430, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (3971, 430, 6563, '1160', 'Polygynax Pessaries 12\'s', 'standard', NULL, '67.0000', '67.0000', '1.0000', 1, '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 (3972, 431, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (3973, 431, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (3974, 431, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.6800', '', '9.9600', 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 (3975, 431, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '227.8000', '', '22.7800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 431, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (3977, 431, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (3978, 431, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 431, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (3980, 431, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '23.5000', '23.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '141.0000', '', '23.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 (3981, 431, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '5.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 (3982, 431, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2500', '', '27.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 (3983, 431, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.3200', '', '37.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 431, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '40.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 431, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '40.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 431, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '221.9400', '', '36.9900', 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 (3987, 431, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.8800', '', '10.9800', 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 (3988, 431, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (3989, 431, 6712, '1309', 'Warfarin 5mg Tablets 28\'s', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.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 (3990, 432, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '384.0000', '', '8.0000', NULL, 1, 'pc', '48.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 433, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 433, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (3993, 434, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (3994, 434, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (3995, 434, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '8.6400', '8.6400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2800', '', '8.6400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 434, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '16.9000', '16.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.6000', '', '16.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 434, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.1000', '', '24.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 (3998, 435, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '4.0000', 1, '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 (3999, 436, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (4000, 436, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', 0, '45.6000', '45.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.2000', '', '45.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 (4001, 436, 6779, '1376', 'Actifed Multi Action Tabs 12\'s', 'standard', 0, '46.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '46.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6563, '1160', 'Polygynax Pessaries 12\'s', 'standard', 0, '67.0000', '67.0000', '1.0000', 1, '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 (4003, 436, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', 0, '28.6000', '28.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.8000', '', '28.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 (4004, 436, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', 0, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (4005, 436, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6332, '929', 'Adom Koo Capsules', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '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 (4007, 436, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', 0, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (4008, 436, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (4009, 436, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (4010, 436, 5757, '354', 'Mark 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '1.0000', 1, '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 (4011, 436, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '1.0000', 1, '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 (4012, 436, 6475, '1072', 'Hyponidd Tablets 20\'s', 'standard', 0, '33.0000', '33.0000', '1.0000', 1, '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 (4013, 436, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '13.0000', '13.0000', '3.0000', 1, '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 (4014, 436, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', 0, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6753, '1350', 'COA Mixture', 'standard', 0, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6458, '1055', 'Infa V Pessaries', 'standard', 0, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.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 (4017, 436, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.5000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '1.5000', 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 (4018, 436, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (4019, 436, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.4000', '', '24.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 (4020, 436, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.1400', '', '6.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (4023, 436, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (4025, 436, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.7300', '', '22.9100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (4027, 436, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '29.0000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '145.0000', '', '29.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 (4028, 436, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '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 (4029, 436, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6271, '868', 'Ciprinol 500mg Tablets 10s', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (4032, 436, 6389, '986', 'Salocold Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (4034, 436, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.1500', '', '16.0500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (4036, 436, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (4037, 436, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.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 (4038, 436, 6467, '1064', 'Benylin Infant 125ml', 'standard', NULL, '40.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '40.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6795, '1392', 'Benylin Dry & Tickly Cough 150ml', 'standard', NULL, '55.8000', '55.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.6000', '', '55.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 (4040, 436, 6693, '1290', 'Benylin Mucus Max H&L', 'standard', NULL, '57.0000', '57.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '57.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 436, 6633, '1230', 'Vit Bco Strong 30\'s Krka', '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 (4042, 436, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4043, 436, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (4044, 436, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (4045, 436, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4046, 436, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4047, 436, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.9000', '', '25.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 (4048, 436, 6023, '620', 'Closol Cream', 'standard', NULL, '3.0000', '3.0000', '3.0000', 1, '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 (4049, 436, 6701, '1298', 'Benylin Mucus+Decon Syrup100ml', 'standard', NULL, '43.7000', '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7000', '', '43.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 (4050, 436, 5777, '374', 'Mycocort Cream 20g', 'standard', NULL, '24.0000', '24.0000', '2.0000', 1, '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 (4051, 436, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (4052, 437, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.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 (4053, 438, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.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 (4054, 439, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.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 (4055, 440, 6564, '1161', 'Proximexa 500mg Tablets', 'standard', NULL, '81.4000', '81.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '162.8000', '', '81.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 441, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (4057, 442, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (4058, 442, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (4059, 442, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.1000', '', '15.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '10.0000', 1, '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 (4062, 443, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (4063, 443, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (4064, 443, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (4065, 443, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '5.3200', '5.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '5.3200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.4800', '', '3.7900', 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 (4067, 443, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6800', '', '6.1700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2100', '', '12.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '5.6000', '5.6000', '1.0000', 1, '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 (4070, 443, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (4072, 443, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (4074, 443, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7000', '', '1.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 443, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (4076, 443, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.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 (4077, 443, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '6.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 (4078, 443, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '7.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 (4079, 443, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (4080, 444, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '3.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 (4081, 444, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (4082, 444, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (4083, 444, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '4.6200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 444, 6040, '637', 'Cold Naso', 'standard', NULL, '3.0500', '3.0500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2500', '', '3.0500', 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 (4085, 444, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2800', '', '3.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 444, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.9000', '', '22.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 (4087, 444, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (4088, 444, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '6.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 (4089, 444, 6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', 'standard', NULL, '13.1000', '13.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2000', '', '13.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 444, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.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 (4091, 444, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 445, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 5584, '181', 'Doxycycline 100mg Letap', 'standard', 0, '17.5000', '17.5000', '1.0000', 1, '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 (4094, 446, 6445, '1042', 'Vermox Suspension', 'standard', 0, '21.6000', '21.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '21.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 (4095, 446, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (4097, 446, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (4100, 446, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '8.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 446, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (4103, 446, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (4104, 447, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.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 (4105, 448, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6200', '', '9.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 448, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (4107, 448, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (4108, 449, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (4109, 449, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (4110, 450, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.2000', '', '3.9100', 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 (4111, 450, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '8.0400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 451, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 451, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (4114, 452, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (4115, 452, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 452, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 452, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (4118, 452, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (4119, 453, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 453, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 453, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 453, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 454, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.1400', '', '2.6900', 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 (4124, 455, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (4125, 456, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8600', '', '5.8600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 456, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (4127, 456, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 457, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8600', '', '5.8600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 458, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (4150, 458, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 458, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', 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 (4148, 458, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (4147, 458, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', 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 (4146, 458, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9900', '', '4.9900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 459, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (4136, 459, 6241, '838', 'Multivitamin Tablets 50x10 Ecl', 'standard', NULL, '14.9800', '14.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9800', '', '14.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 459, 6236, '833', 'B Complex Tablets 50X10 ECL', 'standard', NULL, '9.2000', '9.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '9.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 (4138, 459, 6522, '1119', 'Menopace Tabs UK', 'standard', NULL, '49.7000', '49.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.7000', '', '49.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 (4139, 459, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 460, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (4141, 461, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 462, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (4143, 462, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (4144, 463, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', 0, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 463, 6554, '1151', 'Man Up Capsules 60\'s', 'standard', 0, '130.0000', '130.0000', '1.0000', 1, '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 (4366, 464, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (4365, 464, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (4364, 464, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (4363, 464, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (4362, 464, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (4361, 464, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (4360, 464, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '2.8000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 464, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (4358, 464, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4500', '', '7.1500', 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 (4357, 464, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 464, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (4355, 464, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (4354, 464, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '5.9000', 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 (4353, 464, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '3.4200', 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 (4352, 464, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (4351, 464, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (4350, 464, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '23.5000', '23.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '23.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 (4349, 464, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7500', '', '5.9500', 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 (4348, 464, 5695, '292', 'Ketazol Cream 30g', 'standard', NULL, '7.6300', '7.6300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5200', '', '7.6300', 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 (4347, 464, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (4346, 464, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (4345, 464, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', 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 (4344, 464, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (4343, 464, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '5.3200', '5.3200', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.4800', '', '5.3200', 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 (4178, 465, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (4179, 465, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (4180, 465, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 465, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 465, 6220, '817', 'Dynewell Syrup 200ml', '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 (4183, 465, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (4184, 465, 5962, '559', 'Zinvite Syrup 200ml', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (4185, 465, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', NULL, '2.5300', '2.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5900', '', '2.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 465, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '4.7100', '4.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1300', '', '4.7100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 465, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6200', '', '9.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 465, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (4290, 466, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (4289, 466, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 5472, '69', 'Baseboom Gel', 'standard', 0, '4.5000', '4.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.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 (4285, 466, 5713, '310', 'Letacam (Piroxicam)', 'standard', 0, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.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 (4283, 466, 5957, '554', 'Zincovit Drops 15ml', 'standard', 0, '8.8200', '8.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8200', '', '8.8200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (4280, 466, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (4278, 466, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', 0, '17.0000', '17.0000', '1.0000', 1, '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 (4277, 466, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (4276, 466, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (4275, 466, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 5716, '313', 'Letaron 200ml Syrup', 'standard', 0, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.6000', 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 (4273, 466, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', 0, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', 0, '8.0400', '8.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '8.0400', 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 (4271, 466, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', 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 (4270, 466, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 5871, '468', 'Shalcip Tablets 500mg 10\'s (Ciprofloxacin)', 'standard', 0, '4.3000', '4.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.3000', '', '4.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6617, '1214', 'Babyvite 50ml Drops', 'standard', 0, '9.5000', '9.5000', '1.0000', 1, '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 (4214, 467, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4400', '', '5.8600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 468, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8500', '', '9.3700', 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 (4216, 468, 6211, '808', 'Contreg Syrup 30ml', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (4217, 469, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 469, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 470, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (4220, 471, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 471, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4222, 471, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (4223, 471, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6300', '', '12.2100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 471, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (4225, 471, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 471, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 471, 6607, '1204', 'Skyclav 625', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 471, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (4229, 471, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 472, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (4244, 473, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 474, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 466, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', NULL, '2.8900', '2.8900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7800', '', '2.8900', 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 (4292, 475, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6170, '767', 'Zerocid Plus Suspension 200ML', 'standard', 0, '10.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '10.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 (4294, 476, 6108, '705', 'Klire Antacid Suspension 125ml', 'standard', 0, '11.6000', '11.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', '11.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 (4295, 476, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6363, '960', 'Bells Vitamin C Syrup', 'standard', 0, '22.7800', '22.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.9000', '', '22.7800', 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 (4297, 476, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', 0, '2.8800', '2.8800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2800', '', '2.8800', 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 (4298, 476, 6098, '695', 'Klire Tablet 10\'s', 'standard', 0, '5.6000', '5.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '5.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 (4299, 476, 6670, '1267', 'Dicnac 75', 'standard', 0, '9.5000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '9.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 (4300, 476, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '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 (4301, 476, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', 0, '40.1400', '40.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4200', '', '40.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6882, '69020596', 'Clopidogrel Frelet 75', 'standard', 0, '25.0000', '25.0000', '3.0000', 1, '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 (4303, 476, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', 'standard', NULL, '90.4200', '90.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.4200', '', '90.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', 'standard', NULL, '26.1800', '26.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.9000', '', '26.1800', 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 (4305, 476, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '4.7100', '4.7100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2600', '', '4.7100', 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 (4306, 476, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (4307, 476, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '4.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 (4308, 476, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.2500', '', '8.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 (4309, 476, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.8800', '', '10.9800', 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 (4310, 476, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '3.4100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.3000', '', '16.0500', 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 (4312, 476, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (4313, 476, 6211, '808', 'Contreg Syrup 30ml', '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 (4314, 476, 6206, '803', 'Contreg Tablets 10x10', 'standard', NULL, '7.8400', '7.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5200', '', '7.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (4316, 476, 6531, '1128', 'Allacan 10 mg Tabs 30\'s (Cetirizine)', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (4317, 476, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '6.3800', 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 (4318, 476, 6005, '602', 'Sulphur Ointment 40g', 'standard', NULL, '9.3100', '9.3100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8600', '', '9.3100', 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 (4319, 476, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (4320, 476, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.5000', '', '31.1000', 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 (4321, 476, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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, 476, 5570, '167', 'Diclo Denk 100mg Tablet 10x10', 'standard', NULL, '148.0500', '148.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0500', '', '148.0500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 476, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 477, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '225.0000', '', '75.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 477, 6524, '1121', 'Perfectil Plus Caps', 'standard', NULL, '170.0000', '170.0000', '2.0000', 1, '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 (4327, 477, 5525, '122', 'Cipro-Denk 500mg Tablet', 'standard', NULL, '41.6800', '41.6800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6800', '', '41.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 (4328, 477, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.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 (4329, 477, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (4330, 477, 6585, '1182', 'Fleming 1000mg Tablets', 'standard', NULL, '46.9900', '46.9900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '281.9400', '', '46.9900', 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 (4331, 477, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.5000', '', '38.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 (4332, 477, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.5000', '', '3.7500', 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 (4333, 477, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.0000', '', '13.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 (4334, 477, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '344.0000', '', '17.2000', 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 (4335, 477, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '166.4000', '', '8.3200', 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 (4336, 477, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '22.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 (4337, 477, 6035, '632', 'Fasipro Tablets (1*10)', 'standard', NULL, '7.9900', '7.9900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.9000', '', '7.9900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 477, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '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 (4339, 477, 6188, '785', 'Polygel Suspension 200ml', '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 (4340, 477, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', NULL, '13.2000', '13.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '13.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 (4341, 477, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', NULL, '2.8900', '2.8900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6700', '', '2.8900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 477, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '3.0000', 1, '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 (4367, 464, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (4368, 478, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (4369, 479, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (4370, 480, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7600', '', '2.8800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (4375, 480, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (4377, 480, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.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 (4378, 480, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.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 (4380, 480, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (4381, 480, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2000', '', '2.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 (4382, 480, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (4383, 480, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (4384, 480, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (4385, 480, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '3.4200', 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 (4386, 480, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '6.0000', 1, '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 (4387, 480, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (4388, 480, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 480, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (4390, 480, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 481, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 481, 6241, '838', 'Multivitamin Tablets 50x10 Ecl', 'standard', NULL, '14.9800', '14.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9800', '', '14.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 481, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0600', '', '6.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 481, 6481, '1078', 'Ibuprofen Suspension 100ml/5ml', 'standard', NULL, '23.8000', '23.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.8000', '', '23.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 (4395, 482, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '43.9000', '43.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '219.5000', '', '43.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 (4396, 482, 6017, '614', 'Diclofenac 75mg Tablets Sandoz 20\'s', 'standard', 0, '15.0200', '15.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.1000', '', '15.0200', 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 (4397, 482, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', 0, '19.7300', '19.7300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.6500', '', '19.7300', 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 (4398, 482, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', 0, '2.5300', '2.5300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '2.5300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (4401, 482, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', 0, '17.0000', '17.0000', '1.0000', 1, '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 (4403, 482, 6115, '712', 'Gudapet Syrup 200ml', 'standard', 0, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (4404, 482, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', 0, '7.8500', '7.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2500', '', '7.8500', 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 (4405, 482, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', 0, '3.9000', '3.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '3.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 (4406, 482, 5624, '221', 'Foligrow Syrup 200ml', 'standard', 0, '20.1000', '20.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '20.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '66.5300', '66.5300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.6500', '', '66.5300', 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 (4408, 482, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (4409, 482, 5532, '129', 'Coartem 80/480 6s', 'standard', 0, '60.7800', '60.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '303.9000', '', '60.7800', 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 (4410, 482, 6663, '1260', 'Cotton Wool 25gm', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '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 (4411, 482, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', 0, '2.9800', '2.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8800', '', '2.9800', 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 (4412, 482, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', 0, '5.8000', '5.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.8000', '', '5.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 (4413, 482, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', 0, '8.2000', '8.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '8.2000', 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 (4414, 482, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '8.0400', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (4416, 482, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (4418, 482, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '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 (4419, 482, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '3.4200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 482, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (4421, 482, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '11.8000', '11.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.8000', '', '11.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 (4422, 483, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 483, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (4424, 483, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (4425, 483, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (4426, 483, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '29.0000', '29.0000', '2.0000', 1, '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 (4427, 483, 6807, '1404', 'Folic Acid 5mg Crescent', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '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 (4428, 483, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (4429, 483, 6453, '1050', 'Primolut N 5mg 30\'s', 'standard', NULL, '50.6000', '50.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '50.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 (4444, 428, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (4445, 484, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (4446, 484, 6708, '1305', 'Loratadine 10mg Tablets 30\'s', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (4447, 484, 6620, '1217', 'Lumetrust 140/360mg Tablets', 'standard', NULL, '7.5000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '7.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 (4448, 484, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '14.9000', '14.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '14.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 (4449, 484, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (4450, 484, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (4451, 484, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', 'standard', NULL, '6.3500', '6.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.7500', '', '6.3500', 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 (4452, 484, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', 'standard', NULL, '4.5000', '4.5000', '6.0000', 1, '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 (4453, 484, 6740, '1337', 'Nurofen Syrup Ibuprofen 100ml Strawberry', 'standard', NULL, '36.3000', '36.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.3000', '', '36.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 (4454, 484, 6730, '1327', 'Nurofen Syrup Ibuprofen 100ml Orange', 'standard', NULL, '27.3000', '27.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '27.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 (4455, 484, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '12.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 484, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (4457, 484, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (4458, 484, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (4459, 484, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (4460, 484, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (4461, 484, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (4462, 484, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '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 (4463, 484, 6100, '697', 'Haem Up Syrup 200ml', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (4464, 484, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '16.9000', '16.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.5000', '', '16.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 (4465, 484, 5723, '320', 'Bells Liquid Parafin BP 100ml', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '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 (4466, 484, 5510, '107', 'Castor Oil 70ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (4467, 484, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '14.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 (4468, 484, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1000', '', '6.0200', 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 (4469, 484, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (4470, 484, 6821, '1418', 'Bazuka Condoms', 'standard', NULL, '65.0000', '65.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '325.0000', '', '65.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 (4471, 484, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (4472, 485, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (4473, 486, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '-6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-33.0000', '', '5.5000', 4430, 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 (4474, 486, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '-3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-39.6000', '', '13.2000', 4431, 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 (4475, 486, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-40.0000', '', '40.0000', 4432, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-20.0000', '', '4.0000', 4433, 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 (4477, 486, 5771, '368', 'Magnesium Trisilicate (MMT)', 'standard', NULL, '3.5000', '3.5000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-17.5000', '', '3.5000', 4434, 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 (4478, 486, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '-3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-31.5000', '', '10.5000', 4435, 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 (4479, 486, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '-4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-52.8000', '', '13.2000', 4436, 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 (4480, 486, 6059, '656', 'Mentat Syrup', 'standard', NULL, '25.3500', '25.3500', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-25.3500', '', '25.3500', 4437, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-29.2000', '', '29.2000', 4438, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-45.5000', '', '45.5000', 4439, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '17.6000', 4440, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-39.4600', '', '19.7300', 4441, 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 (4485, 486, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '-2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-19.0000', '', '9.5000', 4442, 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 (4486, 486, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-40.0000', '', '40.0000', 4443, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 486, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '-1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-22.0000', '', '22.0000', 4444, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 487, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (4489, 487, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (4490, 488, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (4491, 488, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.9000', '', '26.1800', 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 (4493, 488, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (4494, 488, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (4495, 488, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (4496, 488, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (4497, 488, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.3000', '', '18.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 6859, '1456', 'Klire Odim Capsules', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (4499, 488, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (4500, 488, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (4501, 488, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (4502, 488, 6183, '780', 'Leopard Balm 30g', 'standard', NULL, '5.7500', '5.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2500', '', '5.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (4504, 488, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '21.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.6000', '', '7.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 (4507, 488, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (4508, 488, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '7.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 (4509, 488, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 488, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (4548, 489, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (4547, 489, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (4545, 489, 6682, '1279', 'Goldy Forte DS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (4544, 489, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', 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 (4543, 489, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.7000', 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 (4541, 489, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '0.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '1.9000', 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 (4539, 489, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (4538, 489, 5871, '468', 'Shalcip Tablets 500mg 10\'s (Ciprofloxacin)', 'standard', NULL, '4.3000', '4.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.3000', '', '4.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (4536, 489, 5753, '350', 'Malin Adult', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (4535, 489, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.2000', 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 (4534, 489, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', 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 (4528, 490, 6465, '1062', 'Mist FAC (Ferric citrate) 200ml', '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 (4529, 490, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 490, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 490, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (4532, 490, 6697, '1294', 'Biva Plus Capsules', 'standard', NULL, '10.1000', '10.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.1000', '', '10.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 490, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (4550, 489, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 489, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 491, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 492, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 493, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 494, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 495, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (4558, 496, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (4559, 497, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 498, 5947, '544', 'Wormbase 400mg Tablets', 'standard', 0, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (4561, 498, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', 0, '55.0000', '55.0000', '1.0000', 1, '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 (4562, 499, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (4563, 500, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (4567, 502, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7800', '', '10.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (4570, 502, 5840, '437', 'Prostacure X', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (4571, 502, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (4573, 503, 6021, '618', 'Rizole Suspension 100ml', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.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 (4574, 503, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (4575, 503, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (4576, 504, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.5000', '', '15.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 (4577, 504, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.9000', '', '5.8600', 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 (4578, 504, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.0000', 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 (4579, 504, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (4580, 505, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.1000', '', '18.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 505, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.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 (4582, 505, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (4583, 505, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '0.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 (4584, 505, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (4585, 505, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (4586, 505, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (4904, 523, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 506, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (4607, 507, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.8000', 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 (4606, 507, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '0.6000', 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 (4605, 507, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', 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 (4604, 507, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '4.4000', 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 (4593, 508, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '2.0000', 1, '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 (4594, 508, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '5.8600', '5.8600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.1600', '', '5.8600', 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 (4595, 508, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 508, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 508, 5689, '286', 'Joy Ointment', 'standard', 0, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (4598, 508, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.2000', '', '10.9000', 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 (4599, 508, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (4600, 508, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '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 (4601, 508, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '3.0000', 1, '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 (4602, 508, 6386, '983', 'Paingay Capsules', 'standard', 0, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (4603, 508, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1215.6000', '', '60.7800', 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 (5975, 509, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '33.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 (5976, 509, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.7000', '', '11.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 (5977, 509, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '12.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 (5978, 509, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '16.0500', 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 (5979, 509, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '465.0000', '', '15.5000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '15.0000', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '15.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 (5981, 509, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30\'s', 'standard', NULL, '63.0000', '63.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '315.0000', '', '63.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 (5982, 509, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '545.0000', '', '10.9000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '270.0000', '', '9.0000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '219.0000', '', '7.3000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.5000', '', '11.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 (5986, 509, 6014, '611', 'Coartem Dispersible 20/120mg Tablets 6\'s', 'standard', NULL, '10.6800', '10.6800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.8000', '', '10.6800', 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 (5987, 509, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '163.7000', '', '16.3700', 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 (5988, 509, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 509, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.0000', '', '7.1000', 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 (5991, 509, 6271, '868', 'Ciprinol 500mg Tablets 10s', 'standard', NULL, '62.0000', '62.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '620.0000', '', '62.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 (5992, 509, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '930.0000', '', '62.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 (5993, 509, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '455.6000', '', '22.7800', 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 (5994, 509, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (5995, 509, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '432.0000', '', '21.6000', 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 (5996, 509, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '439.0000', '', '43.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 (5997, 509, 6529, '1126', 'Grison Oral Suspension 125mg/5ml Griseofulvin', 'standard', NULL, '12.5000', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '12.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 (4702, 511, 5586, '183', 'Dragon Spray', 'standard', 0, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (4635, 510, 6634, '1231', 'Bells Olive Oil 70ml', 'standard', NULL, '13.4000', '13.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '13.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 510, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.6000', '', '186.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 (4637, 510, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '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 (4638, 510, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (4639, 510, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (4640, 510, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (4641, 510, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 510, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 510, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5998, 509, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '187.4000', '', '9.3700', 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 (5999, 509, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '5.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 (6000, 509, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '40.1400', '40.1400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '401.4000', '', '40.1400', 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 (6067, 373, 6887, '5738767', 'Actilife Flex-14 (Glucosamine Chondroitin)', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (4703, 511, 5667, '264', 'Honeykof Herbal Cough Syrup 100ml', 'standard', 0, '11.8000', '11.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '11.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 (4704, 511, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '2.0000', 1, '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 (4705, 511, 6354, '951', 'Parafenac', 'standard', 0, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (4706, 511, 6651, '1248', 'Kalamina Lotion 120ml', 'standard', 0, '7.4400', '7.4400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '7.4400', 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 (4707, 511, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', 'standard', 0, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (4708, 511, 6706, '1303', 'Sildenafil 50mg Tablets 8\'s', 'standard', 0, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (4709, 511, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0600', '', '15.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 511, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 512, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 512, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 513, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 514, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '3.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (4716, 515, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (4717, 515, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9400', '', '5.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (4719, 515, 6059, '656', 'Mentat Syrup', 'standard', NULL, '25.3500', '25.3500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3500', '', '25.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 (4720, 515, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4721, 515, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4722, 515, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6300', '', '12.2100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5500', '', '12.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '3.0000', 1, '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 (4727, 515, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (4728, 515, 6799, '1396', 'H/Aid Vitamin E 200iu Caps 60\'s', 'standard', NULL, '78.3000', '78.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.3000', '', '78.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 (4729, 515, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 516, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 516, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '2.0000', 1, '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 (4732, 516, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 6678, '1275', 'Azirocin Suspension', 'standard', NULL, '14.3000', '14.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '14.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 517, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 517, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 518, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (4765, 518, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', NULL, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 518, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '1.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 518, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (4768, 518, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 519, 6892, '43611248', 'Gentamycin 80mg/2ml Injection', 'standard', NULL, '12.4000', '12.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '12.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 519, 6851, '1448', 'Cotton 500g', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (4771, 519, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '200.0000', '', '50.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 (4772, 519, 6536, '1133', 'Diclofenac Inj 75mg/3ml 10\'', 'standard', NULL, '6.8000', '6.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8000', '', '6.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 (5043, 520, 6633, '1230', 'Vit Bco Strong 30\'s Krka', 'standard', NULL, '32.0000', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '32.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 (5042, 520, 6631, '1228', 'Diphex Bronchodilator Cough Syrup 100ml', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (5041, 520, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', 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 (5040, 520, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.2500', '', '13.2500', 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 (5039, 520, 6480, '1077', 'Furosemide 20mg Tablets 28\'s', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (5038, 520, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '43.9000', '43.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '219.5000', '', '43.9000', 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 (5037, 520, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '5.3200', '5.3200', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '159.6000', '', '5.3200', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 6423, '1020', 'Diphex Junior Cough Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.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 (5035, 520, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '2.5000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', 0, '26.9000', '26.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '26.9000', 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 (5033, 520, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', '14.6000', 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 (5032, 520, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (5031, 520, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', 'standard', 0, '12.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '12.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 (5022, 520, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (5023, 520, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (5024, 520, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30\'s', 'standard', 0, '63.0000', '63.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '63.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 (5025, 520, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '10.5000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 5898, '495', 'Taabea Herbal Mixture', 'standard', 0, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (5027, 520, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.7000', 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 (5028, 520, 5975, '572', 'Durol Tonic 200ml', 'standard', 0, '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', '12.2100', 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 (5029, 520, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', 0, '22.9100', '22.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.5500', '', '22.9100', 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 (5030, 520, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '8.3200', '8.3200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.8000', '', '8.3200', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', 0, '8.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '8.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 (5017, 520, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '3.3000', 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 (5018, 520, 5557, '154', 'Dalacin C 300mg Capsules 16\'s', 'standard', NULL, '175.6100', '175.6100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '526.8300', '', '175.6100', 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 (5019, 520, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (5020, 520, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (5021, 520, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (4804, 521, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (4805, 521, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (4806, 521, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.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 (4958, 522, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5300', '', '15.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9400', '', '5.9800', 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 (4956, 522, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (4955, 522, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7600', '', '6.3800', 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 (4954, 522, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', 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 (4953, 522, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.4000', '', '3.2000', 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 (4952, 522, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (4951, 522, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '14.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 (4950, 522, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0400', '', '6.0200', 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 (4949, 522, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.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 (4948, 522, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7600', '', '2.8800', 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 (4947, 522, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.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 (4946, 522, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (4945, 522, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.7000', '', '8.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (4943, 522, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (4942, 522, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (4941, 522, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.4000', '', '6.2000', 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 (4940, 522, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (4939, 522, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.7000', 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 (4938, 522, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '23.7000', '23.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '23.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (4936, 522, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '9.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 (4935, 522, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', 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 (4934, 522, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (4932, 522, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.2000', 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 (4931, 522, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', 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 (4930, 522, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0500', '', '16.0500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1500', '', '7.1500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 522, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (4926, 522, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8200', '', '3.4100', 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 (4905, 523, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (4906, 523, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (4907, 523, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (4908, 523, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.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 (4910, 523, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (4911, 523, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (4912, 523, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (4913, 523, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (4914, 523, 5634, '231', 'Garlic Pearls Osons', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (4916, 523, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (4918, 523, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (4919, 523, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (4920, 523, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (4922, 523, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (4923, 523, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2100', '', '12.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0500', '', '16.0500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 524, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (4960, 522, 6847, '1444', 'Kelcuf Adult Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (4961, 522, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (4962, 525, 6419, '1016', 'Menthox Child Cough Syrup 125ml', 'standard', NULL, '4.6700', '4.6700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0100', '', '4.6700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 525, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (4964, 526, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (4965, 526, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (4966, 527, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2800', '', '8.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.3200', '', '8.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (4969, 529, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (4971, 529, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (4972, 529, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (4973, 529, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '16.0500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (4975, 529, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (4976, 529, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (4977, 529, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8400', '', '12.2100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 530, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 531, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 532, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (4982, 532, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (4983, 532, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.9000', '', '22.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 (4984, 533, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (4985, 533, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (4986, 533, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (4987, 534, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '432.0000', '', '18.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 (4988, 535, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 536, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (4990, 537, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '1.0000', 1, '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 (4991, 538, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 539, 6893, '233', 'Impressor Capsules', 'standard', NULL, '53.0000', '53.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '530.0000', '', '53.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 (4993, 540, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (4994, 540, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.1000', '', '4.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 541, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 541, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 542, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '324.0000', '', '10.8000', 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 (5103, 543, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (5104, 543, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (5105, 543, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (5106, 543, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (5107, 543, 6010, '607', 'Rooter Tytonic', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 543, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (5109, 543, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (5110, 543, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.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 (5111, 543, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (5112, 543, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '3.1800', 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 (5113, 543, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '50.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 543, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (5101, 543, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (5102, 543, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', 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 (5013, 544, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '9.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 545, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (5015, 545, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', 0, '8.9000', '8.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.5000', '', '8.9000', 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 (5045, 520, 6677, '1274', 'Azirocin 250mg Capules', 'standard', 0, '10.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '10.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 (5046, 520, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '8.2500', 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 (5973, 509, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '330.0000', '', '5.5000', NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 546, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '1.0000', 1, '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 (5076, 547, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (5077, 548, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 548, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5080, 549, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (5082, 550, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (5083, 551, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (5084, 551, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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 (5085, 551, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 551, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (5087, 551, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (5088, 551, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '8.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 (5089, 551, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (5090, 551, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (5091, 551, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (5092, 551, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (5093, 551, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (5094, 551, 6034, '631', 'Deep Heat Spray 150ml', 'standard', NULL, '41.8000', '41.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '41.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 (5095, 551, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 551, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '28.6000', '28.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '28.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 (5097, 551, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.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 (5098, 551, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '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 (5099, 551, 5513, '110', 'Celebrex Celecoxib 200mg (pfizer)', 'standard', NULL, '94.0200', '94.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0200', '', '94.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 543, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (5115, 552, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 553, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', 0, '9.2000', '9.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '9.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 (10852, 554, 6643, '1240', 'Metroz Tablets 20\'s', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.9000', 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 (10846, 554, 6402, '999', 'Aciclovir 200mg Tablets 25\'s', 'standard', NULL, '18.9800', '18.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.9600', '', '18.9800', 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 (10847, 554, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '6.3800', 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 (10848, 554, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '21.6000', 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 (10849, 554, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (10850, 554, 6486, '1083', 'Contiflo XL 400mcg Capsules 30\'s', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (10851, 554, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8500', '', '9.3700', 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 (10839, 554, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10840, 554, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2500', '', '6.8500', 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 (10841, 554, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (10842, 554, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (10843, 554, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (10844, 554, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.3400', '', '22.7800', 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 (10845, 554, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.6400', '', '37.3200', 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 (10817, 554, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10818, 554, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10819, 554, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.3400', '', '60.7800', 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 (10820, 554, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '8.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 (10821, 554, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.4000', 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 (10822, 554, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', 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 (10823, 554, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10824, 554, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', 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 (10825, 554, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (10826, 554, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (10827, 554, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', '7.3000', 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 (10828, 554, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (10829, 554, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '3.4200', 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 (10830, 554, 5990, '587', 'Whitfield ointment', 'standard', NULL, '8.6500', '8.6500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2500', '', '8.6500', 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 (10831, 554, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', 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 (10832, 554, 6014, '611', 'Coartem Dispersible 20/120mg Tablets 6\'s', 'standard', NULL, '10.6800', '10.6800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3600', '', '10.6800', 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 (10833, 554, 6084, '681', 'Amaryl 2mg Tablet 30\'s', 'standard', NULL, '72.8000', '72.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.8000', '', '72.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10834, 554, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.8000', 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 (10835, 554, 6180, '777', 'Ketazol Shampoo 100ml', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10836, 554, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (10837, 554, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (10838, 554, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', 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 (5155, 555, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 556, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (5157, 557, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (5158, 557, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3000', '', '11.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 (5159, 557, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (5160, 558, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 559, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (6689, 560, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '3.2000', 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 (6687, 560, 6027, '624', 'Clopimol Tablet', 'standard', NULL, '17.2600', '17.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2600', '', '17.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 560, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '26.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 (6690, 560, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '9.9600', '9.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9200', '', '9.9600', 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 (6691, 717, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (5168, 561, 5559, '156', 'Danrub Ointment 40g', 'standard', 0, '9.9300', '9.9300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.6500', '', '9.9300', 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 (5169, 561, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (5170, 561, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (5171, 561, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5600', '', '8.1400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (5173, 561, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '10.5500', '10.5500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.5000', '', '10.5500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 5993, '590', 'Calamine ointment 40mg', 'standard', 0, '9.2200', '9.2200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.1000', '', '9.2200', 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 (5175, 561, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (5177, 561, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (5178, 561, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (5179, 561, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '8.3200', '8.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.2000', '', '8.3200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', 0, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', 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 (5181, 561, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (5182, 561, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '10.0000', 1, '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 (5183, 561, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (5184, 561, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', 0, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (5185, 561, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', 0, '60.3000', '60.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.6000', '', '60.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 (5186, 561, 6384, '981', 'Gebexime Suspension 50ml', 'standard', 0, '9.6600', '9.6600', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.2800', '', '9.6600', 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 (5187, 561, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', 0, '5.3200', '5.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '5.3200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', 0, '15.0000', '15.0000', '3.0000', 1, '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 (5190, 561, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '43.9000', '43.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.7000', '', '43.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 'standard', 0, '15.0000', '15.0000', '5.0000', 1, '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 (5192, 561, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', 0, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', 0, '4.0200', '4.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '4.0200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 561, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '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 (5195, 561, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', 0, '7.0000', '7.0000', '3.0000', 1, '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 (5196, 562, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (5197, 562, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.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 (5198, 562, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.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 (5200, 562, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (5202, 562, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (5203, 562, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.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 (5204, 562, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.7500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.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 (5206, 562, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (5208, 562, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (5212, 562, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2600', '', '3.4200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 562, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 563, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (5216, 563, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8500', '', '15.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 563, 6830, '1427', 'Ganaman Capsules', 'standard', NULL, '29.7000', '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '29.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 (5218, 563, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (5219, 563, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '6.0000', 1, '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 (5220, 563, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.8000', '', '5.9500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 564, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (5274, 564, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 564, 6269, '866', 'Glucophage 500mg Tablets 30s', 'standard', NULL, '23.9000', '23.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8000', '', '23.9000', 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 (5276, 564, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.2000', 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 (5277, 564, 6444, '1041', 'Stugeron Tablets 50\'s', 'standard', NULL, '25.8000', '25.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '25.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 564, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.9000', 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 (5279, 564, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '13.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 (5280, 564, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', 'standard', NULL, '15.8000', '15.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2000', '', '15.8000', 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 (5281, 564, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (5282, 564, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.3000', 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 (5261, 564, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.9000', '', '11.3000', 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 (5262, 564, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '8.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 (5263, 564, 5634, '231', 'Garlic Pearls Osons', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (5264, 564, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (5265, 564, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (5266, 564, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', '63.2200', 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 (5267, 564, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (5268, 564, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (5269, 564, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (5270, 564, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (5271, 564, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (5272, 564, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.8000', 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 (5244, 565, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (5245, 565, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 566, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', 0, '12.5000', '12.5000', '1.0000', 1, '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 (5247, 566, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', 0, '14.5000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '14.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 (5248, 567, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.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 (5249, 567, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (5250, 567, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 567, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.7000', '', '7.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 (5252, 567, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 567, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.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 (5254, 567, 6140, '737', 'Fabrin Tablets 50X4', 'standard', NULL, '30.8000', '30.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '30.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 (6686, 560, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.5000', '', '20.1000', 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 (5283, 564, 6015, '612', 'Sirdalud 2mg Tablets 30\'s', 'standard', NULL, '43.7000', '43.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '43.7000', 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 (5284, 568, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6400', '', '8.8200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 6689, '1286', 'Chloramphenicol Eye Ointment 0.01 5g', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (5286, 568, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (5287, 568, 5545, '142', 'Cororange Drops', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (5288, 569, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 570, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (5290, 571, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (5291, 572, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (5292, 573, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5293, 573, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (5294, 573, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (5295, 573, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (5296, 573, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (5297, 573, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5600', '', '66.5200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', NULL, '41.6300', '41.6300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.2600', '', '41.6300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (5301, 573, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (5302, 573, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.4000', '', '16.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7500', '', '5.9500', 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 (5304, 573, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '2.9800', 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 (5305, 573, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.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 (5306, 573, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7500', '', '4.3500', 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 (5307, 573, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.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 (5308, 573, 6344, '941', 'Perfectil platinum 60\'s', 'standard', NULL, '220.0000', '220.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '220.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (5310, 573, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '1.0000', 1, '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 (5311, 573, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (5312, 573, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (5313, 573, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (5314, 573, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (5315, 573, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (5316, 573, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '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 (5317, 573, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (5318, 573, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (5319, 573, 6507, '1104', 'Borges Olive Oil 500ml', 'standard', NULL, '44.0000', '44.0000', '2.0000', 1, '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 (5320, 573, 6634, '1231', 'Bells Olive Oil 70ml', 'standard', NULL, '13.4000', '13.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '13.4000', 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 (5321, 574, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '135.0000', '', '13.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 (5323, 575, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (5324, 575, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.6000', '', '9.2000', 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 (5325, 575, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.4000', '', '10.8000', 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 (5326, 575, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.2000', '15.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '15.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 (5327, 575, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (5328, 575, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (5329, 575, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6881, '54874377', 'Dacillin (clindamycin 300mg)', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '16.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 (5332, 575, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.6000', '', '22.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.9200', '', '19.7300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6057, '654', 'Liv 52 Tablets', 'standard', NULL, '33.2100', '33.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2100', '', '33.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 575, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (5336, 575, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '28.6000', '28.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.4000', '', '28.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 (5337, 576, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (5338, 576, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5339, 576, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0600', '', '16.0600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (5341, 577, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '10.4000', 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 (5342, 577, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.3000', '', '16.0600', 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 (5343, 577, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '18.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 (5344, 577, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (5345, 578, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5346, 578, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (5347, 579, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7800', '', '10.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (5350, 579, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (5354, 582, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5355, 583, 6450, '1047', 'Diagellates Elixir 500ml', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (5356, 584, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 585, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5358, 585, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 586, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '6.0000', 1, '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 (5360, 586, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '3.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 586, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (5362, 586, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 586, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9000', '', '4.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 (5364, 587, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '2.0000', 1, '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 (5424, 588, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '4.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '8.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 (5413, 588, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (5415, 588, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (5416, 588, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.8000', 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 (5417, 588, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (5419, 588, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (5420, 588, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (5421, 588, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (5422, 588, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (5423, 588, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', NULL, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.9000', 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 (5410, 588, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (5409, 588, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (5407, 588, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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, 588, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 589, 6032, '629', 'Gebedol Forte', 'standard', 0, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 589, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '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 (5386, 589, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (5387, 589, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 589, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (5389, 589, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (5390, 589, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (5391, 589, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '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 (5392, 589, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 589, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (5394, 589, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (5395, 589, 6718, '1315', 'Canderel Tablets 105\'s', 'standard', NULL, '12.9000', '12.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '12.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 (5502, 590, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.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 (5500, 590, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '15.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '15.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 (5501, 590, 6731, '1328', 'Corsodyl Mint 500ml', 'standard', NULL, '43.1000', '43.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.1000', '', '43.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 590, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.7000', 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 (5493, 590, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (5494, 590, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (5495, 590, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5496, 590, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (5497, 590, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.6500', '', '66.5300', 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 (5498, 590, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (5425, 591, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '26.0000', '26.0000', '2.0000', 1, '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 (5427, 591, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '7.9000', '7.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '7.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.1100', '', '16.3700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (5431, 591, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (5432, 591, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (5433, 591, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (5434, 591, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '4.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 (5435, 591, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (5437, 591, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.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 (5438, 591, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (5439, 591, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (5440, 591, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5446, 591, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5447, 591, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '1.0000', 1, '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 (5448, 591, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', NULL, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (5450, 591, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (5451, 591, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (5452, 591, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (5453, 591, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (5454, 591, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (5455, 591, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (5456, 591, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.3200', '', '9.6600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6127, '724', 'X\'Zole F Suspension', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (5458, 591, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '29.0000', '29.0000', '1.0000', 1, '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 (5459, 591, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (5460, 591, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (5461, 591, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (5463, 592, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '18.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 (5464, 592, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 5562, '159', 'Deep Freez Spray 150ml', 'standard', NULL, '47.8000', '47.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8000', '', '47.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 (5466, 592, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '2.0000', 1, '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 (5470, 592, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (5471, 592, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (5473, 592, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (5474, 592, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5475, 592, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (5476, 592, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (5478, 592, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.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 (5479, 592, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (5481, 592, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (5483, 592, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8400', '', '17.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.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 (5486, 592, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (5487, 593, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5488, 593, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (5489, 593, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (5490, 593, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (5491, 593, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (5492, 593, 6332, '929', 'Adom Koo Capsules', '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 (5503, 590, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '18.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 (5504, 590, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '9.1000', 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 (5505, 594, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (5506, 594, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '4.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 (5507, 594, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.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 (5508, 594, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.6000', '', '27.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 (5509, 594, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 594, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 594, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (5512, 594, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (5513, 594, 6430, '1027', 'Onidoll Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (5514, 594, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.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 (5515, 594, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (5516, 594, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '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 (5517, 594, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 594, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (5519, 594, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '1.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 (5520, 594, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 594, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.4600', '', '15.8200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 594, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '10.0000', 1, '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 (5523, 594, 6846, '1443', 'Haemo Forte Syrup 100ml', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '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 (5524, 594, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.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 (5525, 594, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (5526, 594, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '5.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 (5527, 595, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 5716, '313', 'Letaron 200ml Syrup', 'standard', 0, '3.6000', '3.6000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '3.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 (5530, 595, 5906, '503', 'Tetracycline Capsules', 'standard', 0, '15.8200', '15.8200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6400', '', '15.8200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 5956, '553', 'Zincofer Syrup 200ml', 'standard', 0, '17.8400', '17.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6800', '', '17.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', 0, '8.3000', '8.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '8.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 (5533, 595, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', 0, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (5534, 595, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', 0, '16.3700', '16.3700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3700', '', '16.3700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6096, '693', 'Mist Sennaco ROKMER', 'standard', 0, '4.0000', '4.0000', '4.0000', 1, '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 (5537, 595, 6147, '744', 'Cafalgin Caplets 25x10', 'standard', 0, '35.2000', '35.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '35.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 (5538, 595, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', 0, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (5539, 595, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', 0, '6.6000', '6.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '6.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 (5540, 595, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', 0, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', 0, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', 0, '1.9000', '1.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '1.9000', 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 (5544, 595, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', 0, '0.6000', '0.6000', '20.0000', 1, '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 (5545, 595, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.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 (5547, 595, 6361, '958', 'Basecold Tablets (50x4)', 'standard', 0, '49.5000', '49.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '49.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', 0, '30.0000', '30.0000', '1.0000', 1, '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 (5549, 595, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', 0, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.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 (5550, 595, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', 0, '4.0000', '4.0000', '3.0000', 1, '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 (5552, 595, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', 0, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', 0, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (5554, 595, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', 0, '3.1800', '3.1800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7200', '', '3.1800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6607, '1204', 'Skyclav 625', 'standard', 0, '16.0000', '16.0000', '2.0000', 1, '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 (5556, 595, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 595, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (5558, 595, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (5559, 595, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (5560, 595, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '2.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 596, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '7.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 (5562, 596, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '3.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 (5563, 596, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (5564, 596, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (5565, 596, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (5566, 596, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (5567, 596, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '4.0200', 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 (5568, 596, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '23.1000', 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 (5569, 596, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '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 (5654, 597, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (5655, 597, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 597, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '8.0400', 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 (5649, 597, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.2000', 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 (5650, 597, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.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 (5651, 597, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 597, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', 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 (5653, 597, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 599, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 599, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9800', '', '10.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 599, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5500', '', '10.5500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 600, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '4.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 (5583, 601, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.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 (5586, 601, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (5587, 601, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (5589, 601, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (5590, 601, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (5592, 601, 6092, '689', 'Ferrolex Syrup 250ml', 'standard', NULL, '14.9000', '14.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.7000', '', '14.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (5595, 601, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (5596, 601, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', 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 (5597, 601, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (5598, 601, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (5599, 601, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.7800', '', '60.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 601, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.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 (5601, 601, 5856, '453', 'Rubbing Alcohol 500ml', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (5602, 602, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 602, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5604, 603, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.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 (5605, 603, 6361, '958', 'Basecold Tablets (50x4)', '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 (5606, 603, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 603, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 603, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (5609, 603, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 603, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 604, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9000', '', '20.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 604, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 605, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (5616, 606, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 6350, '947', 'Ronfit Cold P Junior Syrup', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (5618, 606, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (5619, 606, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 6021, '618', 'Rizole Suspension 100ml', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (5621, 606, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (5622, 606, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (5623, 606, 6332, '929', 'Adom Koo Capsules', '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 (5624, 606, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (5625, 606, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7500', '', '4.3500', 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 (5626, 607, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 607, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 607, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 607, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (5630, 607, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (5631, 607, 5932, '529', 'Viscof Plain 100ml Syrup', 'standard', NULL, '11.4000', '11.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '11.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 607, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '1.8000', 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 (5633, 607, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '1.9000', 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 (5634, 607, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 607, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (5636, 607, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (5637, 607, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (5638, 608, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (5639, 609, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5500', '', '10.5500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7000', '', '10.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 (5641, 609, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (5642, 609, 6220, '817', 'Dynewell Syrup 200ml', '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 (5643, 609, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '10.4500', '10.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4500', '', '10.4500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.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 (5648, 610, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 611, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '15.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 (5724, 611, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '40.1400', '40.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.2800', '', '40.1400', 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 (5719, 611, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (5720, 611, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '5.5000', 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 (5721, 611, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (5722, 611, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '8.2500', 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 (5723, 611, 6747, '1344', 'Neoferon Syrup 200ml', 'standard', NULL, '12.9800', '12.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.9000', '', '12.9800', 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 (5718, 611, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', NULL, '120.3600', '120.3600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.3600', '', '120.3600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 611, 5507, '104', 'Carbozap Syrup Adult 100ml FG', 'standard', NULL, '4.9900', '4.9900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9400', '', '4.9900', 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 (5701, 611, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (5702, 611, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.4000', '', '8.8000', 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 (5703, 611, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.7600', '', '14.9600', 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 (5704, 611, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.5000', '', '5.9500', 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 (5705, 611, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '18.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 (5706, 611, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', NULL, '15.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '15.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 (5707, 611, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.9500', '', '36.9900', 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 (5708, 611, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (5709, 611, 5932, '529', 'Viscof Plain 100ml Syrup', 'standard', NULL, '11.4000', '11.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4000', '', '11.4000', 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 (5710, 611, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.1000', '', '12.8500', 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 (5711, 611, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.1000', '', '37.7000', 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 (5712, 611, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 611, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0400', '', '12.8400', 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 (5714, 611, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '15.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 (5715, 611, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '219.5000', '', '43.9000', 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 (5716, 611, 6460, '1057', 'Calamine Lotion 100ml Mal-Titi', 'standard', NULL, '6.0000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '6.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 (5717, 611, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.5000', '', '13.2500', 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 (5684, 612, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (5685, 613, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (5686, 613, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (5687, 613, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (5688, 613, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 613, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 613, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.3000', '', '7.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 (5691, 613, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 614, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '28.6000', '28.6000', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '486.2000', '', '28.6000', NULL, 1, 'pc', '17.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 614, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '607.8000', '', '60.7800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 614, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '3.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 (5695, 614, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.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 (5696, 614, 6139, '736', 'Amino pep Syrup 200ml', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 616, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (5699, 617, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (5726, 611, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (5727, 618, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5728, 618, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5729, 618, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (5731, 618, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (5732, 618, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (5733, 618, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (5736, 618, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 619, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.4000', '', '4.4500', 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 (5738, 620, 5947, '544', 'Wormbase 400mg Tablets', 'standard', 0, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5739, 620, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 621, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', 0, '18.0000', '18.0000', '3.0000', 1, '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 (5741, 621, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '14.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 (5742, 622, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 622, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (5822, 623, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '5.3000', 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 (5821, 623, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', 0, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (5819, 623, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '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 (5818, 623, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', 0, '4.4500', '4.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4500', '', '4.4500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.5000', '1.5000', '15.0000', 1, '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 (5816, 623, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (5815, 623, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', 0, '3.9000', '3.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '3.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 6516, '1113', 'Methyl Salicylate Ointment 40g', 'standard', NULL, '8.5500', '8.5500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6500', '', '8.5500', 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 (5813, 623, 6430, '1027', 'Onidoll Tablets', 'standard', 0, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.6000', 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 (5812, 623, 6425, '1022', 'Zinc Oxide Ointment 40g', 'standard', NULL, '8.5500', '8.5500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6500', '', '8.5500', 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 (5811, 623, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', 0, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (5810, 623, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (5809, 623, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', 0, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.9000', 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 (5808, 623, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', 0, '2.8800', '2.8800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '2.8800', 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 (5807, 623, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', 0, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', 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 (5806, 623, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', 0, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', 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 (5805, 623, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 6021, '618', 'Rizole Suspension 100ml', 'standard', NULL, '3.6000', '3.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '3.6000', 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 (5803, 623, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', 0, '3.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.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 (5795, 623, 5509, '106', 'Cartef Suspension', 'standard', 0, '6.8800', '6.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6400', '', '6.8800', 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 (5796, 623, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', 0, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.3000', 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 (5797, 623, 5603, '200', 'Etisala Capsules', 'standard', 0, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.2000', 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 (5799, 623, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', 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 (5800, 623, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 623, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (5802, 623, 5994, '591', 'Alugel Tablets 50\'s', 'standard', 0, '33.6000', '33.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '33.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 (5774, 624, 5587, '184', 'Drez Ointment 10g', 'standard', 0, '8.8000', '8.8000', '5.0000', 1, '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 (5775, 624, 5607, '204', 'Ezipen Tablets 5x6', 'standard', 0, '11.4000', '11.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '11.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 5720, '317', 'Lexsporin Skin Ointment 20g', 'standard', 0, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 5762, '359', 'Mentat Tablets', 'standard', 0, '28.5400', '28.5400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5400', '', '28.5400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 5956, '553', 'Zincofer Syrup 200ml', 'standard', 0, '17.8400', '17.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.3600', '', '17.8400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', 0, '22.9100', '22.9100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.7300', '', '22.9100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 6057, '654', 'Liv 52 Tablets', 'standard', 0, '41.5000', '41.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5000', '', '41.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', 0, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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, 624, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', 0, '14.0000', '14.0000', '5.0000', 1, '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 (5783, 624, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', 0, '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '6.3800', 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 (5784, 624, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (5785, 624, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', 0, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (5786, 624, 6807, '1404', 'Folic Acid 5mg Crescent', 'standard', 0, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (5787, 624, 6882, '69020596', 'Clopidogrel Frelet 75', 'standard', 0, '25.0000', '25.0000', '2.0000', 1, '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 (5788, 624, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', 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 (5789, 624, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.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 (5790, 625, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (5791, 626, 6893, '233', 'Impressor Capsules', 'standard', NULL, '53.0000', '53.0000', '1.0000', 1, '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 (5792, 626, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (5793, 626, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (5794, 627, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '13.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 (5823, 623, 6846, '1443', 'Haemo Forte Syrup 100ml', 'standard', 0, '11.5000', '11.5000', '1.0000', 1, '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 (5824, 623, 6872, '97726773', 'Deworm 500mg tablets', 'standard', 0, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (5825, 623, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 628, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 629, 5675, '272', 'Ideos 500mg Calcium, Vitamin D3', 'standard', NULL, '65.0000', '65.0000', '1.0000', 1, '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 (5828, 630, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (5829, 630, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 630, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (5831, 630, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (5832, 630, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.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 (5833, 630, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (5834, 630, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 630, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 631, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (5850, 633, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (5849, 632, 6718, '1315', 'Canderel Tablets 105\'s', 'standard', NULL, '12.9000', '12.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '12.9000', 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 (5848, 632, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (5847, 632, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', '63.2200', 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 (5846, 632, 5742, '339', 'LYRICA 75mg', 'standard', NULL, '311.6000', '311.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '311.6000', '', '311.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 (5845, 632, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (5844, 632, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (5851, 633, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (5852, 633, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '2.1000', 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 (5853, 633, 5808, '405', 'ORS Flavored', 'standard', NULL, '16.6000', '16.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '16.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 (5854, 633, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (5855, 633, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (5856, 633, 6185, '782', 'Magnavit Tonic 200ml', 'standard', NULL, '7.8500', '7.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5500', '', '7.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 633, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', '12.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 (5858, 633, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9000', '', '7.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 (5859, 633, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5860, 633, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (5861, 633, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 633, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (5863, 633, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (5864, 633, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (5865, 633, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 633, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (5867, 634, 5967, '564', 'Zulu 100mg Tablet', '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 (5868, 634, 5989, '586', 'APC 50X4 TABS', 'standard', NULL, '28.1000', '28.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.1000', '', '28.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '0.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 (5870, 634, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (5872, 634, 5717, '314', 'Letavit Syrup', 'standard', NULL, '2.4000', '2.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '2.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 (5873, 634, 5569, '166', 'Diazepam 5mg Tablets 500\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (5874, 634, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5875, 634, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (5876, 634, 6863, '59208125', 'Fiesta Condom Extra Thin', '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 (5877, 634, 6864, '98367406', 'Fiesta Condom Strawberry ', '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 (5878, 634, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (5879, 634, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (5880, 634, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '1.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 6607, '1204', 'Skyclav 625', 'standard', NULL, '16.0000', '16.0000', '3.0000', 1, '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 (5882, 634, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (5883, 634, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7500', '', '8.2500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (5885, 634, 6672, '1269', 'Kofof Child Expectorant 100ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (5886, 634, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (5887, 634, 6145, '742', 'Blopen Gel 30g', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (5888, 634, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (5889, 634, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (5890, 634, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 634, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 635, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', 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 (5950, 635, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (5951, 635, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.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 (5896, 636, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (5897, 636, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4800', '', '16.3700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 637, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 638, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (5900, 638, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (5903, 639, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (5904, 639, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.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 (5905, 639, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.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 (5906, 639, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (5907, 639, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.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 (5908, 639, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '3.0000', 1, '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 (5909, 639, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.2000', 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 (5910, 639, 6036, '633', 'Leorub Gel 30g', 'standard', NULL, '4.4300', '4.4300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2900', '', '4.4300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 6145, '742', 'Blopen Gel 30g', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (5912, 639, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (5913, 639, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (5915, 639, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (5916, 639, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (5917, 639, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (5918, 639, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (5919, 639, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9900', '', '9.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (5922, 639, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '3.3000', 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 (5923, 639, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (5924, 639, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (5925, 639, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 639, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (5927, 639, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 640, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (5929, 640, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (5930, 640, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (5931, 640, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (5932, 640, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.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 (5933, 640, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.6000', '', '7.8000', 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 (5934, 640, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (5935, 640, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (5936, 640, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 640, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (5938, 640, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (5939, 640, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '47.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 (5940, 640, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 640, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (5942, 640, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (5943, 640, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (5944, 640, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 640, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (5946, 641, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2000', '', '3.4000', 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 (5947, 641, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 642, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.6400', '', '3.4100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 643, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.5000', '', '38.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 (6081, 643, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '21.4000', 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 (6082, 643, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', NULL, '38.4000', '38.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.8000', '', '38.4000', 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 (6083, 643, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (6075, 643, 5780, '377', 'Mycovin Tabs 500mg 250\\\'', 'standard', NULL, '198.0000', '198.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.0000', '', '198.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 643, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (6077, 643, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2500', '', '14.2500', 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 (6078, 643, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 643, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 643, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (6074, 643, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (5964, 644, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '-3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-36.0000', '', '12.0000', 5569, 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 (5965, 644, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '-20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-80.4000', '', '4.0200', 5567, 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 (5966, 644, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-115.5000', '', '23.1000', 5568, 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 (5967, 644, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '-10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-40.0000', '', '4.0000', 5563, 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 (5968, 644, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-35.5000', '', '7.1000', 5566, 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 (5969, 644, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '-10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-66.0000', '', '6.6000', 5565, 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 (5970, 644, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-54.0000', '', '10.8000', 5564, 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 (5971, 644, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '-10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-77.0000', '', '7.7000', 5561, 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 (5972, 644, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-19.5000', '', '3.9000', 5562, 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 (6068, 373, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', 0, '43.0000', '43.0000', '1.0000', 1, '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 (6069, 645, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '450.0000', '', '30.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 (6070, 645, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '16.0500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 645, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.7500', '', '14.2500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 645, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (6084, 643, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '3.9000', 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 (6085, 643, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.6000', 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 (6086, 643, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7500', '', '5.9500', 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 (6087, 643, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.5000', '', '28.9000', 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 (6088, 646, 6579, '1176', 'Deep Freez Gel 35g', 'standard', NULL, '35.5400', '35.5400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '177.7000', '', '35.5400', 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 (6089, 647, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '-5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '-425.0000', '', '85.0000', 4243, 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 (6090, 648, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (6091, 648, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 5586, '183', 'Dragon Spray', 'standard', 0, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (6093, 649, 5593, '190', 'Efpac Tablets', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 5689, '286', 'Joy Ointment', 'standard', 0, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (6095, 649, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', 0, '8.6000', '8.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '8.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 (6096, 649, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (6097, 649, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (6098, 649, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (6100, 649, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (6101, 649, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (6104, 649, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 649, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.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 (6106, 650, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 650, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (6108, 650, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.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 (6109, 650, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 650, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '16.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 650, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (6112, 650, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (6113, 650, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (6114, 650, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (6115, 650, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 650, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (6117, 650, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (6118, 650, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (6119, 650, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 650, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 651, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 651, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6123, 652, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 652, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (6125, 652, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (6126, 652, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6127, 652, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (6128, 652, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (6129, 652, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (6130, 652, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (6131, 652, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (6132, 652, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 652, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 653, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (6135, 653, 5788, '385', 'Neovita Capsules 30\'s', 'standard', NULL, '60.0000', '60.0000', '1.0000', 1, '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 (6136, 654, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '8.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 (6137, 654, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.4000', '', '18.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 654, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '16.3400', '16.3400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0400', '', '16.3400', 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 (6139, 655, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '13.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 (6140, 655, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (6141, 655, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 655, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3500', '', '4.4500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 655, 6227, '824', 'Promecine Syrup 125ml', 'standard', NULL, '2.8400', '2.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6800', '', '2.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 655, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '23.1000', '23.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '23.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 655, 6276, '873', 'Tinatett Malakare 500ml', 'standard', NULL, '17.6000', '17.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '17.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 (6146, 655, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (6147, 655, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (6148, 656, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '10.4500', '10.4500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '10.4500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (6151, 656, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (6153, 656, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (6155, 656, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (6156, 656, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (6158, 656, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (6159, 656, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.2000', '', '3.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 656, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (6161, 656, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (6162, 656, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (6163, 657, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.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 (6164, 657, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4500', '', '4.4500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 657, 6768, '1365', 'Methylated Spirit 125ml ECL', 'standard', NULL, '5.8000', '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '5.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 (6166, 658, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2100', '', '12.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 658, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (6168, 659, 6439, '1036', 'Cororange Syrup 200ml', 'standard', NULL, '10.2000', '10.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '10.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 (6169, 659, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (6170, 659, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6171, 659, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.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 (6172, 659, 6846, '1443', 'Haemo Forte Syrup 100ml', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (6173, 659, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (6174, 659, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.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 (6175, 659, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 659, 5464, '61', 'Atorvastatin 10mg Tablets 28\'s', '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 (6177, 659, 6871, '36549551', ' Ascovit Cee (Vit C) Tablets 100mg 300', 'standard', NULL, '41.1200', '41.1200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.1200', '', '41.1200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 660, 5532, '129', 'Coartem 80/480 6s', 'standard', 0, '60.7800', '60.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '303.9000', '', '60.7800', 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 (6179, 660, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 660, 5623, '220', 'Flurest Tablets 10\'s', 'standard', 0, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (6181, 660, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (6182, 660, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '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 (6183, 660, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', 0, '3.4200', '3.4200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '3.4200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 660, 6071, '668', 'Vin C 100mg Tablets 30\'s', 'standard', 0, '19.6000', '19.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '19.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 (6185, 660, 6077, '674', 'Fiesta Condom All Night', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '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 (6186, 660, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', 0, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (6187, 660, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 660, 6357, '954', 'Cotton Wool 200g', 'standard', 0, '13.0000', '13.0000', '3.0000', 1, '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 (6189, 660, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', 0, '10.0000', '10.0000', '2.0000', 1, '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 (6190, 660, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', 0, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (6191, 660, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.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 (6192, 660, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', 0, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.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 (6193, 660, 6663, '1260', 'Cotton Wool 25gm', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '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 (6194, 660, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (6195, 660, 6851, '1448', 'Cotton 500g', 'standard', 0, '26.0000', '26.0000', '3.0000', 1, '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 (6196, 660, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '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 (6197, 660, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '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 (6198, 661, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (6199, 661, 6014, '611', 'Coartem Dispersible 20/120mg Tablets 6\'s', 'standard', NULL, '10.6800', '10.6800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3600', '', '10.6800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 661, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 661, 6588, '1185', 'Motilium Tablets 30\'s', 'standard', NULL, '41.4000', '41.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '41.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 (6202, 661, 6804, '1401', 'Buscopan Org.Tabs10mg 56\'s', 'standard', NULL, '54.9000', '54.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '54.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 (6203, 661, 5808, '405', 'ORS Flavored', 'standard', NULL, '16.6000', '16.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '16.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 (6204, 661, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', '4.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 661, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '47.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 (6206, 662, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (6209, 663, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', 0, '17.9000', '17.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.7000', '', '17.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', 0, '7.8500', '7.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2500', '', '7.8500', 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 (6211, 663, 6185, '782', 'Magnavit Tonic 200ml', 'standard', 0, '7.8500', '7.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2500', '', '7.8500', 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 (6212, 663, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', 0, '2.9900', '2.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9500', '', '2.9900', 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 (6213, 663, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', 0, '30.0000', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '30.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 (6214, 663, 6537, '1134', 'Enacin-C (Clindamycin) 300mg Caps 100\'', 'standard', 0, '93.6000', '93.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.6000', '', '93.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 (6215, 663, 6564, '1161', 'Proximexa 500mg Tablets', 'standard', 0, '81.4000', '81.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.4000', '', '81.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 (6216, 663, 6606, '1203', 'Skyclav 1g', 'standard', 0, '15.5300', '15.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5900', '', '15.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7000', '', '1.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0600', '', '6.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 663, 6127, '724', 'X\'Zole F Suspension', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (6220, 664, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '157.6800', '', '13.1400', 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 (6234, 665, 6639, '1236', 'Ferrous Sulphate Tablets 500s ECL', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 665, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 665, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', 0, '17.0000', '17.0000', '1.0000', 1, '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 (6231, 665, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 665, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 665, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '8.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 (6228, 665, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (6235, 665, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '18.4800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 665, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', 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 (6237, 665, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (6238, 666, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 667, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 668, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (6241, 668, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (6242, 668, 5840, '437', 'Prostacure X', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (6243, 668, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6244, 668, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.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 (6245, 668, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6246, 668, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.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 (6247, 668, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (6248, 668, 6077, '674', 'Fiesta Condom All Night', '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 (6249, 668, 6863, '59208125', 'Fiesta Condom Extra Thin', '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 (6250, 668, 6864, '98367406', 'Fiesta Condom Strawberry ', '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 (6251, 668, 6865, '55663121', 'Fiesta Condom Dumsor', '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 (6252, 668, 6866, '89649628', 'Fiesta Condom Fruity', '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 (6253, 668, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 668, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (6255, 668, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (6256, 668, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (6257, 668, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (6258, 668, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', NULL, '15.2000', '15.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '15.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 (6259, 668, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 668, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 668, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '4.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 (6262, 668, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (6263, 668, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (6264, 668, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.1100', '', '16.3700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 668, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '16.0500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 669, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (6267, 669, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (6268, 670, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (6270, 670, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (6271, 670, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (6272, 670, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (6273, 670, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (6274, 670, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (6277, 670, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (6278, 670, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3500', '', '2.6900', 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 (6279, 670, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (6280, 670, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (6282, 670, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', NULL, '14.5000', '14.5000', '1.0000', 1, '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 (6283, 670, 6139, '736', 'Amino pep Syrup 200ml', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 6309, '906', 'Odymin Syrup', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 670, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 671, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '17.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 (6384, 671, 6439, '1036', 'Cororange Syrup 200ml', 'standard', NULL, '10.2000', '10.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '10.2000', 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 (6375, 671, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 671, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (6377, 671, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (6378, 671, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.2000', '', '17.8400', 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 (6379, 671, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', '12.2100', 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 (6380, 671, 6013, '610', 'Coartem 20/120mg Tablets 12\'s', 'standard', NULL, '18.3300', '18.3300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6600', '', '18.3300', 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 (6381, 671, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (6382, 671, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.1200', '', '49.5300', 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 (6373, 671, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (6374, 671, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (6368, 671, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '29.0000', '29.0000', '1.0000', 1, '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 (6369, 671, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '243.1200', '', '60.7800', 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 (6370, 671, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '20.1000', 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 (6371, 671, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8500', '', '6.1700', 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 (6372, 671, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (6335, 672, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.6000', '', '186.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 (6336, 672, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (6330, 672, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '12.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 (6331, 672, 6017, '614', 'Diclofenac 75mg Tablets Sandoz 20\'s', 'standard', NULL, '15.0200', '15.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.1000', '', '15.0200', 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 (6332, 672, 6170, '767', 'Zerocid Plus Suspension 200ML', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (6333, 672, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '2.8800', 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 (6334, 672, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '6.3800', 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 (6311, 673, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6312, 673, 5841, '438', 'Prostafit', 'standard', 0, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6313, 673, 5946, '543', 'Wellman Capsules', 'standard', 0, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (6314, 673, 5996, '593', 'Malafan Tabs 50\'s', 'standard', 0, '2.0000', '2.0000', '5.0000', 1, '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 (6315, 673, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', 0, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.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 (6316, 673, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', 0, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 673, 6686, '1283', 'Letaplex Syrup 125ml', 'standard', 0, '2.5000', '2.5000', '3.0000', 1, '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 (6318, 673, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', 0, '4.6000', '4.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '4.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 (6319, 673, 6842, '1439', 'Tobufen 60ml', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 673, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 674, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.4000', '', '16.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 674, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (6323, 674, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8400', '', '12.2100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 674, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '4.2000', 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 (6325, 674, 5527, '124', 'Ciprolex TZ', 'standard', NULL, '29.0000', '29.0000', '2.0000', 1, '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 (6326, 674, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 674, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.3000', '', '10.5500', 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 (6328, 675, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', 0, '2.0000', '2.0000', '10.0000', 1, '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 (6329, 675, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (6337, 676, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '17.8400', '17.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8400', '', '17.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 676, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (6339, 676, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (6340, 676, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (6341, 676, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (6342, 676, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 676, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (6344, 676, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (6345, 676, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (6346, 676, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (6347, 676, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (6348, 676, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6349, 676, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (6350, 677, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', NULL, '120.3600', '120.3600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.3600', '', '120.3600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 677, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 677, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '13.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 (6353, 677, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.3400', '', '22.7800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 677, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (6355, 677, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (6356, 677, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (6357, 677, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (6358, 677, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.3400', '', '60.7800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 677, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (6360, 677, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (6361, 677, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '4.0000', 1, '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 (6362, 677, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (6363, 677, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.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 (6364, 677, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '8.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 (6365, 677, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 677, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (6367, 678, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.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 (6385, 671, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (6386, 679, 6842, '1439', 'Tobufen 60ml', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6531, 680, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (6530, 680, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (6529, 680, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (6528, 680, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6527, 680, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6526, 680, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.9000', '', '22.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6525, 680, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', 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 (6524, 680, 6166, '763', 'Mucosyl Adult Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (6523, 680, 6165, '762', 'Mucosyl Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (6522, 680, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (6519, 680, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.9000', 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 (6520, 680, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (6399, 681, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 680, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (6413, 682, 6063, '660', 'Speman Tablets', 'standard', NULL, '41.3000', '41.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.9000', '', '41.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 (6414, 683, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', 0, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 683, 6012, '609', 'Scimether 80/480mg Tablet', 'standard', 0, '16.6600', '16.6600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6600', '', '16.6600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 683, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 684, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 684, 6106, '703', 'Lexocap 20x10', 'standard', NULL, '1.5000', '1.5000', '3.0000', 1, '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 (6419, 684, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '4.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 (6420, 684, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (6421, 684, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (6423, 685, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.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 (6424, 685, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (6425, 685, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (6426, 685, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '8.0400', 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 (6427, 685, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '9.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 (6428, 685, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.7500', '', '14.2500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (6430, 685, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (6431, 685, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '10.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 (6432, 685, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.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 (6433, 685, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (6434, 685, 6000, '597', 'Vigorix Forte Syr 200ml', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9000', '', '43.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 (6436, 685, 6332, '929', 'Adom Koo Capsules', '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 (6437, 685, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (6438, 685, 6010, '607', 'Rooter Tytonic', '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 (6439, 685, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '21.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 (6440, 685, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (6441, 685, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '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 (6442, 685, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (6443, 685, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (6444, 685, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0800', '', '6.0200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (6446, 685, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (6448, 685, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (6450, 685, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '3.0000', 1, '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 (6451, 685, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2800', '', '3.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (6454, 685, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6456, 685, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (6457, 685, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 685, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', 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 (6459, 685, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '70.0000', '70.0000', '1.0000', 1, '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 (6460, 685, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '4.0000', 1, '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 (6461, 685, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (6462, 685, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (6463, 686, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '289.0800', '', '24.0900', 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 (6464, 687, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.2000', '', '9.0400', 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 (6465, 687, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (6466, 688, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (6467, 688, 5689, '286', 'Joy Ointment', 'standard', 0, '3.3000', '3.3000', '10.0000', 1, '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 (6468, 688, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 688, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (6470, 688, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.9500', '', '12.8500', 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 (6471, 688, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '16.0500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 689, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6473, 690, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (6474, 690, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (6475, 690, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (6476, 690, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 691, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (6504, 691, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (6505, 691, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 691, 6287, '884', 'Zymax (Azithromycin) Capsules 500mg ECL', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 691, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 692, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '23.7000', '23.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.4000', '', '23.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 (6496, 693, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.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 (6497, 693, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.7800', '', '60.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 693, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (6499, 693, 5946, '543', 'Wellman Capsules', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (6500, 693, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 693, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 693, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 693, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '8.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 (6509, 691, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (6510, 691, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (6511, 691, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 691, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (6518, 694, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.6000', 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 (6516, 694, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (6517, 694, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (6532, 695, 5804, '401', 'Omeprazole 20mg Capsules 28\'s uk', 'standard', NULL, '9.8000', '9.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '9.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 (6533, 695, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6534, 696, 6118, '715', 'Norvasc Amlodipine Besylate  5mg Tablets pfizer30\'s', 'standard', 0, '172.8000', '172.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '345.6000', '', '172.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 (6535, 697, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', '26.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 (6536, 698, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', 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 (6537, 698, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6538, 699, 6135, '732', 'Neuropat Capsules 30\'s', 'standard', NULL, '35.6000', '35.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2000', '', '35.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 (6539, 699, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (6540, 699, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (6541, 699, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (6542, 699, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.1800', '', '6.0300', 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 (6543, 699, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '8.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 (6544, 699, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (6545, 699, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (6546, 699, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (6547, 699, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (6548, 699, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (6549, 699, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6553, 700, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '2.3000', 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 (6552, 700, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.3000', 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 (6589, 701, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '2.6000', 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, 701, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '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 (6587, 701, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.6000', 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 (6586, 701, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 701, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.4000', '', '2.7000', 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 (6584, 701, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (6583, 701, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (6582, 701, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 701, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 701, 5705, '302', 'Kofof Adult Syrup 150ml', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 701, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 701, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (6608, 702, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.1100', '', '16.3700', 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 (6606, 702, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', '13.9200', 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 (6607, 702, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '4.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 (6604, 702, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (6605, 702, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', 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 (6599, 702, 5635, '232', 'Gastrone Plus 200ml Suspension', 'standard', NULL, '14.7600', '14.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', '14.7600', 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 (6600, 702, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '11.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 (6601, 702, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '13.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 (6602, 702, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '163.5600', '', '27.2600', 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 (6603, 702, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '13.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 (6598, 702, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.3400', '', '60.7800', 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 (6590, 703, 6249, '846', 'Nodium(Loperamide) Capsules 100\'s', 'standard', NULL, '10.6000', '10.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '10.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 (6591, 703, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 703, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 703, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 704, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 704, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6596, 704, 5569, '166', 'Diazepam 5mg Tablets 500\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (6597, 705, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '163.7000', '', '16.3700', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 706, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', '26.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 (6610, 707, 6316, '913', 'Tot\'hema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (6611, 707, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (6612, 707, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '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 (6613, 707, 5784, '381', 'Naprox EC 500mg Tablets 100\'s', 'standard', NULL, '95.7600', '95.7600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.7600', '', '95.7600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 707, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '6.6500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 707, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 707, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 707, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6618, 708, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 708, 6081, '678', 'Xmox (Amoxicillin) 500mg Capsules 10x1x21s Entrance', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 708, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '70.0000', '70.0000', '1.0000', 1, '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 (6621, 709, 6654, '1251', 'Huichun Capsules', 'standard', NULL, '22.0000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '22.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 710, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6623, 710, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 711, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 712, 6875, '11896071', 'Mist Expect Sed rockmer', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (6648, 712, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '25.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 (6647, 712, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 712, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (6645, 712, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (6644, 712, 6127, '724', 'X\'Zole F Suspension', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (6643, 712, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (6642, 712, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', 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 (6641, 712, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4500', '', '7.1500', 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 (6640, 712, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', 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 (6639, 712, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', NULL, '6.7000', '6.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.7000', '', '6.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 712, 5460, '57', 'Atacand Plus 16/12.5mg', 'standard', NULL, '235.7300', '235.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '235.7300', '', '235.7300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.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 (6652, 713, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '5.0000', 1, '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 (6653, 713, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (6654, 713, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (6655, 713, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (6656, 713, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7600', '', '6.8800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '8.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 (6659, 713, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '1.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 (6660, 713, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (6662, 713, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 5545, '142', 'Cororange Drops', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (6664, 713, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (6666, 713, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (6667, 713, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (6670, 713, 6010, '607', 'Rooter Tytonic', '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 (6671, 713, 6130, '727', 'Kofof Family Syrup 150ml', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6849, '1446', 'Kelcuf Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (6673, 713, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0400', '', '6.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 713, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (6675, 713, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (6676, 713, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '3.0000', 1, '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 (6677, 713, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6678, 713, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (6679, 714, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (6680, 714, 6145, '742', 'Blopen Gel 30g', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (6681, 715, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 715, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.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 (6683, 715, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (6684, 716, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6685, 716, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 718, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 718, 6341, '938', 'Wellman 50+ Tablets', 'standard', NULL, '62.3000', '62.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.3000', '', '62.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '3.3000', 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 (6696, 719, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (6697, 719, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.2400', '', '8.0400', 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 (6698, 719, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (6699, 719, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '5.0000', 1, '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 (6700, 719, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (6701, 719, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.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 (6702, 719, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (6703, 719, 6584, '1181', 'Cororange Capsules', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (6704, 719, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (6706, 719, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '4.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 (6707, 719, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.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 (6709, 719, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '4.7100', '4.7100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8400', '', '4.7100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 719, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.3200', '', '9.6600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 720, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6714, 720, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (6716, 721, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8200', '', '3.9100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6718, 721, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (6720, 721, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '10.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 (6721, 721, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (6722, 721, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (6724, 721, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6200', '', '9.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (6726, 721, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (6727, 721, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 721, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (6729, 721, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '6.0000', 1, '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 (6730, 722, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 722, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 722, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 722, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 722, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (6735, 722, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (6736, 722, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (6738, 723, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 6010, '607', 'Rooter Tytonic', '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 (6740, 723, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '5.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 (6743, 723, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1500', '', '7.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (6745, 723, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7600', '', '2.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 (6747, 723, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (6748, 723, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (6749, 723, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (6750, 723, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8200', '', '3.9100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (6752, 723, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '3.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 723, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 724, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (6756, 725, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (6758, 725, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (6759, 725, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (6762, 725, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '26.0000', '26.0000', '2.0000', 1, '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 (6763, 725, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 6034, '631', 'Deep Heat Spray 150ml', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (6765, 725, 5884, '481', 'Stagyl secnidazole Tablet (1 gm)', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (6767, 725, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 725, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (6770, 725, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (6771, 725, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '4.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 (6772, 725, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (6787, 726, 6071, '668', 'Vin C 100mg Tablets 30\'s', 'standard', NULL, '19.6000', '19.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '19.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 (6786, 726, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (6785, 726, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (6781, 726, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (6782, 726, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 726, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (6784, 726, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (6780, 727, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (6788, 728, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 729, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 729, 5999, '596', 'Antasil Tablets 50\'s', 'standard', NULL, '25.7000', '25.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '25.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 (6791, 730, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 730, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', NULL, '120.3600', '120.3600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.3600', '', '120.3600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 730, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 731, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (6795, 731, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '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 (6796, 732, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 732, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (6798, 732, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (6799, 732, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '3.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 (6800, 732, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 732, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 733, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 734, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (6804, 734, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2100', '', '12.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 734, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (6806, 734, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 734, 5499, '96', 'Calcium B12 Syrup 200ml', 'standard', NULL, '3.8000', '3.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '3.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 (6808, 735, 6708, '1305', 'Loratadine 10mg Tablets 30\'s', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (6809, 736, 6063, '660', 'Speman Tablets', 'standard', NULL, '41.3000', '41.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.3000', '', '41.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 (6810, 737, 5897, '494', 'Syringe and Needle 5ml Letaject', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (6811, 738, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (6812, 738, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6813, 738, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (6814, 738, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 738, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '6.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 (6816, 738, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 738, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9900', '', '9.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 738, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '3.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 (6819, 738, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (6820, 738, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (6821, 738, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6822, 739, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 739, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.5000', '', '12.7000', 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 (6824, 739, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.5000', '', '14.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 (6825, 740, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '143.0000', '', '14.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 (6826, 740, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.0000', '', '12.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 (6827, 741, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '286.0000', '', '14.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 (6828, 741, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '254.0000', '', '12.7000', 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 (6829, 742, 6220, '817', 'Dynewell Syrup 200ml', '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 (6830, 743, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (6831, 743, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 743, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (6833, 743, 6462, '1059', 'Mist Pot Cit (Potassium Citrate) Mal-Titi', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (6834, 743, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (6835, 743, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (6836, 743, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 743, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 743, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.0400', '', '3.5200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 743, 6466, '1063', 'Mist Sennaco Mal-Titi', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (6840, 744, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (6841, 744, 6364, '961', 'Daktacort Cream 15g', 'standard', NULL, '35.9000', '35.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.9000', '', '35.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 (6842, 744, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.7000', '', '4.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 (6843, 745, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (6844, 745, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (6845, 745, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (6846, 745, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 745, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (6848, 745, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (6849, 745, 6810, '1407', 'Valupak Vit E 400iu', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (6900, 746, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (6899, 746, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (6898, 746, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', 0, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (6897, 746, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.9000', 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 (6896, 746, 6010, '607', 'Rooter Tytonic', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (6895, 746, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (6894, 746, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', 0, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 746, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', 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 (6892, 746, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.2000', 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 (6891, 746, 5730, '327', 'Lofnac Gel 30mg', 'standard', 0, '6.0000', '6.0000', '3.0000', 1, '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 (6890, 746, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (6889, 746, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', 0, '2.0000', '2.0000', '10.0000', 1, '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 (6888, 746, 5651, '248', 'Glucose Powder 400mg', 'standard', 0, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', 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 (6887, 746, 5581, '178', 'Domi 10 Suppositories', 'standard', 0, '11.3000', '11.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3000', '', '11.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 746, 5427, '24', 'Agbeve Tonic', 'standard', 0, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (6886, 746, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (6867, 747, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 747, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 747, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.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 (6870, 748, 5765, '362', 'Metformin Denk 500mg Tablets 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 748, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (6872, 748, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (6939, 749, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 749, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 749, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7600', '', '6.3800', 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 (6942, 749, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '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 (6932, 749, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', 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 (6933, 749, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 749, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 749, 5717, '314', 'Letavit Syrup', 'standard', NULL, '2.4000', '2.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '2.4000', 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 (6936, 749, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (6937, 749, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (6938, 749, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (6901, 746, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.1300', '', '17.7100', 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 (6902, 750, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2600', '', '3.1800', 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 (6903, 750, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (6904, 750, 6678, '1275', 'Azirocin Suspension', 'standard', NULL, '14.3000', '14.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '14.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 (6905, 750, 6689, '1286', 'Chloramphenicol Eye Ointment 0.01 5g', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (6906, 750, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (6907, 750, 5981, '578', 'Magacid Fastmelt(all flavours)35\'s', 'standard', NULL, '12.6500', '12.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6500', '', '12.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 750, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.3600', '', '12.8400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 750, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '70.0000', '70.0000', '1.0000', 1, '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 (6910, 750, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.3000', '', '9.6600', 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 (6911, 750, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.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 (6912, 750, 6185, '782', 'Magnavit Tonic 200ml', 'standard', NULL, '7.8500', '7.8500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.4000', '', '7.8500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 750, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (6914, 750, 6169, '766', 'Vitamin B-Complex S yrup 125ml M & G', 'standard', NULL, '4.3000', '4.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '4.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 (6915, 750, 6686, '1283', 'Letaplex Syrup 125ml', 'standard', NULL, '2.5000', '2.5000', '6.0000', 1, '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 (6916, 750, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9500', '', '2.9900', 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 (6923, 751, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.6000', '', '27.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 (6924, 751, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 751, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (6922, 751, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (6925, 752, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 753, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 753, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (6928, 753, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 753, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (6930, 753, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (6931, 754, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (6943, 749, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '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 (6944, 755, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (6988, 756, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (6987, 756, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (6986, 756, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '13.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '13.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 (6985, 756, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (6984, 756, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '43.9000', '43.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9000', '', '43.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 756, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', 0, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', 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 (6982, 756, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 756, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (6980, 756, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (6979, 756, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (6978, 756, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', 0, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 756, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 756, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (6975, 756, 6024, '621', 'Vaginax Cream 30gm', 'standard', 0, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', 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 (6974, 756, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (6973, 756, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (6972, 756, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', 0, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (6971, 756, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '8.1400', 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 (6970, 756, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', 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 (6968, 756, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (6969, 756, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (6989, 756, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', 0, '4.0000', '4.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '4.0000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.2000', '', '58.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', 0, '98.6000', '98.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '197.2000', '', '98.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 (6992, 757, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', 0, '46.3000', '46.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '138.9000', '', '46.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 (6993, 757, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', 0, '49.0000', '49.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '49.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 5515, '112', 'Cetapol Syrup', 'standard', 0, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (6995, 757, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', 0, '9.9000', '9.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '9.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 5841, '438', 'Prostafit', 'standard', 0, '19.8000', '19.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '19.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 (6997, 757, 5963, '560', 'Zipman Capsules', 'standard', 0, '15.9500', '15.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', '15.9500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', 0, '25.0000', '25.0000', '2.0000', 1, '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 (6999, 757, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (7000, 757, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '10.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 (7001, 757, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.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 (7002, 757, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '161.2000', '', '40.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 (7003, 757, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '14.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 (7004, 757, 6356, '953', 'Cotton Wool 100g', 'standard', 0, '7.2000', '7.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '7.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 (7005, 757, 6444, '1041', 'Stugeron Tablets 50\'s', 'standard', 0, '25.8000', '25.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '25.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 (7006, 757, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', 0, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (7007, 757, 6589, '1186', 'Sporanox', 'standard', 0, '121.9000', '121.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.9000', '', '121.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 (7008, 757, 6594, '1191', 'Malin Baby Plus', 'standard', 0, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', 0, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 757, 6730, '1327', 'Nurofen Syrup Ibuprofen 100ml Orange', 'standard', 0, '27.3000', '27.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.6000', '', '27.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 (7011, 757, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', 0, '3.0000', '3.0000', '10.0000', 1, '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 (7012, 757, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', 0, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (7013, 758, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '450.0000', '', '30.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 (7143, 759, 6887, '5738767', 'Actilife Flex-14 (Glucosamine Chondroitin)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (7116, 759, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.3000', 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 (7117, 759, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (7118, 759, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (7119, 759, 5673, '270', 'Ibex Capsules 24\'s', 'standard', NULL, '17.7000', '17.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '17.7000', 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 (7120, 759, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.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 (7121, 759, 5856, '453', 'Rubbing Alcohol 500ml', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (7122, 759, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', 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 (7123, 759, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7000', '', '24.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', 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 (7125, 759, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (7126, 759, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (7127, 759, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (7128, 759, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', 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 (7129, 759, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (7130, 759, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.9000', '', '40.3000', 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 (7131, 759, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.3000', 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 (7133, 759, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (7135, 759, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', 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 (7136, 759, 6622, '1219', 'Health Link Hair, Nails & Skin', 'standard', 0, '47.8500', '47.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8500', '', '47.8500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (7138, 759, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 759, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.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 (7141, 759, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', 'standard', NULL, '61.8000', '61.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.6000', '', '61.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 (7142, 759, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (7044, 760, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (7182, 761, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9500', '', '2.9900', 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 (7181, 761, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (7166, 761, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (7167, 761, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.3000', 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 (7168, 761, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (7169, 761, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (7170, 761, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.3000', 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 (7171, 761, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 761, 5999, '596', 'Antasil Tablets 50\'s', 'standard', NULL, '25.7000', '25.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '25.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 761, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (7174, 761, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.6000', 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 (7175, 761, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (7176, 761, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (7177, 761, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (7178, 761, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (7179, 761, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', 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 (7180, 761, 6639, '1236', 'Ferrous Sulphate Tablets 500s ECL', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 762, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 762, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (7065, 762, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (7066, 762, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (7067, 762, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (7068, 762, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (7069, 762, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '10.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 (7070, 762, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.5000', '', '7.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 (7071, 762, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (7072, 762, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (7073, 762, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 762, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 762, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (7076, 763, 6726, '1323', 'Morgan\'s Auntibactirial Soap', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (7077, 763, 6808, '1405', 'Valupak  Vit C Chewable', 'standard', NULL, '20.0000', '20.0000', '2.0000', 1, '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 (7078, 763, 6547, '1144', 'Menthodex Lozenges 80G Sachet 25\' ORIG', 'standard', 0, '10.7800', '10.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5600', '', '10.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 763, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 763, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 763, 6198, '795', 'Shaltoux Natural Cough Lozenges 3X4X20pcs (Box)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (7114, 759, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.2000', 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 (7115, 759, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '33.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 (7113, 759, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (7144, 759, 6369, '966', 'Omexet (omeprazole) 20mg Capsules 28\'s', 'standard', NULL, '11.9800', '11.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.9200', '', '11.9800', 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 (7145, 759, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (7146, 764, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '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 (7147, 765, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (7148, 765, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (7149, 765, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (7150, 765, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (7151, 765, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (7152, 765, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '1.0000', 1, '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 (7153, 765, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (7154, 765, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '7.0000', '7.0000', '10.0000', 1, '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 (7155, 765, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (7156, 765, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 765, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (7158, 765, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (7159, 765, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (7160, 765, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (7161, 765, 6326, '923', 'Ciprolex 500mg Tablets 10\'s', 'standard', NULL, '14.0000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '14.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 (7162, 765, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.9000', '', '22.7800', 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 (7163, 765, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', NULL, '2.8900', '2.8900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4500', '', '2.8900', 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 (7164, 765, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '9.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 (7165, 765, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.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 (7183, 766, 5725, '322', 'Lisinopril 20mg Teva', 'standard', 0, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 767, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (7190, 768, 6153, '750', 'Paracetamol 500mg Tablet M&G 100x10', 'standard', NULL, '77.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '77.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 768, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (7188, 768, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '23.4000', 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 (7191, 768, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (7254, 769, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '1.5000', '1.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '1.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 (7255, 769, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.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 (7256, 769, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (7257, 769, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 769, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9700', '', '4.9900', 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 (7259, 769, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', 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 (7260, 769, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (7261, 769, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '7.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 (7262, 769, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7600', '', '2.8800', 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 (7263, 769, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', NULL, '1.9000', '1.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '1.9000', 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 (7264, 769, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (7265, 769, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', 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 (7266, 769, 6395, '992', 'Shaltoux Herbal Cough Syrup', 'standard', NULL, '9.5500', '9.5500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.1000', '', '9.5500', 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 (7267, 769, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (7268, 769, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.6000', 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 (7269, 769, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (7252, 769, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', 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 (7253, 769, 5625, '222', 'Foliron Tonic 200ml', 'standard', NULL, '4.1000', '4.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.1000', '', '4.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6272, '869', 'Ferrovita B12 Syrup 200ml', 'standard', NULL, '31.5000', '31.5000', '1.0000', 1, '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 (7228, 770, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (7229, 770, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (7230, 770, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (7232, 770, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (7233, 770, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (7236, 770, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (7237, 770, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6464, '1061', 'Mist Expect Sed Mal-Titi', '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 (7239, 770, 5569, '166', 'Diazepam 5mg Tablets 500\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (7240, 770, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.5100', '', '6.1700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (7245, 770, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (7246, 770, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 770, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '3.0000', 1, '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 (7248, 771, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (7249, 772, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.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 (7250, 772, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (7251, 772, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 769, 6065, '662', 'Ferofix Syrup 200ml', 'standard', NULL, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', 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 (7312, 773, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.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 (7311, 773, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (7310, 773, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9000', '', '43.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 773, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (7308, 773, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.9000', '', '40.3000', 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 (7307, 773, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (7306, 773, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 773, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', 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 (7304, 773, 5999, '596', 'Antasil Tablets 50\'s', 'standard', NULL, '25.7000', '25.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.4000', '', '25.7000', 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 (7303, 773, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 774, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', 0, '4.6000', '4.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '4.6000', 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 (7327, 774, 6424, '1021', 'Durol Tonic  Junior 200ml', 'standard', 0, '8.5500', '8.5500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '8.5500', 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 (7326, 774, 6304, '901', 'Lonart Suspension', 'standard', 0, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (7325, 774, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', 0, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.4000', 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 (7324, 774, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', 0, '8.0400', '8.0400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '8.0400', 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 (7323, 774, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (7322, 774, 6125, '722', 'Lufart Suspension', 'standard', 0, '12.5000', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '12.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 (7321, 774, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 774, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (7319, 774, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (7318, 774, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '26.0000', '26.0000', '1.0000', 1, '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 (7316, 774, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', 0, '4.2000', '4.2000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '4.2000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 774, 5884, '481', 'Stagyl secnidazole Tablet (1 gm)', 'standard', 0, '3.3200', '3.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2000', '', '3.3200', 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 (7315, 774, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '9.2000', 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 (7298, 775, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (7299, 775, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 774, 6746, '1343', 'Livertone Tonic 200ml', 'standard', NULL, '10.5600', '10.5600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '10.5600', 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 (7329, 774, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '2.6000', 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 (7314, 776, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (7313, 773, 6767, '1364', 'Methylated Spirit 200ml ECL', 'standard', NULL, '9.5000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '9.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 (7331, 774, 6002, '599', 'Ferrodex Syrup 200ml', 'standard', NULL, '8.5500', '8.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.5500', '', '8.5500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 774, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', NULL, '2.0000', '2.0000', '1.0000', 1, '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 (7448, 777, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (7449, 777, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '8.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 (7450, 777, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (7451, 777, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (7452, 777, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (7453, 777, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 777, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (7455, 777, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (7456, 777, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '3.2000', 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 (7457, 777, 6746, '1343', 'Livertone Tonic 200ml', 'standard', NULL, '10.5600', '10.5600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '10.5600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 777, 6810, '1407', 'Valupak Vit E 400iu', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (7459, 784, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.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 (7521, 778, 5593, '190', 'Efpac Tablets', 'standard', 0, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (7522, 778, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '266.4000', '', '11.1000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 778, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (7524, 778, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '227.6000', '', '11.3800', 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 (7525, 778, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '38.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 (7526, 778, 6221, '818', 'Dynewell Tablet 50x10', 'standard', 0, '12.9800', '12.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.9400', '', '12.9800', 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 (7527, 778, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (7528, 778, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '25.3000', 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 (7529, 778, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', 0, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.8000', 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 (7446, 777, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.2000', '', '3.9100', 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 (7447, 777, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (7368, 779, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.6000', '', '186.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 (7369, 779, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', NULL, '158.6000', '158.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.6000', '', '158.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 (7370, 779, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (10816, 780, 6853, '1450', 'Mycolex Powder 50g', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (10815, 780, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (10814, 780, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.6600', '', '40.8300', 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 (10813, 780, 6689, '1286', 'Chloramphenicol Eye Ointment 0.01 5g', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (10812, 780, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (10811, 780, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10810, 780, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.2000', '', '9.0400', 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 (10786, 780, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', 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 (10787, 780, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', 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 (10788, 780, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (10789, 780, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (10790, 780, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (10791, 780, 5932, '529', 'Viscof Plain 100ml Syrup', 'standard', NULL, '11.4000', '11.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '11.4000', 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 (10792, 780, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '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 (10793, 780, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4800', '', '16.3700', 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 (10794, 780, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10795, 780, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '26.8000', 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 (10796, 780, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (10797, 780, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (10798, 780, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10799, 780, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.3000', 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 (10800, 780, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9800', '', '10.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10801, 780, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '14.6000', 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 (10802, 780, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (10803, 780, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10804, 780, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (10805, 780, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9800', '', '9.6600', 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 (10806, 780, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (10807, 780, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10808, 780, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (10809, 780, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (7422, 781, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', 'standard', NULL, '61.8000', '61.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.8000', '', '61.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 781, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '11.5800', '11.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1600', '', '11.5800', 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 (7415, 781, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.2000', 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 (7416, 781, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (7417, 781, 6087, '684', 'Augmentin 1g Tablets 14\'s', 'standard', NULL, '75.8000', '75.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.8000', '', '75.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 781, 6347, '944', 'Happyrona forte syrup 200ml', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (7419, 781, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (7420, 781, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (7421, 781, 6698, '1295', 'Biva Plus Syrup', 'standard', NULL, '13.4400', '13.4400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8800', '', '13.4400', 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 (7423, 781, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 782, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (7590, 782, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (7591, 782, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (7592, 782, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (7593, 782, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', 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 (7594, 782, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (7595, 782, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (7596, 782, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.8000', 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 (7597, 782, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 782, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (7599, 782, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (7600, 782, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8400', '', '13.9200', 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 (7601, 782, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '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 (7602, 791, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (7545, 783, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '620.0000', '', '62.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 (7546, 783, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.0000', '', '10.6000', 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 (7547, 783, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.0000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 783, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', 'standard', NULL, '8.0000', '8.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '8.0000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 783, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.5000', 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 (7543, 783, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.1000', '', '12.2100', 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 (7544, 783, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8000', '', '12.2000', 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 (10785, 780, 5777, '374', 'Mycocort Cream 20g', 'standard', NULL, '24.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '24.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 (7609, 785, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', 0, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', 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 (7610, 785, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (7611, 785, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', 0, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (7612, 785, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', 0, '10.7800', '10.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.9000', '', '10.7800', 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 (7613, 785, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', 0, '11.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.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 (7614, 785, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (7615, 785, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', 0, '3.4200', '3.4200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '3.4200', 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 (7616, 785, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 785, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 785, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '161.2000', '', '40.3000', 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 (7619, 785, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', 0, '9.4000', '9.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '9.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 785, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', 0, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.8000', 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 (7621, 785, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', 0, '30.0000', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '30.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 (7622, 785, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.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 (7623, 785, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (7624, 785, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (7625, 785, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', 0, '17.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '17.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 (7626, 785, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', 0, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (7627, 785, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', 0, '10.7800', '10.7800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.6800', '', '10.7800', 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 (7628, 785, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (7629, 785, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (7630, 793, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 785, 5676, '273', 'Imax Delay Spray', 'standard', 0, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (7607, 785, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (7606, 785, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '233.6000', '', '58.4000', 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 (7520, 778, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', 0, '6.7000', '6.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '6.7000', 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 (7539, 786, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (7540, 786, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', 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 (7536, 786, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', 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 (7537, 786, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (7538, 786, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9000', '', '20.9500', 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 (7548, 783, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', 'standard', NULL, '0.5500', '0.5500', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '0.5500', 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 (7549, 787, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '510.0000', '', '85.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 (7587, 782, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (7588, 782, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 796, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (7704, 795, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 788, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 788, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 788, 6462, '1059', 'Mist Pot Cit (Potassium Citrate) Mal-Titi', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (7700, 788, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (7699, 788, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', 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 (7698, 788, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (7697, 788, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 788, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (7695, 788, 5815, '412', 'PARA DENK250 SUPPO', 'standard', NULL, '0.0000', '0.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '0.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 (7694, 788, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (7693, 788, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.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 (7692, 788, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (7691, 788, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5200', '', '6.8800', 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 (7585, 789, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (7583, 790, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.9800', '', '13.1400', 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 (7584, 790, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', NULL, '15.2000', '15.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '15.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 (7586, 789, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '18.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 791, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 791, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 792, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (10783, 780, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', NULL, '21.5000', '21.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '21.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 (10784, 780, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10781, 780, 5497, '94', 'BX Syrup 100ml', 'standard', NULL, '5.6000', '5.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '5.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 (10782, 780, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (7872, 794, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', 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 (7860, 794, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '8.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 (7863, 794, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (7864, 794, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (7865, 794, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.6900', '', '2.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 (7867, 794, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.8000', 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 (7868, 794, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (7869, 794, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.0400', '', '3.5200', 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 (7859, 794, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (7851, 794, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8200', '', '3.4100', 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 (7852, 794, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (7853, 794, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (7855, 794, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.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 (7856, 794, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '7.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 794, 5771, '368', 'Magnesium Trisilicate (MMT)', 'standard', NULL, '3.5000', '3.5000', '4.0000', 1, '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 (9548, 928, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 928, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (9546, 797, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6000', '', '7.1000', 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 (9545, 797, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9542, 797, 6778, '1375', 'Nugel Susp 200ml', 'standard', 0, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '13.0000', '13.0000', '1.0000', 1, '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 (9544, 797, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (9541, 797, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '1.0000', 1, '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 (9540, 797, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.2000', 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 (9539, 797, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', 0, '6.5000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.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 (9538, 797, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', 0, '5.7000', '5.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7000', '', '5.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', 0, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (9534, 797, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (9535, 797, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', 0, '53.2000', '53.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.4000', '', '53.2000', 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 (9532, 797, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', 0, '6.1000', '6.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.3000', '', '6.1000', 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 (9531, 797, 6385, '982', 'Amcof Junior Syrup', 'standard', 0, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', 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 (9530, 797, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (9529, 797, 6350, '947', 'Ronfit Cold P Junior Syrup', 'standard', 0, '6.0000', '6.0000', '4.0000', 1, '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 (9528, 797, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '1.0000', 1, '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 (9527, 797, 6302, '899', 'Klovinal Pessaries', 'standard', 0, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.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 (9525, 797, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', 0, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (9524, 797, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.8000', 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 (9523, 797, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', 0, '2.8800', '2.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '2.8800', 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 (9522, 797, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', 0, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6210, '807', 'BX Syrup 200ml', 'standard', 0, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6171, '768', 'Zerocid Suspension 200ML', 'standard', 0, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', 0, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (9518, 797, 6145, '742', 'Blopen Gel 30g', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (9517, 797, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', 0, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 6034, '631', 'Deep Heat Spray 150ml', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (9515, 797, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', 0, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (9513, 797, 5958, '555', 'Zincovit Syrup 200ml', 'standard', 0, '16.1000', '16.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.1000', '', '16.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (9512, 797, 5956, '553', 'Zincofer Syrup 200ml', 'standard', 0, '17.8400', '17.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8400', '', '17.8400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', 0, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (9508, 797, 5716, '313', 'Letaron 200ml Syrup', 'standard', 0, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.6000', 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 (9507, 797, 5667, '264', 'Honeykof Herbal Cough Syrup 100ml', 'standard', 0, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (9506, 797, 5624, '221', 'Foligrow Syrup 200ml', 'standard', 0, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', 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 (9505, 797, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', 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 (9504, 797, 5585, '182', 'Dragon Tablets', 'standard', 0, '23.4000', '23.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 797, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.7000', 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 (9503, 797, 5536, '133', 'Colestop 10mg 30\'s (Atovastin)', 'standard', 0, '52.2000', '52.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.2000', '', '52.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 798, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '4.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 (9501, 797, 5472, '69', 'Baseboom Gel', 'standard', 0, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (9500, 797, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', 0, '8.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '8.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 (7849, 799, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7850, 799, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7873, 800, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (7874, 800, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 800, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.9000', '', '40.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 (7876, 800, 6807, '1404', 'Folic Acid 5mg Crescent', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (7877, 800, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (7878, 800, 6654, '1251', 'Huichun Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (7879, 800, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (7880, 800, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (7881, 800, 5577, '174', 'Diflucan 150mg Capsules 1\'s', 'standard', NULL, '81.2000', '81.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.2000', '', '81.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 (7882, 800, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4000', '', '7.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 800, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5600', '', '66.5200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 800, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (7885, 800, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (7886, 800, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (7887, 800, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (7888, 800, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (7889, 800, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.2000', '', '3.9100', 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 (7890, 800, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '6.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 (7975, 801, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (7971, 801, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (7972, 801, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '1.6000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 801, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (7974, 801, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (7967, 801, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 801, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', 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 (7969, 801, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (7970, 801, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (7963, 801, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', 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 (7964, 801, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (7965, 801, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (7966, 801, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6300', '', '12.2100', 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 (7958, 801, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', 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 (7959, 801, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (7960, 801, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.3000', 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 (7961, 801, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (7962, 801, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (7910, 802, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.6800', '', '12.2100', 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 (7911, 802, 5999, '596', 'Antasil Tablets 50\'s', 'standard', NULL, '25.7000', '25.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.4000', '', '25.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 (7912, 803, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', NULL, '98.6000', '98.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.6000', '', '98.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 (7913, 803, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (7914, 804, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '14.9000', '14.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '14.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 (7915, 804, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 804, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (7917, 804, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '8.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 (7918, 804, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.8000', '186.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.8000', '', '186.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 (7919, 804, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (7920, 804, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.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 (7921, 804, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 804, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (7923, 804, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9400', '', '5.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 804, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '9.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 804, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 804, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.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 (7927, 804, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (7928, 805, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (7929, 805, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (7931, 806, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (7932, 806, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (7933, 806, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (7934, 806, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2800', '', '8.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (7936, 806, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9400', '', '5.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (7941, 806, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (7942, 806, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (7943, 806, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\' ECL', 'standard', NULL, '21.7400', '21.7400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7400', '', '21.7400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (7947, 806, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (7948, 806, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (7949, 806, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '1.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 (7951, 806, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (7952, 806, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 806, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (7955, 806, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (7956, 806, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (7957, 807, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '607.8000', '', '60.7800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 801, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', 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 (7977, 801, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 808, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 809, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (7980, 810, 6220, '817', 'Dynewell Syrup 200ml', '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 (7981, 810, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (7982, 810, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (7983, 810, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (7984, 810, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (7985, 810, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (7986, 810, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.3000', '', '10.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 (7987, 810, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9500', '', '5.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 811, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (7989, 811, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (7990, 811, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (7991, 811, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.2000', '', '9.6200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 811, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (7993, 811, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (7994, 811, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (7995, 811, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 811, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '10.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 (7997, 811, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '4.2000', 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 (7998, 811, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.2800', '', '6.8800', 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 (7999, 811, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8000, 811, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8001, 811, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 811, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.0000', '', '1.6000', 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 (8003, 811, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.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 (8004, 811, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (8005, 811, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (8006, 811, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.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 (8007, 812, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (8008, 812, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 812, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 812, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (8011, 812, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (8012, 813, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.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 (8013, 813, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 813, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '2.8800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 813, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (8016, 813, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (8017, 813, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '2.6900', 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 (8018, 813, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '10.0000', 1, '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 (8019, 813, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (8020, 813, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '2.1000', 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 (8021, 813, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (8022, 813, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 813, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (8024, 813, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (8025, 813, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (8026, 813, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (8027, 813, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (8028, 813, 6147, '744', 'Cafalgin Caplets 25x10', 'standard', NULL, '35.2000', '35.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '35.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 (8029, 813, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (8030, 813, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (8031, 813, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 813, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (8033, 813, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '9.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 (8034, 814, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '3.4100', '3.4100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.6400', '', '3.4100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 814, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8036, 814, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (8037, 814, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (8038, 814, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', 0, '6.5000', '6.5000', '2.0000', 1, '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 (8039, 814, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (8040, 814, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '3.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 814, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (8042, 815, 5936, '533', 'Vitane Liquid 200ml', 'standard', NULL, '45.2400', '45.2400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.2400', '', '45.2400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 815, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '10.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 (8044, 816, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (8045, 816, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.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 (8046, 816, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '2.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 (8047, 816, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 817, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '3.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 (8049, 818, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '16.6000', '16.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '16.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 (8050, 819, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.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 (8051, 819, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 820, 5555, '152', 'Daflon 500mg Tablets 30\'s', 'standard', NULL, '107.0000', '107.0000', '1.0000', 1, '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 (8053, 821, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (8054, 821, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (8055, 821, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (8056, 821, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (8057, 821, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8058, 821, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 821, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (8060, 821, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (8061, 821, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4000', '', '3.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 (8062, 821, 6672, '1269', 'Kofof Child Expectorant 100ml', '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 (8063, 821, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 822, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (8065, 822, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (8066, 822, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (8067, 822, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (8068, 822, 6697, '1294', 'Biva Plus Capsules', 'standard', NULL, '10.1000', '10.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.1000', '', '10.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 822, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (8070, 822, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (8071, 822, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (8072, 822, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (8073, 822, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 823, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 824, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '403.0000', '', '40.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 (8076, 824, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '584.0000', '', '58.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 (8077, 824, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '32.1000', 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 (9648, 825, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (9647, 825, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '1.0000', 1, '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 (9646, 825, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', 0, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 825, 6385, '982', 'Amcof Junior Syrup', 'standard', 0, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', 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 (9644, 825, 6332, '929', 'Adom Koo Capsules', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (9643, 825, 6304, '901', 'Lonart Suspension', 'standard', 0, '13.5000', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.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 (9642, 825, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 'standard', 0, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', 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 (9641, 825, 6077, '674', 'Fiesta Condom All Night', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (9640, 825, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (9639, 825, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (9638, 825, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (9637, 825, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (9636, 825, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', 0, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (9635, 825, 5651, '248', 'Glucose Powder 400mg', 'standard', 0, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', 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 (9634, 825, 5640, '237', 'Gebedol Tablet', 'standard', 0, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', 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 (9633, 825, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', 0, '18.0000', '18.0000', '1.0000', 1, '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 (8096, 826, 6344, '941', 'Perfectil platinum 60\'s', 'standard', NULL, '220.0000', '220.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '440.0000', '', '220.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 826, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (8098, 827, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8099, 828, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (8100, 828, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (8101, 828, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 828, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (8103, 828, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '12.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 (8104, 829, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (8105, 829, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (8106, 829, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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 (8107, 829, 6634, '1231', 'Bells Olive Oil 70ml', 'standard', NULL, '13.4000', '13.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '13.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6057, '654', 'Liv 52 Tablets', 'standard', NULL, '41.5000', '41.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5000', '', '41.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (8111, 829, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '26.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 (8112, 829, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (8113, 829, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (8116, 829, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (8117, 829, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (8118, 829, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '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 (8119, 829, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (8120, 829, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6741, '1338', 'Lisinopril 5mg Tablets 28\'s Teva', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (8122, 829, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (8123, 829, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (8124, 829, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '75.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (8126, 829, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6887, '5738767', 'Actilife Flex-14 (Glucosamine Chondroitin)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (8128, 829, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (8129, 829, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (8130, 829, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (8131, 829, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.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 (8132, 829, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (8134, 829, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (8136, 829, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6278, '875', 'Tinatett 230 Herbal Capsules', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (8138, 829, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (8139, 829, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', 'standard', NULL, '16.3400', '16.3400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3400', '', '16.3400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '11.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 5673, '270', 'Ibex Capsules 24\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (8142, 829, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 829, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (8144, 830, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 830, 6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (8146, 830, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 830, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (8148, 830, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '2.0000', 1, '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 (8149, 830, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (8150, 830, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 830, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (8152, 830, 5990, '587', 'Whitfield ointment', 'standard', NULL, '8.6500', '8.6500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9500', '', '8.6500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.8300', '', '40.8300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.6000', 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 (8492, 831, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '3.5000', NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (8490, 831, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (8489, 831, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.5000', '', '25.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 (8488, 831, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7600', '', '6.3800', 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 (8487, 831, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (8486, 831, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (8485, 831, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '3.2000', 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 (8484, 831, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '7.7000', 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 (8482, 831, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (8481, 831, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (8479, 831, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '2.8000', 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 (8478, 831, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (8477, 831, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '9.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', 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 (8474, 831, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (8473, 831, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (8472, 831, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (8471, 831, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '8.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 (8470, 831, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (8469, 831, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7500', '', '5.9500', 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 (8468, 831, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '4.3000', 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 (8467, 831, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', 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 (8466, 831, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 831, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (8186, 832, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.0000', '35.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.0000', '', '35.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 (8187, 832, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (8188, 833, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', 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 (8189, 833, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.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 (8190, 833, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4300', '', '24.4300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 833, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (14930, 834, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (14921, 834, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', 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 (14922, 834, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (14923, 834, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.9000', 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 (14924, 834, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.7000', '', '22.9000', 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 (14925, 834, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.9000', '', '10.3000', 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 (14926, 834, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', NULL, '41.6300', '41.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6300', '', '41.6300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14927, 834, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 'standard', NULL, '16.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '16.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 (14928, 834, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '17.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 (14929, 834, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7500', '', '8.7500', 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 (14909, 834, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (14910, 834, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (14911, 834, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (14912, 834, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '4.7100', '4.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.7100', '', '4.7100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14913, 834, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (14914, 834, 6279, '876', 'Tinatett Bf Bf Capsules', 'standard', NULL, '26.4000', '26.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '26.4000', 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 (14915, 834, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '14.6000', 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 (14916, 834, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (14917, 834, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.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 (14918, 834, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (14919, 834, 6366, '963', 'Flotac Capsules 75mg 20\'s', 'standard', NULL, '85.7800', '85.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '171.5600', '', '85.7800', 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 (14920, 834, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (14903, 834, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '6.2000', 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 (14904, 834, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4200', '', '14.2100', 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 (14905, 834, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (14906, 834, 6071, '668', 'Vin C 100mg Tablets 30\'s', 'standard', NULL, '19.6000', '19.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '19.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 (14907, 834, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14908, 834, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', NULL, '15.2000', '15.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '15.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14877, 834, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.4000', 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 (14878, 834, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (14879, 834, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', NULL, '98.6000', '98.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '295.8000', '', '98.6000', 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 (14880, 834, 5478, '75', 'Bendroflumethiazide 2.5mg Tablets 28s Almus Uk', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.7000', 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 (14881, 834, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.6000', '', '46.3000', 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 (14882, 834, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (14883, 834, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.7000', 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 (14884, 834, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (14885, 834, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (14886, 834, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '16.8000', 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 (14887, 834, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (14888, 834, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.8000', 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 (14889, 834, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14890, 834, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '4.0200', 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 (14891, 834, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (14892, 834, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (14893, 834, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14894, 834, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (14895, 834, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (14896, 834, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '23.7000', '23.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.7000', '', '23.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14897, 834, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (14898, 834, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.3400', '', '10.7800', 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 (14899, 834, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (14900, 834, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.7300', '', '22.9100', 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 (14901, 834, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14902, 834, 5998, '595', 'Linctus Adult Cough syr. 100ml', 'standard', NULL, '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '6.4000', 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 (8250, 835, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.4000', '', '2.3000', NULL, 1, 'pc', '48.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 835, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.0000', '', '18.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 (8252, 836, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (8253, 836, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3000', '', '6.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6300', '', '12.2100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '16.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (8258, 836, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (8259, 836, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8261, 836, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8262, 836, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '7.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 (8263, 836, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (8265, 836, 6063, '660', 'Speman Tablets', 'standard', NULL, '41.3000', '41.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.3000', '', '41.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 (8266, 836, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (8267, 836, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (8268, 836, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 836, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (8834, 837, 5462, '59', 'Atenolol 100mg Tablets 28s Teva', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (8835, 837, 5725, '322', 'Lisinopril 20mg Teva', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (8838, 884, 6089, '686', 'Cebrotonin 800mg Tablets 30\'s', 'standard', NULL, '73.5000', '73.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '73.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 837, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (8836, 837, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (8381, 838, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.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 (8382, 838, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (8383, 838, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '2.2000', 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 (8384, 838, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', NULL, '1.4900', '1.4900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '1.4900', 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 (8385, 838, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 838, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6400', '', '3.8800', 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 (8387, 838, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (8757, 851, 5577, '174', 'Diflucan 150mg Capsules 1\'s', 'standard', NULL, '81.2000', '81.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '162.4000', '', '81.2000', 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 (8284, 839, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (8833, 837, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (8291, 840, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (8292, 841, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 841, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (8294, 841, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 841, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 841, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (8297, 841, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (8298, 841, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', 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 (8299, 841, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3500', '', '2.6900', 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 (8300, 841, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (8301, 841, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (8302, 841, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (8303, 841, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (8304, 841, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 841, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (8306, 841, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 841, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (8308, 841, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (8309, 842, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (8310, 842, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (8311, 842, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (8312, 842, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0700', '', '2.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 (8313, 842, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (8314, 842, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '5.0000', 1, '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 (8315, 843, 5710, '307', 'Leena Capsules', 'standard', 0, '4.0200', '4.0200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '4.0200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 843, 5970, '567', 'Virol blood tonic 200ml', 'standard', 0, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 843, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.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 (8318, 843, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (8319, 843, 6608, '1205', 'Skyclav 457mg', 'standard', 0, '14.3000', '14.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '14.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 (8320, 843, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (8321, 843, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8322, 844, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 845, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (8852, 845, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', 0, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', 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 (8851, 845, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', 0, '30.0000', '30.0000', '1.0000', 1, '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 (8850, 845, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', 0, '30.0000', '30.0000', '1.0000', 1, '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 (8849, 845, 6273, '870', 'Vikil 20', 'standard', 0, '26.0000', '26.0000', '1.0000', 1, '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 (8848, 845, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', 0, '6.8500', '6.8500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.4000', '', '6.8500', 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 (9663, 846, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (9662, 846, 6897, '80096466', 'Streptol 6X2 Lozenges', 'standard', NULL, '4.8000', '4.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '4.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 846, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 846, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', 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 (9659, 846, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (9658, 846, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 846, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (9655, 847, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (9654, 847, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (9653, 847, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 847, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (9651, 847, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (9650, 847, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (8343, 848, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (8344, 848, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 848, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 849, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.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 (8347, 849, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '85.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 849, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '5.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 (8349, 849, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.8500', '', '20.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 850, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.8000', 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 (8374, 850, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 850, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (8372, 850, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4500', '', '2.6900', 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 (8371, 850, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (8370, 850, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 850, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8200', '', '3.9100', 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 (8377, 838, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.7000', '', '8.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 838, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '11.1000', 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 (8379, 838, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 838, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (8376, 850, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.6000', '', '14.9600', 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 (8759, 851, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '9.4000', 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 (8760, 851, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '8.4000', 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 (8761, 851, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '2.0000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.9500', '', '36.9900', 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 (8763, 851, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (8764, 851, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.5000', 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 (8765, 851, 5946, '543', 'Wellman Capsules', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (8766, 851, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '322.0000', '', '16.1000', 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 (8767, 851, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.8000', '', '10.7800', 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 (8768, 851, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '6.0000', 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 (8769, 851, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '11.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 (8770, 851, 6004, '601', 'PMF 200g', 'standard', NULL, '12.5400', '12.5400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.7000', '', '12.5400', 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 (8771, 851, 6084, '681', 'Amaryl 2mg Tablet 30\'s', 'standard', NULL, '91.8900', '91.8900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '275.6700', '', '91.8900', 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 (8772, 851, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.0000', '', '26.8000', 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 (8773, 851, 6100, '697', 'Haem Up Syrup 200ml', 'standard', NULL, '18.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '18.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 (8774, 851, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '278.0000', '', '27.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 (8775, 851, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.2000', '', '4.3500', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', '5.8000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.0000', '', '3.8000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '159.5000', '', '15.9500', 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 (8779, 851, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '9.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 (8780, 851, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '11.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 (8781, 851, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '208.0000', '', '10.4000', 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 (8782, 851, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.0000', '', '45.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 (8783, 851, 6206, '803', 'Contreg Tablets 10x10', 'standard', NULL, '7.8400', '7.8400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.4000', '', '7.8400', 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 (8784, 851, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.7600', '', '30.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 (8785, 851, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '285.0000', '', '1.9000', NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '403.5000', '', '2.6900', NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '2.8000', NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.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 (8790, 851, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '2.5000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '187.5000', '', '3.7500', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.5000', '', '25.3000', 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 (8793, 851, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '55.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 (8794, 851, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.0000', '', '4.1000', 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 (8795, 851, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '246.0000', '', '8.2000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.6400', '', '37.3200', 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 (8797, 851, 6428, '1025', 'Fericon 200ml Syrup', 'standard', NULL, '16.5000', '16.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '16.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 (8798, 851, 6429, '1026', 'Onita Syrup 200ml', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (8799, 851, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (8800, 851, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.6000', '', '10.6000', 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 (8801, 851, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', 0, '4.5000', '4.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '270.0000', '', '4.5000', NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '214.0000', '', '21.4000', 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 (8803, 851, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.4000', '', '18.9000', 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 (8804, 851, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '129.0000', '', '12.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 (8805, 851, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (8806, 851, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.8000', '', '4.4500', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', '6.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6747, '1344', 'Neoferon Syrup 200ml', 'standard', NULL, '12.9800', '12.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '129.8000', '', '12.9800', 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 (8809, 851, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (8810, 851, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '159.0000', '', '26.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 (8811, 851, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '390.0000', '', '13.0000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '1.0000', 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 (8813, 851, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '432.0000', '', '18.0000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 6877, '13587208', 'Actilife multivitamin 30s', 'standard', NULL, '14.0000', '14.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '14.0000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 852, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (8451, 852, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (8452, 852, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 852, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 852, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (8455, 852, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (8456, 852, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (8457, 852, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.7800', '', '60.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 852, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (8459, 852, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (8460, 852, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (8461, 852, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (8462, 853, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (8463, 854, 6211, '808', 'Contreg Syrup 30ml', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (8464, 854, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (8495, 831, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (9630, 855, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '18.4000', 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 (9631, 855, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '6.7000', '6.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '6.7000', 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 (9628, 855, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '2.5000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.2000', 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 (9625, 855, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (9626, 855, 6334, '931', 'Adom W&G Mixture', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (9627, 855, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (9623, 855, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', '15.9500', 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 (9624, 855, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', 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 (9613, 855, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (9614, 855, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (9615, 855, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.2000', 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 (9616, 855, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.2500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 5989, '586', 'APC 50X4 TABS', 'standard', NULL, '28.1000', '28.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.1000', '', '28.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (9621, 855, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0500', '', '4.3500', 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 (9622, 855, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '5.8000', 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 (9603, 855, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', 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 (9604, 855, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9400', '', '2.9800', 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 (9605, 855, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (9606, 855, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '17.5000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.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 (9607, 855, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (9608, 855, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (9609, 855, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9610, 855, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (9612, 855, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (9602, 855, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.4000', '', '18.7000', 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 (8528, 856, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.1000', '', '15.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 857, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (8530, 857, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (8531, 858, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4200', '', '13.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 858, 6100, '697', 'Haem Up Syrup 200ml', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (8533, 859, 6825, '1422', 'Oxytetra Cap 250mg', '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 (8534, 859, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '5.0000', 1, '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 (8535, 859, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.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 (8536, 859, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 860, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (8538, 860, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (8539, 860, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 860, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (8541, 860, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (8542, 860, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (8543, 861, 6763, '1360', 'Medi Plus', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (8544, 862, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 862, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (8546, 862, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (8547, 862, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (8548, 862, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (8549, 862, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (8550, 862, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (8551, 862, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 862, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.4000', '', '12.8500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 863, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 864, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '2.2000', 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 (9455, 864, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', NULL, '5.2000', '5.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '5.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 864, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.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 (9453, 864, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 864, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (9451, 864, 6106, '703', 'Lexocap 20x10', 'standard', NULL, '1.5000', '1.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '1.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 (9450, 864, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (9449, 864, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 865, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5500', '', '10.5500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 866, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '4.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 (8564, 866, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 866, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', 0, '48.0000', '48.0000', '1.0000', 1, '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 (8566, 866, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (8567, 866, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (8568, 866, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (8569, 866, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (8570, 866, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (8571, 866, 5509, '106', 'Cartef Suspension', 'standard', NULL, '6.8800', '6.8800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5200', '', '6.8800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (8573, 867, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.8300', '', '40.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 (8574, 867, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (8575, 867, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (8576, 867, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '3.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 (8577, 867, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (8581, 867, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (8582, 867, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (8583, 867, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (8585, 867, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 867, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', '5.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 (8588, 868, 5733, '330', 'Lubrimax Jelly 50g', 'standard', NULL, '20.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '20.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8590, 868, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (8591, 868, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (8593, 868, 6325, '922', 'Xylo Acino 0.1% Nasal Spray', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (8594, 868, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (8595, 868, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (8596, 868, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.7000', '', '43.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (8598, 868, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', NULL, '39.5000', '39.5000', '2.0000', 1, '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 (8599, 868, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '25.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (8601, 868, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8602, 868, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (8604, 868, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.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 (8605, 868, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (8606, 868, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9200', '', '14.9600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 868, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7500', '', '8.7500', 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 (8608, 869, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8609, 869, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (8832, 870, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (8611, 871, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (8612, 871, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8200', '', '3.4100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 871, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (8614, 871, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', '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 (8615, 871, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.7000', '', '7.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 (8756, 851, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.4000', '', '8.2000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7600', '', '2.9800', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 851, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '3.3000', 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 (8677, 872, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 873, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (8679, 873, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (8680, 873, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.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 (8681, 873, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '39.1000', '39.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '39.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 873, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '272.6000', '', '27.2600', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 873, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '0.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 (8684, 874, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', NULL, '28.5000', '28.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.0000', '', '28.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 (8685, 875, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 875, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '7.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 (8687, 876, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (8688, 876, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', NULL, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.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 (8689, 876, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.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 (8690, 876, 6174, '771', 'Diproson Cream 30g', 'standard', NULL, '3.1500', '3.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '3.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (8693, 876, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (8694, 876, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.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 (8695, 876, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6000', '', '2.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 (8696, 876, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (8697, 876, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', NULL, '2.8900', '2.8900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '2.8900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (8701, 876, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '4.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 (8702, 876, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (8703, 876, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '4.4500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', 'standard', NULL, '37.3200', '37.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.3200', '', '37.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 876, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (8707, 877, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (8709, 877, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (8712, 877, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '8.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (8714, 877, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8715, 877, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '4.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 (8716, 877, 6274, '871', 'Gana Balm 100g', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8717, 877, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (8718, 877, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (8719, 877, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5800', '', '3.7900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (8722, 877, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '8.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 (8723, 877, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6560, '1157', 'Metformin Denk 1000mg Tablets', 'standard', NULL, '41.6300', '41.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6300', '', '41.6300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (8726, 877, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.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 (8728, 877, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '10.7800', '10.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7800', '', '10.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8200', '', '22.9100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.4000', '', '24.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 (8733, 877, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (8734, 877, 6850, '1447', 'Flucotrust Capsules 150mg', 'standard', NULL, '2.8900', '2.8900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5600', '', '2.8900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (8736, 877, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6370, '967', 'Supirocin Ointment 15g', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (8738, 877, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (8739, 877, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (8740, 877, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', '60.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (8743, 877, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8744, 877, 6366, '963', 'Flotac Capsules 75mg 20\'s', 'standard', NULL, '85.7800', '85.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.7800', '', '85.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2400', '', '4.6200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 877, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '43.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 (8747, 877, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8400', '', '5.9800', 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 (8748, 877, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (8749, 877, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '32.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 878, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (8751, 879, 6690, '1287', 'Seclear Eye Drop', 'standard', NULL, '8.2500', '8.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '8.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 (8752, 880, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 881, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (8815, 882, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (8816, 882, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (8817, 882, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (8818, 882, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.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 (8819, 882, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.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 (8820, 882, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.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 (8822, 882, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (8823, 883, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (8824, 883, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8825, 883, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 883, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 883, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1000', '', '10.5500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 883, 6420, '1017', 'Menthox Lozenges', 'standard', NULL, '15.6000', '15.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '15.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 (8829, 883, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', NULL, '2.5300', '2.5300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6500', '', '2.5300', 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 (8830, 883, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 883, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (8839, 884, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '3.3200', 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 (8840, 884, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.4000', '', '18.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 884, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (8842, 884, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 884, 6486, '1083', 'Contiflo XL 400mcg Capsules 30\'s', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (8844, 884, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (8845, 884, 6342, '939', 'Wellman 70+ Tablets 30\'s', 'standard', NULL, '58.1000', '58.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.2000', '', '58.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 884, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', NULL, '21.5000', '21.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.5000', '', '21.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 (8847, 884, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4500', '', '24.0900', 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 (12788, 885, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '12.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12787, 885, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (12786, 885, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (12785, 885, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', 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 (12784, 885, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 886, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (8861, 886, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (8862, 887, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 888, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (9029, 889, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.1300', '', '17.7100', 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 (9027, 889, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.7000', 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 (9008, 889, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (9009, 889, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', 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 (9010, 889, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', 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 (9011, 889, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.2500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (9014, 889, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.8000', 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 (9017, 889, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (9018, 889, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', 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 (9020, 889, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (9021, 889, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.0000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (9023, 889, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9024, 889, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6400', '', '3.8800', 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 (9025, 889, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '3.1800', 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 (9026, 889, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '4.4500', 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 (8918, 890, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (8919, 890, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.8000', '', '37.7000', 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 (8920, 890, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 890, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 890, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.8000', 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 (8916, 890, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.5000', '', '7.3000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 890, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '16.6000', '16.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.6000', '', '16.6000', 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 (8913, 890, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (8914, 890, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.5000', 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 (8915, 890, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '13.8000', 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 (8898, 891, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.6000', '', '26.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 891, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (8900, 891, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.6000', '', '23.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 (8901, 891, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 891, 5562, '159', 'Deep Freez Spray 150ml', 'standard', NULL, '58.9000', '58.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '176.7000', '', '58.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 891, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (8904, 891, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '6.9000', 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 (8905, 891, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '27.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 (8906, 891, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (8907, 891, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '231.5000', '', '46.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 (8908, 891, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (8909, 891, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '8.2000', 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 (8910, 891, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '8.0000', 1, '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 (8911, 891, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '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 (8922, 890, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (8923, 892, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (8924, 892, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '2.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 (8925, 892, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '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 (8926, 892, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (8927, 892, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.5000', '', '7.3000', 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 (8928, 892, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (8929, 892, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (8930, 892, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 892, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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 (8932, 892, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.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 (8933, 892, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '9.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 (8934, 892, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.3600', '', '12.8400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 892, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (8936, 892, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (8937, 892, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8938, 892, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (8939, 892, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (8940, 892, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '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 (8941, 893, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.1200', '', '6.0200', 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 (8942, 894, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', 0, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 6429, '1026', 'Onita Syrup 200ml', 'standard', 0, '15.5000', '15.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.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 (8966, 895, 6428, '1025', 'Fericon 200ml Syrup', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', 0, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (8963, 895, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (8962, 895, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', 0, '39.1000', '39.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '39.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (8960, 895, 5839, '436', 'Prostacure Tea', 'standard', 0, '19.0000', '19.0000', '1.0000', 1, '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 (8959, 895, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', 0, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 895, 5624, '221', 'Foligrow Syrup 200ml', 'standard', 0, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', 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 (8957, 895, 5497, '94', 'BX Syrup 100ml', 'standard', 0, '5.6000', '5.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '5.6000', 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 (8956, 895, 5456, '53', 'Aspanol All In One Syrup', 'standard', 0, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.6000', 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 (8969, 896, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (8970, 896, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (8971, 896, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '16.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 896, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 896, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3700', '', '16.3700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 896, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '2.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 (8993, 897, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.7900', '', '3.7900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 897, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (8991, 897, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 897, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '2.0000', 1, '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 (8989, 897, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (8988, 897, 6350, '947', 'Ronfit Cold P Junior Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (8987, 897, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (8986, 897, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 897, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', 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 (8994, 897, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '2.6000', 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 (9005, 898, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 898, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 898, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 899, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 899, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 899, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (9001, 900, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (9007, 901, 6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', 'standard', NULL, '13.1000', '13.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2000', '', '13.1000', 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 (9003, 902, 6146, '743', 'Amoxicillin 500mg Capsules M& G 10x10', 'standard', NULL, '33.0000', '33.0000', '1.0000', 1, '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 (9030, 889, 6897, '80096466', 'Streptol 6X2 Lozenges', 'standard', NULL, '4.8000', '4.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '4.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 889, 6557, '1154', 'Ocip TZ', 'standard', NULL, '9.6000', '9.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '9.6000', 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 (9757, 903, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', 0, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.6000', 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 (9756, 903, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '157.0800', '', '26.1800', 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 (9755, 903, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '40.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 (9754, 903, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9753, 903, 6564, '1161', 'Proximexa 500mg Tablets', 'standard', NULL, '81.4000', '81.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '162.8000', '', '81.4000', 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 (9752, 903, 6563, '1160', 'Polygynax Pessaries 12\'s', 'standard', 0, '67.0000', '67.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.0000', '', '67.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 (9751, 903, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.6000', 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 (9750, 903, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (9749, 903, 6458, '1055', 'Infa V Pessaries', 'standard', 0, '22.9000', '22.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.5000', '', '22.9000', 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 (9748, 903, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '8.2000', '8.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.0000', '', '8.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 (9747, 903, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (9746, 903, 6350, '947', 'Ronfit Cold P Junior Syrup', 'standard', NULL, '6.0000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '6.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 (9745, 903, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', 0, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (9744, 903, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', 0, '10.4000', '10.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '10.4000', 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 (9743, 903, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', 0, '68.5000', '68.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '68.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 (9742, 903, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', 0, '2.8800', '2.8800', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1600', '', '2.8800', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 903, 6210, '807', 'BX Syrup 200ml', 'standard', 0, '7.1000', '7.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6000', '', '7.1000', 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 (9740, 903, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '8.8000', 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 (9739, 903, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (9738, 903, 6064, '661', 'Carbozap Junior Syrup 100ml', 'standard', 0, '4.7000', '4.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '4.7000', 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 (9737, 903, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '10.5500', '10.5500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.5000', '', '10.5500', 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 (9736, 903, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', 0, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (9735, 903, 5757, '354', 'Mark 2 Inhaler', 'standard', 0, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (9734, 903, 5754, '351', 'Malin Baby', 'standard', 0, '7.2000', '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.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 (9733, 903, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', 0, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.8000', 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 (9813, 904, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '17.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 (9814, 904, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (9815, 904, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.4000', '', '18.4000', 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 (9812, 904, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', NULL, '83.6000', '83.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '83.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 (9797, 904, 5562, '159', 'Deep Freez Spray 150ml', 'standard', NULL, '58.9000', '58.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '176.7000', '', '58.9000', 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 (9798, 904, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (9799, 904, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (9800, 904, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '221.9400', '', '36.9900', 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 (9801, 904, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (9802, 904, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (9803, 904, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '16.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 (9804, 904, 6185, '782', 'Magnavit Tonic 200ml', 'standard', NULL, '7.8500', '7.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2500', '', '7.8500', 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 (9805, 904, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '7.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 (9806, 904, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (9807, 904, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.8000', 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 (9808, 904, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.6000', '', '66.5200', 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 (9809, 904, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (9810, 904, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5900', '', '49.5300', 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 (9811, 904, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 905, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (9841, 906, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (9832, 906, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.4000', '', '10.4000', 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 (9833, 906, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (9834, 906, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.0000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 906, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '3.5200', 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 (9836, 906, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 906, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '15.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 (9838, 906, 6585, '1182', 'Fleming 1000mg Tablets', 'standard', NULL, '52.0000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '52.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 (9839, 906, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (9840, 906, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', NULL, '8.9000', '8.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.4000', '', '8.9000', 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 (9816, 906, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.4000', '', '18.9000', 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 (9817, 906, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.2000', '', '3.9100', 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 (9818, 906, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.5000', '', '28.9000', 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 (9819, 906, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.3000', '', '31.1000', 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 (9820, 906, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (9821, 906, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '16.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 (9822, 906, 5784, '381', 'Naprox EC 500mg Tablets 100\'s', 'standard', NULL, '95.7600', '95.7600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.7600', '', '95.7600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 906, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.5500', '', '14.8500', 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 (9824, 906, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (9825, 906, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.9000', 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 (9826, 906, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (9827, 906, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (9828, 906, 6065, '662', 'Ferofix Syrup 200ml', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', 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 (9829, 906, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '12.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 (9830, 906, 6173, '770', 'Betasol Cream 30g', 'standard', NULL, '3.1500', '3.1500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '3.1500', 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 (9831, 906, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.5000', '', '38.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 (9414, 907, 6771, '1368', 'Hydrolyte ORS 25 Lemon Flav. ECL', 'standard', NULL, '19.2000', '19.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '19.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', 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 (9396, 907, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '17.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 (9397, 907, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.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 (9399, 907, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (9400, 907, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (9401, 907, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (9402, 907, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (9403, 907, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (9404, 907, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.1000', '', '12.7000', 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 (9405, 907, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '18.4000', 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 (9406, 907, 6631, '1228', 'Diphex Bronchodilator Cough Syrup 100ml', 'standard', NULL, '7.7000', '7.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '7.7000', 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 (9407, 907, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '8.7500', 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 (9408, 907, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.7000', 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 (9409, 907, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (9410, 907, 6678, '1275', 'Azirocin Suspension', 'standard', NULL, '14.3000', '14.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.5000', '', '14.3000', 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 (9411, 907, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '10.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '10.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 (9412, 907, 6682, '1279', 'Goldy Forte DS', 'standard', NULL, '10.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '10.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 (9413, 907, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9358, 907, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.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 (9359, 907, 6151, '748', 'Jeditone Syrup 200ml', 'standard', NULL, '12.6000', '12.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '12.6000', 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 (9360, 907, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.4000', 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 (9361, 907, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (9362, 907, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (9363, 907, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (9364, 907, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (9366, 907, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', NULL, '1.9000', '1.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7000', '', '1.9000', 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 (9367, 907, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (9368, 907, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.3000', 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 (9369, 907, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (9370, 907, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '6.8500', 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 (9371, 907, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1000', '', '6.0200', 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 (9372, 907, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '122.4000', '122.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.4000', '', '122.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (9375, 907, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '14.6000', 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 (9376, 907, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (9377, 907, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (9378, 907, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (9379, 907, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (9380, 907, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.9000', 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 (9381, 907, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (9382, 907, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (9383, 907, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (9384, 907, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (9385, 907, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (9386, 907, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (9387, 907, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (9388, 907, 6403, '1000', 'Azomax 200mg/5ml Suspension', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (9389, 907, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.4500', '', '6.0300', 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 (9390, 907, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '4.6200', 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 (9391, 907, 6423, '1020', 'Diphex Junior Cough Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.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 (9392, 907, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', '5.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 (9393, 907, 6464, '1061', 'Mist Expect Sed Mal-Titi', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9394, 907, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (9302, 907, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (9303, 907, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (9304, 907, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.6000', '', '5.8600', 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 (9305, 907, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (9306, 907, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (9307, 907, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (9308, 907, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '16.6000', '16.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2000', '', '16.6000', 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 (9309, 907, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (9310, 907, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.4000', 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 (9311, 907, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '16.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 (9312, 907, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (9313, 907, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.9000', 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 (9314, 907, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (9315, 907, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (9316, 907, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (9317, 907, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (9318, 907, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (9319, 907, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (9320, 907, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (9321, 907, 5753, '350', 'Malin Adult', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (9322, 907, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9323, 907, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.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 (9325, 907, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (9326, 907, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (9327, 907, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (9328, 907, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.4000', '', '3.1000', 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 (9329, 907, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (9330, 907, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (9331, 907, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (9332, 907, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (9333, 907, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (9334, 907, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '16.1000', '16.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '16.1000', 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 (9335, 907, 5962, '559', 'Zinvite Syrup 200ml', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.8000', 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 (9336, 907, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (9337, 907, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9338, 907, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (9339, 907, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '7.6000', 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 (9341, 907, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '9.1000', 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 (9342, 907, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', NULL, '2.5300', '2.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.0600', '', '2.5300', 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 (9343, 907, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6033, '630', 'Deep Heat Rub 35g', 'standard', NULL, '31.4000', '31.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.8000', '', '31.4000', 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 (9345, 907, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (9346, 907, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (9347, 907, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (9348, 907, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (9349, 907, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.9000', 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 (9351, 907, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.2000', '', '8.3200', 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 (9353, 907, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '5.6000', 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 (9354, 907, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', 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 (9355, 907, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (9356, 907, 6127, '724', 'X\'Zole F Suspension', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.3000', 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 (9357, 907, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7500', '', '4.3500', 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 (9228, 908, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (9229, 908, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (9230, 908, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9231, 908, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (9232, 908, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '2.0000', 1, '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 (9234, 908, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.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 (9238, 908, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9239, 908, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (9240, 908, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (9243, 908, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', NULL, '17.9000', '17.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.8000', '', '17.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 (9244, 908, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (9245, 908, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (9246, 908, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 908, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (9248, 908, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (9249, 908, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (9250, 908, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (9251, 908, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (9252, 908, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (9253, 909, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (9254, 909, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '3.0000', 1, '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 (9255, 909, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (9256, 910, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (9298, 911, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.3400', '', '10.7800', 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 (9299, 911, 6853, '1450', 'Mycolex Powder 50g', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (9281, 911, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (9282, 911, 5720, '317', 'Lexsporin Skin Ointment 20g', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (9283, 911, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', 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 (9284, 911, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 911, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (9286, 911, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (9287, 911, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (9288, 911, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (9289, 911, 6089, '686', 'Cebrotonin 800mg Tablets 30\'s', 'standard', NULL, '73.5000', '73.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '73.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 (9290, 911, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (9291, 911, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (9292, 911, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4600', '', '19.7300', 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 (9293, 911, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9000', '', '43.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 911, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '10.6000', 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 (9295, 911, 6574, '1171', 'Mucolex Cough Syrup150ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (9296, 911, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (9297, 911, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (9277, 912, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8600', '', '24.4300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 912, 5990, '587', 'Whitfield ointment', 'standard', NULL, '8.6500', '8.6500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.3000', '', '8.6500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 913, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '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 (9280, 914, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 911, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 911, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.5000', '', '15.5000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (9416, 907, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 907, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.9000', '', '10.7800', 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 (9418, 907, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.6000', 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 (9419, 907, 6854, '1451', 'Luex Baby Powder 200g', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (9420, 907, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '10.0000', 1, '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 (9421, 907, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.8000', 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 (9431, 915, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 915, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.6000', 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 (9429, 915, 6450, '1047', 'Diagellates Elixir 500ml', 'standard', NULL, '45.0000', '45.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '225.0000', '', '45.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 (9428, 915, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', NULL, '25.5000', '25.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '25.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 (9427, 915, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (9434, 916, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 917, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (9436, 918, 6523, '1120', 'Neurozan 30\'8 Caps', 'standard', NULL, '131.5700', '131.5700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.5700', '', '131.5700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 919, 5733, '330', 'Lubrimax Jelly 50g', 'standard', NULL, '20.0000', '20.0000', '1.0000', 1, '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 (9446, 919, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 919, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 920, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 920, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (9448, 919, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5800', '', '3.7900', 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 (9457, 921, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '157.6800', '', '13.1400', 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 (9702, 922, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', 0, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (9701, 922, 6446, '1043', 'Dermiron Plus', 'standard', 0, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (9700, 922, 6370, '967', 'Supirocin Ointment 15g', 'standard', 0, '25.3000', '25.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '25.3000', 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 (9699, 922, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', 0, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (9698, 922, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '14.6000', 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 (9697, 922, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.1200', '', '6.0200', 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 (9696, 922, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', 0, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (9695, 922, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (9694, 922, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', 0, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (9693, 922, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', 0, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.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 (9692, 922, 6191, '788', 'Shal\'Artem Dry Syrup', 'standard', 0, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (9691, 922, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', 'standard', NULL, '4.5000', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '4.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 (9690, 922, 6123, '720', 'Strobin Lozenges 54X6', 'standard', 0, '60.5000', '60.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.5000', '', '60.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 (9689, 922, 6117, '714', 'Gudapet Capsules', 'standard', 0, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.6000', 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 (9688, 922, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '6.9000', 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 (9687, 922, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 922, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9000', '', '25.9500', 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 (9685, 922, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 922, 6011, '608', 'Scimether Suspension', 'standard', 0, '14.2100', '14.2100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.8400', '', '14.2100', 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 (9683, 922, 6001, '598', 'Paraking Syrup 100ml', 'standard', 0, '6.2000', '6.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '6.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 (9682, 922, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.6000', 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 (9681, 922, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', 0, '10.8000', '10.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '10.8000', 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 (9680, 922, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (9679, 922, 5717, '314', 'Letavit Syrup', 'standard', 0, '2.4000', '2.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '2.4000', 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 (9678, 922, 5528, '125', 'Cirotamin Tonic', 'standard', 0, '16.6000', '16.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.6000', '', '16.6000', 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 (9677, 922, 5509, '106', 'Cartef Suspension', 'standard', 0, '6.8800', '6.8800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.2800', '', '6.8800', 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 (9676, 922, 5507, '104', 'Carbozap Syrup Adult 100ml FG', 'standard', 0, '4.9900', '4.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9700', '', '4.9900', 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 (9675, 922, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', 0, '49.0000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '49.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 (9490, 923, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 924, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.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 (9492, 925, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (9493, 926, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 927, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '4.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 927, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (9496, 927, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (9497, 927, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '7.2000', 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 (9498, 927, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '15.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 (9499, 927, 6464, '1061', 'Mist Expect Sed Mal-Titi', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (9549, 928, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 928, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.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 (9551, 928, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9552, 928, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 928, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (9793, 929, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (9792, 929, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (9791, 929, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (9790, 929, 6867, '01981362', 'Fiesta Condom dotted', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (9789, 929, 6866, '89649628', 'Fiesta Condom Fruity', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (9788, 929, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (9787, 929, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (9786, 929, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', 0, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (9784, 929, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.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 (9783, 929, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (9782, 929, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', 0, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.9000', 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 (9781, 929, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.9000', 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 (9780, 929, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.4000', '', '53.2000', 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 (9779, 929, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', 0, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (9777, 929, 6395, '992', 'Shaltoux Herbal Cough Syrup', 'standard', NULL, '9.5500', '9.5500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.7500', '', '9.5500', 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 (9778, 929, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (9763, 929, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '4.2000', 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 (9764, 929, 5673, '270', 'Ibex Capsules 24\'s', 'standard', 0, '17.7000', '17.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '106.2000', '', '17.7000', 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 (9765, 929, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (9766, 929, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.7000', 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 (9767, 929, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '37.7000', '37.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7000', '', '37.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6010, '607', 'Rooter Tytonic', 'standard', 0, '16.5000', '16.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '16.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 (9769, 929, 6031, '628', 'Blocold Tablet', 'standard', NULL, '26.7000', '26.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '26.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6140, '737', 'Fabrin Tablets 50X4', 'standard', NULL, '30.8000', '30.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '30.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', 0, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', 0, '4.5000', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '4.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 (9773, 929, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', 0, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', 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 (9774, 929, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 929, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', 0, '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', '63.2200', 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 (9776, 929, 6360, '957', 'Wormbase Suspension', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (9760, 929, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', NULL, '98.6000', '98.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.6000', '', '98.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 (9761, 929, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (9762, 929, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', 0, '7.9000', '7.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9000', '', '7.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 930, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '25.0000', 1, '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 (9593, 930, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 930, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (9595, 930, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '2.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 (9596, 930, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (9597, 930, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (9598, 930, 6682, '1279', 'Goldy Forte DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 930, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (9600, 930, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (9601, 930, 5704, '301', 'Koflet Syrup', 'standard', NULL, '16.0500', '16.0500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '16.0500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 855, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (9649, 825, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (9656, 847, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (9667, 931, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (9666, 931, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (9668, 932, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (9669, 932, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (9670, 932, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 932, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (9672, 932, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (9673, 932, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 932, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (9703, 922, 6772, '1369', 'Hydrolyte ORS 25\' Orange Flav. ECL', 'standard', 0, '19.2000', '19.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '19.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 922, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', 0, '10.7800', '10.7800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.6800', '', '10.7800', 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 (9705, 922, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', 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 (9724, 933, 6106, '703', 'Lexocap 20x10', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (9726, 933, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', 0, '30.6900', '30.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.3800', '', '30.6900', 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 (9725, 933, 6183, '780', 'Leopard Balm 30g', 'standard', 0, '5.7500', '5.7500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '5.7500', 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 (9727, 933, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (9728, 933, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '6.6000', 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 (9729, 933, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', 0, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (9730, 933, 6553, '1150', 'Inopril 10/12.5mg', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (9731, 933, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '3.1800', 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 (9732, 933, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', 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 (9715, 934, 5635, '232', 'Gastrone Plus 200ml Suspension', 'standard', NULL, '14.7600', '14.7600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7600', '', '14.7600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 903, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', 0, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (9759, 935, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (9795, 929, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.5000', 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 (9796, 929, 6052, '649', 'Candiderm Cream-Triple Action Cream 15mg', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (9842, 936, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (9843, 937, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 938, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '4.0000', 1, '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 (9845, 938, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (9846, 939, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.4000', '', '2.3000', NULL, 1, 'pc', '48.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 939, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (9848, 939, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.5500', '', '14.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 939, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '14.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 (9850, 939, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (9851, 939, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (9852, 939, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (9853, 939, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.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 (9854, 939, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 939, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0600', '', '49.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 939, 6830, '1427', 'Ganaman Capsules', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (9857, 939, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (9858, 939, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 940, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (9860, 940, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 941, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '6.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 (9862, 941, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4000', '', '17.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 (9863, 941, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.5000', '', '15.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 (9864, 941, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 941, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '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 (9866, 941, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 941, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (9868, 941, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (9869, 941, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8000', '', '3.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 941, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.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 (9937, 942, 6825, '1422', 'Oxytetra Cap 250mg', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 942, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3000', '', '5.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 942, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '7.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 942, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3800', '', '2.6900', 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 (9933, 942, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 942, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '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 (9931, 942, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8600', '', '5.8600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 943, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (9881, 944, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (9882, 944, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (9883, 944, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6847, '1444', 'Kelcuf Adult Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '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 (9885, 944, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (9886, 944, 6166, '763', 'Mucosyl Adult Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (9887, 944, 6165, '762', 'Mucosyl Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '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 (9888, 944, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (9889, 944, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.1100', '', '16.3700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (9891, 944, 6160, '757', 'Emgikof D Syrup100ml', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '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 (9892, 944, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 'standard', NULL, '5.9800', '5.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9200', '', '5.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (9894, 944, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '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 (9895, 944, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (9896, 944, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.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 (9897, 944, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (9898, 944, 6657, '1254', 'Aspanol Jnr. Syrup', 'standard', NULL, '5.4000', '5.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '5.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 (9899, 944, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.4800', '', '9.3700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (9901, 944, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '8.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 (9902, 944, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9200', '', '5.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (9904, 944, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.2000', '', '9.6200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6881, '54874377', 'Dacillin (clindamycin 300mg)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (9906, 944, 5635, '232', 'Gastrone Plus 200ml Suspension', 'standard', NULL, '14.7600', '14.7600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0400', '', '14.7600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.6800', '', '13.9200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '10.4500', '10.4500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '10.4500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '8.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 (9910, 944, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6000', '', '21.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 (9911, 944, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', NULL, '21.6000', '21.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '21.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 (9912, 944, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.4000', '', '21.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 (9913, 944, 5848, '445', 'Relcer Gel', 'standard', NULL, '8.2800', '8.2800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.1200', '', '8.2800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6170, '767', 'Zerocid Plus Suspension 200ML', 'standard', NULL, '10.0000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '10.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 (9915, 944, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '14.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 (9916, 944, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '9.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 (9917, 944, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8200', '', '22.9100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (9919, 944, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.6000', '', '28.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.6600', '', '40.8300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '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 (9922, 944, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 944, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (9925, 944, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '15.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 (9926, 944, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '6.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 (9927, 944, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.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 (9928, 944, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '20.0000', 1, '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 (9929, 944, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (9930, 944, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '10.0000', 1, '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 (9938, 942, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.3000', '', '5.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12335, 945, 5541, '138', 'Combact N', 'standard', 0, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (12384, 945, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', 0, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.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 (12336, 945, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', 0, '2.9800', '2.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9400', '', '2.9800', 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 (12337, 945, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', 0, '18.0000', '18.0000', '1.0000', 1, '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 (12338, 945, 5601, '198', 'Epiderm Cream 30g', 'standard', 0, '5.9500', '5.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8500', '', '5.9500', 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 (12339, 945, 5605, '202', 'Evening Primrose 1000mg Tablets Valupak', 'standard', 0, '21.5000', '21.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '21.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 (12340, 945, 5730, '327', 'Lofnac Gel 30mg', 'standard', 0, '6.0000', '6.0000', '3.0000', 1, '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 (12341, 945, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (12342, 945, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (12343, 945, 5849, '446', 'Rhizin Syrup', 'standard', 0, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (12344, 945, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', 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 (12345, 945, 5963, '560', 'Zipman Capsules', 'standard', 0, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12346, 945, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '5.9000', '5.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '5.9000', 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 (12347, 945, 6036, '633', 'Leorub Gel 30g', 'standard', 0, '4.4300', '4.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8600', '', '4.4300', 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 (12348, 945, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', 0, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', 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 (12349, 945, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12350, 945, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12351, 945, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (12352, 945, 6092, '689', 'Ferrolex Syrup 250ml', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (12353, 945, 6098, '695', 'Klire Tablet 10\'s', 'standard', 0, '5.6000', '5.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '5.6000', 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 (12354, 945, 6109, '706', 'Maalox Plus Suspension 250ml', 'standard', 0, '53.7000', '53.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.7000', '', '53.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12355, 945, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', 0, '4.3500', '4.3500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '4.3500', 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 (12356, 945, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', 0, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (12357, 945, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', 0, '24.3000', '24.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5000', '', '24.3000', 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 (12358, 945, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (12359, 945, 6170, '767', 'Zerocid Plus Suspension 200ML', 'standard', 0, '10.0000', '10.0000', '2.0000', 1, '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 (12360, 945, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (12361, 945, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.9000', '', '40.3000', 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 (12362, 945, 6273, '870', 'Vikil 20', 'standard', 0, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (12363, 945, 6275, '872', 'Gana Balm 20g', 'standard', 0, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.7000', 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 (12364, 945, 6286, '883', 'Kidivite Syrup 200ml', 'standard', 0, '9.6000', '9.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '9.6000', 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 (12365, 945, 6302, '899', 'Klovinal Pessaries', 'standard', 0, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.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 (12366, 945, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.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 (12367, 945, 6342, '939', 'Wellman 70+ Tablets 30\'s', 'standard', 0, '58.1000', '58.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.1000', '', '58.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12368, 945, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', 0, '6.6000', '6.6000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '6.6000', 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 (12369, 945, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', 0, '25.5000', '25.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.5000', '', '25.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 (12370, 945, 6458, '1055', 'Infa V Pessaries', 'standard', 0, '22.9000', '22.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.9000', '', '22.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12371, 945, 6485, '1082', 'Seven Seas JointCare Active 30\'s', 'standard', 0, '109.9000', '109.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.9000', '', '109.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12372, 945, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', 0, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.6000', 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 (12373, 945, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', 0, '120.3600', '120.3600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.3600', '', '120.3600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12374, 945, 6565, '1162', 'Tegretol CR 200mg Divitabs 50\'s', 'standard', 0, '64.7800', '64.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.7800', '', '64.7800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12375, 945, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', 0, '11.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.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 (12376, 945, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.3000', 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 (12377, 945, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', 0, '3.1800', '3.1800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7200', '', '3.1800', 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 (12378, 945, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', 0, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (12379, 945, 6608, '1205', 'Skyclav 457mg', 'standard', 0, '14.3000', '14.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '14.3000', 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 (12380, 945, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.7000', 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 (12381, 945, 6719, '1316', 'Glucose and Chondriton 400mg Tab. Valupak 30\'s', 'standard', 0, '17.4000', '17.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '17.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12382, 945, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '40.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '40.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 (12383, 945, 6753, '1350', 'COA Mixture', 'standard', 0, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.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 (9992, 946, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.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 (9993, 946, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 946, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (9995, 946, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 946, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 946, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (9998, 946, 6831, '1428', 'Eskadol Blister(25x1x10)', 'standard', NULL, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.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 (9999, 947, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 947, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.9000', '', '12.9800', 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 (10001, 947, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 948, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 948, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 948, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.7000', '', '4.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 (10005, 948, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3800', '', '6.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 949, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (10007, 950, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (10008, 951, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '62.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 951, 6480, '1077', 'Furosemide 20mg Tablets 28\'s', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (10010, 951, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 951, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (10012, 952, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (10013, 952, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (10014, 952, 6273, '870', 'Vikil 20', 'standard', 0, '26.0000', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '26.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 (10015, 953, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (10016, 953, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 953, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 953, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '5.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 (10019, 953, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (10020, 953, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.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 (10021, 953, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (10022, 953, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 953, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (10024, 953, 6842, '1439', 'Tobufen 60ml', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 953, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.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 (10026, 953, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (10027, 953, 6686, '1283', 'Letaplex Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (10028, 953, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10029, 953, 6867, '01981362', 'Fiesta Condom dotted', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10030, 953, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10031, 953, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '5.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 (10032, 953, 6414, '1011', 'Infa V Wash 50ml', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.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 (10033, 953, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.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 (10034, 954, 6772, '1369', 'Hydrolyte ORS 25\' Orange Flav. ECL', 'standard', NULL, '19.2000', '19.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '19.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 (10035, 954, 6771, '1368', 'Hydrolyte ORS 25 Lemon Flav. ECL', 'standard', NULL, '19.2000', '19.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '19.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 (10036, 955, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '2.3000', 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 (10037, 955, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '2.3000', 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 (10038, 955, 6864, '98367406', 'Fiesta Condom Strawberry ', '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 (10039, 955, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (10040, 955, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 955, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (10042, 955, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 955, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '8.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 (10044, 955, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5600', '', '10.7800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 955, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (12385, 945, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', 0, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12386, 945, 5835, '432', 'Proman 50+ Capsules 30\'s', 'standard', NULL, '43.7000', '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7000', '', '43.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12387, 1135, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '143.5000', '', '28.7000', 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 (12388, 1135, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (10098, 956, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (10222, 960, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 957, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (10207, 957, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (10208, 957, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (10203, 957, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4500', '', '7.1500', 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 (10204, 957, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (10205, 957, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (10184, 958, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '32.1000', 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 (10183, 958, 6677, '1274', 'Azirocin 250mg Capules', 'standard', 0, '10.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '10.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 (10182, 958, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', 0, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (10181, 958, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', 0, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (10180, 958, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (10177, 958, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 958, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', 0, '63.2200', '63.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2200', '', '63.2200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 958, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (10172, 958, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (10173, 958, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.4000', '', '15.4000', 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 (10174, 958, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9500', '', '6.6500', 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 (10175, 958, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', 0, '15.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '15.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 (10176, 958, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', 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 (10185, 959, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (10186, 959, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9800', '', '10.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (10217, 960, 6140, '737', 'Fabrin Tablets 50X4', 'standard', NULL, '30.8000', '30.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '30.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 6130, '727', 'Kofof Family Syrup 150ml', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', 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 (10215, 960, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', 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 (10214, 960, 6030, '627', 'Zipferon Capsule', 'standard', NULL, '4.4300', '4.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8600', '', '4.4300', 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 (10213, 960, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (10212, 960, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (10211, 960, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.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 (10209, 960, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (10201, 961, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 961, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 960, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (10308, 962, 6686, '1283', 'Letaplex Syrup 125ml', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (10307, 962, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (10306, 962, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (10305, 962, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.9000', 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 (10304, 962, 6439, '1036', 'Cororange Syrup 200ml', 'standard', NULL, '10.2000', '10.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6000', '', '10.2000', 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 (10303, 962, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (10302, 962, 6386, '983', 'Paingay Capsules', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (10301, 962, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.5000', '', '26.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 (10300, 962, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (10299, 962, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (10298, 962, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (10297, 962, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (10296, 962, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (10295, 962, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 962, 6226, '823', 'Macrafolin Syrup 125ml', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.9000', 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 (10293, 962, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '0.6000', 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 (10292, 962, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (10291, 962, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (10290, 962, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (10289, 962, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (10288, 962, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.7000', 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 (10287, 962, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (10286, 962, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (10285, 962, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6800', '', '6.1700', 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 (10284, 962, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (10283, 962, 5545, '142', 'Cororange Drops', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (10282, 962, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (10254, 963, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (10255, 963, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (10256, 963, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (10257, 963, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (10258, 963, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (10259, 963, 6124, '721', 'Vitaforce Syrup 250ml', 'standard', NULL, '20.0000', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 963, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (10261, 963, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (10262, 964, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.2400', '', '9.0400', 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 (10263, 964, 6767, '1364', 'Methylated Spirit 200ml ECL', 'standard', NULL, '9.5000', '9.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '9.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 (10264, 964, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '241.8000', '', '40.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 (10265, 964, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '233.6000', '', '58.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 (10266, 964, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 964, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.4000', '', '18.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 (10268, 964, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5900', '', '49.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 964, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (10270, 965, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (10271, 965, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6400', '', '15.8200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 965, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.8000', '', '5.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 (10273, 965, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '6.0000', 1, '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 (10274, 965, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (10275, 966, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (10276, 966, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (10277, 966, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '5.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 (10278, 966, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 966, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (10280, 966, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', NULL, '1.4900', '1.4900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '1.4900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 966, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (10309, 962, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (10310, 962, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (10311, 962, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.6000', 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 (10312, 962, 6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '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 (10968, 967, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (10967, 967, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.1000', '', '2.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10966, 967, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (10965, 967, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (10964, 967, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.3000', 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 (10318, 968, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (10319, 968, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (10320, 968, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (10321, 968, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 968, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10323, 968, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10324, 968, 6867, '01981362', 'Fiesta Condom dotted', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10325, 968, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (10326, 969, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '555.6000', '', '46.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 (10327, 969, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.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 (10328, 970, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (10329, 970, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (10330, 970, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (10331, 970, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 970, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10333, 970, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10334, 970, 6867, '01981362', 'Fiesta Condom dotted', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10335, 970, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (10336, 971, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (10337, 972, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 972, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 973, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (10340, 973, 5559, '156', 'Danrub Ointment 40g', 'standard', NULL, '9.9300', '9.9300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7200', '', '9.9300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 974, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 975, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (10343, 976, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (10344, 976, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (10345, 976, 6678, '1275', 'Azirocin Suspension', 'standard', NULL, '14.3000', '14.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '14.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 (10346, 977, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '38.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 (10347, 978, 5711, '308', 'Lemsip Cold and flu Max 10\'s', 'standard', 0, '49.3000', '49.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.3000', '', '49.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 (10666, 979, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (10665, 979, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '26.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 (10664, 979, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '68.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 (10663, 979, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '241.8000', '', '40.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 (10662, 979, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (10661, 979, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 980, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (10360, 981, 6429, '1026', 'Onita Syrup 200ml', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (10361, 981, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (10362, 981, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '4.6000', '4.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '4.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 (10363, 981, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6261, '858', 'Baby Cough Linctus 125ml ECL', 'standard', NULL, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.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 (10366, 981, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '7.1500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (10368, 981, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (10369, 981, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6600, '1197', 'Epiciprin (Ciprofloxacin 0.3%) Eye/Ear Drop', 'standard', NULL, '12.9000', '12.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '12.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 (10371, 981, 6889, '82688230', 'Metronidazole 200mg (O METRO)', 'standard', 0, '13.5000', '13.5000', '1.0000', 1, '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 (10372, 981, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (10373, 981, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.7600', '', '3.8800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (10375, 981, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (10376, 981, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (10377, 981, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '6.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3700', '', '9.3700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '9.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 (10382, 981, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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, 981, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (10384, 981, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (10386, 981, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (10387, 981, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (10388, 981, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.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 (10389, 981, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (10390, 981, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (10392, 981, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 981, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.8300', '', '40.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 (10394, 982, 6414, '1011', 'Infa V Wash 50ml', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (10395, 983, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 983, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 984, 6683, '1280', 'Liverplex B 200ml', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.2000', 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 (10657, 984, 6584, '1181', 'Cororange Capsules', 'standard', NULL, '8.2000', '8.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.0000', '', '8.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 (10632, 984, 5557, '154', 'Dalacin C 300mg Capsules 16\'s', 'standard', NULL, '175.6100', '175.6100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '526.8300', '', '175.6100', 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 (10633, 984, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (10634, 984, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.9500', '', '36.9900', 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 (10635, 984, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (10636, 984, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '9.0000', 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 (10637, 984, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2500', '', '12.8500', 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 (10638, 984, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.1000', '', '14.2100', 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 (10639, 984, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (10640, 984, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.8000', '', '2.3000', NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 984, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.8000', '', '2.3000', NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 984, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.2000', '', '27.8000', 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 (10643, 984, 6124, '721', 'Vitaforce Syrup 250ml', 'standard', NULL, '20.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '20.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 (10644, 984, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '12.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 (10645, 984, 6139, '736', 'Amino pep Syrup 200ml', 'standard', NULL, '15.9500', '15.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.7500', '', '15.9500', 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 (10646, 984, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', NULL, '88.9000', '88.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '177.8000', '', '88.9000', 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 (10647, 984, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '10.4000', 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 (10648, 984, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5900', '', '66.5300', 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 (10649, 984, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '10.4000', 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 (10650, 984, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '135.0000', '', '13.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 (10651, 984, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '62.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 (10652, 984, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '269.0000', '', '26.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 (10653, 984, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '49.5300', '49.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5300', '', '49.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 984, 6439, '1036', 'Cororange Syrup 200ml', 'standard', NULL, '10.2000', '10.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.8000', '', '10.2000', 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 (10655, 984, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '21.6000', 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 (10656, 984, 6519, '1116', 'Wellwoman Max Caps 28 tabs', 'standard', NULL, '120.3600', '120.3600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '481.4400', '', '120.3600', 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 (10426, 985, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 986, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (10528, 987, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8200', '', '3.4100', 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 (10529, 987, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 987, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (10531, 987, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 987, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.3000', 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 (10533, 987, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 987, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.3000', 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 (10535, 987, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10536, 987, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.8000', 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 (10537, 987, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8400', '', '3.4200', 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 (10538, 987, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '9.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 987, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (10540, 987, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.1000', 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 (10541, 987, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.3000', 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 (10542, 999, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (10444, 988, 6027, '624', 'Clopimol Tablet', 'standard', NULL, '22.2100', '22.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2100', '', '22.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 988, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 988, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (10447, 989, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (10448, 990, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '7.1000', '7.1000', '10.0000', 1, '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 (10449, 991, 6265, '862', 'Folic Acid Tablets 50X10 ECL', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (10450, 991, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (10451, 991, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.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 (10452, 991, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '2.3000', 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 (10453, 992, 5946, '543', 'Wellman Capsules', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (10454, 992, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (10455, 992, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (10456, 992, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.8000', '', '15.4000', 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 (10457, 992, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (10458, 992, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (10459, 992, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (10460, 992, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '52.8000', '52.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '52.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 (10461, 992, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (10463, 992, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.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 (10464, 992, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.1300', '', '17.7100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.5000', '', '28.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 (10466, 992, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.8000', '', '12.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 (10467, 992, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (10468, 992, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (10469, 992, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2500', '', '6.8500', 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 (10470, 992, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '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 (10471, 992, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '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 (10472, 992, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.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 (10473, 992, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', 'standard', NULL, '61.8000', '61.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.8000', '', '61.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 (10474, 992, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9500', '', '25.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (10476, 992, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.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 (10477, 992, 5559, '156', 'Danrub Ointment 40g', 'standard', NULL, '9.9300', '9.9300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8600', '', '9.9300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (10481, 992, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.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 (10482, 992, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (10483, 992, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.9000', '', '11.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 (10484, 992, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (10485, 992, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (10486, 992, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (10487, 992, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.6000', '', '46.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 (10489, 992, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (10490, 992, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 992, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (10492, 993, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.6400', '', '9.6600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '18.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9800', '', '4.9900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (10497, 994, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (10498, 994, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (10499, 994, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (10501, 994, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (10502, 994, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.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 (10504, 994, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '6.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 (10506, 994, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6027, '624', 'Clopimol Tablet', 'standard', NULL, '22.2100', '22.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2100', '', '22.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 994, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (10510, 994, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', NULL, '17.9000', '17.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.9000', '', '17.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 (10511, 994, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (10512, 994, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (10513, 994, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (10514, 994, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 995, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (10516, 995, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.3200', '', '9.6600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 995, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (10518, 995, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (10519, 995, 6416, '1013', 'Stopkof Dry Cough Syrup 100ml', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (10520, 996, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 996, 5904, '501', 'Tears Natural II Eye Drops', 'standard', 0, '24.7000', '24.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7000', '', '24.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 (10522, 996, 6273, '870', 'Vikil 20', 'standard', 0, '26.0000', '26.0000', '2.0000', 1, '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 (10523, 996, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', 0, '10.0000', '10.0000', '3.0000', 1, '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 (10524, 996, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', 0, '59.0000', '59.0000', '1.0000', 1, '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 (10525, 997, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (10526, 998, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (10527, 998, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1000, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1000, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (10545, 1000, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '16.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 (10546, 1000, 6033, '630', 'Deep Heat Rub 35g', 'standard', NULL, '31.4000', '31.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '157.0000', '', '31.4000', 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 (10960, 1001, 6557, '1154', 'Ocip TZ', 'standard', 0, '9.6000', '9.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '9.6000', 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 (10959, 1001, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '43.9000', '43.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9000', '', '43.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10958, 1001, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', 0, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (10957, 1001, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.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 (10956, 1001, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', 0, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10955, 1001, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', 0, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10954, 1001, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (10953, 1001, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '0.6000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10952, 1001, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (10951, 1001, 6207, '804', 'Zinol 500mg Tablets (Paracetamol) 50X10', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (10940, 1001, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (10941, 1001, 5898, '495', 'Taabea Herbal Mixture', 'standard', 0, '13.2000', '13.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '13.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 (10942, 1001, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (10943, 1001, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10944, 1001, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10945, 1001, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '8.3200', '8.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.2000', '', '8.3200', 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 (10946, 1001, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '191.4000', '', '15.9500', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10947, 1001, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.4000', '', '9.3000', 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 (10948, 1001, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.4000', '', '11.2000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10949, 1001, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', 0, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10950, 1001, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.5000', '', '38.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 (10935, 1001, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', 0, '14.5000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.5000', '', '14.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 (10936, 1001, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (10937, 1001, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.3000', '', '31.1000', 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 (10938, 1001, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8600', '', '24.4300', 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 (10939, 1001, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (10576, 1002, 6208, '805', 'Luzatil 20/120mg Tablets 24s Efa Amponsah', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (10577, 1002, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (10578, 1002, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (10579, 1002, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (10580, 1002, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (10582, 1002, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (10583, 1002, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '29.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 (10584, 1002, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (10587, 1002, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.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 (10588, 1002, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (10589, 1002, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (10592, 1002, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (10593, 1002, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (10594, 1002, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (10597, 1002, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1002, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '3.0000', 1, '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 (10599, 1002, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.6000', '0.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.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 (10600, 1002, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (10601, 1003, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '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 (10602, 1003, 5592, '189', 'Efpac Junior Syrup', 'standard', 0, '7.1500', '7.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7500', '', '7.1500', 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 (10603, 1003, 5931, '528', 'Viscof D 100ml Syrup', 'standard', 0, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1003, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', 0, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (10605, 1003, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (10606, 1003, 6368, '965', 'Viscof S 100ml Syrup', 'standard', 0, '12.8400', '12.8400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.3600', '', '12.8400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1003, 6474, '1071', 'Day Nurse Capsules 20\'s', 'standard', 0, '71.2000', '71.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '854.4000', '', '71.2000', 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 (10608, 1003, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.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 (10609, 1003, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (10610, 1003, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.9000', '', '22.7800', 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 (10611, 1003, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '15.4000', 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 (10612, 1003, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (10613, 1003, 6566, '1163', 'Tegretol CR 400mg tablets 30\'s', 'standard', NULL, '88.8800', '88.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '177.7600', '', '88.8800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1004, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (10615, 1004, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.5000', '', '7.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 (10616, 1004, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (10617, 1004, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (10618, 1005, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1005, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (10620, 1005, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (10621, 1005, 6032, '629', 'Gebedol Forte', 'standard', 0, '17.2100', '17.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4200', '', '17.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1005, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', 0, '39.1000', '39.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '39.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1005, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', 0, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1005, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', 0, '39.0000', '39.0000', '1.0000', 1, '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 (10625, 1005, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', 0, '6.5000', '6.5000', '10.0000', 1, '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 (10626, 1005, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '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 (10627, 1005, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', 0, '17.7100', '17.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.1300', '', '17.7100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1005, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (10629, 1005, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (10630, 1005, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (10631, 1005, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (10659, 984, 6752, '1349', 'Taabea Taacum', 'standard', NULL, '22.0000', '22.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '22.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 (10660, 984, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.0000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 979, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '85.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 (10668, 1006, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1006, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (10670, 1006, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1006, 6309, '906', 'Odymin Syrup', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (10672, 1006, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10779, 1007, 6751, '1348', 'Paracetamol 500mg Tablets 50x10 Eskay', 'standard', NULL, '40.8300', '40.8300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.8300', '', '40.8300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10778, 1007, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (10777, 1007, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (10776, 1007, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.2000', 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 (10677, 1008, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (10678, 1008, 5592, '189', 'Efpac Junior Syrup', 'standard', NULL, '7.1500', '7.1500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '7.1500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (10680, 1008, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (10681, 1008, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (10682, 1008, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '3.0000', 1, '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 (10683, 1008, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (10684, 1008, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (10685, 1008, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.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 (10686, 1008, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '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 (10690, 1008, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1008, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (10693, 1008, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (10694, 1008, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (10695, 1008, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (10696, 1009, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.8000', '', '11.3800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 1009, 6881, '54874377', 'Dacillin (clindamycin 300mg)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (10698, 1009, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (10699, 1010, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (10700, 1010, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '18.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 (10701, 1011, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10932, 1012, 6390, '987', 'Salocold Tablets', 'standard', 0, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10933, 1012, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', 0, '6.7000', '6.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '6.7000', 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 (10931, 1012, 6385, '982', 'Amcof Junior Syrup', 'standard', 0, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (10930, 1012, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.2000', 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 (10929, 1012, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (10928, 1012, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '3.5200', '3.5200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '3.5200', 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 (10927, 1012, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (10926, 1012, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '62.0000', '62.0000', '1.0000', 1, '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 (10924, 1012, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '10.9800', 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 (10925, 1012, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', 0, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (10923, 1012, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10922, 1012, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (10921, 1012, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', 0, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (10919, 1012, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', 0, '3.8000', '3.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.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 (10920, 1012, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', 0, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10918, 1012, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', 0, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (10917, 1012, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', 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 (10916, 1012, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (10915, 1012, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.6000', 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 (10914, 1012, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (10913, 1012, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (10912, 1012, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.7000', 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 (10911, 1012, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (10909, 1012, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', 0, '8.6000', '8.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '8.6000', 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 (10910, 1012, 5906, '503', 'Tetracycline Capsules', 'standard', 0, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (10908, 1012, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', 0, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (10907, 1012, 5849, '446', 'Rhizin Syrup', 'standard', 0, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (10906, 1012, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', 0, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10905, 1012, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', 0, '2.0000', '2.0000', '10.0000', 1, '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 (10903, 1012, 5631, '228', 'Gacet 125mg Suppositories', 'standard', 0, '6.5000', '6.5000', '2.0000', 1, '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 (10904, 1012, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.2000', '', '31.1000', 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 (10902, 1012, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', 0, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.7000', 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 (10901, 1012, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10900, 1012, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '3.4100', '3.4100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4100', '', '3.4100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10899, 1012, 5435, '32', 'Amcof Adult Syrup', 'standard', 0, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (10773, 1013, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (10774, 1013, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '7.9000', '7.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9000', '', '7.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 (10775, 1014, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (10780, 1015, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (10853, 554, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.5400', '', '26.1800', 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 (10854, 554, 6567, '1164', 'Tegretol 200mg tablets 50\'s', 'standard', NULL, '59.7700', '59.7700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.7700', '', '59.7700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10855, 1016, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.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 (10856, 1017, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '7.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 (10857, 1017, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (10858, 1017, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10859, 1017, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.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 (10860, 1017, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', 'standard', NULL, '33.0200', '33.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0200', '', '33.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10861, 1017, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.8400', '', '12.2100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10862, 1017, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (10863, 1017, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10864, 1017, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4200', '', '17.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10865, 1017, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10866, 1018, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (10867, 1019, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '18.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10868, 1019, 6557, '1154', 'Ocip TZ', 'standard', NULL, '9.6000', '9.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '9.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 (10869, 1019, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.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 (10870, 1019, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (10871, 1019, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '2.1000', 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 (10872, 1019, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (10873, 1019, 6630, '1227', 'Cetapol PM Syrup 100ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (10874, 1019, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '6.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 (10875, 1019, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (10876, 1019, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (10877, 1019, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', '12.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 (10878, 1019, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (10879, 1019, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', '12.2100', 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 (10880, 1019, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10881, 1019, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (10882, 1019, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (10883, 1019, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (10884, 1019, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.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 (10885, 1019, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (10886, 1019, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10887, 1019, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8400', '', '13.9200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10888, 1019, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (10889, 1019, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10890, 1019, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '7.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 (10891, 1019, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.6000', '', '13.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 (10892, 1019, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (10893, 1019, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (10894, 1019, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10895, 1019, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '31.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.6000', '', '1.6000', NULL, 1, 'pc', '31.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10896, 1020, 6595, '1192', 'Azycin 500mg', 'standard', 0, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.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 (10897, 1020, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (10898, 1020, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '2.9900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10934, 1021, 5795, '392', 'Nizoral Cream 15gm', 'standard', NULL, '35.0000', '35.0000', '1.0000', 1, '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 (10961, 1001, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', 0, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (10962, 1001, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '4.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 (10963, 1022, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.5000', '0.5000', '1.0000', 1, '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 (10969, 1023, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '38.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 (10970, 1023, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.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 (10971, 1024, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (10972, 1025, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (10973, 1025, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (10974, 1025, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (10975, 1026, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (10976, 1026, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10977, 1027, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '1.0000', 1, '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 (10978, 1028, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10979, 1028, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (10980, 1029, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (10981, 1030, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.8500', '', '15.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10982, 1031, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (10983, 1032, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (10984, 1033, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.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 (10985, 1034, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (10986, 1034, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (10987, 1034, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (11327, 1081, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11865, 1097, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11326, 1081, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10991, 1036, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10992, 1036, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10993, 1036, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '10.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 (10994, 1037, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10995, 1037, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10996, 1038, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (10997, 1038, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10998, 1039, 6180, '777', 'Ketazol Shampoo 100ml', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (10999, 1040, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (11000, 1040, 6841, '1438', 'Chlor Eye Drops 0.5ml', 'standard', NULL, '2.6000', '2.6000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '2.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 (11001, 1041, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (11002, 1042, 6486, '1083', 'Contiflo XL 400mcg Capsules 30\'s', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (11003, 1042, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2700', '', '24.0900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11004, 1042, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.9700', '', '36.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11005, 1042, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '122.4000', '122.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.4000', '', '122.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 (11006, 1042, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', NULL, '11.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.5000', '', '11.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 (11007, 1042, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11008, 1042, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (11009, 1042, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (11010, 1042, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '75.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11141, 1043, 6841, '1438', 'Chlor Eye Drops 0.5ml', 'standard', NULL, '2.6000', '2.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '2.6000', 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 (11140, 1043, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '10.4500', '10.4500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '10.4500', 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 (11139, 1043, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (11138, 1043, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (11137, 1043, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.1000', '', '4.7000', 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 (11136, 1043, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', 'standard', NULL, '0.5500', '0.5500', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '0.5500', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11135, 1043, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (11134, 1043, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11133, 1043, 5981, '578', 'Magacid Fastmelt(all flavours)35\'s', 'standard', NULL, '12.6500', '12.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6500', '', '12.6500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11132, 1043, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', 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 (11131, 1043, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6400', '', '8.8200', 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 (11130, 1043, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (11129, 1043, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.3000', 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 (11128, 1043, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.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 (11127, 1043, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', 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 (11126, 1043, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '16.6000', '16.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.2000', '', '16.6000', 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 (11028, 1044, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11029, 1044, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6400', '', '8.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11866, 1097, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (12776, 1045, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (12773, 1045, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', 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 (12775, 1045, 6667, '1264', 'Gyprone Plus Tablets', 'standard', 0, '3.0000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.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 (12774, 1045, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (12772, 1045, 6332, '929', 'Adom Koo Capsules', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12771, 1045, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', 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 (12770, 1045, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', 0, '2.8800', '2.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '2.8800', 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 (12769, 1045, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (12766, 1045, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', 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 (12768, 1045, 6117, '714', 'Gudapet Capsules', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (12767, 1045, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', 0, '14.0000', '14.0000', '1.0000', 1, '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 (12765, 1045, 6009, '606', 'Rooter Life', 'standard', NULL, '35.9000', '35.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.9000', '', '35.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12764, 1045, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (12763, 1045, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (12762, 1045, 5898, '495', 'Taabea Herbal Mixture', 'standard', 0, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (12760, 1045, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12756, 1045, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', 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 (12757, 1045, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', 0, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.2000', 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 (12758, 1045, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', 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 (12761, 1045, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '2.0000', 1, '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 (11053, 1046, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', 0, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (11054, 1047, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (11055, 1047, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (11056, 1047, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (11057, 1048, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (11058, 1048, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11059, 1048, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (11060, 1048, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11061, 1048, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (11062, 1048, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (11063, 1048, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (11064, 1048, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', '5.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 (11065, 1048, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (11066, 1048, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (11067, 1048, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (12759, 1045, 5754, '351', 'Malin Baby', 'standard', 0, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (12755, 1045, 5422, '19', 'Adom W&G Capsules', 'standard', 0, '18.7000', '18.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7000', '', '18.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11120, 1049, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '5.3000', 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 (11119, 1049, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (11118, 1049, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '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 (11117, 1049, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (11116, 1049, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (11115, 1049, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11114, 1049, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (11113, 1049, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '8.0400', 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 (11112, 1049, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '39.1000', '39.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '39.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11111, 1049, 6040, '637', 'Cold Naso', 'standard', NULL, '3.0500', '3.0500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2500', '', '3.0500', 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 (11110, 1049, 6039, '636', 'Hot Naso- Ephedrine Nasal Drop', 'standard', NULL, '4.5500', '4.5500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7500', '', '4.5500', 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 (11109, 1049, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '9.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 (11108, 1049, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (11107, 1049, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (11121, 1049, 6863, '59208125', 'Fiesta Condom Extra Thin', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (11122, 1049, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (11123, 1049, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', 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 (11124, 1049, 6127, '724', 'X\'Zole F Suspension', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (11125, 1049, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (11142, 1050, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11143, 1051, 6309, '906', 'Odymin Syrup', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11144, 1051, 6557, '1154', 'Ocip TZ', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (11145, 1052, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11158, 1053, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '86.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.8000', '', '2.8000', NULL, 1, 'pc', '86.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11157, 1053, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '5.0000', NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11148, 1054, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (11151, 1055, 5427, '24', 'Agbeve Tonic', 'standard', 0, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (11152, 1055, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (11153, 1055, 6608, '1205', 'Skyclav 457mg', 'standard', 0, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (11154, 1055, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (11155, 1055, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (11156, 1056, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11159, 1057, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (11160, 1058, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '3.3000', 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 (11161, 1059, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11162, 1060, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0300', '', '6.0300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11163, 1061, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0300', '', '6.0300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11164, 1062, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (11165, 1063, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (11166, 1063, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11167, 1064, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11168, 1064, 6099, '696', 'Clear Inhaler 12\'s', 'standard', 0, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11169, 1064, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '9.5000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '9.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 (11170, 1064, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11171, 1064, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', 0, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11172, 1064, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '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 (11173, 1065, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.5000', '', '8.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 (11174, 1065, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (11175, 1065, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (11176, 1065, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '10.0000', 1, '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 (11177, 1065, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '10.0000', 1, '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 (11178, 1065, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', 0, '43.0000', '43.0000', '1.0000', 1, '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 (11179, 1065, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '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 (11180, 1066, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11697, 1067, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '2.6000', 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 (11690, 1067, 5456, '53', 'Aspanol All In One Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.6000', 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 (11691, 1067, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.6000', 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 (11692, 1067, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8500', '', '5.9500', 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 (11693, 1067, 6183, '780', 'Leopard Balm 30g', 'standard', NULL, '5.7500', '5.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.7500', '', '5.7500', 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 (11694, 1067, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (11695, 1067, 6350, '947', 'Ronfit Cold P Junior Syrup', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11696, 1067, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (11189, 1068, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (11190, 1069, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.6200', '', '4.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11191, 1069, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (11192, 1070, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11193, 1070, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11194, 1071, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (11195, 1071, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11196, 1071, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (11266, 1072, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (11303, 1079, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8500', '', '6.1700', 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 (11264, 1072, 6712, '1309', 'Warfarin 5mg Tablets 28\'s', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (11265, 1072, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', NULL, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11262, 1072, 6472, '1069', 'Canesten 20mg Cream', 'standard', NULL, '28.0000', '28.0000', '1.0000', 1, '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 (11263, 1072, 6533, '1130', 'Atenolol 50mg Tablets 28\'s (ECL)', 'standard', NULL, '3.9000', '3.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7000', '', '3.9000', 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 (11247, 1072, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (11248, 1072, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.8000', '', '14.9600', 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 (11249, 1072, 5611, '208', 'Ferrous Sulphate 200mg Tab 30\'s EXE', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (11250, 1072, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.9500', '', '36.9900', 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 (11251, 1072, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (11252, 1072, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.1600', '', '41.5800', 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 (11253, 1072, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (11254, 1072, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (11255, 1072, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '3.4200', 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 (11256, 1072, 6058, '655', 'Liv 52 Syrup', 'standard', NULL, '20.3000', '20.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.6000', '', '20.3000', 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 (11257, 1072, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (11258, 1072, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', 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 (11259, 1072, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (11260, 1072, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11261, 1072, 6441, '1038', 'Exforge HCT 10/160/12. 5mg 28\'s', 'standard', NULL, '230.8000', '230.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '461.6000', '', '230.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 (11219, 1073, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', NULL, '5.2000', '5.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '5.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 (11220, 1074, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (11221, 1074, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '47.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 (11222, 1074, 5531, '128', 'Cloxacillin 250mg Letap', 'standard', NULL, '80.5000', '80.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.5000', '', '80.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11223, 1074, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11224, 1074, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11225, 1074, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (11226, 1074, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3000', '', '11.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 (11227, 1074, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (11228, 1074, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11229, 1074, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11230, 1074, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11231, 1074, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (11232, 1074, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11233, 1074, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '14.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 (11234, 1074, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (11235, 1074, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (11236, 1074, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.5500', '', '6.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11237, 1074, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '3.8800', 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 (11238, 1074, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11239, 1074, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (11240, 1074, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.1000', '', '7.3000', 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 (11241, 1074, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (11242, 1074, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11243, 1074, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11244, 1074, 6460, '1057', 'Calamine Lotion 100ml Mal-Titi', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (11245, 1074, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (11246, 1074, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '18.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 (11310, 1078, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', 0, '41.0000', '41.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11311, 1078, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (11300, 1075, 6886, '85373687', 'Glimer 4(Glimepride 4mg)', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (11299, 1075, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (11297, 1075, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', '66.5300', 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 (11298, 1075, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11296, 1075, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (11274, 1076, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11275, 1076, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (11276, 1076, 6831, '1428', 'Eskadol Blister(25x1x10)', 'standard', NULL, '1.6000', '1.6000', '2.0000', 1, '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 (11277, 1076, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (11278, 1076, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11279, 1076, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '5.0000', 1, '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 (11280, 1076, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '4.0200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11295, 1075, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (11312, 1078, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '2.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11333, 1077, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '4.0000', 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 (11334, 1077, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.5000', '', '38.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 (11335, 1077, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '740.0000', '', '74.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 (11336, 1077, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '12.2000', 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 (11304, 1080, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11332, 1077, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '5.5000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11864, 1035, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9000', '', '20.9500', 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 (11863, 1035, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', 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 (11328, 1081, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (11329, 1081, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11330, 1081, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '41.0000', '41.0000', '1.0000', 1, '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 (11331, 1082, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (11337, 1077, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (11971, 1083, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.5000', '', '29.7000', 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 (11962, 1083, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.7000', 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 (11963, 1083, 6508, '1105', 'Alpha Garlic Capsules', 'standard', NULL, '13.3000', '13.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5000', '', '13.3000', 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 (11964, 1083, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '14.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 (11965, 1083, 6565, '1162', 'Tegretol CR 200mg Divitabs 50\'s', 'standard', NULL, '64.7800', '64.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.7800', '', '64.7800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11966, 1083, 6583, '1180', 'Adom Ladies Mixture', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.3000', 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 (11967, 1083, 6584, '1181', 'Cororange Capsules', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.2000', 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 (11968, 1083, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.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 (11969, 1083, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (11970, 1083, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '13.8000', 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 (11931, 1083, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (11932, 1083, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (11933, 1083, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '327.0000', '', '10.9000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11934, 1083, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (11935, 1083, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (11936, 1083, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', NULL, '17.9000', '17.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.5000', '', '17.9000', 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 (11937, 1083, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.7000', 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 (11938, 1083, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '21.3000', '21.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6000', '', '21.3000', 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 (11939, 1083, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2500', '', '14.2500', 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 (11940, 1083, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0500', '', '17.2100', 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 (11941, 1083, 6034, '631', 'Deep Heat Spray 150ml', 'standard', NULL, '48.0000', '48.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '48.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 (11942, 1083, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.6000', '', '9.1000', 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 (11943, 1083, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (11944, 1083, 6092, '689', 'Ferrolex Syrup 250ml', 'standard', NULL, '18.0000', '18.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '18.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 (11945, 1083, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (11946, 1083, 6101, '698', 'Feroclear Syrup 200ml', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (11947, 1083, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '7.1000', 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 (11948, 1083, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', NULL, '7.8500', '7.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2500', '', '7.8500', 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 (11949, 1083, 6185, '782', 'Magnavit Tonic 200ml', 'standard', NULL, '7.8500', '7.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5500', '', '7.8500', 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 (11950, 1083, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (11951, 1083, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (11952, 1083, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (11953, 1083, 6276, '873', 'Tinatett Malakare 500ml', 'standard', NULL, '17.6000', '17.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '17.6000', 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 (11954, 1083, 6277, '874', 'Tinatett Tomac Mixture 500ml', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (11955, 1083, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.6000', 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 (11956, 1083, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (11957, 1083, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (11958, 1083, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '17.6000', 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 (11959, 1083, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.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 (11960, 1083, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '5.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 (11961, 1083, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '20.9000', 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 (11928, 1083, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (11929, 1083, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (11930, 1083, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '18.0000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11921, 1083, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (11922, 1083, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.4000', '', '7.8000', 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 (11923, 1083, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (11924, 1083, 5641, '238', 'Gebedol Extra', 'standard', NULL, '31.1000', '31.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.5000', '', '31.1000', 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 (11925, 1083, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', NULL, '28.5000', '28.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.5000', '', '28.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 (11926, 1083, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (11927, 1083, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '14.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 (11663, 1084, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '23.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 (11664, 1084, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (11665, 1084, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.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 (11666, 1084, 6357, '954', 'Cotton Wool 200g', 'standard', NULL, '13.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '13.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 (11667, 1084, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '1.6000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11668, 1084, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11669, 1084, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2800', '', '3.3200', 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 (11670, 1084, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '5.2000', 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 (11671, 1084, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.9000', 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 (11672, 1084, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.2000', '', '10.3000', 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 (11673, 1084, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '21.4000', 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 (11674, 1084, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (11675, 1084, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0600', '', '15.5300', 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 (11662, 1084, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.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 (11661, 1084, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', 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 (11660, 1084, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11628, 1084, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11629, 1084, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.9000', '', '5.8600', 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 (11630, 1084, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.3000', '', '46.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11631, 1084, 5623, '220', 'Flurest Tablets 10\'s', 'standard', NULL, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', 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 (11632, 1084, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.2000', 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 (11633, 1084, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11634, 1084, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.9800', '', '36.9900', 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 (11635, 1084, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', 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 (11636, 1084, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '19.8000', 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 (11637, 1084, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', '15.9500', 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 (11638, 1084, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5500', '', '12.8500', 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 (11639, 1084, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (11640, 1084, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (11641, 1084, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (11642, 1084, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', 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 (11643, 1084, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '7.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 (11644, 1084, 6002, '599', 'Ferrodex Syrup 200ml', 'standard', NULL, '8.5500', '8.5500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6500', '', '8.5500', 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 (11645, 1084, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.9000', '', '11.3800', 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 (11646, 1084, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9600', '', '4.9900', 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 (11647, 1084, 6030, '627', 'Zipferon Capsule', 'standard', NULL, '4.4300', '4.4300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7200', '', '4.4300', 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 (11648, 1084, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (11649, 1084, 6101, '698', 'Feroclear Syrup 200ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.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 (11650, 1084, 6138, '735', 'Drez V Gel 30g', 'standard', NULL, '17.5000', '17.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '17.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 (11651, 1084, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', 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 (11652, 1084, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.2000', 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 (11653, 1084, 6189, '786', 'Rufedol Tablets 10\'s', 'standard', NULL, '1.2000', '1.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '1.2000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11654, 1084, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.7000', 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 (11655, 1084, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (11656, 1084, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.3800', '', '30.6900', 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 (11657, 1084, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (11658, 1084, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.8000', 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 (11659, 1084, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11443, 1085, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11676, 1084, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11677, 1084, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '6.0000', 1, '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 (11678, 1084, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', 'standard', NULL, '6.3500', '6.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.7500', '', '6.3500', 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 (11679, 1084, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11680, 1084, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.8000', 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 (11681, 1084, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '13.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 (11762, 1086, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '10.8000', 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 (11761, 1086, 6835, '1432', 'Eskypan 10mg (10x1x10)', 'standard', NULL, '3.6000', '3.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '3.6000', 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 (11759, 1086, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (11760, 1086, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', 'standard', NULL, '6.3500', '6.3500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.8000', '', '6.3500', 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 (11758, 1086, 6479, '1076', 'Dulcolax 10mg Suppositories 12\'s', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.7000', 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 (11757, 1086, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.9000', 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 (11756, 1086, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (11755, 1086, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.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 (11754, 1086, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '2.8000', 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 (11753, 1086, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11751, 1086, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (11752, 1086, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (11750, 1086, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '9.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 (11749, 1086, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (11748, 1086, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '10.5000', 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 (11747, 1086, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '3.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 (11746, 1086, 5762, '359', 'Mentat Tablets', 'standard', NULL, '28.5400', '28.5400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0800', '', '28.5400', 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 (11745, 1086, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.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 (11744, 1086, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '17.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11743, 1086, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.3000', 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 (11741, 1086, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '1.0000', 1, '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 (11742, 1086, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (11682, 1084, 6897, '80096466', 'Streptol 6X2 Lozenges', 'standard', NULL, '4.8000', '4.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '4.8000', 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 (11683, 1084, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (11684, 1084, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (11685, 1087, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.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 (11686, 1087, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (11687, 1087, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11688, 1087, 6897, '80096466', 'Streptol 6X2 Lozenges', 'standard', NULL, '4.8000', '4.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '4.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 (11689, 1087, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (11698, 1067, 6657, '1254', 'Aspanol Jnr. Syrup', 'standard', NULL, '5.4000', '5.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2000', '', '5.4000', 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 (11699, 1067, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (11700, 1088, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (11701, 1088, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.2000', '', '10.5500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11702, 1088, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11703, 1088, 6767, '1364', 'Methylated Spirit 200ml ECL', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (11704, 1088, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (11705, 1088, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (11706, 1088, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (11707, 1088, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (11708, 1088, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (11709, 1088, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11710, 1088, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (11711, 1089, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (11712, 1089, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (11713, 1089, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', NULL, '12.6000', '12.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '12.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 (11740, 1086, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (11739, 1086, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (11738, 1090, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11763, 1086, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11804, 1091, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11805, 1091, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (11806, 1091, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', 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 (11807, 1091, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (11808, 1091, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (11809, 1091, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '4.7000', 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 (11810, 1091, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '4.6000', '4.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '4.6000', 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 (11811, 1091, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '8.7500', 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 (11812, 1091, 6795, '1392', 'Benylin Dry & Tickly Cough 150ml', 'standard', 0, '61.4000', '61.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.8000', '', '61.4000', 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 (11813, 1091, 6821, '1418', 'Bazuka Condoms', 'standard', NULL, '68.0000', '68.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '68.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11814, 1091, 6863, '59208125', 'Fiesta Condom Extra Thin', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11815, 1091, 6866, '89649628', 'Fiesta Condom Fruity', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11816, 1091, 6867, '01981362', 'Fiesta Condom dotted', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11803, 1091, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (11801, 1091, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11802, 1091, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '122.4000', '122.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.4000', '', '122.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11792, 1091, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '23.4000', 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 (11793, 1091, 5711, '308', 'Lemsip Cold and flu Max 10\'s', 'standard', NULL, '49.3000', '49.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.3000', '', '49.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11794, 1091, 5733, '330', 'Lubrimax Jelly 50g', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (11795, 1091, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (11796, 1091, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (11797, 1091, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (11798, 1091, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11799, 1091, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11800, 1091, 6077, '674', 'Fiesta Condom All Night', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11791, 1092, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (11817, 1091, 6868, '70949987', 'Fiesta Condom Classic', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11818, 1091, 6881, '54874377', 'Dacillin (clindamycin 300mg)', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (11819, 1091, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '52.8000', '52.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '52.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11820, 1091, 6729, '1326', 'Benylin Children Night Cough Syrup 125ml', 'standard', 0, '44.6600', '44.6600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.3200', '', '44.6600', 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 (11821, 1091, 6779, '1376', 'Actifed Multi Action Tabs 12\'s', 'standard', NULL, '46.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '46.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 (11822, 1093, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (11823, 1093, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (11824, 1093, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (11825, 1093, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (11826, 1093, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '27.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 (11827, 1093, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '14.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 (11828, 1093, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (11829, 1093, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (11830, 1093, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (11831, 1093, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '3.4100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11832, 1093, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.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 (11833, 1094, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '177.1000', '', '17.7100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11834, 1095, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2500', '', '27.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 (11835, 1096, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (11836, 1096, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11837, 1096, 5716, '313', 'Letaron 200ml Syrup', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.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 (11838, 1096, 6428, '1025', 'Fericon 200ml Syrup', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (11839, 1096, 6332, '929', 'Adom Koo Capsules', '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 (11840, 1096, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '3.0000', 1, '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 (11867, 1098, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '24.4300', '24.4300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4300', '', '24.4300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11868, 1098, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11869, 1098, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9900', '', '9.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11870, 1098, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6200', '', '9.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11871, 1098, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (11872, 1098, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (11873, 1099, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.9600', '', '36.9900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11874, 1099, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (11875, 1099, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '3.0000', 1, '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 (11876, 1099, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '4.1000', '4.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '4.1000', 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 (11877, 1099, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (11878, 1099, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (11879, 1099, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '8.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 (11880, 1099, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (11881, 1099, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (11882, 1099, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.8800', '', '10.9800', 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 (11883, 1099, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '16.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 (12299, 1100, 6851, '1448', 'Cotton 500g', 'standard', 0, '26.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '26.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 (12298, 1100, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', 'standard', 0, '12.6000', '12.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '12.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 (12297, 1100, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.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 (12296, 1100, 6663, '1260', 'Cotton Wool 25gm', 'standard', 0, '2.5000', '2.5000', '5.0000', 1, '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 (12295, 1100, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', 0, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.9000', 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 (12267, 1100, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12268, 1100, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '27.2500', '27.2500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '27.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 (12269, 1100, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', 0, '98.6000', '98.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '197.2000', '', '98.6000', 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 (12270, 1100, 5562, '159', 'Deep Freez Spray 150ml', 'standard', 0, '58.9000', '58.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '176.7000', '', '58.9000', 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 (12271, 1100, 5569, '166', 'Diazepam 5mg Tablets 500\'s', 'standard', 0, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (12272, 1100, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.4000', '', '15.4000', 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 (12273, 1100, 5762, '359', 'Mentat Tablets', 'standard', 0, '28.5400', '28.5400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.6200', '', '28.5400', 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 (12274, 1100, 5797, '394', 'Normo Tears Eye Drop', 'standard', 0, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (12275, 1100, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (12276, 1100, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (12277, 1100, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (12278, 1100, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (12279, 1100, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (12280, 1100, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', 0, '17.9000', '17.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.6000', '', '17.9000', 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 (12281, 1100, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '10.7000', 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 (12282, 1100, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', '12.2100', 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 (12283, 1100, 6087, '684', 'Augmentin 1g Tablets 14\'s', 'standard', NULL, '142.0500', '142.0500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.0500', '', '142.0500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12284, 1100, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', 0, '26.8000', '26.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.2000', '', '26.8000', 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 (12285, 1100, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', 0, '15.2000', '15.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '15.2000', 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 (12286, 1100, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', 0, '47.2000', '47.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '188.8000', '', '47.2000', 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 (12287, 1100, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', 0, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', 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 (12288, 1100, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', 0, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.2000', 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 (12289, 1100, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', 0, '10.4000', '10.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '10.4000', 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 (12290, 1100, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (12291, 1100, 6211, '808', 'Contreg Syrup 30ml', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (12292, 1100, 6356, '953', 'Cotton Wool 100g', 'standard', 0, '7.2000', '7.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '7.2000', 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 (12293, 1100, 6357, '954', 'Cotton Wool 200g', 'standard', 0, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (12294, 1100, 6434, '1031', 'Cotton wool 50g', 'standard', 0, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.2000', 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 (11919, 1101, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '41.0000', '41.0000', '1.0000', 1, '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 (11920, 1101, 6395, '992', 'Shaltoux Herbal Cough Syrup', 'standard', NULL, '9.5500', '9.5500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5500', '', '9.5500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11972, 1083, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (11973, 1083, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '2.8800', 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 (11974, 1102, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11975, 1102, 6010, '607', 'Rooter Tytonic', '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 (11976, 1102, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '5.0000', 1, '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 (11977, 1102, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (11978, 1102, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11979, 1102, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11980, 1102, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '4.9900', '4.9900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9700', '', '4.9900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12022, 1103, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.0400', '', '3.5200', 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 (12023, 1103, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3600', '', '3.1800', 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 (12021, 1103, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (11984, 1104, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (11985, 1104, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (12082, 1113, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', 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 (12081, 1105, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (12080, 1105, 6749, '1346', 'Jet 2 Inhaler', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12079, 1105, 6717, '1314', 'Lemsip Cold and flu Original 10\'s', 'standard', NULL, '38.4000', '38.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '38.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12078, 1105, 6643, '1240', 'Metroz Tablets 20\'s', 'standard', 0, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12077, 1105, 6445, '1042', 'Vermox Suspension', 'standard', 0, '21.6000', '21.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '21.6000', 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 (12076, 1105, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', 0, '83.6000', '83.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '83.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 (12075, 1105, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', 0, '60.3000', '60.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '60.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12074, 1105, 6321, '918', 'Clotri Denk 100mg Pessary', 'standard', 0, '25.8000', '25.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '25.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12073, 1105, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '74.0000', '74.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12072, 1105, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', 0, '2.9900', '2.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9800', '', '2.9900', 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 (12071, 1105, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12070, 1105, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', 0, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12069, 1105, 6220, '817', 'Dynewell Syrup 200ml', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12068, 1105, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '4.1000', '4.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.1000', '', '4.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12067, 1105, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12066, 1105, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12065, 1105, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12064, 1105, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (12059, 1105, 5586, '183', 'Dragon Spray', 'standard', 0, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12060, 1105, 5676, '273', 'Imax Delay Spray', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12061, 1105, 5712, '309', 'Lenor', 'standard', 0, '4.5000', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.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 (12062, 1105, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.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 (12063, 1105, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12024, 1103, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12020, 1106, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.9000', '', '40.3000', 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 (12017, 1107, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12018, 1107, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.9600', '', '36.9900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12019, 1107, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.5000', '0.5000', '100.0000', 1, '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 (12025, 1108, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (12026, 1109, 5652, '249', 'Roberts Glycerine 90ml', 'standard', NULL, '12.0000', '12.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '12.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 (12027, 1109, 6844, '1441', 'Roberts Glycerine 30ml', 'standard', NULL, '5.5000', '5.5000', '20.0000', 1, '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 (12083, 1114, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (12058, 1110, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.6000', 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 (12055, 1110, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '26.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 (12056, 1110, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12057, 1110, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0600', '', '6.0200', 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 (12048, 1110, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', NULL, '158.6000', '158.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.6000', '', '158.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 (12049, 1110, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.3000', 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 (12050, 1110, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.2000', 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 (12051, 1110, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (12052, 1110, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', 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 (12053, 1110, 6032, '629', 'Gebedol Forte', 'standard', NULL, '17.2100', '17.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2100', '', '17.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12054, 1110, 6034, '631', 'Deep Heat Spray 150ml', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (12041, 1111, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (12042, 1112, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.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 (12043, 1112, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '3.0000', 1, '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 (12044, 1112, 5641, '238', 'Gebedol Extra', 'standard', 0, '34.2000', '34.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2000', '', '34.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 (12045, 1112, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (12046, 1112, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '4.3000', '4.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '4.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 (12047, 1112, 5472, '69', 'Baseboom Gel', 'standard', 0, '4.6000', '4.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '4.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 (12084, 1114, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (12085, 1114, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (12086, 1114, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12087, 1114, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (12088, 1114, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9500', '', '2.9900', 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 (12089, 1114, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (12090, 1115, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6400', '', '2.8800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12091, 1115, 5813, '410', 'Paingay Gel 30g', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12092, 1116, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '5.5000', 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 (12093, 1117, 5447, '44', 'Apetamin Syrup 200ml', 'standard', 0, '28.7000', '28.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '28.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 (12094, 1117, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (12095, 1117, 5641, '238', 'Gebedol Extra', 'standard', 0, '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', '31.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12096, 1117, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12097, 1117, 5772, '369', 'Mist Mag. Trisilicate 200ml Mal-Titi', 'standard', 0, '4.5000', '4.5000', '6.0000', 1, '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 (12098, 1117, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', 0, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12099, 1117, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (12100, 1117, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '3.0000', 1, '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 (12101, 1117, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', 0, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12102, 1117, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '74.0000', '74.0000', '1.0000', 1, '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 (12103, 1117, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', 'standard', 0, '6.3500', '6.3500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7000', '', '6.3500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12104, 1118, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (12105, 1119, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (12106, 1119, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.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 (12107, 1119, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (12108, 1119, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.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 (12109, 1119, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '2.0000', 1, '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 (12110, 1119, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (12111, 1119, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12145, 1120, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '4.7000', 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 (12146, 1120, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12136, 1120, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12137, 1120, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '0.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 (12138, 1120, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '2.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 (12139, 1120, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (12140, 1120, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '8.3200', '8.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9600', '', '8.3200', 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 (12141, 1120, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (12142, 1120, 6167, '764', 'Polyfer Forte Syrup 200ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (12143, 1120, 6332, '929', 'Adom Koo Capsules', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12144, 1120, 6620, '1217', 'Lumetrust 140/360mg Tablets', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (12130, 1120, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', 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 (12131, 1120, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.2000', 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 (12132, 1120, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (12133, 1120, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (12134, 1120, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (12135, 1120, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (12147, 1120, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.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 (12148, 1120, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12149, 1120, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.7000', 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 (12150, 1120, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.7000', 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 (12189, 1121, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12188, 1121, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (12187, 1121, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (12185, 1121, 6273, '870', 'Vikil 20', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (12186, 1121, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12184, 1121, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.8000', 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 (12173, 1121, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '2.9800', 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 (12174, 1121, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.2000', 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 (12175, 1121, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.9000', 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 (12176, 1121, 5596, '193', 'Enacef (Cefuroxime) 250mg Tablets 10s ECL', 'standard', NULL, '16.8000', '16.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '16.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12177, 1121, 5641, '238', 'Gebedol Extra', 'standard', 0, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12178, 1121, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (12179, 1121, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '2.1000', 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 (12180, 1121, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.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 (12181, 1121, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', 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 (12182, 1121, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.7000', 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 (12183, 1121, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7500', '', '4.3500', 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 (12169, 1122, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12170, 1123, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12171, 1123, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '11.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 (12172, 1124, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (12190, 1121, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (12266, 1125, 6853, '1450', 'Mycolex Powder 50g', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (12265, 1125, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12264, 1125, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12263, 1125, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '6.1000', 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 (12262, 1125, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (12261, 1125, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (12260, 1125, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2500', '', '6.8500', 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 (12259, 1125, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (12258, 1125, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '161.2000', '', '40.3000', 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 (12257, 1125, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12256, 1125, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (12255, 1125, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '17.7000', 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 (12254, 1125, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.9000', 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 (12253, 1125, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (12252, 1125, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.2000', 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 (12251, 1125, 5981, '578', 'Magacid Fastmelt(all flavours)35\'s', 'standard', NULL, '12.6500', '12.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6500', '', '12.6500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12250, 1125, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (12249, 1125, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.5000', '', '7.3000', 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 (12248, 1125, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (12247, 1125, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (12246, 1125, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.1000', '', '3.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12245, 1125, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (12244, 1125, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (12243, 1125, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (12242, 1125, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (12241, 1125, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '8.7000', 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 (12240, 1125, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (12239, 1125, 5559, '156', 'Danrub Ointment 40g', 'standard', NULL, '9.9300', '9.9300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7900', '', '9.9300', 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 (12238, 1125, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (12226, 1126, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (12225, 1126, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.3000', 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 (12227, 1126, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', 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 (12228, 1127, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (12236, 1128, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.8000', 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 (12235, 1128, 6272, '869', 'Ferrovita B12 Syrup 200ml', 'standard', NULL, '31.5000', '31.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '31.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 (12234, 1128, 6161, '758', 'Emgiprofen Suspension 100ml', 'standard', NULL, '5.3000', '5.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '5.3000', 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 (12233, 1128, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (12237, 1129, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (12300, 1100, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', 0, '7.0000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '7.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 (12301, 1130, 5508, '105', 'Cardioace Capsules 80\'s', 'standard', 0, '85.7000', '85.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.7000', '', '85.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 (12302, 1130, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12303, 1130, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (12304, 1130, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12305, 1130, 6872, '97726773', 'Deworm 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '2.2000', 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 (12306, 1131, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (12307, 1132, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (12308, 1132, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12309, 1133, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '14.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 (12310, 1133, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (12311, 1133, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (12312, 1133, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (12313, 1133, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (12314, 1133, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (12315, 1133, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.1000', '', '12.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 (12316, 1133, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.3000', '', '32.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12334, 1134, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12333, 1134, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (12332, 1134, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.0000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12331, 1134, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (12330, 1134, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.4000', '', '2.7000', 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 (12329, 1134, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', 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 (12328, 1134, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '2.1000', 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 (12327, 1134, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12326, 1134, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (12389, 1136, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '72.0000', '72.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '72.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12390, 1136, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12391, 1136, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.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 (12392, 1137, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9600', '', '14.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12393, 1138, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12394, 1138, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7800', '', '22.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12395, 1138, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12396, 1138, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (12397, 1138, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6400', '', '3.3200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12398, 1138, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12399, 1138, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (12400, 1138, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (12401, 1138, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (12402, 1138, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (12403, 1138, 6265, '862', 'Folic Acid Tablets 50X10 ECL', 'standard', NULL, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (12404, 1138, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12405, 1138, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (12406, 1138, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '2.0000', 1, '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 (12407, 1139, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (12408, 1140, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (12409, 1140, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12410, 1140, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (12411, 1140, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (12412, 1140, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (12413, 1140, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.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 (12414, 1140, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (12415, 1140, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2000', '', '2.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 (12416, 1140, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '6.0000', 1, '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 (12417, 1140, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '8.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 (12418, 1140, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (12419, 1140, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '3.3000', 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 (12420, 1140, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (12421, 1140, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12422, 1140, 6755, '1352', 'Salo Simple Linctus', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (12423, 1140, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9400', '', '2.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12424, 1140, 6591, '1188', 'Abyvita Syrup 200ml', 'standard', 0, '11.0000', '11.0000', '2.0000', 1, '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 (12425, 1140, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (12426, 1140, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (12427, 1140, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (12428, 1140, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (12429, 1140, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (12430, 1140, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '5.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 (12436, 1141, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (12435, 1141, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12434, 1141, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', 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 (12437, 1141, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '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 (12679, 1152, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (12678, 1152, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '85.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 (12670, 1143, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', 0, '7.0000', '7.0000', '2.0000', 1, '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 (12669, 1143, 6882, '69020596', 'Clopidogrel Frelet 75', 'standard', 0, '25.0000', '25.0000', '1.0000', 1, '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 (12668, 1143, 6851, '1448', 'Cotton 500g', 'standard', 0, '26.0000', '26.0000', '1.0000', 1, '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 (12667, 1143, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (12666, 1143, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', 0, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12664, 1143, 6694, '1291', 'Prowoman 50+ Capsules 30\'s ', 'standard', 0, '52.8000', '52.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.6000', '', '52.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 (12665, 1143, 6753, '1350', 'COA Mixture', 'standard', 0, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.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 (12663, 1143, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', 0, '6.5000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.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 (12662, 1143, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', 0, '4.4500', '4.4500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2500', '', '4.4500', 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 (12661, 1143, 6670, '1267', 'Dicnac 75', 'standard', 0, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (12660, 1143, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', 0, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (12659, 1143, 6590, '1187', 'Peladol Extra', 'standard', 0, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12657, 1143, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (12658, 1143, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', 0, '75.0000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '75.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12656, 1143, 6522, '1119', 'Menopace Tabs UK', 'standard', 0, '49.7000', '49.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.7000', '', '49.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12655, 1143, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', 0, '10.6000', '10.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '10.6000', 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 (12654, 1143, 6479, '1076', 'Dulcolax 10mg Suppositories 12\'s', 'standard', 0, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.7000', 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 (12653, 1143, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', 0, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12652, 1143, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', 0, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (12651, 1143, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.7000', '', '9.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12650, 1143, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (12648, 1143, 6357, '954', 'Cotton Wool 200g', 'standard', 0, '13.0000', '13.0000', '2.0000', 1, '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 (12649, 1143, 6358, '955', 'Fenbase Extra', 'standard', 0, '2.7500', '2.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '2.7500', 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 (12647, 1143, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (12646, 1143, 6352, '949', 'Roxidol', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (12645, 1143, 6332, '929', 'Adom Koo Capsules', 'standard', 0, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (12644, 1143, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', 0, '28.6000', '28.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '28.6000', 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 (12643, 1143, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '74.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 (12642, 1143, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', 'standard', 0, '33.0200', '33.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0200', '', '33.0200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12641, 1143, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', 0, '6.0200', '6.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0200', '', '6.0200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12640, 1143, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', 0, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.7000', 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 (12639, 1143, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.3000', 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 (12638, 1143, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (12637, 1143, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (12636, 1143, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', 0, '7.8500', '7.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.7000', '', '7.8500', 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 (12635, 1143, 6117, '714', 'Gudapet Capsules', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (12633, 1143, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', 0, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12634, 1143, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', 0, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (12632, 1143, 6097, '694', 'Methylated Spirit 200ml', 'standard', 0, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (12631, 1143, 5975, '572', 'Durol Tonic 200ml', 'standard', 0, '12.2100', '12.2100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.6800', '', '12.2100', 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 (12630, 1143, 5915, '512', 'Tranexamic Acid 500mg Tablets 60\'s', 'standard', 0, '130.0000', '130.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '130.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12629, 1143, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (12628, 1143, 5848, '445', 'Relcer Gel', 'standard', NULL, '8.2800', '8.2800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5600', '', '8.2800', 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 (12627, 1143, 5835, '432', 'Proman 50+ Capsules 30\'s', 'standard', 0, '33.9800', '33.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.9800', '', '33.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12626, 1143, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', 0, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (12621, 1143, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12622, 1143, 5779, '376', 'Mycolex Cream 20g', 'standard', 0, '16.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.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 (12623, 1143, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', 0, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (12624, 1143, 5790, '387', 'Nexium 40mg Tablets 14\'s', 'standard', 0, '149.2800', '149.2800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.2800', '', '149.2800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12625, 1143, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '6.6000', 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 (12597, 1144, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (12596, 1144, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (12595, 1144, 5531, '128', 'Cloxacillin 250mg Letap', 'standard', NULL, '80.5000', '80.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.5000', '', '80.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 (12503, 1145, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (12504, 1145, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (12505, 1145, 6686, '1283', 'Letaplex Syrup 125ml', 'standard', NULL, '2.5000', '2.5000', '2.0000', 1, '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 (12506, 1145, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12507, 1145, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (12508, 1145, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12509, 1145, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (12510, 1145, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12511, 1145, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', '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 (12512, 1145, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7500', '', '3.7500', 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 (12513, 1145, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (12514, 1145, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12515, 1145, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12516, 1145, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.5000', '0.5000', '20.0000', 1, '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 (12517, 1145, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (12518, 1145, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (12519, 1145, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.3000', '', '7.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 (12520, 1145, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (12521, 1145, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12522, 1145, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (12523, 1145, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '3.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 (12524, 1146, 5473, '70', 'Basecold Syrup', 'standard', 0, '5.0000', '5.0000', '4.0000', 1, '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 (12525, 1146, 6121, '718', 'Strobin Lozenges 25x6', 'standard', 0, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.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 (12526, 1146, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', 0, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12527, 1146, 6557, '1154', 'Ocip TZ', 'standard', 0, '9.6000', '9.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '9.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 (12528, 1146, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', 0, '11.0000', '11.0000', '2.0000', 1, '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 (12529, 1146, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.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 (12530, 1146, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12531, 1146, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12532, 1147, 5787, '384', 'Neo-Hycolex e/e/n Drops 10ml', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (12533, 1147, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', 0, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12534, 1147, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', 0, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (12535, 1147, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', 0, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12671, 1143, 6771, '1368', 'Hydrolyte ORS 25 Lemon Flav. ECL', 'standard', NULL, '19.2000', '19.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '19.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12620, 1143, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', 0, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.9000', 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 (12619, 1143, 5634, '231', 'Garlic Pearls Osons', 'standard', 0, '7.1000', '7.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.1000', '', '7.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12618, 1143, 5629, '226', 'Funbact A', 'standard', 0, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (12617, 1143, 5593, '190', 'Efpac Tablets', 'standard', 0, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (12616, 1143, 5585, '182', 'Dragon Tablets', 'standard', 0, '23.4000', '23.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.2000', '', '23.4000', 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 (12615, 1143, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12598, 1144, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12599, 1148, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1700.0000', '', '85.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 (12600, 1149, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (12601, 1149, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (12602, 1149, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12603, 1149, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12604, 1149, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12605, 1149, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (12606, 1149, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (12607, 1149, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (12608, 1149, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.8000', '', '3.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 (12672, 1150, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', 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 (12673, 1150, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (12674, 1150, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (12675, 1150, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.8000', 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 (12676, 1151, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.9500', '', '186.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12677, 1152, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '187.5000', '', '3.7500', 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 (12680, 1152, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '4.5000', '4.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '4.5000', 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 (12681, 1152, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.6000', '', '7.8000', 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 (12683, 1153, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9800', '', '2.9900', 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 (12684, 1153, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (12685, 1154, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12752, 1155, 6259, '856', 'Kidivite Child Multivitamin Syrup 150ml', 'standard', NULL, '19.9000', '19.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.8000', '', '19.9000', 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 (12751, 1155, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '13.0000', '13.0000', '2.0000', 1, '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 (12749, 1155, 6591, '1188', 'Abyvita Syrup 200ml', 'standard', NULL, '11.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.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 (12750, 1155, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.9500', '4.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '4.9500', 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 (12748, 1155, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 'standard', 0, '16.0000', '16.0000', '1.0000', 1, '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 (12747, 1155, 6406, '1003', 'Celecoxib 200mg Capsules Exeter', 'standard', 0, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12746, 1155, 6322, '919', 'Para-Denk 250mg Suppository 10\'s', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12745, 1155, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.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 (12744, 1155, 6125, '722', 'Lufart Suspension', 'standard', 0, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (12743, 1155, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12741, 1155, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', 0, '13.4000', '13.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '13.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12742, 1155, 6024, '621', 'Vaginax Cream 30gm', 'standard', 0, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (12740, 1155, 5970, '567', 'Virol blood tonic 200ml', 'standard', 0, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', 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 (12739, 1155, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (12738, 1155, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', 0, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (12737, 1155, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', 0, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12736, 1155, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', 0, '18.0000', '18.0000', '2.0000', 1, '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 (12735, 1155, 5689, '286', 'Joy Ointment', 'standard', 0, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.3000', 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 (12706, 1156, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (12707, 1156, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (12708, 1157, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (12709, 1157, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (12734, 1155, 5676, '273', 'Imax Delay Spray', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12733, 1155, 5629, '226', 'Funbact A', 'standard', 0, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (12732, 1155, 5586, '183', 'Dragon Spray', 'standard', 0, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12731, 1158, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12753, 1159, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.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 (12754, 1160, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9500', '', '4.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12777, 1045, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12778, 1161, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '20.0000', 1, '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 (12779, 1161, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '3.4000', 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 (12780, 1161, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '22.9100', '22.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.5500', '', '22.9100', 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 (12781, 1161, 6712, '1309', 'Warfarin 5mg Tablets 28\'s', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (12782, 1161, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (12783, 1161, 6030, '627', 'Zipferon Capsule', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (12789, 1162, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (12790, 1162, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (12791, 1162, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (12792, 1162, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (12793, 1162, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '10.5500', '10.5500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.2000', '', '10.5500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12794, 1162, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (12795, 1162, 5716, '313', 'Letaron 200ml Syrup', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (12796, 1162, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (12797, 1162, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12798, 1162, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '0.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 (12799, 1162, 5946, '543', 'Wellman Capsules', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (12800, 1162, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (12801, 1162, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (12802, 1162, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (12803, 1162, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9500', '', '4.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12804, 1162, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (12805, 1162, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.5000', '0.5000', '10.0000', 1, '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 (12806, 1162, 6189, '786', 'Rufedol Tablets 10\'s', 'standard', NULL, '1.2000', '1.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '1.2000', 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 (12807, 1162, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.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 (12808, 1162, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (12809, 1162, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '14.2500', '14.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2500', '', '14.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 (12810, 1162, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (12811, 1163, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (12812, 1163, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (12813, 1163, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (12814, 1164, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (12815, 1164, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9500', '', '20.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12816, 1164, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12817, 1164, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12818, 1164, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12819, 1164, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.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 (12820, 1164, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.5100', '', '6.1700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12821, 1164, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (12822, 1164, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (12823, 1164, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (12824, 1164, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (12825, 1164, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '1.9000', 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 (12826, 1164, 6187, '784', 'Omeshal D Capsule (Omeprazole+Domperidone)10\'s', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (12827, 1164, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (12828, 1165, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12829, 1166, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (12830, 1166, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12831, 1167, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (12832, 1167, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '4.0200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12833, 1167, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12834, 1168, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (12835, 1168, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12836, 1168, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '5.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 (12837, 1168, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12881, 1169, 6464, '1061', 'Mist Expect Sed Mal-Titi', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (12880, 1169, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '17.2000', '17.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '17.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12879, 1169, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (12878, 1169, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (12877, 1169, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '6.0000', 1, '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 (12876, 1169, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (12875, 1169, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (12874, 1169, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (12873, 1169, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (12872, 1169, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12871, 1169, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (12870, 1169, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12869, 1169, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', 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 (12868, 1169, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (12867, 1169, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (12866, 1169, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (12865, 1169, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.1600', '', '41.5800', 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 (12864, 1169, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.3000', 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 (12863, 1169, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', 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 (12862, 1169, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12861, 1169, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.2000', '', '3.9100', 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 (12882, 1169, 6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12883, 1169, 6793, '1390', 'Benylin Chesty Cough Original 300ml ', 'standard', NULL, '91.2000', '91.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '182.4000', '', '91.2000', 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 (12884, 1169, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (12885, 1170, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (12886, 1170, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (12887, 1170, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12888, 1170, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12889, 1170, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '26.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 (12890, 1170, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12891, 1170, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12892, 1170, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.8000', '', '28.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 (12893, 1170, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '4.0000', 1, '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 (12894, 1170, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (12895, 1170, 5422, '19', 'Adom W&G Capsules', 'standard', NULL, '18.7000', '18.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.4000', '', '18.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 (12899, 1171, 5946, '543', 'Wellman Capsules', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12898, 1171, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (12900, 1171, 6010, '607', 'Rooter Tytonic', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12901, 1172, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (12902, 1172, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (12903, 1172, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.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 (12904, 1172, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2600', '', '3.4200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12905, 1173, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '72.2000', '72.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2000', '', '72.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 (12906, 1173, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '81.5000', '81.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.5000', '', '81.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12907, 1173, 6738, '1335', 'Eskaron Capsules 10X30', '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 (12908, 1173, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '20.9500', '20.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9000', '', '20.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12909, 1173, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12910, 1173, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12911, 1173, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (12912, 1174, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '900.0000', '', '18.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 (12913, 1175, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (12914, 1176, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '4.0000', 1, '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 (12915, 1176, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0800', '', '8.0400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12916, 1177, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '40.1400', '40.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4200', '', '40.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12917, 1178, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (12918, 1179, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12931, 1180, 6001, '598', 'Paraking Syrup 100ml', 'standard', NULL, '6.2000', '6.2000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.6000', '', '6.2000', 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 (12932, 1180, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.2000', '', '2.3000', 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 (12933, 1180, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12934, 1180, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (12935, 1180, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (12936, 1180, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (12928, 1180, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (12929, 1180, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (12930, 1180, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '10.7000', 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 (12937, 1180, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', 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 (12938, 1181, 5897, '494', 'Syringe and Needle 5ml Letaject', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (12939, 1182, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (12940, 1183, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.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 (12941, 1184, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (12942, 1185, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (12943, 1185, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (12944, 1185, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12945, 1185, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '4.1000', '4.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.1000', '', '4.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12946, 1185, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '3.7500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12947, 1186, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.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 (12948, 1186, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.0000', '', '12.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 (12949, 1186, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (12950, 1186, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '50.0000', 1, '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 (12951, 1187, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (12952, 1187, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.7000', '', '4.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 (12954, 1188, 5790, '387', 'Nexium 40mg Tablets 14\'s', 'standard', NULL, '149.2800', '149.2800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.2800', '', '149.2800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12955, 1189, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12956, 1189, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '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 (12957, 1189, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (12958, 1189, 6872, '97726773', 'Dewome 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '2.2000', 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 (12959, 1189, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '4.0000', 1, '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 (12960, 1189, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (12961, 1189, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (12962, 1189, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9600', '', '3.3200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12963, 1189, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (12964, 1189, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.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 (12965, 1190, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', 0, '39.9000', '39.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '39.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 (12966, 1190, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '1.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12967, 1190, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '5.0000', 1, '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 (12968, 1190, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12969, 1190, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (12970, 1190, 5826, '423', 'Plaster roll Extra care 2Inches', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (12971, 1190, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3500', '', '4.4500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12972, 1190, 6113, '710', 'Plaster roll 3Inches Xtra care', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.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 (12973, 1190, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '4.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 (12974, 1190, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (12975, 1191, 6726, '1323', 'Morgan\'s Auntibactirial Soap', 'standard', NULL, '6.0000', '6.0000', '10.0000', 1, '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 (12976, 1191, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.0000', '', '19.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 (12988, 1192, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9800', '', '2.9900', 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 (12987, 1192, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.3000', 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 (12986, 1192, 6040, '637', 'Cold Naso', 'standard', NULL, '3.0500', '3.0500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1000', '', '3.0500', 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 (12985, 1192, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2100', '', '14.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12984, 1192, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', 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 (12983, 1192, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8200', '', '3.9100', 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 (12989, 1192, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (12990, 1192, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '1.0000', 1, '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 (13124, 1193, 6692, '1289', 'Mist Mag. Trisilicate 200ml ROKMER', 'standard', 0, '4.0000', '4.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '4.0000', 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 (13123, 1193, 6538, '1135', 'Drez Solution 30ml', 'standard', 0, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.3000', 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 (13121, 1193, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.6000', 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 (13122, 1193, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', 0, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.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 (13120, 1193, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.3000', 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 (13119, 1193, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13118, 1193, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '5.9000', '5.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '5.9000', 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 (13117, 1193, 5948, '545', 'Wormplex Suspension', 'standard', 0, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (13116, 1193, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (13115, 1193, 5906, '503', 'Tetracycline Capsules', 'standard', 0, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (13114, 1193, 5589, '186', 'Drez Powder 10g', 'standard', 0, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (13112, 1193, 5427, '24', 'Agbeve Tonic', 'standard', 0, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (13113, 1193, 5588, '185', 'Drez Ointment 30mg', 'standard', 0, '14.9600', '14.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9200', '', '14.9600', 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 (13689, 1194, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '9.9000', 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 (13188, 1206, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '287.0000', '', '28.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 (13692, 1261, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13690, 1194, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.4000', '', '2.3000', NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13691, 1261, 5717, '314', 'Letavit Syrup', 'standard', NULL, '2.4000', '2.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.4000', 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 (13021, 1195, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (13022, 1195, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13023, 1196, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (13024, 1196, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (13025, 1196, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '1.0000', 1, '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 (13026, 1196, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (13027, 1196, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (13028, 1196, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.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 (13029, 1196, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13030, 1196, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13031, 1196, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (13032, 1196, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13033, 1196, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.9200', '', '13.9200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13034, 1196, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (13035, 1196, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (13036, 1196, 6656, '1253', 'Martins liver salt (Orange)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13037, 1196, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (13038, 1196, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (13039, 1196, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (13040, 1197, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (13041, 1197, 6347, '944', 'Happyrona forte syrup 200ml', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (13104, 1198, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (13103, 1198, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '10.4000', 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 (13102, 1198, 5998, '595', 'Linctus Adult Cough syr. 100ml', 'standard', NULL, '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '6.4000', 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 (13101, 1198, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.8000', '6.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '6.8000', 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 (13100, 1198, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (13099, 1198, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (13098, 1198, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (13097, 1198, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '5.9800', 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 (13096, 1198, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13051, 1199, 6010, '607', 'Rooter Tytonic', '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 (13052, 1199, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (13053, 1199, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (13054, 1199, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (13055, 1199, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13056, 1200, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '12.7000', 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 (13057, 1200, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.1000', '', '14.3000', 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 (13058, 1200, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.5000', '', '17.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 (13059, 1200, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13060, 1200, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (13061, 1200, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13062, 1200, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (13063, 1200, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (13064, 1200, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1000', '', '6.0200', 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 (13065, 1200, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.6000', '', '9.6600', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13066, 1200, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.3200', '3.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '3.3200', 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 (13067, 1200, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (13068, 1200, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '20.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13069, 1200, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.9000', '', '10.7000', 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 (13070, 1200, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (13071, 1200, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '4.0000', 1, '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 (13072, 1200, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13073, 1200, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (13074, 1200, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.9600', '', '9.3700', 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 (13075, 1200, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (13076, 1200, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (13077, 1200, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (13078, 1200, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (13079, 1200, 6149, '746', 'Emgivit (Multivitamin) Tablets 100x10', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (13080, 1200, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (13081, 1200, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (13082, 1200, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '17.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 (13083, 1200, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '13.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '13.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 (13084, 1200, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\\\' ECL', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13085, 1200, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '3.0000', 1, '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 (13086, 1201, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '20.0000', 1, '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 (13087, 1201, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4200', '', '34.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13088, 1201, 5607, '204', 'Ezipen Tablets 5x6', 'standard', NULL, '11.4000', '11.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '11.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13089, 1201, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '9.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 (13090, 1201, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13091, 1201, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.0000', '', '17.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 (13092, 1201, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (13093, 1201, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (13094, 1201, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '10.4500', '10.4500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.3500', '', '10.4500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13095, 1201, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.6000', '', '5.8600', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13105, 1198, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.0000', '', '29.8000', 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 (13106, 1202, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '36.9900', '36.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9900', '', '36.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13107, 1202, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '14.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 (13108, 1202, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (13109, 1202, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1400', '', '11.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13110, 1202, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.3000', '', '2.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 (13111, 1202, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (13189, 1206, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '18.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 (13322, 1203, 6574, '1171', 'Mucolex Cough Syrup150ml', 'standard', 0, '18.0000', '18.0000', '1.0000', 1, '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 (13323, 1203, 6670, '1267', 'Dicnac 75', 'standard', 0, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (13321, 1203, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', 0, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (13320, 1203, 6445, '1042', 'Vermox Suspension', 'standard', 0, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (13319, 1203, 6342, '939', 'Wellman 70+ Tablets 30\'s', 'standard', NULL, '58.1000', '58.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.1000', '', '58.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13318, 1203, 6333, '930', 'Adom Koo Mixture', 'standard', 0, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (13317, 1203, 6101, '698', 'Feroclear Syrup 200ml', 'standard', 0, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.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 (13316, 1203, 6010, '607', 'Rooter Tytonic', 'standard', 0, '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13315, 1203, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', 0, '25.0000', '25.0000', '2.0000', 1, '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 (13314, 1203, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13313, 1203, 5589, '186', 'Drez Powder 10g', 'standard', 0, '9.4000', '9.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.6000', '', '9.4000', 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 (13312, 1203, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', 0, '46.3000', '46.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.3000', '', '46.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13444, 1213, 6841, '1438', 'Chlor Eye Drops 0.5ml', 'standard', NULL, '2.6000', '2.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '2.6000', 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 (13154, 1204, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (13155, 1205, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13156, 1205, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.8000', '', '9.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 (13157, 1205, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13158, 1205, 6518, '1115', 'Wellwoman 70+ Capsules 30\'s', 'standard', NULL, '61.2000', '61.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.2000', '', '61.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 (13159, 1205, 6554, '1151', 'Man Up Capsules 60\'s', 'standard', NULL, '130.0000', '130.0000', '1.0000', 1, '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 (13160, 1205, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (13161, 1205, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.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 (13162, 1205, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (13163, 1205, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9000', '', '25.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13164, 1205, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '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 (13165, 1205, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (13166, 1205, 6130, '727', 'Kofof Family Syrup 150ml', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13167, 1205, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13168, 1205, 5957, '554', 'Zincovit Drops 15ml', 'standard', NULL, '8.8200', '8.8200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6400', '', '8.8200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13169, 1205, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.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 (13170, 1205, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.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 (13171, 1205, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (13190, 1206, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (13191, 1206, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (13192, 1206, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (13193, 1206, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.1000', '', '12.2100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13194, 1206, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.4000', '', '18.4800', 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 (13195, 1206, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '87.4100', '87.4100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '699.2800', '', '87.4100', 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 (13196, 1207, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7000', '', '39.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 (13197, 1207, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (13198, 1207, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13199, 1207, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13200, 1207, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3700', '', '3.7900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13201, 1208, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (13219, 1209, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.8000', 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 (13220, 1209, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (13221, 1209, 6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', 'standard', NULL, '4.3000', '4.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '4.3000', 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 (13222, 1209, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.6000', 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 (13218, 1209, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '2.8800', '2.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7600', '', '2.8800', 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 (13214, 1209, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.2000', 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 (13215, 1209, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.3000', 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 (13216, 1209, 6065, '662', 'Ferofix Syrup 200ml', 'standard', NULL, '4.9900', '4.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.9900', '', '4.9900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13217, 1209, 6190, '787', 'Shal\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (13213, 1209, 5473, '70', 'Basecold Syrup', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13223, 1209, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '1.6000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13224, 1209, 6842, '1439', 'Tobufen 60ml', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', 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 (13225, 1210, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (13226, 1210, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (13227, 1210, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (13228, 1210, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13229, 1210, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13230, 1211, 6795, '1392', 'Benylin Dry & Tickly Cough 150ml', 'standard', NULL, '55.8000', '55.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8000', '', '55.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 (13231, 1211, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.3000', '', '46.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 (13232, 1211, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', NULL, '49.0000', '49.0000', '1.0000', 1, '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 (13233, 1211, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '7.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13234, 1211, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.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 (13235, 1211, 6853, '1450', 'Mycolex Powder 50g', 'standard', NULL, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13236, 1211, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0400', '', '66.5200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13237, 1211, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (13238, 1211, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4200', '', '34.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13239, 1211, 6032, '629', 'Gebedol Forte', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (13240, 1211, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.9000', '', '186.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13241, 1211, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.8000', '', '17.2000', 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 (13242, 1212, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13243, 1212, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3700', '', '16.3700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13244, 1212, 6332, '929', 'Adom Koo Capsules', '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 (13245, 1212, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.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 (13246, 1212, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13247, 1212, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (13248, 1212, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '7.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 (13249, 1212, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13250, 1212, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (13251, 1212, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.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 (13252, 1212, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13253, 1212, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13443, 1213, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.5000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '14.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 (13442, 1213, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '13.8000', 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 (13441, 1213, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', 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 (13440, 1213, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.6000', '', '18.4000', 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 (13439, 1213, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '81.5000', '81.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.5000', '', '81.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 (13438, 1213, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.1000', '', '12.7000', 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 (13437, 1213, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '14.3000', 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 (13436, 1213, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.8000', 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 (13435, 1213, 6595, '1192', 'Azycin 500mg', 'standard', 0, '9.2000', '9.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '9.2000', 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 (13434, 1213, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13433, 1213, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.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 (13432, 1213, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13431, 1213, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '21.6000', 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 (13430, 1213, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (13429, 1213, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.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 (13428, 1213, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', 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 (13427, 1213, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9800', '', '9.6600', 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 (13426, 1213, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (13425, 1213, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (13424, 1213, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', 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 (13423, 1213, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (13422, 1213, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', 0, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.2000', 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 (13421, 1213, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', 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 (13420, 1213, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2500', '', '6.8500', 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 (13419, 1213, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13418, 1213, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (13417, 1213, 6127, '724', 'X\'Zole F Suspension', 'standard', 0, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (13416, 1213, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '3.4200', 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 (13415, 1213, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.8000', 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 (13414, 1213, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (13413, 1213, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.6000', '', '29.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 (13412, 1213, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.7000', 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 (13411, 1213, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (13410, 1213, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (13409, 1213, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.2000', '', '10.9000', 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 (13408, 1213, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (13407, 1213, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.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 (13406, 1213, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.7000', 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 (13405, 1213, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (13404, 1213, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1700', '', '6.1700', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13403, 1213, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13324, 1203, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '19.8000', 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 (13325, 1203, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '15.9500', 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 (13326, 1203, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '29.7000', 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 (13327, 1203, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.5500', '', '14.8500', 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 (13328, 1203, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '9.9000', 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 (13329, 1214, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13330, 1214, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (13383, 1218, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (13382, 1215, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '11.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13381, 1215, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '4.9500', 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 (13380, 1215, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (13379, 1215, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (13378, 1215, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13377, 1215, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (13375, 1215, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13376, 1215, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13371, 1216, 6829, '1426', 'Prostajoy', 'standard', NULL, '29.7000', '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '29.7000', 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 (13370, 1216, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.7000', 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 (13472, 1217, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13458, 1217, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.9000', '', '5.8600', 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 (13459, 1217, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.3000', 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 (13460, 1217, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13461, 1217, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.5100', '', '6.1700', 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 (13462, 1217, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (13463, 1217, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', 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 (13464, 1217, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (13465, 1217, 5754, '351', 'Malin Baby', 'standard', 0, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.2000', 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 (13466, 1217, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (13467, 1217, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (13468, 1217, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', 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 (13469, 1217, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (13470, 1217, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '1.8000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13471, 1217, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2400', '', '9.6200', 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 (13374, 1215, 5754, '351', 'Malin Baby', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (13373, 1215, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (13372, 1216, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13384, 1218, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (13385, 1218, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (13386, 1218, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (13387, 1218, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (13388, 1218, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.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 (13389, 1218, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (13390, 1218, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (13391, 1218, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (13392, 1218, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (13393, 1219, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (13394, 1219, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (13395, 1219, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (13396, 1220, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13397, 1221, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.8000', '', '28.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 (13398, 1221, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13399, 1221, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13400, 1222, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (13401, 1222, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (13402, 1222, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '8.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13445, 1213, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.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 (13446, 1213, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8500', '', '9.3700', 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 (13447, 1223, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (13448, 1224, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.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 (13449, 1225, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13450, 1225, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (13451, 1225, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.7500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13452, 1225, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (13453, 1225, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13454, 1225, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13455, 1225, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (13456, 1225, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13457, 1225, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13473, 1217, 6876, '5402680', 'Alazole 400 Tablet', 'standard', NULL, '1.5000', '1.5000', '15.0000', 1, '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 (13474, 1226, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '6.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13475, 1226, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (13476, 1226, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (13477, 1226, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.7500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13478, 1226, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (13479, 1226, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3700', '', '16.3700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13480, 1226, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13481, 1226, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.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 (13482, 1226, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (13483, 1226, 5696, '293', 'Kidicare Srup 200ml', 'standard', 0, '15.5000', '15.5000', '1.0000', 1, '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 (13484, 1226, 6332, '929', 'Adom Koo Capsules', '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 (13535, 1236, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', 'standard', NULL, '90.4200', '90.4200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.8400', '', '90.4200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13534, 1227, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.0000', '18.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '18.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 (13533, 1227, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '74.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 (13532, 1227, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '13.5000', 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 (13531, 1227, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.5000', '', '28.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 (13530, 1227, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (13529, 1227, 6033, '630', 'Deep Heat Rub 35g', 'standard', NULL, '31.4000', '31.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.8000', '', '31.4000', 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 (13528, 1227, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.0000', '', '38.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 (13527, 1227, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (18039, 1228, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '18.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 (18038, 1228, 6757, '1354', 'HCT Exforge 5/160/12.5mg 28\'s', 'standard', 0, '230.8000', '230.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '230.8000', '', '230.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18037, 1228, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', 0, '17.0000', '17.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '17.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 (18036, 1228, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', 0, '28.6000', '28.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '286.0000', '', '28.6000', 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 (18035, 1228, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.3000', 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 (18034, 1228, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', 0, '27.8000', '27.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '278.0000', '', '27.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 (18033, 1228, 5585, '182', 'Dragon Tablets', 'standard', 0, '23.4000', '23.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '23.4000', 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 (13501, 1229, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (13502, 1229, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13503, 1229, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (13504, 1230, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (13505, 1230, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (13506, 1230, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '4.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 (13507, 1230, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (13508, 1231, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (13509, 1231, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (13510, 1232, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (13511, 1233, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (13512, 1233, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '10.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 (13513, 1233, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (13547, 1234, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '2.2000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13536, 1234, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.8000', '', '5.8600', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13537, 1234, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '4.2000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13538, 1234, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13539, 1234, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '4.0000', 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 (13540, 1234, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (13541, 1234, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13542, 1234, 6123, '720', 'Strobin Lozenges 54X6', 'standard', NULL, '60.5000', '60.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.0000', '', '60.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 (13543, 1234, 6179, '776', 'Ibucap Forte Capsules', 'standard', NULL, '2.1000', '2.1000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '2.1000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13544, 1234, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (13545, 1234, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '4.4000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13546, 1234, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '21.4000', 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 (13526, 1235, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '6.0000', 1, '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 (13548, 1234, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '163.5600', '', '27.2600', 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 (13549, 1234, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '9.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 (13550, 1234, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.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 (13551, 1237, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (13552, 1238, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (13554, 1239, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '85.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 (13555, 1240, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (13632, 1241, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (13633, 1241, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '74.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 (13631, 1241, 5739, '336', 'Luex Child Dry Cough 150ml Syrup', 'standard', NULL, '16.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '16.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 (13559, 1242, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (13560, 1242, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '5.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 (13561, 1242, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.3500', '', '4.4500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13562, 1242, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (13563, 1242, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', 0, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (13564, 1242, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13565, 1242, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (13662, 1251, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13661, 1243, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.7000', 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 (13568, 1244, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13569, 1244, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (13570, 1244, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (13571, 1244, 5641, '238', 'Gebedol Extra', 'standard', 0, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13572, 1244, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', 0, '2.0000', '2.0000', '5.0000', 1, '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 (13573, 1244, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (13574, 1244, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', 0, '43.0000', '43.0000', '1.0000', 1, '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 (13575, 1244, 6007, '604', 'Penicillin V 125mg Letap', 'standard', 0, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13576, 1244, 6032, '629', 'Gebedol Forte', 'standard', 0, '19.0000', '19.0000', '1.0000', 1, '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 (13577, 1244, 6078, '675', 'Mr. Q', 'standard', 0, '42.0000', '42.0000', '1.0000', 1, '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 (13578, 1244, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', 0, '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', '5.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 (13579, 1244, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', 0, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13580, 1244, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', 0, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13581, 1244, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13582, 1244, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '26.5000', '26.5000', '1.0000', 1, '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 (13583, 1244, 6434, '1031', 'Cotton wool 50g', 'standard', 0, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.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 (13584, 1244, 6538, '1135', 'Drez Solution 30ml', 'standard', 0, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (13585, 1244, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', 0, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.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 (13586, 1244, 6817, '1414', 'Basecold 1x6 Tab', 'standard', 0, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (13587, 1244, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (13588, 1244, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13589, 1244, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13590, 1244, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.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 (13591, 1245, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '39.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 (13592, 1245, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (13593, 1245, 5637, '234', 'Gaviscon Peppermint Liquid 200ml', 'standard', NULL, '54.2000', '54.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '162.6000', '', '54.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 (13594, 1245, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.0000', '', '29.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 (13595, 1245, 6903, '75300114', 'Foligrow Plus 200ml Syrup', 'standard', NULL, '25.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '25.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 (13596, 1245, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '39.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13597, 1245, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (13598, 1245, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '143.5000', '', '28.7000', 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 (13599, 1245, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '9.4000', '9.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '9.4000', 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 (13600, 1245, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.9000', '', '22.7800', 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 (13601, 1245, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (13602, 1245, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (13603, 1245, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (13604, 1245, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (13605, 1245, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.8000', '', '39.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 (13606, 1246, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (13607, 1247, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.4200', '', '14.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13608, 1247, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.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 (13609, 1247, 6002, '599', 'Ferrodex Syrup 200ml', 'standard', NULL, '8.5500', '8.5500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6500', '', '8.5500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13610, 1247, 6267, '864', 'Stopkof Cold and Catarrh Tablets 12s', 'standard', NULL, '8.0400', '8.0400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1600', '', '8.0400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13611, 1247, 6433, '1030', 'Virest Cream (Aciclovir) 5mg', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '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 (13612, 1247, 6160, '757', 'Emgikof D Syrup100ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (13613, 1247, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13614, 1247, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (13615, 1247, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', '12.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 (13616, 1247, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13617, 1247, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.2000', '15.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '15.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 (13618, 1247, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '17.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 (13619, 1247, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (13620, 1247, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (13621, 1247, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '10.0000', 1, '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 (13622, 1247, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (13623, 1247, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (13624, 1247, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13625, 1247, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13626, 1247, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '7.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 (13627, 1247, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '9.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13628, 1247, 5456, '53', 'Aspanol All In One Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.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 (13629, 1247, 6822, '1419', 'Malufen 560 Tablets (Artemether Lumefantrine Tablets)', 'standard', NULL, '10.0000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '10.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 (13630, 1247, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '5.2000', '5.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '5.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 (13634, 1241, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '81.5000', '81.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.5000', '', '81.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 (13635, 1248, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13636, 1248, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (13637, 1248, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13638, 1248, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (13639, 1248, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13640, 1248, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (13641, 1248, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (13642, 1248, 6591, '1188', 'Abyvita Syrup 200ml', 'standard', NULL, '11.5000', '11.5000', '1.0000', 1, '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 (13643, 1248, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.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 (13644, 1248, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13645, 1248, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '6.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 (13646, 1248, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (13647, 1248, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (13648, 1248, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (13649, 1248, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (13650, 1248, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (13651, 1249, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (13652, 1249, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13653, 1249, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (13654, 1249, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '26.0000', '26.0000', '2.0000', 1, '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 (13655, 1249, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (13656, 1249, 6010, '607', 'Rooter Tytonic', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '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 (13657, 1249, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.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 (13658, 1249, 6276, '873', 'Tinatett Malakare 500ml', 'standard', 0, '17.6000', '17.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '17.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 (13659, 1250, 6688, '1285', 'Travatan Eye Drops 2.5ml', 'standard', NULL, '80.8000', '80.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.8000', '', '80.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 (13660, 1250, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13663, 1251, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.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 (13664, 1251, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13665, 1252, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (13666, 1252, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13667, 1253, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13668, 1254, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13669, 1254, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (13670, 1255, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13671, 1256, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (13672, 1256, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (13673, 1257, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13674, 1257, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13675, 1257, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (13676, 1258, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (13677, 1258, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (13678, 1258, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (13679, 1258, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (13680, 1258, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (13681, 1259, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (13682, 1259, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (13683, 1259, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (13684, 1259, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (13685, 1259, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13686, 1259, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (13687, 1259, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (13688, 1260, 6518, '1115', 'Wellwoman 70+ Capsules 30\'s', 'standard', 0, '80.7000', '80.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '80.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 (13693, 1262, 5683, '280', 'Infacol Drops 55ml', 'standard', NULL, '49.4000', '49.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.4000', '', '49.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 (13769, 1263, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13770, 1263, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (13771, 1263, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13772, 1263, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.3000', 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 (13773, 1263, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (13774, 1263, 6665, '1262', 'Plaster Strips Easy Care', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (13775, 1263, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (13776, 1263, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (13777, 1263, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (13768, 1263, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', 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 (13765, 1263, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.7000', '', '28.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13766, 1263, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (13767, 1263, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (13707, 1264, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (13708, 1264, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (13709, 1264, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13710, 1264, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (13711, 1264, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (13712, 1264, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (13713, 1264, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.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 (13714, 1264, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '17.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 (13715, 1264, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (13716, 1264, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '2.0000', 1, '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 (13717, 1264, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (13718, 1264, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', 0, '28.0000', '28.0000', '1.0000', 1, '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 (13719, 1264, 6460, '1057', 'Calamine Lotion 100ml Mal-Titi', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (13720, 1264, 6575, '1172', '3TOL 500ML Anticeptic & Disinfectant', 'standard', 0, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13721, 1264, 6577, '1174', '3TOL Lime 250ml Anticeptic & Disinfectant', 'standard', 0, '5.5000', '5.5000', '1.0000', 1, '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 (13722, 1265, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13723, 1266, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '5.2000', '5.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '5.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 (13744, 1267, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (13745, 1267, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.1200', '', '9.0400', 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 (13746, 1267, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7000', '', '12.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13747, 1267, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13740, 1267, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13741, 1267, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13742, 1267, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.8000', '6.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.6000', '', '6.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 (13743, 1267, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.7000', '', '6.8500', 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 (13739, 1267, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13734, 1268, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (13735, 1268, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13736, 1268, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13737, 1269, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (13738, 1269, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13748, 1267, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (13749, 1270, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (13750, 1271, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13751, 1271, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13752, 1271, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (13753, 1271, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13754, 1271, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13755, 1271, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13756, 1271, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '2.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 (13757, 1271, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13758, 1271, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (13759, 1271, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '9.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 (13760, 1271, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (13761, 1271, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13762, 1271, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (13763, 1271, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (13764, 1271, 5998, '595', 'Linctus Adult Cough syr. 100ml', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13778, 1272, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13779, 1272, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (13780, 1272, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (14042, 1273, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.7000', 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 (14043, 1273, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (14044, 1273, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (14040, 1273, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (14041, 1273, 6628, '1225', 'Multivitamin Syrup 125ml Ayrton', 'standard', NULL, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.8000', 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 (14020, 1273, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (14021, 1273, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.3000', '', '5.8600', 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 (14022, 1273, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.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 (14023, 1273, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (14024, 1273, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (14025, 1273, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.2000', 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 (14026, 1273, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (14027, 1273, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (14028, 1273, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (14029, 1273, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (14030, 1273, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (14031, 1273, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (14032, 1273, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.3000', 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 (14033, 1273, 6245, '842', 'Neflucon(Fluconazole)150mg Capsule ECL', 'standard', NULL, '2.9900', '2.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9500', '', '2.9900', 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 (14034, 1273, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14035, 1273, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', 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 (14036, 1273, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (14037, 1273, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (14038, 1273, 6387, '984', 'Cartef 20/120mg Tablets 24\'s', 'standard', NULL, '7.9300', '7.9300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6500', '', '7.9300', 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 (14039, 1273, 6535, '1132', 'Clotrimazole Cream 0.01 20g', 'standard', NULL, '3.8000', '3.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '3.8000', 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 (13807, 1274, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (13808, 1274, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.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 (13809, 1275, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '4.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13810, 1275, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (13811, 1275, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0400', '', '4.0200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13812, 1275, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8000', '', '3.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13813, 1275, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8400', '', '3.4200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13814, 1275, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (13815, 1275, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13816, 1275, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (13817, 1275, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (13818, 1275, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (13971, 1276, 6836, '1433', 'Fluclox Suspension 100ml Eskay', 'standard', NULL, '5.2300', '5.2300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.3800', '', '5.2300', 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 (13970, 1276, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '18.4800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13969, 1276, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '6.9000', 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 (13968, 1276, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5400', '', '3.1800', 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 (13967, 1276, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', 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 (13966, 1276, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.6000', 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 (13965, 1276, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1200', '', '3.5200', 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 (13964, 1276, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', 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 (13963, 1276, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13962, 1276, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '7.2000', 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 (13961, 1276, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.9000', 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 (13960, 1276, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (13959, 1276, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (13958, 1276, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (13957, 1276, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13956, 1276, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (13955, 1276, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.2000', 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 (13954, 1276, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13953, 1276, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', 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 (13952, 1276, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4600', '', '3.4100', 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 (13841, 1277, 6903, '75300114', 'Foligrow Plus 200ml Syrup', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13842, 1277, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (13843, 1277, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13844, 1277, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13845, 1277, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13846, 1277, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.1000', '', '15.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13847, 1277, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (13848, 1277, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (13849, 1277, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13850, 1277, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', NULL, '15.2000', '15.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '15.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 (13851, 1277, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.9200', '', '13.9200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13852, 1277, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13853, 1278, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (13977, 1279, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.5000', '18.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '18.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 (13976, 1279, 6458, '1055', 'Infa V Pessaries', 'standard', 0, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.9000', 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 (13975, 1279, 5856, '453', 'Rubbing Alcohol 500ml', 'standard', 0, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (13858, 1280, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (13859, 1280, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (13860, 1280, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (13861, 1280, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (13862, 1280, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13863, 1280, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '8.2000', 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 (13864, 1280, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (13865, 1280, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13866, 1280, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13867, 1280, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (13868, 1280, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (13869, 1280, 5667, '264', 'Honeykof Herbal Cough Syrup 100ml', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (13870, 1280, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (13871, 1280, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (13872, 1280, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (13873, 1280, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13874, 1280, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8400', '', '13.9200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13875, 1280, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.5000', '14.5000', '1.0000', 1, '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 (13876, 1280, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.7000', '', '28.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 (13877, 1280, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (13878, 1280, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.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 (13879, 1280, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13880, 1280, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13881, 1280, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '3.1000', 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 (13882, 1280, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (13883, 1280, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.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 (13884, 1280, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13885, 1280, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (13886, 1280, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (13887, 1280, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (13888, 1280, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13889, 1280, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13890, 1280, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (13891, 1280, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (13892, 1280, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (13893, 1280, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13894, 1280, 6750, '1347', 'Clodol 100mg Suppository (Diclofenac 2X5)', 'standard', NULL, '6.7000', '6.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '6.7000', 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 (13895, 1280, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (13896, 1280, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', 0, '34.3000', '34.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.3000', '', '34.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 (13897, 1280, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '8.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 (13898, 1281, 6518, '1115', 'Wellwoman 70+ Capsules 30\'s', 'standard', NULL, '80.7000', '80.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '80.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 (13899, 1281, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '7.2000', '7.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '7.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 (13900, 1281, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (13901, 1282, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '4.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13902, 1282, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13903, 1282, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (13904, 1282, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '3.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13905, 1282, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2500', '', '3.7500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13906, 1282, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '3.0000', 1, '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 (13907, 1283, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13908, 1283, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13909, 1283, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13910, 1283, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0200', '', '4.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13948, 1284, 6601, '1198', 'Starcold', 'standard', NULL, '1.1000', '1.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '1.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 (13947, 1284, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.0400', '9.0400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0800', '', '9.0400', 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 (13946, 1284, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '4.1000', 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 (13945, 1284, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (13944, 1284, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', 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 (13943, 1284, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (13942, 1284, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (13941, 1284, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', 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 (13940, 1284, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (13939, 1284, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '2.8000', 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 (13938, 1284, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (13937, 1284, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (13936, 1284, 6010, '607', 'Rooter Tytonic', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13935, 1284, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (13934, 1284, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', 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 (13933, 1284, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.2000', 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 (13932, 1284, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (13931, 1284, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (13949, 1284, 6687, '1284', 'Broncholin Syrup 125ml', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (13950, 1284, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (13951, 1284, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '2.7000', 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 (13972, 1276, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (13973, 1276, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', 0, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (13974, 1276, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7000', '', '10.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13999, 1285, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (14000, 1285, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13980, 1286, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '8.6000', '8.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '8.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 (13981, 1286, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13982, 1286, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '1.0000', 1, '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 (13983, 1286, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '15.4000', 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 (13984, 1286, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (13985, 1286, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1700', '', '6.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 (13986, 1286, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (13987, 1286, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13988, 1286, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '11.3000', '11.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.6000', '', '11.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 (13989, 1286, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13990, 1286, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (13991, 1286, 6386, '983', 'Paingay Capsules', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (13992, 1286, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13993, 1286, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.9000', '', '9.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 (13994, 1286, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.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 (13995, 1286, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (13996, 1286, 5499, '96', 'Calcium B12 Syrup 200ml', 'standard', NULL, '3.8000', '3.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '3.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 (13997, 1286, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (13998, 1286, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (14001, 1287, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14003, 1288, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.3000', 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 (14004, 1288, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (14005, 1289, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (14006, 1289, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (14007, 1289, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '4.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 (14008, 1289, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.3000', '', '7.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 (14009, 1289, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.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 (14010, 1289, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14011, 1289, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14012, 1289, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.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 (14013, 1289, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14014, 1289, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (14015, 1289, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (14016, 1289, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (14017, 1289, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (14018, 1289, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (14019, 1289, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.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 (14045, 1273, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (14046, 1273, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (14047, 1290, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '1.0000', 1, '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 (14048, 1290, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (14049, 1291, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14788, 1292, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '15.4000', 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 (14789, 1292, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', NULL, '15.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '15.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 (14790, 1292, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', 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 (14791, 1292, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.9000', '', '24.0900', 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 (14792, 1292, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (14793, 1292, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (14794, 1292, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.9000', 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 (14795, 1292, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', '7.3000', 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 (14796, 1292, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (14797, 1292, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '9.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 (14798, 1292, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (14799, 1292, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (14800, 1292, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14801, 1292, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14802, 1292, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.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 (14803, 1292, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5900', '', '66.5300', 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 (14804, 1292, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.0000', '', '68.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 (14805, 1292, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5600', '', '66.5200', 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 (14806, 1292, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '30.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 (14807, 1292, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '74.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 (14808, 1292, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.7500', 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 (14809, 1292, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '3.7000', 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 (14810, 1292, 6400, '997', 'Metagyl 400mg Tablets', 'standard', NULL, '46.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '46.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 (14811, 1292, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '4.6200', 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 (14812, 1292, 6535, '1132', 'Clotrimazole Cream 0.01 20g', 'standard', NULL, '3.8000', '3.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '3.8000', 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 (14813, 1292, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.9500', '', '186.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14814, 1292, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (14815, 1292, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (14816, 1292, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.5400', '', '26.1800', 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 (14817, 1292, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '18.5000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14839, 1344, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (14840, 1344, 5676, '273', 'Imax Delay Spray', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14841, 1357, 6680, '1277', 'Gebediclo 50mg Tablets', 'standard', NULL, '8.3200', '8.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.3200', '', '8.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14086, 1293, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14087, 1293, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (14088, 1294, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (14089, 1294, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (14090, 1294, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.2500', '', '2.6900', 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 (14091, 1294, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '2.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 (14092, 1294, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (14093, 1294, 5997, '594', 'Linctus Junior Syrup 100ml', 'standard', NULL, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (14094, 1294, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14095, 1294, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.7400', '', '9.3700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14096, 1294, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.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 (14097, 1295, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (14098, 1296, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (14223, 1297, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.1300', '', '17.7100', 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 (14215, 1297, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (14216, 1297, 6556, '1153', 'TSec 1g Tablets', 'standard', NULL, '2.0000', '2.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.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 (14217, 1297, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (14218, 1297, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (14219, 1297, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.7000', 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 (14220, 1297, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.8000', 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 (14221, 1297, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', NULL, '6.0000', '6.0000', '2.0000', 1, '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 (14222, 1297, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '5.9000', 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 (14214, 1297, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '9.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 (14208, 1297, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', 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 (14209, 1297, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (14210, 1297, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (14211, 1297, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (14212, 1297, 6387, '984', 'Cartef 20/120mg Tablets 24\'s', 'standard', NULL, '7.9300', '7.9300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.3000', '', '7.9300', 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 (14213, 1297, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.7000', 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 (14191, 1297, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (14192, 1297, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (14193, 1297, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (14194, 1297, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '4.0200', 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 (14195, 1297, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (14196, 1297, 5753, '350', 'Malin Adult', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (14197, 1297, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.2000', 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 (14198, 1297, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '6.6000', 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 (14199, 1297, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.3000', 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 (14200, 1297, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.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 (14201, 1297, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '1.0000', 1, '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 (14202, 1297, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', 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 (14203, 1297, 5962, '559', 'Zinvite Syrup 200ml', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (14204, 1297, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '8.9000', 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 (14205, 1297, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14206, 1297, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '9.3000', 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 (14207, 1297, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '1.9000', 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 (14787, 1292, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (14783, 1292, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (14784, 1292, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (14785, 1292, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (14786, 1292, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.0000', '', '12.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 (14172, 1298, 6563, '1160', 'Polygynax Pessaries 12\'s', 'standard', NULL, '81.0000', '81.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '162.0000', '', '81.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14173, 1298, 6323, '920', 'Polygynax Pessaries 6\'s', 'standard', NULL, '48.0000', '48.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '48.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14174, 1298, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.2000', '', '8.4000', 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 (14175, 1298, 5723, '320', 'Bells Liquid Parafin BP 100ml', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '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 (14176, 1299, 6057, '654', 'Liv 52 Tablets', 'standard', NULL, '41.5000', '41.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5000', '', '41.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14177, 1299, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (14178, 1299, 6901, '89069149', 'Paralex D Tablets', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (14179, 1299, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14180, 1299, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '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 (14181, 1299, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (14182, 1299, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (14183, 1299, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7500', '', '8.7500', 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 (14184, 1299, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (14185, 1299, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (14186, 1299, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '4.6200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14187, 1299, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.8000', '2.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '2.8000', 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 (14188, 1299, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14189, 1299, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14190, 1300, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (14224, 1297, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (14225, 1297, 6897, '80096466', 'Streptol 6X2 Lozenges', 'standard', NULL, '4.8000', '4.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '4.8000', 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 (14226, 1301, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.1000', '', '21.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 (14227, 1301, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '9.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 (14228, 1301, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14229, 1301, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (14230, 1301, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (14231, 1301, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (14232, 1301, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14233, 1302, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14234, 1302, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14235, 1302, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (14236, 1302, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '7.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 (14237, 1302, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14238, 1303, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2500', '', '6.8500', 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 (14239, 1303, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (14240, 1303, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7000', '', '39.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 (14241, 1303, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14242, 1303, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (14243, 1303, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14244, 1303, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '2.0000', 1, '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 (14245, 1303, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (14246, 1303, 6583, '1180', 'Adom Ladies Mixture', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (14247, 1303, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (14248, 1303, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.3000', '', '7.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14249, 1303, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.9000', '', '5.8600', 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 (14250, 1303, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (14251, 1303, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.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 (14252, 1303, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (14253, 1303, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14254, 1303, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '15.4000', 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 (14255, 1303, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (14256, 1303, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (14257, 1303, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14258, 1303, 6382, '979', 'Child Care Cough & Cold 125ml Syrup', 'standard', NULL, '4.1000', '4.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '4.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14259, 1303, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.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 (14260, 1303, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '9.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 (14261, 1303, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (14262, 1303, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (14263, 1303, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14264, 1303, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (14265, 1303, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14266, 1303, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14267, 1303, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (14268, 1303, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (14269, 1303, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14270, 1303, 6211, '808', 'Contreg Syrup 30ml', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (14271, 1303, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14272, 1303, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14273, 1303, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.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 (14274, 1303, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (14275, 1303, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '23.1000', '23.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '23.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14276, 1303, 6672, '1269', 'Kofof Child Expectorant 100ml', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '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 (14277, 1303, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (14278, 1304, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (14279, 1305, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (14280, 1305, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14281, 1305, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14308, 1306, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (14307, 1306, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14306, 1306, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (14305, 1306, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (14304, 1306, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14303, 1306, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14302, 1306, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.5000', '', '20.9000', 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 (14301, 1306, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (14300, 1306, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '545.2000', '', '27.2600', 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 (14299, 1306, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14298, 1306, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (14297, 1306, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (14296, 1306, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (14309, 1306, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '6.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14310, 1307, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (14311, 1307, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14312, 1308, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '20.0000', 1, '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 (14313, 1309, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.8000', '', '4.0200', 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 (14314, 1309, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '1.2000', 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 (14315, 1309, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (14316, 1309, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '3.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 (14317, 1309, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.9000', '', '12.9800', 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 (14318, 1309, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14319, 1309, 6872, '97726773', 'Dewome 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '2.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 (14320, 1309, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (14321, 1309, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.5000', '', '25.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 (14322, 1309, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '50.0000', 1, '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 (14323, 1310, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (14324, 1310, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (14325, 1311, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '18.5000', 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 (14326, 1311, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (14327, 1311, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '39.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 (14328, 1311, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '39.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 (14329, 1311, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.5000', '', '38.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 (14330, 1311, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '122.1000', '', '12.2100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14331, 1311, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (14332, 1311, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '25.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 (14333, 1311, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14334, 1312, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (14335, 1312, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14336, 1313, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14337, 1314, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (14338, 1314, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '1.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 (14339, 1315, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '74.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14340, 1315, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14341, 1315, 5635, '232', 'Gastrone Plus 200ml Suspension', 'standard', NULL, '14.7600', '14.7600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5200', '', '14.7600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14342, 1315, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (14343, 1315, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.2000', '', '3.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14344, 1315, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (14345, 1315, 6768, '1365', 'Methylated Spirit 125ml ECL', 'standard', NULL, '5.8000', '5.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.2000', '', '5.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 (14346, 1316, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (14347, 1317, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (14348, 1317, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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 (14349, 1317, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (14350, 1317, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '3.4000', 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 (14351, 1317, 6352, '949', 'Roxidol', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '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 (14352, 1317, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '20.0000', 1, '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 (14353, 1317, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14354, 1317, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.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 (14355, 1318, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '11.8000', '11.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '11.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 (14356, 1318, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.1000', '', '24.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 (14357, 1318, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '9.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14358, 1318, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (14359, 1319, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14360, 1319, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (14361, 1319, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (14362, 1319, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.2000', '', '3.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14363, 1319, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.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 (14364, 1319, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (14365, 1319, 6868, '70949987', 'Fiesta Condom Classic', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (14366, 1319, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.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 (14367, 1319, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '2.0000', 1, '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 (14368, 1319, 5548, '145', 'Crepe Bandage 2Inches Xtra care', 'standard', NULL, '2.9800', '2.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9400', '', '2.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14369, 1320, 6032, '629', 'Gebedol Forte', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (14370, 1320, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.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 (14371, 1320, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.6000', '', '5.9500', 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 (14372, 1320, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '8.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 (14373, 1320, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '9.5000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '9.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 (14374, 1320, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '12.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 (14375, 1320, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '6.5000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '6.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 (14376, 1320, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '234.0000', '', '39.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 (14377, 1320, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '234.0000', '', '39.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 (14378, 1320, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.5000', '', '20.1000', 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 (14379, 1320, 6903, '75300114', 'Foligrow Plus 200ml Syrup', 'standard', NULL, '25.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '125.0000', '', '25.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 (14380, 1320, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '325.0000', '', '65.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 (14381, 1320, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (14382, 1320, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (14383, 1320, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\\\' ECL', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14384, 1320, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.7600', '', '14.9600', 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 (14385, 1320, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (14386, 1320, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.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 (14387, 1321, 6535, '1132', 'Clotrimazole Cream 0.01 20g', 'standard', NULL, '3.8000', '3.8000', '4.0000', 1, '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 (14388, 1322, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (14389, 1322, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14390, 1322, 5456, '53', 'Aspanol All In One Syrup', 'standard', NULL, '10.6000', '10.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.4000', '', '10.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 (14391, 1322, 6568, '1165', 'Lexofen 150ml Suspension', 'standard', NULL, '15.0000', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '15.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 (14392, 1322, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (14393, 1322, 6650, '1247', 'Nexcofer Blood Tonic 100ml', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.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 (14394, 1322, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '27.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 (14395, 1322, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (14396, 1322, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.8000', '', '9.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 (14397, 1322, 6654, '1251', 'Huichun Capsules', 'standard', NULL, '22.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '22.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 (14398, 1322, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.4000', '', '10.8000', 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 (14399, 1322, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '128.4000', '', '32.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14400, 1322, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.1000', '', '12.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 (14401, 1322, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '5.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14402, 1322, 6558, '1155', 'Zulu MR 100mg Tablet', 'standard', NULL, '6.0000', '6.0000', '8.0000', 1, '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 (14403, 1322, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (14404, 1322, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.5000', '', '39.7000', 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 (14405, 1322, 6032, '629', 'Gebedol Forte', 'standard', NULL, '19.0000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '19.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 (14406, 1322, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.6000', '', '29.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 (14407, 1322, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '34.8000', '34.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '139.2000', '', '34.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 (14408, 1322, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (14409, 1322, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (14410, 1322, 6624, '1221', 'Healthlink Glucosamine & Chodroitin Caplet', 'standard', NULL, '54.0000', '54.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '54.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14411, 1322, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (14412, 1322, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (14413, 1322, 6719, '1316', 'Glucose and Chondriton 400mg Tab. Valupak 30\'s', 'standard', NULL, '17.4000', '17.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '17.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 (14414, 1323, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14415, 1323, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14416, 1323, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '6.0300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14417, 1323, 6123, '720', 'Strobin Lozenges 54X6', 'standard', NULL, '60.5000', '60.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.5000', '', '60.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14418, 1323, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.0000', '', '12.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 (14419, 1323, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '9.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 (14420, 1323, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (14421, 1323, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '3.0000', 1, '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 (14422, 1323, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14423, 1323, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14424, 1323, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (14425, 1323, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (14426, 1323, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (14427, 1323, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.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 (14428, 1323, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14429, 1323, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (14430, 1323, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (14431, 1323, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.2100', '14.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6300', '', '14.2100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14432, 1323, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '1.0000', 1, '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 (14433, 1323, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14434, 1323, 6451, '1048', 'Voltfast Powder 50mg 30\'s', 'standard', NULL, '53.2000', '53.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '53.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 (14435, 1323, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.2000', '', '18.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14436, 1323, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (14437, 1323, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (14438, 1323, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (14439, 1323, 5500, '97', 'Calpol Infant 2+Suspension 100ml', 'standard', NULL, '46.3000', '46.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '138.9000', '', '46.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 (14440, 1323, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', NULL, '49.0000', '49.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '196.0000', '', '49.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 (14441, 1323, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '18.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 (14442, 1323, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.4000', '', '9.4000', 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 (14443, 1323, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '18.5000', 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 (14632, 1324, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14631, 1324, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '34.8000', '34.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.8000', '', '34.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14630, 1324, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (14629, 1324, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6000', '', '6.4000', 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 (14628, 1324, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '38.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 (14627, 1324, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (14626, 1324, 5593, '190', 'Efpac Tablets', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (14451, 1325, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (14452, 1325, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (14453, 1325, 6356, '953', 'Cotton Wool 100g', 'standard', NULL, '7.2000', '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14454, 1326, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14455, 1327, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (14456, 1328, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (14457, 1329, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14458, 1329, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '2.0000', 1, '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 (14459, 1329, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', 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 (14460, 1329, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (14461, 1329, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (14462, 1329, 6450, '1047', 'Diagellates Elixir 500ml', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (14463, 1329, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (14464, 1329, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (14465, 1329, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (14466, 1329, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (14467, 1329, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14468, 1329, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (14469, 1329, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (14470, 1329, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14471, 1329, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5200', '', '66.5200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14472, 1329, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', 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 (14473, 1330, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (14474, 1330, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14475, 1330, 6220, '817', 'Dynewell Syrup 200ml', '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 (14476, 1330, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (14477, 1330, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (14478, 1331, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '18.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14479, 1331, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '14.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 (14480, 1331, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14481, 1331, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.8000', '', '9.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 (14482, 1331, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (14483, 1331, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.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 (14484, 1331, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (14485, 1331, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '2.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 (14486, 1331, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (14487, 1331, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.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 (14488, 1331, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (14489, 1331, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '4.0000', 1, '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 (14490, 1331, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (14491, 1331, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (14492, 1331, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (14493, 1331, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0900', '', '24.0900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14494, 1331, 6147, '744', 'Cafalgin Caplets 25x10', 'standard', NULL, '35.2000', '35.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '35.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 (14495, 1331, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14496, 1331, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (14497, 1331, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14498, 1331, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (14499, 1331, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14500, 1331, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (14501, 1331, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (14502, 1331, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (14503, 1331, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (14504, 1331, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (14505, 1331, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (14506, 1331, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14507, 1331, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (14508, 1331, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (14509, 1331, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '2.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 (14510, 1331, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.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 (14511, 1331, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14512, 1331, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '5.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 (14513, 1332, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.9000', '', '186.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14514, 1332, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (14515, 1332, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (14516, 1332, 6271, '868', 'Ciprinol 500mg Tablets 10s', 'standard', NULL, '62.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '124.0000', '', '62.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14556, 1333, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.7500', 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 (14554, 1333, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.9000', 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 (14555, 1333, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.8000', 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 (14549, 1333, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (14550, 1333, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (14551, 1333, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (14552, 1333, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (14553, 1333, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2400', '', '16.0600', 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 (14547, 1333, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (14548, 1333, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.1000', 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 (14529, 1334, 6872, '97726773', 'Dewome 500mg tablets', 'standard', NULL, '2.2000', '2.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14530, 1334, 6873, '06796716', 'Menazole 500mg (Mebenazole)10x1 Ayrtons', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.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 (14623, 1335, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '18.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 (14624, 1335, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (14622, 1335, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', 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 (14618, 1335, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (14619, 1335, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (14620, 1335, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', 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 (14621, 1335, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '2.0000', 1, '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 (14613, 1335, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (14614, 1335, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (14615, 1335, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.3000', 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 (14616, 1335, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '29.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14617, 1335, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (14610, 1335, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (14611, 1335, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (14612, 1335, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14557, 1333, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (14558, 1333, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '9.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14559, 1336, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14560, 1336, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '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 (14561, 1336, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2800', '', '3.4100', 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 (14562, 1336, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.1600', '', '3.5200', 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 (14563, 1336, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.5100', '', '6.1700', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14564, 1336, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (14565, 1336, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (14566, 1336, 6755, '1352', 'Salo Simple Linctus', 'standard', NULL, '6.5000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '6.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 (14567, 1337, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (14568, 1337, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', 'standard', NULL, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (14569, 1337, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '9.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 (14570, 1337, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (14571, 1337, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.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 (14572, 1337, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (14573, 1337, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.4000', '', '12.8500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14574, 1337, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.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 (14575, 1337, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.8000', '', '28.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 (14576, 1337, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.8000', '', '21.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 (14577, 1337, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '24.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 (14578, 1337, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.4000', '', '29.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 (14579, 1337, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (14580, 1337, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (14581, 1337, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (14582, 1337, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '20.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14583, 1337, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '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 (14584, 1337, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '17.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 (14585, 1337, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (14586, 1337, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', 0, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14587, 1337, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (14588, 1337, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '2.0000', 1, '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 (14589, 1337, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (14590, 1337, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14591, 1337, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '79.1500', '79.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1500', '', '79.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14592, 1337, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (14593, 1337, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '4.0000', 1, '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 (14594, 1337, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (14595, 1337, 6862, '03174833', 'Promethazine Syrup 60ml ECL', 'standard', NULL, '4.0200', '4.0200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', '4.0200', 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 (14596, 1337, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9400', '', '3.4200', 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 (14597, 1337, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (14598, 1337, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '27.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 (14599, 1337, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.9000', '', '3.7900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14600, 1337, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (14601, 1337, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (14602, 1338, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '16.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 (14603, 1338, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '87.4100', '87.4100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4100', '', '87.4100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14604, 1338, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '5.2000', '5.2000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '5.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 (14605, 1338, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '4.0200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14606, 1338, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.5000', '', '18.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 (14607, 1338, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '9.2000', '9.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '9.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 (14608, 1338, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.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 (14609, 1338, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '6.8500', '6.8500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '6.8500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14625, 1335, 6883, '54358257', 'Losartan Potassium 50mg Tablet OA&G', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (14633, 1324, 6901, '89069149', 'Paralex D Tablets', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (14634, 1339, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (14635, 1339, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (14636, 1339, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.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 (14637, 1339, 6386, '983', 'Paingay Capsules', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (14638, 1339, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '9.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 (14639, 1339, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (14640, 1339, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '10.4000', 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 (14641, 1339, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (14642, 1340, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '40.1400', '40.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.2800', '', '40.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14643, 1340, 6548, '1145', 'Metoclopramide 10mg Tablets 28\'s Exeter', 'standard', NULL, '9.8000', '9.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '9.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 (14644, 1341, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14645, 1341, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14646, 1341, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.5000', '', '18.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 (14647, 1341, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14648, 1341, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '4.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 (14649, 1341, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (14650, 1341, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (14651, 1341, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (14652, 1341, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (14653, 1341, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (14654, 1341, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '5.9800', '5.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9200', '', '5.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14655, 1341, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (14656, 1341, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.2000', '', '58.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14657, 1341, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.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 (14658, 1341, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (14659, 1341, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (14660, 1341, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (14661, 1341, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (14662, 1341, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (14663, 1341, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '65.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14664, 1341, 6256, '853', 'Folic Acid Tablets 5mg 28s UK', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (14665, 1341, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14666, 1341, 5551, '148', 'Cyfen Syrup', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (14667, 1341, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14668, 1341, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '5.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 (14669, 1341, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (14670, 1341, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (14671, 1341, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (14672, 1341, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14673, 1341, 6304, '901', 'Lonart Suspension', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (14674, 1341, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (14675, 1341, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (14676, 1341, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (14677, 1341, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '6.1000', 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 (14678, 1341, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (14679, 1341, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (14680, 1341, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14681, 1341, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.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 (14682, 1341, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (14683, 1341, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (14684, 1341, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14685, 1341, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '1.0000', 1, '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 (14686, 1341, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (14687, 1341, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (14688, 1341, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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 (14689, 1341, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (14690, 1341, 6453, '1050', 'Primolut N 5mg 30\'s', 'standard', NULL, '50.6000', '50.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '50.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 (14691, 1341, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14692, 1342, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '9.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 (14693, 1342, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (14694, 1342, 6871, '36549551', ' Ascovit Cee (Vit C) Tablets 100mg 300', 'standard', NULL, '41.1200', '41.1200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.1200', '', '41.1200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14695, 1343, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', '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 (14837, 1344, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.6000', 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 (14838, 1344, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.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 (14818, 1344, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4100', '', '3.4100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14819, 1344, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (14820, 1344, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9000', '', '28.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14821, 1344, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.3000', 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 (14822, 1344, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.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 (14823, 1344, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7000', '', '10.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14824, 1344, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.2000', 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 (14825, 1344, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (14826, 1344, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14827, 1344, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', 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 (14828, 1344, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (14829, 1344, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14830, 1344, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (14831, 1344, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', 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 (14832, 1344, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (14833, 1344, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14834, 1344, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.7000', 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 (14835, 1344, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5200', '', '3.5200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14836, 1344, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '5.2000', 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 (14718, 1345, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (14719, 1346, 5461, '58', 'Atacand 8mg Tablets 28\'s', 'standard', NULL, '194.0000', '194.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '194.0000', '', '194.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14720, 1347, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14721, 1347, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.1900', '', '3.9100', 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 (14722, 1348, 6271, '868', 'Ciprinol 500mg Tablets 10s', 'standard', NULL, '62.0000', '62.0000', '1.0000', 1, '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 (14723, 1349, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '840.0000', '', '42.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 (14724, 1350, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (14725, 1350, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '21.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 (14726, 1350, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', NULL, '24.0900', '24.0900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4500', '', '24.0900', 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 (14727, 1350, 6078, '675', 'Mr. Q', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14728, 1350, 6101, '698', 'Feroclear Syrup 200ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14729, 1350, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14730, 1350, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14731, 1350, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.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 (14732, 1350, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (14733, 1350, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (14734, 1350, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (14735, 1350, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.5000', '', '8.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 (14736, 1350, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '2.0000', 1, '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 (14737, 1350, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.3000', '', '18.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14738, 1350, 6438, '1035', 'Cataflam 50mg Tablets 20\'s', '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 (14739, 1350, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (14740, 1350, 5586, '183', 'Dragon Spray', 'standard', NULL, '28.9000', '28.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.8000', '', '28.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 (14741, 1350, 5629, '226', 'Funbact A', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (14742, 1350, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (14743, 1350, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (14744, 1350, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4200', '', '34.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14745, 1350, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (14746, 1350, 6647, '1244', 'Durex Feels Condoms 3\'s', 'standard', NULL, '8.7500', '8.7500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '8.7500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14747, 1350, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (14748, 1350, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (14749, 1350, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', NULL, '39.5000', '39.5000', '1.0000', 1, '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 (14750, 1350, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '65.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14751, 1350, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (14752, 1350, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (14753, 1350, 6718, '1315', 'Canderel Tablets 105\'s', 'standard', NULL, '12.9000', '12.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '12.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 (14754, 1350, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '29.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 (14755, 1350, 6865, '55663121', 'Fiesta Condom Dumsor', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (14756, 1350, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (14757, 1350, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14758, 1351, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (14764, 1352, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '6.1000', 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 (14763, 1352, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', 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 (14762, 1352, 5725, '322', 'Lisinopril 20mg Teva', 'standard', 0, '11.4000', '11.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '11.4000', 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 (14765, 1353, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '10.0000', 1, '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 (14766, 1353, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (14767, 1353, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (14768, 1354, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (14769, 1354, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (14770, 1354, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (14771, 1354, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14772, 1354, 6360, '957', 'Wormbase Suspension', 'standard', NULL, '2.8000', '2.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '2.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 (14773, 1355, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (14774, 1355, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (14775, 1355, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (14776, 1355, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (14777, 1355, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '1.0000', 1, '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 (14778, 1356, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14779, 1356, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '15.5300', '15.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.5300', '', '15.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14780, 1356, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (14781, 1356, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7000', '', '39.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 (14782, 1356, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (14842, 1358, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (14843, 1358, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (14844, 1358, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (14845, 1358, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (14846, 1359, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (14847, 1359, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (14848, 1359, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (14849, 1359, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14850, 1359, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.1600', '', '5.8600', 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 (14851, 1360, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14852, 1360, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14853, 1360, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (14854, 1360, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (14876, 1361, 6342, '939', 'Wellman 70+ Tablets 30\'s', 'standard', NULL, '77.0000', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '77.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 (14856, 1362, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (14857, 1363, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.8800', '', '10.9800', 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 (14858, 1363, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.6000', '', '9.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 (14859, 1363, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', NULL, '8.9000', '8.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '8.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14860, 1363, 5452, '49', 'Arziglobin 200ml Syrup', 'standard', NULL, '8.0000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '8.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 (14861, 1363, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14862, 1363, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (14863, 1363, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '5.5000', 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 (14864, 1363, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '26.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 (14865, 1363, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '39.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14866, 1363, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (14867, 1363, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14868, 1364, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14869, 1364, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14870, 1365, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (14871, 1365, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14872, 1366, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '25.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 (14873, 1366, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9200', '', '12.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14874, 1366, 5710, '307', 'Leena Capsules', 'standard', NULL, '4.0200', '4.0200', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.3800', '', '4.0200', NULL, 1, 'pc', '19.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14875, 1366, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '3.0000', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '3.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 (14931, 834, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (14932, 834, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (14933, 834, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '32.1000', 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 (14977, 1367, 6818, '1415', 'Foliron Capsules', 'standard', 0, '3.5000', '3.5000', '4.0000', 1, '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 (14976, 1367, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.6000', '1.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', 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 (14975, 1367, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '12.7000', '12.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7000', '', '12.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14974, 1367, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', 0, '10.4500', '10.4500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '10.4500', 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 (14973, 1367, 6513, '1110', 'Vagid CL Suppositories', 'standard', 0, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (14972, 1367, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (14971, 1367, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '3.5200', '3.5200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.0400', '', '3.5200', 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 (14970, 1367, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', 0, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (14969, 1367, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (14968, 1367, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', 0, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (14967, 1367, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', 0, '25.0000', '25.0000', '1.0000', 1, '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 (14966, 1367, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.3000', 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 (14965, 1367, 5948, '545', 'Wormplex Suspension', 'standard', 0, '9.0000', '9.0000', '2.0000', 1, '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 (14964, 1367, 5754, '351', 'Malin Baby', 'standard', 0, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.2000', 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 (14963, 1367, 5714, '311', 'Letamol Elixir 125ml', 'standard', 0, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.3000', 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 (14962, 1367, 5689, '286', 'Joy Ointment', 'standard', 0, '3.3000', '3.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '3.3000', 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 (14961, 1367, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', 0, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14953, 1368, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (14954, 1368, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.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 (14955, 1368, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (14956, 1368, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (14957, 1368, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14958, 1368, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (14959, 1368, 6220, '817', 'Dynewell Syrup 200ml', '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 (14960, 1369, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14978, 1367, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0400', '', '6.0200', 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 (14979, 1367, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.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 (14980, 1367, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', 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 (14981, 1367, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (14982, 1367, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14983, 1367, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '5.7000', 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 (15235, 1370, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (15234, 1370, 6777, '1374', 'Omecet (Omeprazole) Caps 20mg 100\\\' ECL', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.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 (15225, 1370, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.4000', 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 (15226, 1370, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15227, 1370, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (15228, 1370, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (15229, 1370, 6063, '660', 'Speman Tablets', 'standard', NULL, '41.3000', '41.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.3000', '', '41.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15230, 1370, 6256, '853', 'Folic Acid Tablets 5mg 28s UK', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.9000', 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 (15231, 1370, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', 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 (15232, 1370, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', NULL, '1.4900', '1.4900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '1.4900', '', '1.4900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15233, 1370, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7800', '', '22.7800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14996, 1371, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (14997, 1371, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14998, 1371, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14999, 1371, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '4.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 (15000, 1371, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15001, 1372, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '8.3000', '8.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '8.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 (15002, 1373, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (15003, 1373, 5513, '110', 'Celebrex Celecoxib 200mg (pfizer)', 'standard', NULL, '94.0200', '94.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0200', '', '94.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15004, 1373, 6580, '1177', 'Lipitor 20mg 30\'s', 'standard', NULL, '328.9000', '328.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '328.9000', '', '328.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 (15005, 1373, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '65.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15006, 1373, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (15007, 1373, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4000', '', '5.7000', 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 (15008, 1373, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '10.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15009, 1373, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.4000', '', '29.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 (15010, 1373, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '2.0000', 1, '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 (15011, 1373, 6338, '935', 'Osteocare Tablets UK', 'standard', NULL, '53.5000', '53.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '53.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15012, 1373, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (15013, 1373, 6153, '750', 'Paracetamol 500mg Tablet M&G 100x10', 'standard', NULL, '77.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '77.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15014, 1374, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', 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 (15015, 1375, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '14.0000', '14.0000', '3.0000', 1, '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 (15016, 1375, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15017, 1375, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (15018, 1375, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (15019, 1375, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.0000', '', '60.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15046, 1376, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (15045, 1376, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.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 (15044, 1376, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (15043, 1376, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (15042, 1376, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.3000', 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 (15041, 1376, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', 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 (15040, 1376, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (15039, 1376, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6300', '', '12.2100', 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 (15038, 1376, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.7000', 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 (15037, 1376, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', 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 (15036, 1376, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (15035, 1376, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15034, 1376, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8500', '', '5.9500', 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 (15047, 1376, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (15048, 1377, 6338, '935', 'Osteocare Tablets UK', 'standard', NULL, '53.5000', '53.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '53.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 (15049, 1377, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '10.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 (15050, 1377, 6441, '1038', 'Exforge HCT 10/160/12. 5mg 28\'s', 'standard', NULL, '230.8000', '230.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '230.8000', '', '230.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 (15051, 1378, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (15052, 1379, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (15053, 1379, 5459, '56', 'Asthalex Syrup 100ml', 'standard', NULL, '8.0000', '8.0000', '3.0000', 1, '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 (15054, 1379, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (15055, 1379, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (15056, 1379, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (15057, 1379, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15058, 1379, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (15059, 1379, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '11.7000', '11.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '11.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 (15060, 1379, 6353, '950', 'Ronfit Forte Tablets', 'standard', NULL, '3.7500', '3.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '3.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15061, 1379, 6755, '1352', 'Salo Simple Linctus', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (15062, 1379, 6511, '1108', 'Lofnac P Tablets 50/500', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (15063, 1379, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (15064, 1379, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '6.0000', 1, '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 (15065, 1379, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (15066, 1379, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.9000', '', '2.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 (15067, 1379, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.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 (15068, 1379, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (15069, 1379, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (15070, 1379, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.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 (15071, 1380, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '1.0000', 1, '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 (15072, 1380, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (15073, 1380, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (15074, 1380, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (15075, 1380, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (15128, 1381, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '29.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15129, 1381, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.9000', 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 (15130, 1381, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '12.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15131, 1381, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (15132, 1381, 5989, '586', 'APC 50X4 TABS', 'standard', NULL, '29.6000', '29.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '29.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 (15133, 1381, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15134, 1381, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15135, 1381, 6142, '739', 'Gauze Bandage 3 Inches Xtra Care', 'standard', NULL, '9.3000', '9.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '9.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15136, 1381, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.2000', '', '11.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15137, 1381, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15138, 1381, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', 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 (15139, 1381, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (15140, 1381, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (15141, 1381, 6356, '953', 'Cotton Wool 100g', 'standard', NULL, '7.2000', '7.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '7.2000', 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 (15142, 1381, 6434, '1031', 'Cotton wool 50g', 'standard', NULL, '5.2000', '5.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '5.2000', 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 (15143, 1381, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '13.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 (15144, 1381, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (15145, 1381, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.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 (15146, 1381, 6665, '1262', 'Plaster Strips Easy Care', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (15147, 1381, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.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 (15148, 1381, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '18.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 (15149, 1381, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (15119, 1381, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15120, 1381, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (15121, 1381, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (15122, 1381, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (15123, 1381, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15124, 1381, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7000', '', '39.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15125, 1381, 5826, '423', 'Plaster roll Extra care 2Inches', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '7.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 (15126, 1381, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (15127, 1381, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (15109, 1382, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (15110, 1382, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (15111, 1382, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (15112, 1382, 6165, '762', 'Mucosyl Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15113, 1382, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '3.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15114, 1382, 6901, '89069149', 'Paralex D Tablets', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (15115, 1382, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15116, 1382, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (15117, 1383, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15118, 1384, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.9000', '', '14.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 (15150, 1381, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '6.5000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.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 (15188, 1385, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '200.0000', '', '50.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 (15187, 1385, 5897, '494', 'Syringe and Needle 5ml Letaject', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (15186, 1385, 5796, '393', 'Normal Saline Infusion 500ml', 'standard', NULL, '4.4800', '4.4800', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.1200', '', '4.4800', NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15154, 1386, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15184, 1387, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15183, 1387, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.3000', 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 (15182, 1387, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (15181, 1387, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '80.0000', '80.0000', '1.0000', 1, '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 (15180, 1387, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15179, 1387, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (15178, 1387, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15177, 1387, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15176, 1387, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', 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 (15175, 1387, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (15174, 1387, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (15167, 1388, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', 0, '39.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '39.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 (15168, 1388, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', 0, '7.9000', '7.9000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.8000', '', '7.9000', 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 (15169, 1388, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '272.6000', '', '27.2600', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15170, 1388, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (15171, 1388, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '50.5000', '50.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '151.5000', '', '50.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 (15172, 1388, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '10.0000', 1, '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 (15173, 1388, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.5000', '18.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '444.0000', '', '18.5000', 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 (15185, 1387, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15297, 1389, 6812, '1409', 'Sudocrem 60g', 'standard', 0, '34.8000', '34.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.8000', '', '34.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15296, 1389, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', 0, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15295, 1389, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', 0, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.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 (15294, 1389, 6667, '1264', 'Gyprone Plus Tablets', 'standard', 0, '3.0000', '3.0000', '1.0000', 1, '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 (15293, 1389, 6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 'standard', 0, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15292, 1389, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', 0, '3.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.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 (15291, 1389, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', 0, '9.7200', '9.7200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.8800', '', '9.7200', 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 (15290, 1389, 6456, '1053', 'Gastrone Tablets 100\'s', 'standard', 0, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (15289, 1389, 6449, '1046', 'Diagellates Elixir 250ml', 'standard', 0, '25.5000', '25.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '25.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 (15288, 1389, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', 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 (15287, 1389, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', 0, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.4000', 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 (15286, 1389, 6273, '870', 'Vikil 20', 'standard', 0, '27.5000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '27.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 (15285, 1389, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', 0, '17.0000', '17.0000', '1.0000', 1, '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 (15284, 1389, 6164, '761', 'Heptolif Syrup 200ml', 'standard', 0, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', 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 (15283, 1389, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', 0, '3.8000', '3.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.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 (15282, 1389, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15281, 1389, 6046, '643', 'Candid Cream- Clotrimazole 1% 20mg', 'standard', 0, '7.5000', '7.5000', '1.0000', 1, '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 (15280, 1389, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15279, 1389, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', 0, '25.9000', '25.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.8000', '', '25.9000', 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 (15278, 1389, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (15277, 1389, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', 0, '38.0000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15276, 1389, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (15275, 1389, 5730, '327', 'Lofnac Gel 30mg', 'standard', 0, '6.0000', '6.0000', '3.0000', 1, '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 (15274, 1389, 5634, '231', 'Garlic Pearls Osons', 'standard', 0, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', 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 (15273, 1389, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15272, 1389, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', 0, '39.0000', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '39.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 (15271, 1389, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', 0, '18.9000', '18.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '113.4000', '', '18.9000', 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 (15219, 1390, 6043, '640', '5D Dextrose 5% Infusion 500ml', 'standard', 0, '5.4000', '5.4000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.8000', '', '5.4000', 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 (15224, 1391, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.4000', '', '1.8000', NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15223, 1391, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', 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 (15460, 1392, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '9.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 (15459, 1392, 6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 'standard', NULL, '99.3000', '99.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.6000', '', '99.3000', 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 (15458, 1392, 6548, '1145', 'Metoclopramide 10mg Tablets 28\'s Exeter', 'standard', NULL, '9.8000', '9.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '9.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 (15457, 1392, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.7000', 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 (15456, 1392, 6490, '1087', 'Kefrox 500mg Tablets 10s Luex', 'standard', NULL, '30.0000', '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '300.0000', '', '30.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 (15455, 1392, 6453, '1050', 'Primolut N 5mg 30\'s', 'standard', NULL, '50.6000', '50.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '50.6000', 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 (15454, 1392, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '17.5000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.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 (15453, 1392, 6400, '997', 'Metagyl 400mg Tablets', 'standard', NULL, '46.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '46.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 (15452, 1392, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '30.0000', '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '300.0000', '', '30.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 (15451, 1392, 6354, '951', 'Parafenac', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (15450, 1392, 6334, '931', 'Adom W&G Mixture', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15449, 1392, 6301, '898', 'Comit-50', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (15448, 1392, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (15447, 1392, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (15446, 1392, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '151.5000', '', '50.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 (15445, 1392, 6153, '750', 'Paracetamol 500mg Tablet M&G 100x10', 'standard', NULL, '77.0000', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '77.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 (15444, 1392, 6145, '742', 'Blopen Gel 30g', 'standard', NULL, '4.5000', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '4.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 (15443, 1392, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '29.2000', 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 (15442, 1392, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '5.6000', 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 (15441, 1392, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.2000', 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 (15440, 1392, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (15439, 1392, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (15438, 1392, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (15437, 1392, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.9000', 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 (15436, 1392, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (15435, 1392, 5770, '367', 'Mist Pot Cit (Potassium Citrate) ROKMER', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15434, 1392, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '15.4000', 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 (15433, 1392, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '26.9000', '26.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '26.9000', 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 (15432, 1392, 5585, '182', 'Dragon Tablets', 'standard', NULL, '23.4000', '23.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '23.4000', 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 (15431, 1392, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '9.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 (15430, 1392, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (15298, 1389, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', 0, '18.5000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '18.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 (15299, 1389, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', 0, '10.2000', '10.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '10.2000', 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 (15300, 1393, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8000', '', '7.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 (15301, 1394, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.6000', '', '5.8600', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15302, 1394, 6057, '654', 'Liv 52 Tablets', 'standard', NULL, '41.5000', '41.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5000', '', '41.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15303, 1394, 6031, '628', 'Blocold Tablet', 'standard', NULL, '26.7000', '26.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '26.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 (15304, 1394, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15305, 1394, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', 0, '1.3000', '1.3000', '10.0000', 1, '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 (15306, 1394, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '81.5000', '81.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.5000', '', '81.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15307, 1394, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (15308, 1394, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (15309, 1395, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15310, 1395, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '10.0000', 1, '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 (15311, 1395, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8800', '', '5.8600', 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 (15312, 1395, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '12.7000', '12.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '12.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 (15313, 1395, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (15314, 1395, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (15315, 1395, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (15316, 1395, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '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 (15317, 1395, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (15318, 1396, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '19.7300', '19.7300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.7300', '', '19.7300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15319, 1396, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (15320, 1396, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (15520, 1397, 6514, '1111', 'Salicylics Ointment 40g', 'standard', 0, '9.3100', '9.3100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5500', '', '9.3100', 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 (15519, 1397, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', 0, '46.5000', '46.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '279.0000', '', '46.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 (15518, 1397, 6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', 'standard', 0, '4.3000', '4.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '4.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 (15517, 1397, 6421, '1018', 'Martins liver salt Plain', 'standard', 0, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15516, 1397, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', 0, '6.3800', '6.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', '6.3800', 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 (15515, 1397, 6386, '983', 'Paingay Capsules', 'standard', 0, '4.2000', '4.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '4.2000', 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 (15514, 1397, 6379, '976', 'Dexone 0.5mg', 'standard', 0, '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '2.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 (15513, 1397, 6353, '950', 'Ronfit Forte Tablets', 'standard', 0, '3.7500', '3.7500', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.7500', 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 (15512, 1397, 6344, '941', 'Perfectil platinum 60\'s', 'standard', 0, '292.4000', '292.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '584.8000', '', '292.4000', 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 (15511, 1397, 6338, '935', 'Osteocare Tablets UK', 'standard', 0, '53.5000', '53.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.5000', '', '53.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 (15510, 1397, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '56.2000', '56.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '281.0000', '', '56.2000', 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 (15509, 1397, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '74.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '222.0000', '', '74.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 (15508, 1397, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.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 (15507, 1397, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '66.5300', '66.5300', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '399.1800', '', '66.5300', 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 (15506, 1397, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '9.9000', '9.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '9.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 (15505, 1397, 6221, '818', 'Dynewell Tablet 50x10', 'standard', 0, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15504, 1397, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '10.0000', 1, '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 (15503, 1397, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', 0, '9.3000', '9.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8000', '', '9.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 (15502, 1397, 6207, '804', 'Zinol 500mg Tablets (Paracetamol) 50X10', 'standard', 0, '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '38.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 (15501, 1397, 6188, '785', 'Polygel Suspension 200ml', 'standard', 0, '9.8000', '9.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '9.8000', 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 (15500, 1397, 6180, '777', 'Ketazol Shampoo 100ml', 'standard', 0, '17.1500', '17.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.7500', '', '17.1500', 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 (15499, 1397, 6115, '712', 'Gudapet Syrup 200ml', 'standard', 0, '7.1000', '7.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.6000', '', '7.1000', 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 (15498, 1397, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '9.2000', '9.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.0000', '', '9.2000', 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 (15497, 1397, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15496, 1397, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15495, 1397, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (15494, 1397, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (15493, 1397, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', 0, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15492, 1397, 5975, '572', 'Durol Tonic 200ml', 'standard', 0, '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', '12.2100', 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 (15491, 1397, 5958, '555', 'Zincovit Syrup 200ml', 'standard', 0, '21.7000', '21.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.2000', '', '21.7000', 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 (15490, 1397, 5956, '553', 'Zincofer Syrup 200ml', 'standard', 0, '24.0000', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '144.0000', '', '24.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 (15489, 1397, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '327.0000', '', '10.9000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15488, 1397, 5911, '508', 'Tinatett Venecare 750ml', 'standard', 0, '26.0000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '26.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 (15487, 1397, 5848, '445', 'Relcer Gel', 'standard', 0, '8.2800', '8.2800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8400', '', '8.2800', 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 (15486, 1397, 5830, '427', 'Pregnacare Plus', 'standard', 0, '143.3000', '143.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '286.6000', '', '143.3000', 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 (15485, 1397, 5814, '411', 'Panadol Advance 500mg 16\'s', 'standard', 0, '24.0900', '24.0900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.2700', '', '24.0900', 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 (15484, 1397, 5795, '392', 'Nizoral Cream 15gm', 'standard', 0, '35.0000', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '35.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 (15483, 1397, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.2000', '', '22.1000', 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 (15482, 1397, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '310.0000', '', '15.5000', 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 (15481, 1397, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', 0, '16.7000', '16.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.2000', '', '16.7000', 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 (15480, 1397, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', 0, '9.9000', '9.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '9.9000', 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 (15479, 1397, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.0000', '', '12.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 (15478, 1397, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', 0, '60.5000', '60.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '302.5000', '', '60.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 (15477, 1397, 5589, '186', 'Drez Powder 10g', 'standard', 0, '9.4000', '9.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.4000', '', '9.4000', 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 (15476, 1397, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', 0, '8.7000', '8.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.2000', '', '8.7000', 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 (15475, 1397, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.3000', '', '3.9100', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15474, 1397, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '3.4100', '3.4100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4600', '', '3.4100', 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 (15473, 1397, 5427, '24', 'Agbeve Tonic', 'standard', 0, '13.2000', '13.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.2000', '', '13.2000', 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 (15375, 1398, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '15.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 (15376, 1398, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '167.0000', '', '16.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 (15377, 1398, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '26.0000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '26.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 (15378, 1398, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '16.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 (15379, 1398, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '321.0000', '', '32.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 (15380, 1398, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (15381, 1399, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15382, 1399, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '33.7000', '33.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.1000', '', '33.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 (15383, 1399, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '15.0700', '15.0700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.2800', '', '15.0700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15384, 1399, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', 0, '2.7000', '2.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '2.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 (15385, 1400, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', 0, '12.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15386, 1401, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '1.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 (15387, 1401, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.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 (15388, 1401, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15389, 1401, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '6.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 (15390, 1401, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.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 (15391, 1402, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15392, 1402, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (15393, 1402, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (15394, 1402, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (15395, 1403, 5915, '512', 'Tranexamic Acid 500mg Tablets 60\'s', 'standard', NULL, '130.0000', '130.0000', '1.0000', 1, '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 (15396, 1403, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '11.7000', '11.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '11.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 (15397, 1403, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (15398, 1403, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (15399, 1403, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '12.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15400, 1403, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.2100', '12.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '12.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15401, 1403, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (15402, 1403, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '8.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15403, 1403, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (15404, 1403, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15405, 1403, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15406, 1403, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9100', '', '3.9100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15407, 1403, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8800', '', '5.8600', 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 (15408, 1403, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (15409, 1403, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (15410, 1403, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (15411, 1403, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (15412, 1403, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15413, 1403, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15414, 1403, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (15415, 1403, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '1.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 (15416, 1403, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15417, 1403, 5992, '589', 'Dithranol ointment 40mg', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (15418, 1403, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (15419, 1404, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15420, 1404, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15421, 1405, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.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 (15422, 1405, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (15423, 1405, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.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 (15424, 1405, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (15425, 1406, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (15426, 1406, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (15427, 1406, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (15428, 1406, 5990, '587', 'Whitfield ointment', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15623, 1407, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '18.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 (15461, 1392, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '12.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 (15462, 1392, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '18.5000', '18.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '444.0000', '', '18.5000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15463, 1392, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (15567, 1408, 6884, '97328996', 'O-Fulvin  (Griseofulvin 500mg)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (15565, 1408, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (15566, 1408, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', 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 (15562, 1408, 5774, '371', 'Mucolex Junior Cough150ml Syrup', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (15563, 1408, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.2000', 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 (15564, 1408, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (15560, 1408, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (15561, 1408, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', 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 (15472, 1409, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15521, 1397, 6535, '1132', 'Clotrimazole Cream 0.01 20g', 'standard', 0, '3.8000', '3.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.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 (15522, 1397, 6538, '1135', 'Drez Solution 30ml', 'standard', 0, '10.3000', '10.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.8000', '', '10.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 (15523, 1397, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', 0, '11.5000', '11.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '11.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 (15524, 1397, 6667, '1264', 'Gyprone Plus Tablets', 'standard', 0, '3.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.0000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15525, 1397, 6708, '1305', 'Loratadine 10mg Tablets 30\'s', 'standard', 0, '6.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.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 (15526, 1397, 6812, '1409', 'Sudocrem 60g', 'standard', 0, '34.8000', '34.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.4000', '', '34.8000', 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 (15527, 1410, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (15528, 1410, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.8000', '6.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2000', '', '6.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 (15529, 1410, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8400', '', '3.4200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15530, 1410, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (15531, 1410, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (15532, 1410, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6200', '', '9.6200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15533, 1410, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15534, 1410, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '2.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 (15535, 1410, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (15536, 1410, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.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 (15537, 1410, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (15538, 1410, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '2.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 (15691, 1411, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (15690, 1411, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (15685, 1411, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.9400', '', '10.9800', 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 (15686, 1411, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (15687, 1411, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.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 (15688, 1411, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (15689, 1411, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.3000', '14.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '14.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15672, 1411, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '5.9800', '5.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9600', '', '5.9800', 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 (15673, 1411, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (15674, 1411, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (15675, 1411, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (15676, 1411, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (15677, 1411, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (15678, 1411, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15679, 1411, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (15680, 1411, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.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 (15681, 1411, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (15682, 1411, 6010, '607', 'Rooter Tytonic', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15683, 1411, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.3000', 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 (15684, 1411, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '30.6900', '30.6900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6900', '', '30.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 (15568, 1408, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (15569, 1408, 6301, '898', 'Comit-50', 'standard', NULL, '12.5000', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '12.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 (15570, 1408, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.6000', '', '40.3000', 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 (15571, 1408, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '15.0700', '15.0700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1400', '', '15.0700', 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 (15572, 1408, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (15573, 1412, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (15574, 1412, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15575, 1412, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15576, 1412, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (15577, 1412, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15578, 1412, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (15579, 1412, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (15580, 1412, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (15581, 1412, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.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 (15582, 1412, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (15583, 1412, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (15584, 1412, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (15585, 1412, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '12.9800', '12.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9800', '', '12.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15586, 1412, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '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 (15587, 1412, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15588, 1413, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '167.2800', '', '83.6400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15589, 1414, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (15590, 1414, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (15591, 1414, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (15592, 1414, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (15593, 1414, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '9.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 (15594, 1414, 6416, '1013', 'Stopkof Dry Cough Syrup 100ml', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (15595, 1414, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (15596, 1414, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (15597, 1414, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (15598, 1414, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (15599, 1414, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (15600, 1414, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15601, 1414, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.4000', '', '9.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15602, 1414, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (15603, 1414, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (15604, 1414, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5600', '', '8.1400', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15605, 1414, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '15.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 (15606, 1414, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.3000', '', '15.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15607, 1414, 5865, '462', 'Secure Contraceptive Pill', 'standard', NULL, '3.5000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '3.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 (15608, 1414, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.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 (15609, 1414, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.4000', '', '24.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 (15610, 1414, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (15617, 1415, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '9.2000', '9.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '9.2000', 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 (15618, 1415, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (15615, 1415, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5200', '', '12.8400', 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 (15616, 1415, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.4000', '', '47.2000', 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 (15619, 1416, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (15620, 1417, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.9000', '3.9000', '20.0000', 1, '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 (15621, 1417, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '6.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 (15622, 1417, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.2800', '', '15.0700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15624, 1407, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15625, 1418, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (15626, 1418, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '6.7000', '6.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '6.7000', 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 (15627, 1418, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '6.0200', '6.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1000', '', '6.0200', 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 (15628, 1418, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '9.2000', 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 (15629, 1418, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.2000', '', '22.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 (15630, 1418, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (15631, 1418, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (15632, 1418, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (15633, 1418, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (15634, 1418, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '26.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 (15635, 1418, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15636, 1418, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (15637, 1418, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '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 (15638, 1418, 6169, '766', 'Vitamin B-Complex S yrup 125ml M & G', 'standard', NULL, '4.3000', '4.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '4.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 (15639, 1418, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '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 (15640, 1418, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.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 (15641, 1418, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.5000', '', '7.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 (15642, 1418, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '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 (15643, 1418, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.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 (15644, 1418, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '4.9500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15645, 1418, 6171, '768', 'Zerocid Suspension 200ML', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (15646, 1418, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '0.8000', 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 (15647, 1418, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (15648, 1418, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.0000', '', '8.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 (15649, 1418, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (15650, 1418, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (15651, 1418, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (15652, 1418, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.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 (15653, 1418, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '28.6000', '28.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.2000', '', '28.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 (15654, 1418, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', NULL, '14.5000', '14.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '14.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 (15655, 1418, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '6.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 (15656, 1418, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (15657, 1418, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '18.4000', '18.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.6000', '', '18.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 (15658, 1418, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (15659, 1418, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15660, 1418, 6332, '929', 'Adom Koo Capsules', '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 (15661, 1418, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', 'standard', NULL, '5.9000', '5.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '5.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 (15662, 1418, 5499, '96', 'Calcium B12 Syrup 200ml', 'standard', NULL, '3.8000', '3.8000', '4.0000', 1, '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 (15663, 1419, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (15664, 1419, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (15665, 1419, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.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 (15666, 1419, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', NULL, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.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 (15667, 1419, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '10.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 (15668, 1419, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (15669, 1419, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (15704, 1420, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (15705, 1420, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', NULL, '5.2000', '5.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '5.2000', 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 (15692, 1411, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.8000', 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 (15693, 1411, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', 0, '34.3000', '34.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.3000', '', '34.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15694, 1411, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (15695, 1421, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15696, 1421, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (15697, 1421, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (15698, 1421, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (15699, 1421, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (15700, 1421, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (15701, 1421, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (15702, 1421, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', 'standard', NULL, '6.3500', '6.3500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.4000', '', '6.3500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15703, 1422, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15706, 1423, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '510.0000', '', '85.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 (15707, 1424, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15708, 1425, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (15709, 1425, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15710, 1425, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15711, 1425, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '1.0000', 1, '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 (15712, 1425, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (15713, 1425, 5541, '138', 'Combact N', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (15714, 1425, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (15715, 1425, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (15716, 1425, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.6000', '', '8.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 (15717, 1425, 6220, '817', 'Dynewell Syrup 200ml', '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 (15718, 1425, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (15719, 1425, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (15720, 1425, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (15721, 1425, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.6000', '1.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '1.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 (15722, 1425, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (15723, 1425, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15724, 1425, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 1, '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 (15725, 1425, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (15726, 1426, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (15727, 1426, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (15728, 1426, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (15729, 1426, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15730, 1426, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '8.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 (15731, 1426, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15732, 1426, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15733, 1426, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (15734, 1426, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (15735, 1426, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '9.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 (15736, 1426, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7200', '', '5.8600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15737, 1426, 6656, '1253', 'Martins liver salt (Orange)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15738, 1426, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (15739, 1426, 6220, '817', 'Dynewell Syrup 200ml', '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 (15740, 1426, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '4.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 (15741, 1426, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.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 (15742, 1426, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (15743, 1427, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (15744, 1427, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (15745, 1428, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (15746, 1429, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.4200', '3.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4200', '', '3.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15747, 1430, 6736, '1333', 'Sudafed Head & Congestion Max Strength', 'standard', NULL, '46.0000', '46.0000', '1.0000', 1, '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 (15748, 1431, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (15749, 1431, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15750, 1432, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15751, 1433, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15752, 1434, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '13.9800', '13.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9400', '', '13.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15753, 1434, 6304, '901', 'Lonart Suspension', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '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 (15754, 1434, 6011, '608', 'Scimether Suspension', 'standard', NULL, '14.5000', '14.5000', '2.0000', 1, '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 (15755, 1434, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (15756, 1434, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.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 (15757, 1434, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (15758, 1434, 6575, '1172', '3TOL 500ML Anticeptic & Disinfectant', 'standard', 0, '12.0000', '12.0000', '2.0000', 1, '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 (15759, 1434, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (15760, 1434, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (15761, 1435, 6909, '16662605', 'Osteocare Tablets (India) 30s', 'standard', NULL, '13.4000', '13.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '13.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15762, 1435, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15763, 1435, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '5.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 (15764, 1436, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15765, 1437, 6833, '1430', 'Eskafan Tabs 20/120 (1X24)', 'standard', NULL, '8.5100', '8.5100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5300', '', '8.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 (15766, 1437, 6822, '1419', 'Malufen 560 Tablets (Artemether Lumefantrine Tablets)', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '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 (15767, 1437, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (15768, 1437, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (15769, 1438, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (15828, 1439, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '4.7000', '4.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '4.7000', 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 (15812, 1439, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (15813, 1439, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '2.1000', 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 (15814, 1439, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (15815, 1439, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (15816, 1439, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15817, 1439, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', 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 (15818, 1439, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (15819, 1439, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (15820, 1439, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.7000', 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 (15821, 1439, 6096, '693', 'Mist Sennaco ROKMER', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (15822, 1439, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (15823, 1439, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.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 (15824, 1439, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '1.0000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15825, 1439, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', 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 (15826, 1439, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '16.8800', '16.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.7600', '', '16.8800', 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 (15827, 1439, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '20.9200', '20.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8400', '', '20.9200', 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 (15789, 1440, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (15790, 1440, 6524, '1121', 'Perfectil Plus Caps', 'standard', NULL, '234.0000', '234.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '234.0000', '', '234.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15810, 1441, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (15811, 1439, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '5.5000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15829, 1439, 6005, '602', 'Sulphur Ointment 40g', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (15830, 1442, 5790, '387', 'Nexium 40mg Tablets 14\'s', 'standard', NULL, '178.0000', '178.0000', '1.0000', 1, '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 (15831, 1443, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (15832, 1443, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '3.4100', '3.4100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2300', '', '3.4100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15833, 1443, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15834, 1443, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (15835, 1443, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8500', '', '12.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15836, 1443, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15837, 1443, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', '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 (15838, 1443, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15839, 1443, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '8.2900', '8.2900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2900', '', '8.2900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15840, 1443, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (15841, 1443, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15842, 1443, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (15843, 1443, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1600', '', '3.0800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15844, 1443, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (15845, 1444, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15846, 1444, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.3000', '', '7.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 (15847, 1444, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (15848, 1445, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15849, 1445, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (15850, 1445, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '16.8800', '16.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.4000', '', '16.8800', 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 (15851, 1445, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15852, 1445, 6052, '649', 'Candiderm Cream-Triple Action Cream 15mg', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (15853, 1445, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (15854, 1445, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (15855, 1445, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '10.7800', '10.7800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.6800', '', '10.7800', 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 (15856, 1445, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1200', '', '3.5200', 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 (15857, 1445, 6774, '1371', 'Bendrofluazide Tab 2.5mg 500\\\' ECL', 'standard', NULL, '40.1100', '40.1100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.1100', '', '40.1100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15858, 1445, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (15859, 1445, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '46.5000', '46.5000', '2.0000', 1, '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 (15860, 1445, 6460, '1057', 'Calamine Lotion 100ml Mal-Titi', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (15861, 1445, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (15862, 1445, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (15863, 1446, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '4.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15864, 1446, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15865, 1447, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '56.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 (15866, 1447, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15867, 1447, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', NULL, '4.6200', '4.6200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '4.6200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15868, 1447, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.6000', '', '14.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 (15869, 1447, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (15870, 1447, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (15871, 1447, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '0.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 (15872, 1447, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '2.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 (15873, 1447, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', NULL, '83.6000', '83.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '83.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 (15874, 1447, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.5000', '', '9.7000', 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 (15875, 1447, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (15876, 1447, 6107, '704', 'Lexofen Plus Tablets 2x10', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (15877, 1447, 6901, '89069149', 'Paralex D Tablets', 'standard', NULL, '4.5000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '4.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 (15878, 1447, 5673, '270', 'Ibex Capsules 24\'s', 'standard', NULL, '17.7000', '17.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7000', '', '17.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 (15879, 1447, 5656, '253', 'Gyprone Plus 200ml Syrup', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (15880, 1447, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.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 (15881, 1447, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (15882, 1447, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (15883, 1447, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.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 (15884, 1448, 6414, '1011', 'Infa V Wash 50ml', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.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 (15885, 1448, 6140, '737', 'Fabrin Tablets 50X4', 'standard', NULL, '30.8000', '30.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '30.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 (15886, 1448, 6031, '628', 'Blocold Tablet', 'standard', NULL, '26.7000', '26.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '26.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 (15887, 1448, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '1.0000', 1, '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 (15888, 1448, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (15889, 1448, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (15890, 1449, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.2000', '', '58.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15891, 1449, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '3.4100', '3.4100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0500', '', '3.4100', 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 (15892, 1449, 5545, '142', 'Cororange Drops', 'standard', 0, '8.5000', '8.5000', '2.0000', 1, '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 (15893, 1449, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '226.2100', '226.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '226.2100', '', '226.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15894, 1449, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (15895, 1449, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '17.2000', '17.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '17.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 (15896, 1449, 5749, '346', 'Major Nasal Drops', 'standard', 0, '8.1400', '8.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4200', '', '8.1400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15897, 1449, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15898, 1449, 5797, '394', 'Normo Tears Eye Drop', 'standard', 0, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (15899, 1449, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15900, 1449, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (15901, 1449, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (15902, 1449, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (15903, 1449, 6010, '607', 'Rooter Tytonic', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '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 (15904, 1449, 6034, '631', 'Deep Heat Spray 150ml', 'standard', 0, '48.0000', '48.0000', '1.0000', 1, '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 (15905, 1449, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (15906, 1449, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (15907, 1449, 6078, '675', 'Mr. Q', 'standard', 0, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15908, 1449, 6220, '817', 'Dynewell Syrup 200ml', 'standard', 0, '5.0000', '5.0000', '3.0000', 1, '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 (15909, 1449, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '9.9000', '9.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '9.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 (15910, 1449, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.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 (15911, 1449, 6265, '862', 'Folic Acid Tablets 50X10 ECL', 'standard', 0, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (15912, 1449, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', 0, '6.0200', '6.0200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1000', '', '6.0200', 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 (15913, 1449, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '10.9800', '10.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9000', '', '10.9800', 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 (15914, 1449, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '14.6000', '14.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '14.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 (15915, 1449, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', 0, '39.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '39.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 (15916, 1449, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', 0, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (15917, 1449, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', 0, '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '74.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15918, 1449, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.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 (15919, 1449, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', 0, '30.0000', '30.0000', '2.0000', 1, '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 (15920, 1449, 6396, '993', 'Menthodex 100ml Syrup', 'standard', 0, '17.2000', '17.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '17.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 (15921, 1449, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (15922, 1449, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', 0, '6.0300', '6.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.1500', '', '6.0300', 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 (15923, 1449, 6411, '1008', 'Infa V Wash 100ml', 'standard', 0, '17.6000', '17.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '17.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 (15924, 1449, 6414, '1011', 'Infa V Wash 50ml', 'standard', 0, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.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 (15925, 1449, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', 'standard', 0, '4.6200', '4.6200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8600', '', '4.6200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15926, 1449, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', 0, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (15927, 1449, 6608, '1205', 'Skyclav 457mg', 'standard', 0, '16.8800', '16.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.4000', '', '16.8800', 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 (15928, 1449, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '15.0700', '15.0700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.3500', '', '15.0700', 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 (15929, 1449, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', 0, '11.0000', '11.0000', '3.0000', 1, '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 (15930, 1449, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.6000', '1.6000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '1.6000', 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 (15931, 1450, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', 0, '8.7000', '8.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '8.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 (15932, 1450, 5624, '221', 'Foligrow Syrup 200ml', 'standard', 0, '20.1000', '20.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '20.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15933, 1450, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', 0, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (15934, 1450, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15935, 1450, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15936, 1450, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', 0, '12.0000', '12.0000', '2.0000', 1, '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 (15937, 1450, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.5000', '', '8.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 (15938, 1450, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', 0, '27.8000', '27.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.6000', '', '27.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 (15939, 1450, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15940, 1450, 6303, '900', 'Lofnac 100mg Tablets', 'standard', 0, '2.2000', '2.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '2.2000', 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 (15941, 1450, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', 0, '30.0000', '30.0000', '1.0000', 1, '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 (15942, 1450, 6421, '1018', 'Martins liver salt Plain', 'standard', 0, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15943, 1450, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', 0, '12.0000', '12.0000', '2.0000', 1, '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 (15944, 1451, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15945, 1452, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (15946, 1452, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (15947, 1453, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (15948, 1454, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (15949, 1455, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7800', '', '22.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15950, 1455, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15951, 1455, 6304, '901', 'Lonart Suspension', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '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 (15952, 1455, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15953, 1455, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7600', '', '6.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15954, 1455, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '3.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15955, 1455, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '10.0000', 1, '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 (15956, 1455, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (15957, 1455, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '28.6000', '28.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '28.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 (15958, 1456, 6331, '928', 'Piroxilex 20mg Capsules 10X10 (Piroxicam)', 'standard', NULL, '1.4900', '1.4900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', '1.4900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15959, 1456, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (15960, 1457, 5418, '15', 'Aboniki', 'standard', 0, '5.5000', '5.5000', '10.0000', 1, '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 (15961, 1457, 5419, '16', 'Acidom 20mg Capsules', 'standard', 0, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (15962, 1457, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', 0, '12.4000', '12.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '12.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15963, 1457, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', 0, '158.6000', '158.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.6000', '', '158.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 (15964, 1457, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', 0, '60.5000', '60.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '181.5000', '', '60.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 (15965, 1457, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', 0, '16.7000', '16.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.5000', '', '16.7000', 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 (15966, 1457, 5956, '553', 'Zincofer Syrup 200ml', 'standard', 0, '24.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '24.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 (15967, 1457, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', 0, '6.8000', '6.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '6.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 (15968, 1457, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '50.5000', '50.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '151.5000', '', '50.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 (15969, 1457, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', 0, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (15970, 1457, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '56.2000', '56.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '281.0000', '', '56.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 (15971, 1457, 6467, '1064', 'Benylin Infant 125ml', 'standard', 0, '50.6000', '50.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '202.4000', '', '50.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 (15972, 1457, 6526, '1123', 'Pregnacare Max', 'standard', 0, '175.5000', '175.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.5000', '', '175.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15973, 1457, 6725, '1322', 'Bonjela Adult Gel 15g', 'standard', 0, '71.1000', '71.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.1000', '', '71.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15974, 1457, 6785, '1382', 'Femfresh Wash 150ml', 'standard', 0, '14.8000', '14.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '14.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 (15975, 1457, 6786, '1383', 'Femfresh Wash 250ml', 'standard', 0, '37.7000', '37.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.4000', '', '37.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 (15976, 1457, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', 0, '12.0000', '12.0000', '3.0000', 1, '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 (15977, 1457, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', 0, '10.2000', '10.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '10.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 (15978, 1457, 6908, '78818546', 'Congestyl Syrup 60ml', 'standard', 0, '18.4000', '18.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '184.0000', '', '18.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 (15979, 1457, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', 0, '13.4000', '13.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '13.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15980, 1457, 6912, '12236473', 'Wellwoman Drink', 'standard', 0, '11.7000', '11.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.5000', '', '11.7000', 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 (15981, 1457, 6914, '98729079', 'Listerine Gin/Fresh Burst 500ml', 'standard', 0, '34.6000', '34.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '103.8000', '', '34.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 (15982, 1457, 6917, '81980248', 'Atorvastatin 40mg Tablets 28s WOCKHARDT', 'standard', 0, '16.0000', '16.0000', '2.0000', 1, '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 (16036, 1458, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '9.3700', '9.3700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.8500', '', '9.3700', 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 (16035, 1458, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (16034, 1458, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.2000', 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 (16033, 1458, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.5000', '', '9.7000', 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 (16032, 1458, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.9800', '', '9.6600', 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 (16031, 1458, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.8000', 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 (16030, 1458, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16029, 1458, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '3.4000', 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 (16028, 1458, 6304, '901', 'Lonart Suspension', 'standard', NULL, '16.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '16.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 (16027, 1458, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '146.9000', '146.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.9000', '', '146.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16026, 1458, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.3000', 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 (16025, 1458, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '3.0800', 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 (16024, 1458, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.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 (16023, 1458, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', 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 (16022, 1458, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (16021, 1458, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (16020, 1458, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.3000', 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 (16019, 1458, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (16018, 1458, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (16017, 1458, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (16016, 1458, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (16015, 1458, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.5000', '', '20.1000', 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 (16014, 1458, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (16013, 1458, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', NULL, '49.0000', '49.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16012, 1458, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '28.7000', 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 (16011, 1458, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (16037, 1458, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16038, 1458, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (16039, 1459, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (16040, 1459, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16041, 1459, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (16042, 1459, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (16043, 1459, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '200.2000', '', '15.4000', NULL, 1, 'pc', '13.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16044, 1459, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (16045, 1459, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9600', '', '10.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16046, 1459, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16047, 1459, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '79.4200', '79.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4200', '', '79.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16048, 1459, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (16049, 1459, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (16050, 1459, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '6.0300', '6.0300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0900', '', '6.0300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16051, 1460, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (16052, 1460, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16053, 1460, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (16054, 1460, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.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 (16055, 1460, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', '11.3800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16056, 1460, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (16057, 1460, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '19.0000', '19.0000', '1.0000', 1, '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 (16058, 1460, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16059, 1460, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16060, 1460, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16061, 1460, 6227, '824', 'Promecine Syrup 125ml', 'standard', NULL, '2.8400', '2.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.8400', '', '2.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16062, 1460, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (16063, 1461, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', 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 (16064, 1461, 6665, '1262', 'Plaster Strips Easy Care', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (16065, 1461, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (16066, 1462, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16067, 1463, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (16068, 1463, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9500', '', '3.7900', 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 (16069, 1463, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (16070, 1463, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '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 (16071, 1463, 6513, '1110', 'Vagid CL Suppositories', 'standard', NULL, '22.6800', '22.6800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.3600', '', '22.6800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16072, 1463, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.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 (16073, 1463, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (16074, 1463, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (16075, 1463, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (16076, 1463, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (16077, 1463, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (16078, 1463, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (16079, 1463, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '28.0000', '28.0000', '1.0000', 1, '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 (16189, 1464, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.3000', 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 (16190, 1464, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '267.6000', '', '22.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16191, 1464, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (16188, 1464, 6792, '1389', 'Benylin Chesty Cough 150ml(N/D)', 'standard', NULL, '56.0000', '56.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '56.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16147, 1464, 5418, '15', 'Aboniki', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (16148, 1464, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '13.2000', 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 (16149, 1464, 5435, '32', 'Amcof Adult Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', 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 (16150, 1464, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.1000', '', '28.7000', 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 (16151, 1464, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '12.4000', 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 (16152, 1464, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.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 (16153, 1464, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (16154, 1464, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (16155, 1464, 5540, '137', 'Colodium Loperamide Hydrochloride Capsule 2 mg', 'standard', NULL, '33.0000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '33.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 (16156, 1464, 5554, '151', 'Cytotec', 'standard', NULL, '309.8000', '309.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '309.8000', '', '309.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16157, 1464, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.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 (16158, 1464, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16159, 1464, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (16160, 1464, 5754, '351', 'Malin Baby', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.2000', 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 (16161, 1464, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '42.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 (16162, 1464, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (16163, 1464, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100\'s Aspar', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (16164, 1464, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.6000', '', '29.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 (16165, 1464, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '8.9000', 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 (16166, 1464, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (16167, 1464, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16168, 1464, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.9600', '15.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '15.9600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16169, 1464, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', NULL, '9.1000', '9.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.3000', '', '9.1000', 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 (16170, 1464, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.1000', '', '9.7000', 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 (16171, 1464, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (16172, 1464, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '26.8000', 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 (16173, 1464, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (16174, 1464, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '47.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16175, 1464, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', 'standard', NULL, '0.5500', '0.5500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '0.5500', 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 (16176, 1464, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '45.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 (16177, 1464, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.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 (16178, 1464, 6257, '854', 'Histazine (Cetrizine) Tablets 10mg 100s', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16179, 1464, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.4000', 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 (16180, 1464, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '17.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 (16181, 1464, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.8000', 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 (16182, 1464, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', 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 (16183, 1464, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.6000', '', '9.7200', 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 (16184, 1464, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '13.9200', '13.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8400', '', '13.9200', 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 (16185, 1464, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16186, 1464, 6766, '1363', 'Kidivit Syrup 100ML', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (16187, 1464, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (16128, 1465, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16129, 1465, 6032, '629', 'Gebedol Forte', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (16130, 1465, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (16131, 1465, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16132, 1465, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '26.1500', '26.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1500', '', '26.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16133, 1466, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2800', '', '13.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16134, 1467, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (16135, 1467, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '9.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 (16136, 1467, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '10.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 (16137, 1467, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '1.0000', 1, '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 (16138, 1468, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (16139, 1469, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.4000', '', '24.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 (16140, 1469, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (16141, 1469, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (16142, 1469, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '1.0000', 1, '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 (16143, 1470, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '4.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16144, 1470, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (16145, 1470, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '1.0000', 1, '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 (16146, 1470, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (16192, 1464, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '10.2000', 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 (16193, 1464, 6908, '78818546', 'Congestyl Syrup 60ml', 'standard', NULL, '18.4000', '18.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '18.4000', 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 (16194, 1471, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (16195, 1471, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '17.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 (16196, 1471, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '12.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 (16197, 1471, 6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', 'standard', NULL, '4.0000', '4.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '4.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 (16198, 1471, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (16199, 1472, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (16200, 1473, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (16201, 1473, 6389, '986', 'Salocold Syrup', 'standard', 0, '9.7000', '9.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.5000', '', '9.7000', 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 (16202, 1473, 6908, '78818546', 'Congestyl Syrup 60ml', 'standard', NULL, '18.4000', '18.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '18.4000', 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 (16203, 1473, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (16204, 1474, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17269, 1475, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '172.2000', '', '28.7000', 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 (17270, 1475, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (17271, 1475, 5507, '104', 'Carbozap Syrup Adult 100ml FG', 'standard', NULL, '4.9900', '4.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9500', '', '4.9900', 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 (17272, 1475, 5555, '152', 'Daflon 500mg Tablets 30\'s', 'standard', NULL, '107.0000', '107.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '107.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17273, 1475, 5556, '153', 'Daktarin Cream 15g', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (17274, 1475, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '4.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 (17275, 1475, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '34.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 (17276, 1475, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (17277, 1475, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '12.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 (17278, 1475, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100\'s Aspar', 'standard', NULL, '11.0000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '11.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 (17279, 1475, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '138.0000', '', '13.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 (17280, 1475, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (17281, 1475, 6000, '597', 'Vigorix Forte Syr 200ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (17282, 1475, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.9600', '15.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '15.9600', 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 (17283, 1475, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '5.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 (17284, 1475, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17285, 1475, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '6.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 (17286, 1475, 6151, '748', 'Jeditone Syrup 200ml', 'standard', NULL, '12.6000', '12.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '12.6000', 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 (17287, 1475, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (17288, 1475, 6194, '791', 'Shaltoux 4 Way Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (17289, 1475, 6197, '794', 'Shaltoux Natural Cough Lozenges 200pcs (Jar)', 'standard', NULL, '45.5000', '45.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.0000', '', '45.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 (17290, 1475, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '10.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 (17291, 1475, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.3000', 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 (17292, 1475, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.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 (17293, 1475, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '9.2000', '9.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '9.2000', 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 (17294, 1475, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '17.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 (17295, 1475, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', 'standard', NULL, '33.0200', '33.0200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0400', '', '33.0200', 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 (17296, 1475, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '87.4100', '87.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '174.8200', '', '87.4100', 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 (17297, 1475, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.6800', '', '22.7800', 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 (17298, 1475, 6366, '963', 'Flotac Capsules 75mg 20\'s', 'standard', NULL, '85.7800', '85.7800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '257.3400', '', '85.7800', 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 (17299, 1475, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '12.8400', 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 (17300, 1475, 6389, '986', 'Salocold Syrup', 'standard', NULL, '9.7000', '9.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.0000', '', '9.7000', 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 (17301, 1475, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '3.7000', 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 (17302, 1475, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '6.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 (17303, 1475, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', NULL, '83.6000', '83.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '167.2000', '', '83.6000', 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 (17304, 1475, 6453, '1050', 'Primolut N 5mg 30\'s', 'standard', NULL, '50.6000', '50.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '50.6000', 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 (17305, 1475, 6467, '1064', 'Benylin Infant 125ml', 'standard', NULL, '50.6000', '50.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '253.0000', '', '50.6000', 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 (17306, 1475, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '9.6200', '9.6200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.2000', '', '9.6200', 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 (17307, 1475, 6569, '1166', 'Luex Adult Dry Cough 150ml syrup', 'standard', NULL, '16.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '16.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 (17308, 1475, 6669, '1266', 'Emgiflox Suspension 100ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.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 (17309, 1475, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '6.6000', 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 (17310, 1553, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '292.0000', '', '58.4000', 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 (16249, 1476, 6888, '04578245', 'Metronidazole 400mg (O-Metro)', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (16250, 1476, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.2000', '', '9.7200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16251, 1476, 6847, '1444', 'Kelcuf Adult Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '6.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 (16252, 1476, 6849, '1446', 'Kelcuf Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '6.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 (16253, 1476, 5499, '96', 'Calcium B12 Syrup 200ml', 'standard', NULL, '3.8000', '3.8000', '6.0000', 1, '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 (16254, 1476, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '5.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 (16255, 1476, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16256, 1476, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (16257, 1476, 6352, '949', 'Roxidol', 'standard', NULL, '4.5000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '4.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 (16258, 1476, 5892, '489', 'Super Apeti Plus Syrup 200ml', 'standard', NULL, '11.7000', '11.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '11.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 (16259, 1476, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (16260, 1476, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '11.8000', '11.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '70.8000', '', '11.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 (16261, 1476, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '136.3000', '', '27.2600', 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 (16262, 1476, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.9000', '', '26.1800', 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 (16263, 1476, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', NULL, '158.6000', '158.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '317.2000', '', '158.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 (16264, 1476, 6289, '886', 'Fluxamox 500mg Capsules 200\'s', 'standard', NULL, '130.0000', '130.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', '130.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16265, 1476, 5726, '323', 'Listerine 250ml all types', 'standard', NULL, '20.0000', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '20.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 (16266, 1476, 6914, '98729079', 'Listerine Gin/Fresh Burst 500ml', 'standard', NULL, '34.6000', '34.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '173.0000', '', '34.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 (16267, 1476, 6915, '90384012', 'Nystatin Suspension 30ml', 'standard', NULL, '39.7000', '39.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '238.2000', '', '39.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 (16268, 1476, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.4000', '', '12.4000', 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 (16269, 1476, 6798, '1395', 'H/Aid Vitamin E 1000iu Natural Caps', 'standard', NULL, '135.5000', '135.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '271.0000', '', '135.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16270, 1476, 6526, '1123', 'Pregnacare Max', 'standard', NULL, '175.5000', '175.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '351.0000', '', '175.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16271, 1476, 6911, '48633904', 'Wellman Plus Capsules', 'standard', NULL, '107.3000', '107.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '214.6000', '', '107.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 (16272, 1476, 6912, '12236473', 'Wellwoman Drink', 'standard', NULL, '11.7000', '11.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '117.0000', '', '11.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 (16273, 1476, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '10.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 (16274, 1476, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (16275, 1476, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '207.6000', '', '34.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 (16276, 1476, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '10.9800', '10.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '10.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16277, 1476, 6184, '781', 'Magnavit Capsules 30\'s', 'standard', NULL, '10.9900', '10.9900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.9500', '', '10.9900', 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 (16278, 1476, 6416, '1013', 'Stopkof Dry Cough Syrup 100ml', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (16279, 1476, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '8.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 (16280, 1476, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '312.0000', '', '52.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 (16281, 1476, 6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', 'standard', NULL, '10.0000', '10.0000', '6.0000', 1, '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 (16282, 1476, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', NULL, '13.4000', '13.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '13.4000', 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 (16283, 1476, 6927, '19085995', 'Ayulabs Gripe Water', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (16284, 1476, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '44.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 (16285, 1476, 6931, '90823267', 'Pylin Ointment ', 'standard', NULL, '34.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '34.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 (16286, 1476, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16287, 1476, 6928, '72296204', 'Impressor Oil', 'standard', NULL, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16288, 1476, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (16289, 1476, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '12.4000', '12.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.4000', '', '12.4000', 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 (16290, 1476, 5528, '125', 'Cirotamin Tonic', 'standard', NULL, '16.6000', '16.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.0000', '', '16.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 (16291, 1476, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '292.0000', '', '58.4000', 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 (16292, 1476, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '201.5000', '', '40.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 (16293, 1476, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.6000', '', '32.1000', 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 (16294, 1476, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '1.9000', 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 (16295, 1476, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (16296, 1476, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (16297, 1476, 6596, '1193', 'Epicrom 2% Eye Drop 10ml', 'standard', NULL, '20.9000', '20.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.5000', '', '20.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 (16298, 1476, 6005, '602', 'Sulphur Ointment 40g', 'standard', NULL, '9.8000', '9.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.8000', '', '9.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 (16299, 1476, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '6.4000', 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 (16300, 1476, 5742, '339', 'LYRICA 75mg', 'standard', NULL, '311.6000', '311.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '311.6000', '', '311.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 (16301, 1476, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (16302, 1476, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (16303, 1476, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (16304, 1476, 6103, '700', 'Klire 4 Way Cough Syrup 125ml Eskay', 'standard', NULL, '15.2000', '15.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '15.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 (16305, 1476, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '5.0000', 1, '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 (16306, 1477, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '22.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 (16307, 1477, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '8.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 (16308, 1477, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (16309, 1477, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '4.2000', '4.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '4.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 (16310, 1477, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '11.3800', '11.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7600', '', '11.3800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16435, 1478, 6924, '21613850', 'Hydrogen (Extem)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '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 (16419, 1478, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16420, 1478, 5676, '273', 'Imax Delay Spray', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16421, 1478, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16422, 1478, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1400', '', '8.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16423, 1478, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16424, 1478, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '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 (16425, 1478, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16426, 1478, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16427, 1478, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (16428, 1478, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16429, 1478, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16430, 1478, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.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 (16431, 1478, 6314, '911', 'Nifedi-Denk 10mg Tablets 10X10', 'standard', NULL, '33.0200', '33.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0200', '', '33.0200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16432, 1478, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.7200', '', '9.7200', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16433, 1478, 6608, '1205', 'Skyclav 457mg', 'standard', NULL, '16.8800', '16.8800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8800', '', '16.8800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16434, 1478, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (16415, 1478, 5554, '151', 'Cytotec', 'standard', NULL, '341.0000', '341.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '341.0000', '', '341.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16416, 1478, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.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 (16417, 1478, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (16418, 1478, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16413, 1478, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '5.8600', '5.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5800', '', '5.8600', 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 (16414, 1478, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (16372, 1479, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (16373, 1479, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', 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 (16374, 1479, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', 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 (16375, 1479, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (16376, 1479, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '29.2000', '29.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '29.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16377, 1479, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.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 (16378, 1479, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '6.4300', '6.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8600', '', '6.4300', 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 (16342, 1480, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (16343, 1480, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16344, 1480, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (16345, 1481, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (16346, 1481, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (16347, 1482, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16348, 1483, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.2000', '', '3.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16349, 1483, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '4.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 (16350, 1483, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '6.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16351, 1483, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (16352, 1483, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '6.0300', '6.0300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0600', '', '6.0300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16353, 1483, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (16354, 1483, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (16355, 1483, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16356, 1483, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (16357, 1483, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16358, 1483, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (16359, 1483, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16360, 1483, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (16361, 1484, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '17.4000', '17.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '17.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 (16362, 1484, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (16363, 1484, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16364, 1484, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16365, 1485, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16366, 1485, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '186.9500', '', '186.9500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16367, 1485, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16368, 1485, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.0000', '', '43.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16369, 1485, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16370, 1485, 6665, '1262', 'Plaster Strips Easy Care', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (16371, 1485, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '13.2000', '13.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '13.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 (16402, 1486, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '5.0000', 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 (16401, 1486, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (16399, 1486, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.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 (16400, 1486, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '0.6000', 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 (16398, 1486, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '18.9000', '18.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '18.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 (16384, 1487, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (16385, 1487, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (16386, 1488, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (16387, 1488, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '9.2000', '9.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '9.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 (16388, 1488, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (16389, 1489, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', '1.9000', 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 (16390, 1489, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '1.8000', 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 (16391, 1489, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (16392, 1489, 6816, '1413', 'Basecam Caps (Piroxicam)', 'standard', NULL, '11.9000', '11.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7000', '', '11.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16393, 1489, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16394, 1489, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16395, 1489, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '1.0000', 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 (16396, 1489, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.5000', '', '60.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16397, 1489, 5997, '594', 'Linctus Junior Syrup 100ml', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (16403, 1490, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (16404, 1490, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (16405, 1491, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (16406, 1491, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (16407, 1491, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (16408, 1491, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16409, 1491, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (16410, 1491, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (16411, 1491, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (16412, 1492, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '25.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 (16471, 1493, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.9200', '1.9200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '1.9200', 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 (16472, 1493, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '3.1800', 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 (16473, 1493, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '8.2900', '8.2900', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5800', '', '8.2900', 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 (16474, 1493, 6738, '1335', 'Eskaron Capsules 10X30', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (16475, 1493, 6309, '906', 'Odymin Syrup', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.4000', 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 (16476, 1493, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '2.7000', 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 (16465, 1493, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6400', '', '7.3200', 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 (16466, 1493, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.3000', 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 (16467, 1493, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (16468, 1493, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', NULL, '26.8000', '26.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '26.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16469, 1493, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (16470, 1493, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (16448, 1494, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (16449, 1494, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (16450, 1494, 6922, '60528151', 'Santriax 1000 (Ceftriaxone 1000mg Injection)', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (16451, 1494, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '20.9200', '20.9200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.7600', '', '20.9200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16452, 1494, 6933, '39183320', 'Letafen 400mg Tablets', 'standard', NULL, '1.2000', '1.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '1.2000', 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 (16453, 1494, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '26.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16454, 1495, 6253, '850', 'Exforge 10/160mg Tablets 28s', 'standard', NULL, '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '168.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 (16455, 1496, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16456, 1497, 6036, '633', 'Leorub Gel 30g', 'standard', NULL, '5.4000', '5.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '5.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 (16457, 1497, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (16458, 1497, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (16459, 1497, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '24.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 (16460, 1497, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.3000', '14.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.6000', '', '14.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 (16461, 1497, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (16462, 1497, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (16463, 1497, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (16464, 1497, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '4.0000', 1, '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 (16477, 1498, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16478, 1498, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (16479, 1499, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (16480, 1499, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (16481, 1499, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16482, 1500, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16483, 1501, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (16484, 1502, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16485, 1502, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '9.8000', '9.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '9.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 (16486, 1502, 6390, '987', 'Salocold Tablets', 'standard', NULL, '29.4500', '29.4500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4500', '', '29.4500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16487, 1502, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (16488, 1502, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '4.4000', 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 (16489, 1502, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (16490, 1502, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (16491, 1503, 6214, '811', 'Rufenac Gel 30g', 'standard', NULL, '2.8000', '2.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '2.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 (16492, 1503, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (16493, 1503, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (16494, 1503, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.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 (16495, 1503, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (16496, 1503, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '12.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16497, 1503, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '3.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 (16498, 1503, 5497, '94', 'BX Syrup 100ml', 'standard', NULL, '8.3000', '8.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.3000', '', '8.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 (16499, 1504, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4200', '', '34.2100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16500, 1504, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (16501, 1504, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '7.3200', 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 (16502, 1504, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (16503, 1504, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '10.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16504, 1504, 6681, '1278', 'Goldy Malaria Suspension', 'standard', NULL, '13.9800', '13.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9400', '', '13.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16505, 1504, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '79.4200', '79.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4200', '', '79.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16506, 1504, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (16507, 1504, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (16508, 1504, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1000', '2.1000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '2.1000', 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 (16509, 1504, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16510, 1504, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (16511, 1504, 6420, '1017', 'Menthox Lozenges', 'standard', NULL, '15.6000', '15.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '15.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 (16512, 1504, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (16513, 1504, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (16514, 1504, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0800', '', '3.1800', 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 (16515, 1504, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.1200', '', '3.5200', 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 (16516, 1504, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '5.3000', '5.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '5.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 (16517, 1504, 6211, '808', 'Contreg Syrup 30ml', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (16518, 1504, 6206, '803', 'Contreg Tablets 10x10', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (16519, 1504, 6354, '951', 'Parafenac', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (16520, 1504, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16521, 1504, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (16522, 1504, 6774, '1371', 'Bendrofluazide Tab 2.5mg 500\\\' ECL', 'standard', NULL, '40.1100', '40.1100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.1100', '', '40.1100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16523, 1504, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.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 (16524, 1504, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '9.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 (16525, 1504, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '10.0000', 1, '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 (16526, 1504, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '8.2900', '8.2900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4500', '', '8.2900', 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 (16527, 1504, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '28.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 (16528, 1504, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (16529, 1504, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 'standard', NULL, '5.9800', '5.9800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.8800', '', '5.9800', 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 (16530, 1504, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '3.5000', '3.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '3.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 (16531, 1504, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (16532, 1504, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (16533, 1504, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '2.0000', 1, '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 (16534, 1504, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '7.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 (16535, 1504, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6400', '', '3.0800', 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 (16536, 1504, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.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 (16537, 1504, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '8.6000', '8.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '8.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 (16538, 1504, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '2.0000', 1, '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 (16539, 1504, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.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 (16540, 1504, 5979, '576', 'Menthox Adult Cough Syrup 125ml', 'standard', NULL, '6.8000', '6.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.6000', '', '6.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 (16541, 1504, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.7000', '', '6.1700', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16542, 1504, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '4.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16543, 1504, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '5.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 (16544, 1504, 6147, '744', 'Cafalgin Caplets 25x10', 'standard', NULL, '42.2400', '42.2400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.2400', '', '42.2400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16545, 1504, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '1.8000', 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 (16546, 1504, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.4600', '', '15.8200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16547, 1504, 5441, '38', 'Ampicillin 250mg Capsules 50X10 Eskay', 'standard', NULL, '2.2000', '2.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '2.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 (16548, 1504, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '1.5000', 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 (16549, 1504, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '26.5000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.5000', '', '26.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 (16550, 1504, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (16551, 1504, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (16552, 1504, 5418, '15', 'Aboniki', 'standard', 0, '6.5000', '6.5000', '4.0000', 1, '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 (16553, 1504, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (16554, 1504, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (16555, 1504, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '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 (16556, 1504, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (16557, 1504, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16558, 1504, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '22.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 (16559, 1505, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '1.0000', 1, '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 (16560, 1505, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (17132, 1506, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (17131, 1506, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.4000', 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 (17130, 1506, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.0000', '', '39.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 (17129, 1506, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (17127, 1506, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', 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 (17128, 1506, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '16.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 (17126, 1506, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (17125, 1506, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (16640, 1507, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16639, 1507, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (16638, 1507, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', 0, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.7000', 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 (16637, 1507, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', 0, '39.0000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.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 (16636, 1507, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16635, 1507, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (16634, 1507, 5974, '571', 'Magacid Susp 200ml', 'standard', 0, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (16633, 1507, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.9000', '4.9000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.3000', '', '4.9000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16632, 1507, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', 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 (16631, 1507, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (16629, 1507, 5515, '112', 'Cetapol Syrup', 'standard', 0, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (16630, 1507, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '24.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.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 (16583, 1508, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (16584, 1508, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (16585, 1508, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16586, 1508, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.8000', '', '10.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16587, 1508, 6901, '89069149', 'Paralex D Tablets', 'standard', NULL, '4.5000', '4.5000', '3.0000', 1, '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 (16588, 1508, 6671, '1268', 'Kofof Baby', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (16589, 1508, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (16590, 1508, 6556, '1153', 'TSec 1g Tablets', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (16591, 1508, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7300', '', '3.9100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16604, 1509, 6298, '895', 'Malar-2 Forte DS Tablets 6\'s', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.8000', 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 (16593, 1510, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16594, 1510, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '181.5000', '', '60.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 (16703, 1511, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '65.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 (16704, 1511, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.2000', '', '34.6000', 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 (16705, 1511, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '24.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 (16706, 1511, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (16707, 1511, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (16708, 1511, 6437, '1034', 'Imodium Capsules 6\'s', 'standard', NULL, '18.1000', '18.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.3000', '', '18.1000', 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 (16709, 1511, 6552, '1149', 'Zithromax 250mg Capsules 6\'s', 'standard', NULL, '186.9500', '186.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '373.9000', '', '186.9500', 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 (16710, 1511, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.8000', 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 (16702, 1511, 5477, '74', 'Bells Teething Mixture', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (16605, 1509, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', 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 (16606, 1509, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '6.5000', '6.5000', '2.0000', 1, '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 (16607, 1512, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '58.4000', '58.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '58.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 (16608, 1512, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', 0, '60.5000', '60.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.5000', '', '60.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16609, 1512, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (16610, 1512, 5642, '239', 'Gebedol Plus Capsule', 'standard', 0, '26.9000', '26.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '26.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 (16611, 1512, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16612, 1512, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (16613, 1512, 5906, '503', 'Tetracycline Capsules', 'standard', 0, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (16614, 1512, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', 0, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16615, 1512, 6010, '607', 'Rooter Tytonic', 'standard', 0, '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 (16616, 1512, 6024, '621', 'Vaginax Cream 30gm', 'standard', 0, '5.5000', '5.5000', '2.0000', 1, '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 (16617, 1512, 6037, '634', 'Kamaclox Mouthwash 300ml', 'standard', 0, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16618, 1512, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (16619, 1512, 6077, '674', 'Fiesta Condom All Night', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (16620, 1512, 6176, '773', 'Gogynax Cream 30g', 'standard', 0, '5.7400', '5.7400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4800', '', '5.7400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16621, 1512, 6240, '837', 'Metronidazole 400mg tabs 21\'s Exeter', 'standard', 0, '11.9500', '11.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9000', '', '11.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16622, 1512, 6332, '929', 'Adom Koo Capsules', 'standard', 0, '16.5000', '16.5000', '2.0000', 1, '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 (16623, 1512, 6363, '960', 'Bells Vitamin C Syrup', 'standard', 0, '22.7800', '22.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7800', '', '22.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16624, 1512, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (16625, 1512, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', 0, '10.6000', '10.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.2000', '', '10.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 (16626, 1512, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (16627, 1512, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '3.0000', 1, '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 (16628, 1512, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16641, 1507, 6778, '1375', 'Nugel Susp 200ml', 'standard', 0, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', 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 (16642, 1507, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16643, 1513, 6688, '1285', 'Travatan Eye Drops 2.5ml', 'standard', NULL, '80.8000', '80.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.8000', '', '80.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 (16644, 1513, 6053, '650', 'Bonnisan Syrup 120ml', 'standard', NULL, '16.3700', '16.3700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7400', '', '16.3700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16645, 1513, 6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', 'standard', NULL, '4.3000', '4.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '4.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 (16646, 1513, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '2.0000', 1, '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 (16647, 1513, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '34.8000', '34.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.4000', '', '34.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 (16648, 1513, 5889, '486', 'Sudocrem 125g cream', 'standard', NULL, '49.8000', '49.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.6000', '', '49.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 (16649, 1513, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (16650, 1513, 6010, '607', 'Rooter Tytonic', '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 (16651, 1513, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.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 (16652, 1513, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (16653, 1513, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '52.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16654, 1513, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', NULL, '13.4000', '13.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.4000', '', '13.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 (16655, 1513, 6338, '935', 'Osteocare Tablets UK', 'standard', NULL, '53.5000', '53.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '53.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16656, 1513, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '3.0000', 1, '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 (16657, 1513, 5778, '375', 'Mycolex 3 Cream 30gm', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (16658, 1513, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (16659, 1513, 6814, '1411', 'Wellkid Multivitamin Syrup 160ml', 'standard', NULL, '81.9000', '81.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.9000', '', '81.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 (16660, 1513, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (16661, 1513, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (16662, 1513, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', NULL, '14.0000', '14.0000', '5.0000', 1, '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 (16663, 1513, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (16664, 1513, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '74.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16665, 1513, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (16666, 1513, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '24.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 (16667, 1513, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '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 (16668, 1513, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '99.3000', '99.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.3000', '', '99.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 (16669, 1513, 5790, '387', 'Nexium 40mg Tablets 14\'s', 'standard', NULL, '178.0000', '178.0000', '1.0000', 1, '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 (16670, 1513, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '46.5000', '46.5000', '1.0000', 1, '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 (16671, 1513, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '87.4100', '87.4100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4100', '', '87.4100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16672, 1513, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '6.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 (16673, 1513, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.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 (16674, 1513, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (16675, 1513, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '3.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 (16676, 1513, 5460, '57', 'Atacand Plus 16/12.5mg', 'standard', NULL, '283.3000', '283.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '283.3000', '', '283.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 (16677, 1513, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (16678, 1513, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (16679, 1513, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (16680, 1513, 5840, '437', 'Prostacure X', 'standard', NULL, '27.5000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '27.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 (16681, 1513, 6243, '840', 'Doxycycline 100mg Capsules 200s ECL', 'standard', NULL, '68.5000', '68.5000', '1.0000', 1, '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 (16682, 1513, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (16683, 1513, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '2.0000', 1, '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 (16684, 1513, 6931, '90823267', 'Pylin Ointment ', 'standard', NULL, '34.0000', '34.0000', '3.0000', 1, '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 (16685, 1513, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.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 (16686, 1513, 5734, '331', 'Lubrimax Jelly 70g', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (16687, 1513, 5733, '330', 'Lubrimax Jelly 50g', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (16688, 1513, 6233, '830', 'Amlodipine 5mg Tablets 28s Teva', 'standard', NULL, '7.2000', '7.2000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.6000', '', '7.2000', 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 (16689, 1513, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (16690, 1513, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (16691, 1513, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (16692, 1513, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (16693, 1513, 6579, '1176', 'Deep Freez Gel 35g', 'standard', NULL, '35.5400', '35.5400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.5400', '', '35.5400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16694, 1513, 6079, '676', 'Araba Ba Zhen Tablets', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (16695, 1513, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.7000', '', '20.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16696, 1513, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8000', '', '6.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16697, 1513, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '2.0000', 1, '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 (16698, 1513, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (16699, 1513, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (16700, 1514, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (16701, 1514, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (16711, 1511, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (16712, 1511, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '8.9000', 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 (16713, 1511, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (16714, 1511, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.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 (16715, 1511, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (16716, 1511, 6278, '875', 'Tinatett 230 Herbal Capsules', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (16717, 1515, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16718, 1515, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '14.6000', '14.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '14.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 (16719, 1515, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16720, 1515, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '33.7000', '33.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.7000', '', '33.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 (16721, 1515, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '24.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 (16722, 1515, 6107, '704', 'Lexofen Plus Tablets 2x10', 'standard', NULL, '12.0000', '12.0000', '10.0000', 1, '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 (16723, 1515, 5720, '317', 'Lexsporin Skin Ointment 20g', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (16724, 1515, 6937, '79341788', 'Zahara Mixture', 'standard', NULL, '16.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '16.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 (16725, 1515, 6938, '52430931', 'Zahara Gee Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (16726, 1515, 5637, '234', 'Gaviscon Peppermint Liquid 200ml', 'standard', NULL, '54.2000', '54.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.4000', '', '54.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 (16727, 1515, 6288, '885', 'Tadol 50mg Capsules 20\'s', 'standard', NULL, '66.5200', '66.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.6000', '', '66.5200', 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 (16728, 1515, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (16729, 1515, 5962, '559', 'Zinvite Syrup 200ml', 'standard', NULL, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (16730, 1515, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (16731, 1515, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '5.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 (16732, 1515, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (16733, 1515, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.6000', '', '9.7200', 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 (16734, 1515, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (16735, 1515, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (16736, 1515, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16737, 1515, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '44.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16738, 1515, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '52.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16739, 1515, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (16740, 1515, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (16741, 1515, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (16742, 1515, 6097, '694', 'Methylated Spirit 200ml', 'standard', NULL, '7.2000', '7.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16743, 1515, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '6.4000', 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 (16744, 1515, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.9000', '', '3.7900', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16745, 1515, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16746, 1515, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (16747, 1515, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '103.8000', '', '34.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 (16748, 1515, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.5000', '', '13.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 (16749, 1515, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (16750, 1515, 5600, '197', 'Epiderm Cream 15g', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (16751, 1515, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7500', '', '5.9500', 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 (16752, 1515, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (16753, 1515, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (16754, 1515, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (16755, 1515, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (16756, 1515, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (16757, 1515, 6098, '695', 'Klire Tablet 10\'s', 'standard', NULL, '5.6000', '5.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '5.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 (16758, 1515, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (16759, 1515, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (16760, 1516, 6565, '1162', 'Tegretol CR 200mg Divitabs 50\'s', 'standard', 0, '97.5000', '97.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.5000', '', '97.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16761, 1517, 5587, '184', 'Drez Ointment 10g', 'standard', 0, '8.8000', '8.8000', '5.0000', 1, '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 (16762, 1517, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (16763, 1517, 6010, '607', 'Rooter Tytonic', 'standard', 0, '16.5000', '16.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '16.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 (16764, 1517, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', 0, '20.9200', '20.9200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.7600', '', '20.9200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16765, 1517, 6843, '1440', 'Robb Inhaler', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (16766, 1517, 6929, '32027899', 'Gynicare', 'standard', 0, '52.0000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '52.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16767, 1517, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (16768, 1518, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16769, 1518, 6254, '851', 'Extraflex Glucosamine Chondroitin Capsules 30s', 'standard', NULL, '36.8000', '36.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '36.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 (16770, 1519, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (16771, 1519, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (16790, 1520, 6928, '72296204', 'Impressor Oil', 'standard', 0, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (16789, 1520, 6893, '233', 'Impressor Capsules', 'standard', 0, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (16788, 1520, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', 0, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (16787, 1520, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', 0, '6.0300', '6.0300', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.3000', '', '6.0300', 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 (16786, 1520, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', 0, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (16785, 1520, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', 0, '10.8000', '10.8000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '216.0000', '', '10.8000', 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 (16784, 1520, 5515, '112', 'Cetapol Syrup', 'standard', 0, '5.5000', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '5.5000', 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 (16783, 1520, 5477, '74', 'Bells Teething Mixture', 'standard', 0, '27.5000', '27.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '275.0000', '', '27.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 (16782, 1520, 5472, '69', 'Baseboom Gel', 'standard', 0, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (16791, 1520, 6933, '39183320', 'Letafen 400mg Tablets', 'standard', 0, '1.2000', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '1.2000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16792, 1520, 6739, '1336', 'Skybru (Brufen) 100mg/5ml Suspension', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (16793, 1520, 6842, '1439', 'Tobufen 60ml', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (16794, 1521, 5632, '229', 'Gacet 250mg Suppository', 'standard', 0, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (16795, 1521, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16796, 1521, 5898, '495', 'Taabea Herbal Mixture', 'standard', 0, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (16797, 1521, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', 0, '45.0000', '45.0000', '1.0000', 1, '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 (16798, 1521, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (16799, 1521, 6556, '1153', 'TSec 1g Tablets', 'standard', 0, '4.0000', '4.0000', '2.0000', 1, '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 (16800, 1521, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', 0, '3.1800', '3.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3600', '', '3.1800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16801, 1521, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', 0, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16802, 1521, 6902, '06640421', 'Grandpa Syrup', 'standard', 0, '6.5000', '6.5000', '2.0000', 1, '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 (16803, 1521, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.9600', '3.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8800', '', '3.9600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16804, 1521, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (16805, 1521, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '6.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 (16806, 1521, 6191, '788', 'Shal\\\'Artem Dry Syrup', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (16807, 1522, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', NULL, '10.6000', '10.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '212.0000', '', '10.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 (16808, 1523, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (16809, 1523, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (16810, 1524, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (16817, 1525, 6191, '788', 'Shal\\\'Artem Dry Syrup', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (16813, 1526, 6840, '1437', 'Betasol N (Eye,Ear & Nose) Drop', 'standard', NULL, '5.2000', '5.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '5.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 (16816, 1525, 6190, '787', 'Shal\\\'Artem Forte 80/480mg Tablets 6\'s', 'standard', NULL, '9.1000', '9.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.1000', '', '9.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16818, 1527, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (16819, 1528, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (16820, 1528, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (17170, 1529, 6908, '78818546', 'Congestyl Syrup 60ml', 'standard', NULL, '18.4000', '18.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.6000', '', '18.4000', 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 (17169, 1529, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6000', '', '10.2000', 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 (17168, 1529, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', NULL, '12.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '12.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 (17167, 1529, 6903, '75300114', 'Foligrow Plus 200ml Syrup', 'standard', NULL, '25.0000', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '25.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 (17166, 1529, 6873, '06796716', 'Menazole 500mg (Mebenazole)10x1 Ayrtons', 'standard', 0, '2.0000', '2.0000', '10.0000', 1, '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 (17165, 1529, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17164, 1529, 6857, '1454', 'Klire Zofu', 'standard', NULL, '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '11.8000', 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 (17163, 1529, 6667, '1264', 'Gyprone Plus Tablets', 'standard', 0, '3.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.0000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17162, 1529, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '20.9200', '20.9200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.6000', '', '20.9200', 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 (17161, 1529, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', NULL, '11.5300', '11.5300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.6500', '', '11.5300', 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 (17160, 1529, 6501, '1098', 'Heptopep Forte 200ml Syrup', 'standard', 0, '10.6000', '10.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '10.6000', 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 (17159, 1529, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.7000', 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 (17158, 1529, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.9000', 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 (17156, 1529, 6429, '1026', 'Onita Syrup 200ml', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (17157, 1529, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.7000', 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 (17148, 1529, 6138, '735', 'Drez V Gel 30g', 'standard', NULL, '17.5000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.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 (17149, 1529, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '10.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 (17150, 1529, 6165, '762', 'Mucosyl Junior Syrup 100ml', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.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 (17151, 1529, 6166, '763', 'Mucosyl Adult Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (17152, 1529, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '4.7000', 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 (17153, 1529, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (17154, 1529, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.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 (17155, 1529, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', 0, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17133, 1529, 5427, '24', 'Agbeve Tonic', 'standard', 0, '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '13.2000', 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 (17134, 1529, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (17135, 1529, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (17136, 1529, 5841, '438', 'Prostafit', 'standard', 0, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (17137, 1529, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (17138, 1529, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', 0, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (17139, 1529, 5974, '571', 'Magacid Susp 200ml', 'standard', 0, '9.5000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '9.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 (17140, 1529, 5985, '582', 'APC TABS 10X10', 'standard', 0, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.2000', 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 (17141, 1529, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '0.8000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17142, 1529, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '2.1000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17143, 1529, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17144, 1529, 6076, '673', 'Kiss Condom Strawberry', 'standard', 0, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17145, 1529, 6088, '685', 'Bioferon Capsules 30\'s', 'standard', 0, '26.8000', '26.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.4000', '', '26.8000', 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 (17146, 1529, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '14.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 (17147, 1529, 6126, '723', 'Amurox Suspension (Cefuroxime Axetil)', 'standard', NULL, '23.3000', '23.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.2000', '', '23.3000', 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 (17031, 1530, 6928, '72296204', 'Impressor Oil', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (17002, 1530, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '65.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 (17003, 1530, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (17004, 1530, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.2000', '', '34.6000', 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 (17005, 1530, 5617, '214', 'Flagyl Suspension 100ml', 'standard', NULL, '43.8400', '43.8400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.5200', '', '43.8400', 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 (17006, 1530, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '16.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 (17007, 1530, 5788, '385', 'Neovita Capsules 30\'s', 'standard', NULL, '60.0000', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '60.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 (17008, 1530, 5885, '482', 'Stopkof Children 100ml Syrup', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (17009, 1530, 5955, '552', 'Zincofer Capsules 30\'s', 'standard', NULL, '25.9000', '25.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.7000', '', '25.9000', 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 (17010, 1530, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (17011, 1530, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.8000', 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 (17012, 1530, 6042, '639', 'Vitane Drops 30ml', 'standard', NULL, '25.9500', '25.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.9000', '', '25.9500', 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 (17013, 1530, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.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 (17014, 1530, 6122, '719', 'Ventolin Inhaler 100 micrograms', 'standard', NULL, '47.2000', '47.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '47.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17015, 1530, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.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 (17016, 1530, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6000', '', '6.4000', 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 (17017, 1530, 6289, '886', 'Fluxamox 500mg Capsules 200\'s', 'standard', NULL, '148.0000', '148.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '148.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17018, 1530, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9800', '', '7.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17019, 1530, 6409, '1006', 'E-Panol 100ml Syrup Strawberry Flav', 'standard', NULL, '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '7.9800', 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 (17020, 1530, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '17.6000', 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 (17021, 1530, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.9000', 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 (17022, 1530, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.9000', 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 (17023, 1530, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.6000', '', '87.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 (17024, 1530, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '8.8000', '8.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', 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 (17025, 1530, 6736, '1333', 'Sudafed Head & Congestion Max Strength', 'standard', NULL, '46.0000', '46.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17026, 1530, 6737, '1334', 'Sudafed Sinus Ease Spray 0.1%', 'standard', NULL, '40.5000', '40.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '40.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 (17027, 1530, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (17028, 1530, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.8000', 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 (17029, 1530, 6896, '94310781', 'Fleming 457MG Suspension', 'standard', NULL, '32.1000', '32.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '32.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17030, 1530, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '10.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 (16895, 1531, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '10.0000', NULL, 1, 'pc', '13.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16896, 1531, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '24.1100', '24.1100', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '192.8800', '', '24.1100', 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 (16897, 1531, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '2.3000', NULL, 1, 'pc', '26.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16898, 1531, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '2.3000', NULL, 1, 'pc', '26.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16899, 1531, 6613, '1210', 'Enterogemina 5ml  Ampoles 10\'s', 'standard', NULL, '52.8000', '52.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '211.2000', '', '52.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 (16900, 1531, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', 'standard', NULL, '15.8000', '15.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.4000', '', '15.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 (16901, 1532, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (17193, 1533, 6933, '39183320', 'Letafen 400mg Tablets', 'standard', NULL, '1.2000', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '1.2000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17192, 1533, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.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 (17182, 1533, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.7000', 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 (17183, 1533, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (17184, 1533, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17185, 1533, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6800', '', '12.8400', 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 (17186, 1533, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (17187, 1533, 6556, '1153', 'TSec 1g Tablets', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (17188, 1533, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.3000', 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 (17189, 1533, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7500', '', '4.9500', 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 (17190, 1533, 6845, '1442', 'Robb Ointment', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17191, 1533, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (17180, 1533, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17181, 1533, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.7000', 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 (17175, 1533, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.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 (17176, 1533, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '1.0000', 1, '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 (17177, 1533, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17178, 1533, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (17179, 1533, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.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 (16922, 1534, 6610, '1207', 'Paracetamol 500mg Tablets 100x10 Eskay', 'standard', NULL, '81.5000', '81.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.5000', '', '81.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16923, 1534, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (16924, 1534, 6263, '860', 'Nesben (Albendazole) Suspension 100mg', 'standard', NULL, '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '5.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16925, 1534, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', '39.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 (16926, 1534, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (16927, 1534, 6939, '15510705', 'Zahara Man Capsules', '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 (16928, 1534, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '10.0000', 1, '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 (17032, 1530, 6937, '79341788', 'Zahara Mixture', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (17033, 1537, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '8.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 (17034, 1537, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (16962, 1535, 6934, '40289448', 'Alusil Plus Suspension 125ml', 'standard', NULL, '3.7000', '3.7000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '3.7000', 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 (16963, 1536, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.9000', '', '22.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 (16964, 1536, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16965, 1536, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '26.9000', '26.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.7000', '', '26.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16966, 1536, 6240, '837', 'Metronidazole 400mg tabs 21\'s Exeter', 'standard', NULL, '11.9500', '11.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.7500', '', '11.9500', 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 (16967, 1536, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (16968, 1536, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (16969, 1536, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (17035, 1537, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17109, 1538, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '10.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17110, 1538, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '6.6000', 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 (17108, 1538, 6408, '1005', 'E-Panol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '7.9800', 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 (17102, 1539, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17100, 1539, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '3.5200', 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 (17101, 1539, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17099, 1539, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.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 (17097, 1539, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (17098, 1539, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (17093, 1539, 6129, '726', 'Kofof Child Syrup 100ml', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (17094, 1539, 6130, '727', 'Kofof Family Syrup 150ml', 'standard', NULL, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (17095, 1539, 6164, '761', 'Heptolif Syrup 200ml', 'standard', NULL, '16.0600', '16.0600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1200', '', '16.0600', 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 (17096, 1539, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (17087, 1539, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (17088, 1539, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.3000', 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 (17089, 1539, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (17090, 1539, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (17091, 1539, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (17092, 1539, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17083, 1539, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17084, 1539, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '7.0000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '7.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 (17085, 1539, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.9600', '3.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8800', '', '3.9600', 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 (17086, 1539, 5716, '313', 'Letaron 200ml Syrup', 'standard', NULL, '4.3200', '4.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '4.3200', 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 (17082, 1539, 5473, '70', 'Basecold Syrup', 'standard', NULL, '5.0000', '5.0000', '10.0000', 1, '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 (17062, 1540, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (17063, 1540, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (17064, 1540, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.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 (17065, 1540, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3200', '', '3.0800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17066, 1540, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.7200', '0.7200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '0.7200', 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 (17067, 1540, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17068, 1540, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.9600', '3.9600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8800', '', '3.9600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17069, 1540, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17070, 1540, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '4.3500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17071, 1540, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.6000', '', '5.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 (17072, 1540, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (17073, 1540, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (17074, 1540, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.3000', '14.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '14.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 (17075, 1540, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.6000', '', '3.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 (17076, 1541, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (17077, 1541, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17078, 1541, 6628, '1225', 'Multivitamin Syrup 125ml Ayrton', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17079, 1541, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (17080, 1541, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (17081, 1541, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '6.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 (17103, 1539, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '7.4300', '7.4300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2900', '', '7.4300', 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 (17104, 1539, 6934, '40289448', 'Alusil Plus Suspension 125ml', 'standard', NULL, '3.7000', '3.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '3.7000', 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 (17105, 1542, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (17106, 1543, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.4000', '', '8.2000', 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 (17107, 1543, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.8000', '', '22.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 (17124, 1506, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '9.4000', 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 (17123, 1506, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (17122, 1506, 5418, '15', 'Aboniki', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (17171, 1529, 6927, '19085995', 'Ayulabs Gripe Water', 'standard', NULL, '9.9000', '9.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '9.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 (17172, 1529, 6937, '79341788', 'Zahara Mixture', 'standard', NULL, '16.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '16.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 (17173, 1529, 6938, '52430931', 'Zahara Gee Capsules', 'standard', NULL, '16.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '16.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 (17174, 1544, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (17194, 1533, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.9600', '3.9600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9200', '', '3.9600', 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 (17195, 1545, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '2.1000', '2.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.2000', '', '2.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17196, 1545, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.9200', '1.9200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.7600', '', '1.9200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17197, 1546, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (17198, 1546, 6152, '749', 'Heptolif Tablets 50x2x10', 'standard', NULL, '1.2000', '1.2000', '5.0000', 1, '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 (17199, 1547, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.7200', '0.7200', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '0.7200', 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 (17200, 1547, 6933, '39183320', 'Letafen 400mg Tablets', 'standard', NULL, '1.2000', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '1.2000', 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 (17201, 1547, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (17202, 1547, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (18558, 1548, 6932, '78866726', 'Technologist Choice Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '50.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18548, 1548, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18549, 1548, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17209, 1549, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (17210, 1549, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (17211, 1549, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (17212, 1549, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (17213, 1549, 5569, '166', 'Diazepam 5mg Tablets 500\'s', 'standard', NULL, '21.6000', '21.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '21.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 (17214, 1549, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (17215, 1549, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (17216, 1549, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (17217, 1549, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2800', '', '7.3200', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17218, 1549, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8500', '', '5.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17219, 1549, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (17220, 1549, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (17221, 1549, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.7600', '', '3.8800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17222, 1549, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (17223, 1549, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (18557, 1548, 6928, '72296204', 'Impressor Oil', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18556, 1548, 6920, '09661075', 'Today Intimate Wash ', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (18555, 1548, 6812, '1409', 'Sudocrem 60g', 'standard', NULL, '34.8000', '34.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', '34.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 (18554, 1548, 6718, '1315', 'Canderel Tablets 105\'s', 'standard', NULL, '12.9000', '12.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.8000', '', '12.9000', 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 (18553, 1548, 6659, '1256', 'Jointace Omega-3 Capsules 30\'s', 'standard', NULL, '63.0000', '63.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', '63.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 (18552, 1548, 6563, '1160', 'Polygynax Pessaries 12\'s', 'standard', NULL, '81.0000', '81.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.0000', '', '81.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18551, 1548, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '7.5000', 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 (18550, 1548, 6484, '1081', 'Seven Seas JointCare Suplex 30\'s', 'standard', NULL, '59.8000', '59.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '119.6000', '', '59.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 (17242, 1550, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '14.3000', '14.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.8000', '', '14.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 (18547, 1548, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '8.5000', NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17265, 1551, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '9.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 (17266, 1551, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '22.3000', 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 (17264, 1551, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '9.3000', 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 (17263, 1551, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '9.3000', 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 (17267, 1552, 6937, '79341788', 'Zahara Mixture', '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 (17268, 1552, 6938, '52430931', 'Zahara Gee Capsules', '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 (17311, 1553, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', 0, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17312, 1553, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '24.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 (17313, 1553, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (17314, 1553, 5830, '427', 'Pregnacare Plus', 'standard', 0, '143.3000', '143.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '286.6000', '', '143.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 (17315, 1553, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', 0, '38.0000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', '38.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 (17316, 1553, 5959, '556', 'Zincovit Tablets', 'standard', 0, '29.8000', '29.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.0000', '', '29.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 (17317, 1553, 5967, '564', 'Zulu 100mg Tablet', 'standard', 0, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (17318, 1553, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.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 (17319, 1553, 6082, '679', 'Coldrilif Syrup', 'standard', 0, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.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 (17320, 1553, 6095, '692', 'Cartef-DS Tablet', 'standard', 0, '9.2000', '9.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', '9.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 (17321, 1553, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', 0, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.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 (17322, 1553, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', 0, '9.3000', '9.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '9.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 (17323, 1553, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '40.3000', '40.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '282.1000', '', '40.3000', 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 (17324, 1553, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', 0, '66.5300', '66.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5900', '', '66.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17325, 1553, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', 0, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (17326, 1553, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', 0, '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '6.4000', 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 (17327, 1553, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '11.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 (17328, 1553, 6286, '883', 'Kidivite Syrup 200ml', 'standard', 0, '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '11.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 (17329, 1553, 6389, '986', 'Salocold Syrup', 'standard', 0, '9.7000', '9.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.0000', '', '9.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 (17330, 1553, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', 0, '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', '6.3800', 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 (17331, 1553, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', 0, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (17332, 1553, 6446, '1043', 'Dermiron Plus', 'standard', 0, '4.9000', '4.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '4.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 (17333, 1553, 6453, '1050', 'Primolut N 5mg 30\'s', 'standard', 0, '60.8000', '60.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.8000', '', '60.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 (17334, 1553, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', 0, '21.7000', '21.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.5000', '', '21.7000', 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 (17335, 1553, 6514, '1111', 'Salicylics Ointment 40g', 'standard', 0, '9.3100', '9.3100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8600', '', '9.3100', 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 (17336, 1553, 6581, '1178', 'Cirotamin Caplets 28\'s', 'standard', 0, '11.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.5000', '', '11.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 (17337, 1553, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', 0, '12.0000', '12.0000', '5.0000', 1, '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 (17338, 1553, 6812, '1409', 'Sudocrem 60g', 'standard', 0, '34.8000', '34.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', '34.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 (17339, 1553, 6849, '1446', 'Kelcuf Junior Syrup 100ml', 'standard', 0, '6.5000', '6.5000', '5.0000', 1, '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 (17340, 1553, 6879, '34265543', 'Zulu Extra ', 'standard', 0, '5.0000', '5.0000', '10.0000', 1, '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 (17341, 1553, 6893, '233', 'Impressor Capsules', 'standard', 0, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17342, 1553, 6928, '72296204', 'Impressor Oil', 'standard', 0, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17343, 1553, 6929, '32027899', 'Gynicare', 'standard', 0, '52.0000', '52.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', '52.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 (17344, 1553, 6930, '68829408', 'Pylin Capsules ', 'standard', 0, '44.0000', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '44.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 (17345, 1553, 6931, '90823267', 'Pylin Ointment ', 'standard', 0, '34.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '34.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 (17346, 1553, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', 'standard', NULL, '22.3000', '22.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '267.6000', '', '22.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 (17347, 1554, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (17348, 1554, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (17349, 1554, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (17350, 1555, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (17701, 1556, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '18.4800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17700, 1556, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2500', '', '4.4500', 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 (17699, 1556, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.3000', 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 (17698, 1556, 6630, '1227', 'Cetapol PM Syrup 100ml', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (17697, 1556, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '20.9200', '20.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8400', '', '20.9200', 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 (17696, 1556, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.9000', 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 (17695, 1556, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '7.9800', 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 (17694, 1556, 6357, '954', 'Cotton Wool 200g', 'standard', NULL, '13.0000', '13.0000', '1.0000', 1, '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 (17693, 1556, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '10.4000', '10.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.6000', '', '10.4000', 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 (17692, 1556, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6000', '', '6.4000', 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 (17691, 1556, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '40.3000', '40.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.3000', '', '40.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17690, 1556, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '18.6000', '18.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '18.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 (17689, 1556, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.2000', 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 (17688, 1556, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '2.7000', NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17687, 1556, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (17686, 1556, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (17685, 1556, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17684, 1556, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.3000', 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 (17683, 1556, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', 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 (17682, 1556, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (17637, 1557, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17638, 1557, 6574, '1171', 'Mucolex Cough Syrup150ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (17639, 1557, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17640, 1557, 6837, '1434', 'Maxmox 250mg (50x10)', 'standard', NULL, '87.4000', '87.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.4000', '', '87.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17641, 1557, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.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 (17642, 1575, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (17379, 1558, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (17380, 1558, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (17381, 1559, 6926, '49821716', 'Mist Sennaco (Extem)', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (17382, 1559, 6684, '1281', 'Amoxicillin 500mg Letap', 'standard', NULL, '32.7000', '32.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '32.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 (17383, 1559, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (17384, 1559, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.6000', '', '10.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 (17385, 1559, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17386, 1559, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (17387, 1559, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '15.0700', '15.0700', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0700', '', '15.0700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17388, 1559, 6332, '929', 'Adom Koo Capsules', '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 (17389, 1560, 5595, '192', 'Emgiflox 250mg Capsules 50x10', 'standard', 0, '158.6000', '158.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.6000', '', '158.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 (17390, 1560, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', 0, '60.5000', '60.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.5000', '', '60.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17391, 1560, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17392, 1560, 5714, '311', 'Letamol Elixir 125ml', 'standard', 0, '3.9600', '3.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.9600', 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 (17393, 1560, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '24.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '24.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 (17394, 1560, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17395, 1560, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '3.0800', '3.0800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '3.0800', 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 (17396, 1560, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', 0, '5.5000', '5.5000', '2.0000', 1, '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 (17397, 1560, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', 0, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17398, 1560, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '19.9800', '19.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9600', '', '19.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17399, 1560, 6296, '893', 'Amoksiklav 457mg/5ml Suspension 70ml', 'standard', 0, '28.5000', '28.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.0000', '', '28.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 (17400, 1560, 6384, '981', 'Gebexime Suspension 50ml', 'standard', 0, '9.6600', '9.6600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.9600', '', '9.6600', 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 (17401, 1560, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', 0, '3.7000', '3.7000', '2.0000', 1, '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 (17402, 1560, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', 0, '7.9800', '7.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9400', '', '7.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17403, 1560, 6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', 'standard', 0, '7.9800', '7.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '7.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17404, 1560, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', 0, '21.7000', '21.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7000', '', '21.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 (17405, 1560, 6509, '1106', 'Gacet 1g Suppository', 'standard', 0, '13.2500', '13.2500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2500', '', '13.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 (17406, 1560, 6609, '1206', 'Skyclav 228.5mg', 'standard', 0, '15.0700', '15.0700', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.2800', '', '15.0700', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17407, 1560, 6678, '1275', 'Azirocin Suspension', 'standard', 0, '14.3000', '14.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.8000', '', '14.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 (17408, 1560, 6778, '1375', 'Nugel Susp 200ml', 'standard', 0, '26.1800', '26.1800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.3600', '', '26.1800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17409, 1560, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', 0, '10.2000', '10.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.4000', '', '10.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 (17410, 1561, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '224.8000', '', '56.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 (17411, 1561, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '24.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 (17412, 1561, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '218.0000', '', '10.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 (17413, 1561, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17414, 1561, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '9.1000', '9.1000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.7000', '', '9.1000', 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 (17415, 1561, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '14.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 (17416, 1561, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '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 (17417, 1561, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (17418, 1561, 6592, '1189', 'Co-Trimoxazole (Septrin) Suspension 100ml', 'standard', NULL, '3.1800', '3.1800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9000', '', '3.1800', 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 (17419, 1561, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '195.0000', '', '65.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17420, 1561, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '10.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 (17421, 1561, 5762, '359', 'Mentat Tablets', 'standard', NULL, '28.5400', '28.5400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0800', '', '28.5400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17422, 1561, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', 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 (17423, 1561, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (17424, 1561, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (17425, 1561, 6144, '741', 'Amoxicillin 250mg Capsules 50 x10 M&G', 'standard', NULL, '88.9000', '88.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.9000', '', '88.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 (17426, 1561, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (17427, 1561, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '7.5000', '7.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '7.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 (17428, 1561, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '8.8000', '8.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '8.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 (17429, 1561, 6183, '780', 'Leopard Balm 30g', 'standard', NULL, '5.7500', '5.7500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '5.7500', 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 (17430, 1561, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '16.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '16.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 (17431, 1561, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (17432, 1561, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '9.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 (17433, 1561, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (17434, 1561, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (17435, 1561, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.8000', '', '7.9800', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17436, 1561, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', 0, '12.8000', '12.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '76.8000', '', '12.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 (17437, 1561, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '86.8000', '', '21.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 (17438, 1561, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '24.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 (17439, 1561, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '3.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 (17440, 1561, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (17441, 1561, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', 0, '31.8000', '31.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '31.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 (17442, 1561, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.1000', '3.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '3.1000', 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 (17443, 1561, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (17675, 1562, 6663, '1260', 'Cotton Wool 25gm', 'standard', 0, '2.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.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 (17674, 1562, 6617, '1214', 'Babyvite 50ml Drops', 'standard', 0, '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '9.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 (17673, 1562, 6431, '1028', 'Ladinas 2X10', 'standard', 0, '5.3000', '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '5.3000', 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 (17672, 1562, 6427, '1024', 'Azilex Suspension 15ml', 'standard', 0, '17.5000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.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 (17671, 1562, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', 0, '7.9800', '7.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.8000', '', '7.9800', 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 (17670, 1562, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (17669, 1562, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '10.7000', 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 (17668, 1562, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', 0, '12.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '12.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 (17667, 1562, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.6000', 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 (17666, 1562, 5797, '394', 'Normo Tears Eye Drop', 'standard', 0, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (17665, 1562, 5729, '326', 'Lofnac 100mg Suppository', 'standard', 0, '13.8000', '13.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '13.8000', 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 (17664, 1562, 5640, '237', 'Gebedol Tablet', 'standard', 0, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.3000', 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 (17617, 1563, 6627, '1224', 'Paracetamol 500mg Tablets Ayrton', 'standard', NULL, '97.0000', '97.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.0000', '', '97.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17614, 1563, 6524, '1121', 'Perfectil Plus Caps', 'standard', NULL, '234.0000', '234.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '234.0000', '', '234.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17615, 1563, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.3000', 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 (17616, 1563, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17603, 1563, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '19.9800', '19.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9600', '', '19.9800', 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 (17604, 1563, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (17605, 1563, 6302, '899', 'Klovinal Pessaries', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (17606, 1563, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.2000', 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 (17607, 1563, 6339, '936', 'Pregnacare Tablets 19\'s', 'standard', NULL, '80.0000', '80.0000', '1.0000', 1, '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 (17608, 1563, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '3.7000', 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 (17609, 1563, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8600', '', '7.9800', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17610, 1563, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '17.6000', 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 (17611, 1563, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8000', '', '20.9000', 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 (17612, 1563, 6467, '1064', 'Benylin Infant 125ml', 'standard', NULL, '50.6000', '50.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '50.6000', 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 (17613, 1563, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.6000', '', '9.7200', 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 (17578, 1563, 5418, '15', 'Aboniki', 'standard', NULL, '6.5000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.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 (17579, 1563, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '58.4000', '58.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '58.4000', 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 (17580, 1563, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '12.4000', 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 (17581, 1563, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', NULL, '49.0000', '49.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17582, 1563, 5556, '153', 'Daktarin Cream 15g', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (17583, 1563, 5557, '154', 'Dalacin C 300mg Capsules 16\'s', 'standard', NULL, '175.6100', '175.6100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '175.6100', '', '175.6100', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17584, 1563, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.2000', '', '34.6000', 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 (17585, 1563, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.8000', 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 (17586, 1563, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8400', '', '14.9600', 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 (17587, 1563, 5676, '273', 'Imax Delay Spray', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17588, 1563, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.3000', 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 (17589, 1563, 5725, '322', 'Lisinopril 20mg Teva', 'standard', NULL, '19.2000', '19.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.6000', '', '19.2000', 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 (17590, 1563, 5779, '376', 'Mycolex Cream 20g', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.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 (17591, 1563, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (17592, 1563, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.4000', '', '20.2000', 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 (17593, 1563, 5956, '553', 'Zincofer Syrup 200ml', 'standard', NULL, '24.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.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 (17594, 1563, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '12.0000', '12.0000', '2.0000', 1, '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 (17595, 1563, 6009, '606', 'Rooter Life', 'standard', NULL, '35.9000', '35.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.9000', '', '35.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17596, 1563, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.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 (17597, 1563, 6131, '728', 'Drez Solution 100ml', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (17598, 1563, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.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 (17599, 1563, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', 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 (17600, 1563, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17601, 1563, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9000', '', '10.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17602, 1563, 6289, '886', 'Fluxamox 500mg Capsules 200\'s', 'standard', NULL, '148.0000', '148.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '148.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17500, 1564, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9400', '', '7.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17501, 1564, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (17502, 1564, 5712, '309', 'Lenor', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (17503, 1564, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.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 (17504, 1564, 6012, '609', 'Scimether 80/480mg Tablet', 'standard', NULL, '16.6600', '16.6600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6600', '', '16.6600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17620, 1565, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.8000', '', '22.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 (17506, 1566, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (17507, 1566, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '13.9800', '13.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.9800', '', '13.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17662, 1567, 6682, '1279', 'Goldy Forte DS', 'standard', NULL, '15.9800', '15.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '159.8000', '', '15.9800', 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 (17652, 1567, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0400', '', '27.2600', 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 (17653, 1567, 5984, '581', 'Starwin Milk of Magnesia 360ml', 'standard', NULL, '24.1100', '24.1100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.2200', '', '24.1100', 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 (17654, 1567, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.6000', 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 (17655, 1567, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.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 (17656, 1567, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.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 (17657, 1567, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '50.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 (17658, 1567, 6246, '843', 'Nexium 20mg Tablets 14\'s', 'standard', NULL, '156.6000', '156.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '156.6000', '', '156.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 (17659, 1567, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (17660, 1567, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.3000', '6.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '6.3000', 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 (17661, 1567, 6400, '997', 'Metagyl 400mg Tablets', 'standard', NULL, '58.0000', '58.0000', '1.0000', 1, '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 (17520, 1568, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (17521, 1568, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '5.9500', '5.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.9000', '', '5.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17522, 1568, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (17523, 1568, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '6.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 (17524, 1568, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17525, 1568, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (17526, 1568, 5873, '470', 'Sibi Woman Capsules', 'standard', NULL, '12.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17527, 1568, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '3.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 (17528, 1568, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (17529, 1568, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (17530, 1568, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.2000', '', '2.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 (17531, 1568, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17532, 1568, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '26.1500', '26.1500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1500', '', '26.1500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17533, 1568, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (17534, 1568, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '2.1000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17778, 1569, 6906, '43254936', 'Amcof Chesty Cough and Cold 200ml Syrup', 'standard', 0, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.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 (17777, 1569, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', 0, '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '10.8000', 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 (17776, 1569, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', 0, '6.6000', '6.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '330.0000', '', '6.6000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17775, 1569, 6843, '1440', 'Robb Inhaler', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (17774, 1569, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', 0, '14.3000', '14.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.5000', '', '14.3000', 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 (17773, 1569, 6666, '1263', 'Examination Gloves', 'standard', 0, '50.0000', '50.0000', '2.0000', 1, '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 (17772, 1569, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '15.0700', '15.0700', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.3500', '', '15.0700', 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 (17771, 1569, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', 0, '83.6000', '83.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '83.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 (17770, 1569, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.2000', 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 (17769, 1569, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', 0, '16.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '16.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 (17768, 1569, 6385, '982', 'Amcof Junior Syrup', 'standard', 0, '7.4000', '7.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '7.4000', 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 (17767, 1569, 6383, '980', 'Amcof Baby Syrup', 'standard', 0, '9.8000', '9.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '9.8000', 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 (17766, 1569, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '3.5200', 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 (17765, 1569, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', 0, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (17764, 1569, 6368, '965', 'Viscof S 100ml Syrup', 'standard', 0, '12.8400', '12.8400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '12.8400', 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 (17763, 1569, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', 0, '26.9000', '26.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.6000', '', '26.9000', 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 (17762, 1569, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', 0, '168.0000', '168.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '168.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17761, 1569, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', 0, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (17760, 1569, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', 0, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17759, 1569, 6151, '748', 'Jeditone Syrup 200ml', 'standard', 0, '12.6000', '12.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '12.6000', 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 (17758, 1569, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.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 (17757, 1569, 6078, '675', 'Mr. Q', 'standard', 0, '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '55.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 (17756, 1569, 6008, '605', 'Linctus Junior Syr. 100ml ECL', 'standard', 0, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (17755, 1569, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (17754, 1569, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (17753, 1569, 5946, '543', 'Wellman Capsules', 'standard', NULL, '90.2000', '90.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.4000', '', '90.2000', 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 (17752, 1569, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (17742, 1569, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', 0, '14.5000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.5000', '', '14.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 (17743, 1569, 5451, '48', 'Arfan 20/120mg', 'standard', 0, '7.3200', '7.3200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '7.3200', 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 (17744, 1569, 5472, '69', 'Baseboom Gel', 'standard', 0, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (17745, 1569, 5555, '152', 'Daflon 500mg Tablets 30\'s', 'standard', 0, '107.0000', '107.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '107.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17746, 1569, 5576, '173', 'Dicnac 100mg Suppositories', 'standard', 0, '8.7000', '8.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '8.7000', 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 (17747, 1569, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.4000', 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 (17748, 1569, 5775, '372', 'Multivite Tablets Letap', 'standard', 0, '22.1000', '22.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.1000', '', '22.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17749, 1569, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (17750, 1569, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '10.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 (17751, 1569, 5898, '495', 'Taabea Herbal Mixture', 'standard', 0, '20.2000', '20.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '20.2000', 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 (17741, 1569, 5447, '44', 'Apetamin Syrup 200ml', 'standard', 0, '28.7000', '28.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '143.5000', '', '28.7000', 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 (17576, 1570, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '85.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17577, 1571, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '56.2000', '56.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '224.8000', '', '56.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 (17618, 1563, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '52.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17619, 1563, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '4.0000', 1, '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 (17621, 1565, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '21.7000', '21.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7000', '', '21.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17622, 1572, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17623, 1572, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.3000', '', '22.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 (17624, 1573, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '1.0000', 1, '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 (17625, 1574, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (17626, 1574, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.3200', '', '7.3200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17627, 1574, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (17628, 1574, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.1000', '', '2.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17636, 1557, 5456, '53', 'Aspanol All In One Syrup', 'standard', NULL, '10.6000', '10.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '10.6000', 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 (17643, 1575, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (17644, 1575, 5705, '302', 'Kofof Adult Syrup 150ml', '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 (17645, 1575, 5713, '310', 'Letacam (Piroxicam)', 'standard', NULL, '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', '6.6500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17646, 1576, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', 0, '18.9000', '18.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', '18.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 (17647, 1576, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.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 (17648, 1576, 6205, '802', 'Citro C Tablets 25\'s', 'standard', 0, '50.5000', '50.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '252.5000', '', '50.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 (17649, 1576, 6273, '870', 'Vikil 20', 'standard', 0, '27.5000', '27.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '275.0000', '', '27.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 (17650, 1576, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', 0, '22.3000', '22.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '535.2000', '', '22.3000', 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 (17651, 1576, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.0000', '', '9.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 (17663, 1567, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '6.6000', 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 (17676, 1577, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.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 (17677, 1577, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.2000', '', '22.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 (17678, 1577, 6004, '601', 'PMF 200g', 'standard', NULL, '12.5400', '12.5400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.5400', '', '12.5400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17679, 1577, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (17680, 1577, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.4000', '', '16.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 (17681, 1577, 6711, '1308', 'Bisoprolol 2.5mg Tablets 28\'s Teva', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (17702, 1556, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (17703, 1578, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '8.8000', '8.8000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '8.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 (17704, 1578, 6920, '09661075', 'Today Intimate Wash ', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (17705, 1578, 6644, '1241', 'Secnidazole 1g Tablets 2\'s (Lavina) ECL', 'standard', NULL, '5.2000', '5.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '5.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 (17706, 1578, 6617, '1214', 'Babyvite 50ml Drops', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '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 (17707, 1578, 6548, '1145', 'Metoclopramide 10mg Tablets 28\'s Exeter', 'standard', NULL, '9.8000', '9.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '9.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 (17708, 1578, 5545, '142', 'Cororange Drops', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (17709, 1578, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.8000', '', '50.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17710, 1578, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17711, 1578, 6909, '16662605', 'Osteocare Tablets (India) 30s', 'standard', NULL, '13.4000', '13.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '13.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17712, 1578, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', 'standard', NULL, '18.4800', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '18.4800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17713, 1578, 5508, '105', 'Cardioace Capsules 80\'s', 'standard', NULL, '77.9100', '77.9100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.8200', '', '77.9100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17714, 1578, 6880, '88345256', 'B-Clar 250 (clarithromycin 250mg)', 'standard', NULL, '15.0000', '15.0000', '5.0000', 1, '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 (17715, 1578, 6580, '1177', 'Lipitor 20mg 30\'s', 'standard', NULL, '328.9000', '328.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '328.9000', '', '328.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 (17716, 1578, 6116, '713', 'Norvasc 10mg Tablets 30\'s', 'standard', NULL, '399.3000', '399.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '399.3000', '', '399.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 (17717, 1578, 6885, '84388732', 'Glimer-2 (Glimeperide 2mg)', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (17718, 1578, 6015, '612', 'Sirdalud 2mg Tablets 30\'s', 'standard', NULL, '72.8000', '72.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '72.8000', '', '72.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 (17719, 1578, 6300, '897', 'BG Glutamin Plus Tablets 30\'s', 'standard', NULL, '19.7000', '19.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4000', '', '19.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 (17720, 1578, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17721, 1578, 6784, '1381', 'Ashton and Parsons Teething Gel 10ml', 'standard', NULL, '58.0000', '58.0000', '1.0000', 1, '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 (17722, 1578, 5897, '494', 'Syringe and Needle 5ml Letaject', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (17723, 1579, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.0000', '', '20.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 (17724, 1579, 6900, '47596555', 'Badruf Cream', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (17725, 1579, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.0000', '', '60.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17726, 1579, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (17727, 1579, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '2.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 (17728, 1579, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (17729, 1579, 6421, '1018', 'Martins liver salt Plain', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17730, 1579, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17731, 1579, 6414, '1011', 'Infa V Wash 50ml', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (17732, 1579, 6411, '1008', 'Infa V Wash 100ml', 'standard', NULL, '17.6000', '17.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '17.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 (17733, 1579, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (17734, 1579, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (17735, 1579, 5418, '15', 'Aboniki', 'standard', NULL, '6.5000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '6.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 (17736, 1579, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '3.0000', 1, '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 (17737, 1579, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (17738, 1579, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17739, 1579, 6176, '773', 'Gogynax Cream 30g', 'standard', NULL, '5.7400', '5.7400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4800', '', '5.7400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17740, 1579, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 'standard', NULL, '4.9000', '4.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '4.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 (17779, 1569, 6913, '90899721', 'Listerine Original/ Fresh Burst 250mll', 'standard', NULL, '22.3000', '22.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '89.2000', '', '22.3000', 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 (17780, 1569, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '8.4000', '8.4000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '8.4000', 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 (17781, 1580, 6708, '1305', 'Loratadine 10mg Tablets 30\'s', 'standard', NULL, '9.0000', '9.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17782, 1580, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '6.4300', '6.4300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7200', '', '6.4300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17783, 1580, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (17784, 1580, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17785, 1580, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (17786, 1580, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17787, 1580, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (17788, 1580, 6881, '54874377', 'Dacillin (clindamycin 300mg)', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (17789, 1580, 6663, '1260', 'Cotton Wool 25gm', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (17790, 1580, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.1600', '', '9.7200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17791, 1580, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (17792, 1580, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17793, 1580, 6568, '1165', 'Lexofen 150ml Suspension', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (17794, 1580, 6300, '897', 'BG Glutamin Plus Tablets 30\'s', 'standard', NULL, '19.7000', '19.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.4000', '', '19.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 (17795, 1580, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (17796, 1580, 6746, '1343', 'Livertone Tonic 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (17797, 1580, 6673, '1270', 'Kofof Child Suppresant 100ml Entrance', 'standard', NULL, '7.9400', '7.9400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.8200', '', '7.9400', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17798, 1580, 5841, '438', 'Prostafit', 'standard', NULL, '19.8000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.6000', '', '19.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 (17799, 1580, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.4000', '', '5.7000', 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 (17800, 1580, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100\'s Aspar', 'standard', NULL, '11.0000', '11.0000', '3.0000', 1, '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 (17801, 1580, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.2000', '', '34.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 (17802, 1580, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.5000', '', '28.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 (17803, 1580, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.4000', '', '20.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 (17804, 1580, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17805, 1580, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (17806, 1580, 6010, '607', 'Rooter Tytonic', '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 (17807, 1581, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (17808, 1582, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.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 (17809, 1583, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.4000', '', '15.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 (17810, 1584, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '1.0000', 1, '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 (17811, 1585, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (17812, 1586, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (17813, 1587, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.9800', '', '7.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17814, 1588, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.2000', '', '20.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 (17815, 1589, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (17816, 1590, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (17817, 1591, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '2.2000', '2.2000', '10.0000', 1, '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 (17818, 1591, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (17819, 1591, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (17820, 1592, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '2.2000', '2.2000', '3.0000', 1, '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 (17872, 1593, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '14.8000', '14.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '14.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 (17871, 1593, 6619, '1216', 'Trustzole 400mg Suspension', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.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 (17870, 1593, 6510, '1107', 'GV- Fluc 150mg Capsules', 'standard', NULL, '4.7000', '4.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '4.7000', 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 (17869, 1593, 6506, '1103', 'Fumet Suspension', 'standard', NULL, '3.8800', '3.8800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '3.8800', 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 (17868, 1593, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '9.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 (17867, 1593, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '3.5200', '3.5200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.2000', '', '3.5200', 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 (17866, 1593, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.7200', '0.7200', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '0.7200', 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 (17865, 1593, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', 0, '2.6900', '2.6900', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.8000', '', '2.6900', 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 (17864, 1593, 6143, '740', 'Gauze Bandage 4 Inches Xtra Care', 'standard', NULL, '11.2000', '11.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.4000', '', '11.2000', 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 (17863, 1593, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.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 (17862, 1593, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (17861, 1593, 5926, '523', 'Vermox 500mg Tablets', 'standard', 0, '10.9000', '10.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.4000', '', '10.9000', 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 (17860, 1593, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17859, 1593, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.4000', '', '16.7000', 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 (17858, 1593, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (17857, 1593, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '7.4000', '7.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '7.4000', 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 (17856, 1593, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '4.9200', '4.9200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5200', '', '4.9200', 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 (17840, 1594, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', '44.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 (17841, 1594, 6931, '90823267', 'Pylin Ointment ', 'standard', NULL, '34.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '34.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 (17842, 1594, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '275.0000', '', '55.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 (17843, 1594, 6928, '72296204', 'Impressor Oil', 'standard', NULL, '55.0000', '55.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '275.0000', '', '55.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 (17844, 1594, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (17845, 1594, 5553, '150', 'Cyprodine (Cyproheptadine) Capsules 30\\\'', 'standard', NULL, '39.0000', '39.0000', '2.0000', 1, '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 (17846, 1594, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', '85.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 (17847, 1594, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '10.2000', '10.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '10.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 (17848, 1594, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (17849, 1594, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '24.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 (17850, 1594, 6830, '1427', 'Ganaman Capsules', 'standard', NULL, '29.7000', '29.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.4000', '', '29.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 (17851, 1594, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (17852, 1594, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.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 (17853, 1594, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '10.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 (17854, 1594, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.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 (17855, 1595, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6000', '', '7.3200', 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 (17873, 1593, 6848, '1445', 'Kelcuf Baby Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (17874, 1593, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '1.3000', '1.3000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '1.3000', NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17875, 1596, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (17876, 1596, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '10.9000', '10.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.7000', '', '10.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17877, 1596, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17878, 1596, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (17879, 1596, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (17880, 1596, 5471, '68', 'Baby Cough Linctus 100ml ECL', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17881, 1596, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (17882, 1596, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '50.5000', '50.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.5000', '', '50.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17883, 1596, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (17884, 1596, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (17885, 1597, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (17886, 1598, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.2000', '', '20.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 (17887, 1599, 6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (17888, 1599, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', '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 (17889, 1599, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.8000', '', '10.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 (17890, 1599, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '8.9000', '8.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '8.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17891, 1599, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (17892, 1599, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (17893, 1599, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (17894, 1599, 5997, '594', 'Linctus Junior Syrup 100ml', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (17895, 1599, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '4.9200', '4.9200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '4.9200', 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 (17896, 1599, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '7.4300', '7.4300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.1500', '', '7.4300', 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 (17897, 1599, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.9200', '', '7.3200', 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 (17898, 1599, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '3.0800', 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 (17899, 1599, 6927, '19085995', 'Ayulabs Gripe Water', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.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 (17900, 1599, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (17901, 1599, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '6.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 (17902, 1599, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.9600', '15.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '15.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17903, 1599, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (17904, 1599, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (17905, 1599, 6212, '809', 'Hemoforce Family Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '9.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 (17906, 1599, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '9.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 (17907, 1599, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (17908, 1599, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (17938, 1600, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', 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 (17935, 1600, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '2.1000', 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 (17936, 1600, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '0.6000', 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 (17937, 1600, 6825, '1422', 'Oxytetra Cap 250mg', '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, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17931, 1600, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17932, 1600, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (17933, 1600, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.9000', 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 (17934, 1600, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.8000', 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 (17917, 1601, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (17918, 1602, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (17919, 1602, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '16.0000', '16.0000', '3.0000', 1, '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 (17920, 1602, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (17921, 1602, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17922, 1602, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', 'standard', NULL, '0.5500', '0.5500', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '0.5500', 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 (17923, 1602, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (17924, 1602, 6902, '06640421', 'Grandpa Syrup', 'standard', NULL, '8.9000', '8.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '8.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17925, 1602, 6671, '1268', 'Kofof Baby', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '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 (17926, 1602, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (17927, 1602, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '9.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 (17928, 1602, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '0.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 (17929, 1602, 6615, '1212', 'Fada Martins Herbal Mixture', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (17930, 1602, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', NULL, '2.0000', '2.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17939, 1603, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (17940, 1603, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', '12.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 (17941, 1603, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (17942, 1603, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '10.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 (17943, 1603, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '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 (17944, 1603, 6101, '698', 'Feroclear Syrup 200ml', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17945, 1603, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '8.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 (17946, 1603, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (17947, 1603, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '66.0000', '66.0000', '1.0000', 1, '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 (17948, 1603, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17949, 1603, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (17950, 1603, 6280, '877', 'Hayan Capsules', 'standard', NULL, '40.0000', '40.0000', '1.0000', 1, '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 (17951, 1603, 5716, '313', 'Letaron 200ml Syrup', 'standard', NULL, '4.3200', '4.3200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.8000', '', '4.3200', 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 (17952, 1604, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.3000', '', '22.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 (17953, 1604, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (17954, 1604, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.8000', '', '9.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17955, 1605, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', 0, '12.4000', '12.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '12.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17956, 1605, 5554, '151', 'Cytotec', 'standard', 0, '341.0000', '341.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '341.0000', '', '341.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17957, 1605, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', 0, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (17958, 1605, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', 0, '34.0000', '34.0000', '2.0000', 1, '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 (17959, 1605, 5841, '438', 'Prostafit', 'standard', 0, '19.8000', '19.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '99.0000', '', '19.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 (17960, 1605, 5881, '478', 'Solak Mixture', 'standard', 0, '14.8500', '14.8500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.2500', '', '14.8500', 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 (17961, 1605, 6113, '710', 'Plaster roll 3Inches Xtra care', 'standard', 0, '9.8000', '9.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '9.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 (17962, 1605, 6131, '728', 'Drez Solution 100ml', 'standard', 0, '18.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '18.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 (17963, 1605, 6273, '870', 'Vikil 20', 'standard', 0, '27.5000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '137.5000', '', '27.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 (17964, 1605, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '56.2000', '56.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '281.0000', '', '56.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 (17965, 1605, 6472, '1069', 'Canesten 20mg Cream', 'standard', 0, '28.0000', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '28.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 (17966, 1605, 6538, '1135', 'Drez Solution 30ml', 'standard', 0, '10.3000', '10.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.5000', '', '10.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 (17967, 1605, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', 0, '7.8000', '7.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '7.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 (17968, 1605, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', 0, '4.4500', '4.4500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2500', '', '4.4500', 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 (17969, 1605, 6694, '1291', 'Prowoman 50+ Capsules 30\'s ', 'standard', 0, '52.8000', '52.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '158.4000', '', '52.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 (17970, 1605, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', 0, '16.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '16.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 (17971, 1605, 5830, '427', 'Pregnacare Plus', 'standard', NULL, '143.3000', '143.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '143.3000', '', '143.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 (17972, 1606, 6503, '1100', 'Procomil Tablets 30\'s', 'standard', NULL, '50.0000', '50.0000', '2.0000', 1, '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 (17973, 1607, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (17974, 1607, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (17975, 1607, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (17976, 1607, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (17977, 1607, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '2.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 (17978, 1608, 6240, '837', 'Metronidazole 400mg tabs 21\'s Exeter', 'standard', NULL, '11.9500', '11.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.8500', '', '11.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18019, 1609, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (18020, 1609, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '0.6000', 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 (18021, 1609, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18018, 1609, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (18014, 1609, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (18015, 1609, 6202, '799', 'Starwin Milk of Magnesia 120ml', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (18016, 1609, 6332, '929', 'Adom Koo Capsules', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (18017, 1609, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.7000', 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 (18013, 1609, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.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 (18011, 1609, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (18012, 1609, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (18001, 1609, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', '6.7600', 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 (18002, 1609, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.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 (18003, 1609, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (18004, 1609, 5618, '215', 'Flemex Adult Cough Syrup 100ml', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.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 (18005, 1609, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (18006, 1609, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.3000', 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 (18007, 1609, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18008, 1609, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.2600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18009, 1609, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (18010, 1609, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (18022, 1609, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (18023, 1609, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', 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 (18024, 1610, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (18025, 1610, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (18026, 1610, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '31.8000', '31.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '31.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 (18027, 1610, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '16.3000', '16.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.3000', '', '16.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 (18028, 1610, 6598, '1195', 'Epifenac Eye 1mg/ml Drop', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (18029, 1610, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (18030, 1610, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (18031, 1610, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (18032, 1610, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (18148, 1611, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', 0, '59.8000', '59.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '598.0000', '', '59.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 (18147, 1611, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', 0, '10.9000', '10.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '10.9000', 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 (18146, 1611, 6075, '672', 'Kiss Condom Classic', 'standard', 0, '2.3000', '2.3000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.4000', '', '2.3000', NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18145, 1611, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', 0, '27.2600', '27.2600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '272.6000', '', '27.2600', 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 (18144, 1611, 5795, '392', 'Nizoral Cream 15gm', 'standard', 0, '35.0000', '35.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '350.0000', '', '35.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 (18143, 1611, 5556, '153', 'Daktarin Cream 15g', 'standard', 0, '30.0000', '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '300.0000', '', '30.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 (18046, 1612, 6373, '970', 'Letamol Tablets 100\'s', 'standard', NULL, '79.4200', '79.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4200', '', '79.4200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18047, 1612, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (18048, 1612, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '19.9800', '19.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9600', '', '19.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18049, 1612, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (18050, 1612, 6905, '07702426', 'Xzole F Metronidazole/ Furazolidone', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (18051, 1612, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.2800', '', '6.7600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18052, 1612, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.4000', '', '20.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 (18053, 1612, 6377, '974', 'Letavin 500mg (Griseofulvin) Tablets', 'standard', NULL, '66.0000', '66.0000', '1.0000', 1, '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 (18054, 1612, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (18674, 1613, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.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 (18673, 1613, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18672, 1613, 6768, '1365', 'Methylated Spirit 125ml ECL', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (18671, 1613, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18670, 1613, 6565, '1162', 'Tegretol CR 200mg Divitabs 50\'s', 'standard', NULL, '88.0800', '88.0800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0800', '', '88.0800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18669, 1613, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.9000', '', '10.3000', 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 (18668, 1613, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '1.3000', '1.3000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '1.3000', 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 (18667, 1613, 6442, '1039', 'NoSpa 40mg 100\'s', 'standard', NULL, '83.6000', '83.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '83.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 (18666, 1613, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '2.1000', 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 (18665, 1613, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '843.0000', '', '56.2000', 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 (18664, 1613, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '33.7000', '33.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.7000', '', '33.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18663, 1613, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.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 (18662, 1613, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.8000', 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 (18661, 1613, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (18660, 1613, 6265, '862', 'Folic Acid Tablets 50X10 ECL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18659, 1613, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.8000', '', '10.9000', 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 (18658, 1613, 6254, '851', 'Extraflex Glucosamine Chondroitin Capsules 30s', 'standard', NULL, '36.8000', '36.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '36.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18657, 1613, 6248, '845', 'Teething Mixture 100ml ECL', 'standard', NULL, '12.8000', '12.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.6000', '', '12.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 (18656, 1613, 6173, '770', 'Betasol Cream 30g', 'standard', NULL, '4.4100', '4.4100', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6400', '', '4.4100', 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 (18655, 1613, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', 'standard', NULL, '5.8000', '5.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '5.8000', 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 (18654, 1613, 6132, '729', 'Crepe Bandage 3 Inches Xtra Care', 'standard', NULL, '4.3500', '4.3500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.0500', '', '4.3500', 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 (18653, 1613, 6107, '704', 'Lexofen Plus Tablets 2x10', 'standard', NULL, '12.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.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 (18652, 1613, 6089, '686', 'Cebrotonin 800mg Tablets 30\'s', 'standard', NULL, '73.5000', '73.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '73.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 (18651, 1613, 6005, '602', 'Sulphur Ointment 40g', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (18650, 1613, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (18649, 1613, 5963, '560', 'Zipman Capsules', 'standard', NULL, '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', '15.9500', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18648, 1613, 5911, '508', 'Tinatett Venecare 750ml', 'standard', NULL, '28.6000', '28.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.8000', '', '28.6000', 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 (18647, 1613, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18646, 1613, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.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 (18645, 1613, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.5000', '', '16.7000', 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 (18644, 1613, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '181.5000', '', '60.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 (18643, 1613, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.2000', 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 (18642, 1613, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '12.4000', 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 (18091, 1614, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', 'standard', 0, '34.0000', '34.0000', '2.0000', 1, '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 (18092, 1614, 6922, '60528151', 'Santriax 1000 (Ceftriaxone 1000mg Injection)', 'standard', NULL, '8.2000', '8.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '164.0000', '', '8.2000', 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 (18093, 1614, 6918, '28262304', 'Gsunate 60 Inj (Atesunate 60mg Injection)', 'standard', NULL, '9.3000', '9.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '9.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 (18094, 1614, 6919, '69407201', 'Gsunate 120 Inj (Atesunate 120mg Injection)', 'standard', NULL, '14.5000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '145.0000', '', '14.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 (18095, 1614, 6942, '01539886', 'Dicnac Injection (Diclofenac)', 'standard', NULL, '6.7000', '6.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '6.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 (18096, 1615, 6921, '10168287', 'Sanfurox 750 (Cefuroxime 750mg Injection)', 'standard', NULL, '9.7500', '9.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.5000', '', '9.7500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18097, 1616, 6831, '1428', 'Eskadol Blister(25x1x10)', 'standard', NULL, '2.1000', '2.1000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '2.1000', 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 (18098, 1616, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (18099, 1616, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '4.9500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18100, 1616, 6030, '627', 'Zipferon Capsule', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18101, 1616, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18102, 1617, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '71.0000', '71.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '142.0000', '', '71.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18103, 1617, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '11.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 (18104, 1617, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '46.5000', '46.5000', '2.0000', 1, '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 (18105, 1617, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.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 (18106, 1617, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (18107, 1617, 5619, '216', 'Flemex Jnr. Cough Syrup 100ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (18108, 1617, 6674, '1271', 'Plaster roll Extra care 1Inch', 'standard', NULL, '4.4500', '4.4500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.7000', '', '4.4500', 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 (18109, 1617, 6573, '1170', 'Zubes Extra Strong Cough Lozenges', 'standard', NULL, '21.4000', '21.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '21.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 (18110, 1617, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18111, 1617, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (18112, 1617, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18113, 1617, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '7.9800', 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 (18114, 1617, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '1.0000', 1, '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 (18115, 1617, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18116, 1617, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.2100', '', '34.2100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18117, 1617, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (18118, 1617, 6346, '943', 'Blumoon 50mg', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (18119, 1617, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '18.0000', '18.0000', '1.0000', 1, '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 (18120, 1617, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (18121, 1617, 6749, '1346', 'Jet 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (18122, 1617, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '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 (18123, 1617, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '8.4000', '8.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.6000', '', '8.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 (18124, 1617, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.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 (18125, 1617, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18126, 1618, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', 0, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18127, 1618, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '15.0000', '15.0000', '1.0000', 1, '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 (18128, 1618, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (18129, 1618, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '2.0000', 1, '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 (18130, 1618, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', 0, '19.9800', '19.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.9800', '', '19.9800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18131, 1618, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', 0, '7.5000', '7.5000', '2.0000', 1, '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 (18132, 1618, 6696, '1293', 'Abyvita Capsules', 'standard', 0, '4.9500', '4.9500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '4.9500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18133, 1618, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', 'standard', 0, '4.5000', '4.5000', '3.0000', 1, '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 (18134, 1618, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', 0, '6.4300', '6.4300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8600', '', '6.4300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18135, 1619, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.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 (18136, 1619, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (18137, 1619, 6151, '748', 'Jeditone Syrup 200ml', 'standard', NULL, '12.6000', '12.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '12.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 (18138, 1620, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (18139, 1620, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (18140, 1621, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (18141, 1621, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', '3.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 (18142, 1621, 6106, '703', 'Lexocap 20x10', 'standard', NULL, '1.5000', '1.5000', '7.0000', 1, '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 (18149, 1622, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (18150, 1623, 5536, '133', 'Colestop 10mg 30\'s (Atovastin)', 'standard', 0, '87.0000', '87.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.0000', '', '87.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18151, 1623, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', 0, '377.0200', '377.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '377.0200', '', '377.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18152, 1623, 5948, '545', 'Wormplex Suspension', 'standard', 0, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (18153, 1623, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (18154, 1623, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (18155, 1623, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', 0, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', 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 (18156, 1623, 6930, '68829408', 'Pylin Capsules ', 'standard', 0, '44.0000', '44.0000', '2.0000', 1, '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 (18157, 1623, 6931, '90823267', 'Pylin Ointment ', 'standard', 0, '34.0000', '34.0000', '2.0000', 1, '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 (18158, 1624, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0400', '', '6.7600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18159, 1624, 6091, '688', 'Diclolex Power Heat Gel 30g', 'standard', NULL, '6.9000', '6.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '6.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 (18165, 1626, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (18164, 1625, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', NULL, '3.7900', '3.7900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.7900', '', '3.7900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18163, 1625, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18166, 1626, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7500', '', '4.9500', 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 (18167, 1626, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.8000', '', '27.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 (18168, 1626, 6917, '81980248', 'Atorvastatin 40mg Tablets 28s WOCKHARDT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18169, 1626, 6191, '788', 'Shal\\\'Artem Dry Syrup', 'standard', NULL, '7.7000', '7.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', '7.7000', 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 (18170, 1626, 6384, '981', 'Gebexime Suspension 50ml', 'standard', NULL, '9.6600', '9.6600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.3200', '', '9.6600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18171, 1626, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (18172, 1627, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18173, 1628, 6427, '1024', 'Azilex Suspension 15ml', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (18174, 1628, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18175, 1628, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18176, 1628, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.5000', '', '15.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 (18177, 1628, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18178, 1628, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18179, 1628, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.8000', '', '16.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 (18180, 1628, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100\'s Aspar', 'standard', NULL, '17.8000', '17.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.4000', '', '17.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 (18181, 1628, 5633, '230', 'Galvus Met 50/1000mg Tablets 60s', 'standard', NULL, '377.0200', '377.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '377.0200', '', '377.0200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18182, 1628, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '42.8000', '42.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.6000', '', '42.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 (18183, 1628, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', 'standard', NULL, '19.9800', '19.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.9400', '', '19.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18184, 1628, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (18185, 1628, 6260, '857', 'Hydrogen Peroxide 200ml ECL', 'standard', NULL, '6.4000', '6.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '6.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18186, 1628, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18187, 1628, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (18188, 1629, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18189, 1629, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '7.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18190, 1629, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.4000', '', '10.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 (18191, 1629, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18192, 1629, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18193, 1629, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (18194, 1629, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', 'standard', NULL, '9.8000', '9.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.6000', '', '9.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 (18195, 1629, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18196, 1629, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18197, 1629, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (18198, 1629, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (18199, 1630, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '14.8000', '14.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.2000', '', '14.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 (18200, 1630, 5689, '286', 'Joy Ointment', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.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 (18201, 1630, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.4000', '', '56.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 (18202, 1630, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18203, 1630, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '6.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 (18204, 1631, 5834, '431', 'Proman Capsules 30s', 'standard', NULL, '41.5800', '41.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.5800', '', '41.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 (18205, 1631, 5835, '432', 'Proman 50+ Capsules 30\'s', 'standard', NULL, '43.7000', '43.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.7000', '', '43.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 (18206, 1631, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.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 (18207, 1631, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '3.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 (18208, 1631, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '11.0000', '11.0000', '4.0000', 1, '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 (18209, 1631, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (18210, 1631, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '16.3000', '16.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.6000', '', '16.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 (18211, 1631, 5611, '208', 'Ferrous Sulphate 200mg Tab 30\'s EXE', 'standard', NULL, '7.8000', '7.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '7.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 (18212, 1632, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '1.0000', 1, '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 (18213, 1632, 6593, '1190', 'Milk of Magnesia 125ml Letap', 'standard', NULL, '2.8000', '2.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '2.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 (18214, 1632, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.8000', '', '11.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 (18215, 1633, 6937, '79341788', 'Zahara Mixture', '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 (18216, 1633, 6939, '15510705', 'Zahara Man Capsules', '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 (18217, 1634, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18218, 1635, 6247, '844', 'Enafen (Ibuprufen) 400mg Tablets', 'standard', NULL, '103.0000', '103.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', '103.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18219, 1636, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (18220, 1636, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (18221, 1636, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18222, 1637, 5711, '308', 'Lemsip Cold and flu Max 10\'s', 'standard', NULL, '49.3000', '49.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.3000', '', '49.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 (18223, 1637, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.3000', '', '22.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 (18224, 1637, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18225, 1638, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (18226, 1638, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18729, 1682, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.8000', 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 (18728, 1682, 6595, '1192', 'Azycin 500mg', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.2000', 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 (18727, 1682, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '11.0000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '11.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 (18725, 1682, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.8000', '', '17.2000', 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 (18726, 1682, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.9000', '', '7.9800', 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 (18724, 1682, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '13.5000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '13.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 (18723, 1682, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (18722, 1682, 6340, '937', 'Pregnacare Conception Tablets', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18720, 1682, 6301, '898', 'Comit-50', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (18721, 1682, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '17.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 (18719, 1682, 6298, '895', 'Malar-2 Forte DS Tablets 80/480 6s', 'standard', NULL, '12.8000', '12.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.4000', '', '12.8000', 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 (18718, 1682, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.8000', 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 (18716, 1682, 6290, '887', 'Fluxacin 500mg Capsules 20X10', 'standard', NULL, '168.0000', '168.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '168.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18717, 1682, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '30.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 (18546, 1681, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (18545, 1680, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (18544, 1679, 6904, '53862547', 'Spironolactone 50mg Tablets 30\\\'s Lavina', 'standard', NULL, '18.6000', '18.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.4000', '', '18.6000', 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 (18542, 1679, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18543, 1679, 6811, '1408', 'Spironolactone 100mg Tab NorthStar', 'standard', NULL, '23.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '23.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 (18541, 1679, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.6000', '', '18.9000', 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 (18540, 1679, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', 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 (18251, 1640, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.8000', '', '50.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18252, 1640, 6283, '880', 'Enafen (Ibuprufen) 60ml Syrup', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (18253, 1640, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '7.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18254, 1640, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18255, 1640, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18256, 1640, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (18257, 1640, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '3.4000', 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 (18258, 1640, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (18259, 1640, 5642, '239', 'Gebedol Plus Capsule', 'standard', NULL, '26.9000', '26.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '26.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 (18260, 1640, 5641, '238', 'Gebedol Extra', 'standard', NULL, '34.2100', '34.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '171.0500', '', '34.2100', 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 (18261, 1640, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '7.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 (18262, 1640, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '8.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 (18263, 1640, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', NULL, '9.1000', '9.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.2000', '', '9.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18264, 1640, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (18265, 1640, 6640, '1237', 'Histazine (Cetrizine) 5mg/5ml Syrup 60ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (18266, 1640, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.1400', '', '6.3800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18267, 1640, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18268, 1640, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', NULL, '9.7200', '9.7200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.6000', '', '9.7200', 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 (18269, 1640, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18270, 1640, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18271, 1640, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (18272, 1640, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.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 (18273, 1640, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (18274, 1640, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', '2.3000', NULL, 1, 'pc', '13.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18275, 1641, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18276, 1642, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18277, 1642, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (18278, 1642, 6873, '06796716', 'Menazole 500mg (Mebenazole)10x1 Ayrtons', 'standard', NULL, '2.0000', '2.0000', '10.0000', 1, '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 (18279, 1642, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '0.8000', '0.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '0.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 (18280, 1642, 6383, '980', 'Amcof Baby Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18281, 1642, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18282, 1642, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '14.8000', '14.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '14.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 (18283, 1642, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '21.7000', '21.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7000', '', '21.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 (18284, 1642, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (18285, 1642, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '18.6000', '18.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '18.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 (18286, 1642, 5956, '553', 'Zincofer Syrup 200ml', '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 (18287, 1642, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '13.5300', '13.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0600', '', '13.5300', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18288, 1643, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '15.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 (18289, 1644, 6391, '988', 'Vaginax-100 Tablets 6\'s', 'standard', NULL, '3.7000', '3.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '3.7000', 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 (18290, 1644, 6024, '621', 'Vaginax Cream 30gm', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (18291, 1644, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (18292, 1645, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9900', '', '9.9900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18293, 1646, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '3.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 (18294, 1647, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (18295, 1647, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (18296, 1648, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18297, 1649, 6158, '755', 'Ascoryl Plus syrup 125ml', 'standard', NULL, '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '10.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 (18298, 1649, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.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 (18299, 1649, 5997, '594', 'Linctus Junior Syrup 100ml', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (18300, 1649, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (18301, 1649, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '11.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 (18302, 1649, 6538, '1135', 'Drez Solution 30ml', 'standard', NULL, '10.3000', '10.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.6000', '', '10.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 (18303, 1649, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (18304, 1649, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (18305, 1649, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '28.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18306, 1649, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '28.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 (18307, 1649, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5500', '', '12.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18308, 1649, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '27.0000', '27.0000', '2.0000', 1, '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 (18309, 1649, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '12.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 (18310, 1649, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '6.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 (18311, 1649, 6256, '853', 'Folic Acid Tablets 5mg 28s UK', 'standard', NULL, '7.9000', '7.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '7.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 (18312, 1649, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.9000', '', '22.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 (18313, 1649, 6914, '98729079', 'Listerine Gin/Fresh Burst 500ml', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (18314, 1649, 5882, '479', 'Dispersible Aspirin 75mg Tablets 100\'s Aspar', 'standard', NULL, '17.8000', '17.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.2000', '', '17.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 (18315, 1649, 6467, '1064', 'Benylin Infant 125ml', 'standard', NULL, '50.6000', '50.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.6000', '', '50.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 (18316, 1649, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18317, 1649, 6389, '986', 'Salocold Syrup', 'standard', NULL, '13.4000', '13.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.2000', '', '13.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18318, 1649, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.2000', '', '10.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 (18319, 1649, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.9000', '', '7.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 (18320, 1649, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4800', '', '3.0800', 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 (18321, 1649, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.8000', '', '8.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 (18322, 1649, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (18323, 1649, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (18324, 1649, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.4000', '', '10.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 (18325, 1649, 6419, '1016', 'Menthox Child Cough Syrup 125ml', 'standard', NULL, '6.1000', '6.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.2000', '', '6.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18326, 1649, 6294, '891', 'Menthodex 200ml Syrup ECL', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (18327, 1649, 6396, '993', 'Menthodex 100ml Syrup', 'standard', NULL, '17.2000', '17.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.4000', '', '17.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 (18328, 1649, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18329, 1649, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (18330, 1649, 6010, '607', 'Rooter Tytonic', '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 (18331, 1649, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '9.2000', 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 (18332, 1649, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.2000', '', '7.3200', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18333, 1649, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '13.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 (18334, 1649, 5724, '321', 'Lisinopril 10mg Tablets Teva', 'standard', NULL, '16.7000', '16.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.8000', '', '16.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 (18335, 1649, 6327, '924', 'Flagentyl 500mg Tablets 4\'s secnidazole', 'standard', NULL, '33.7000', '33.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.7000', '', '33.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 (18336, 1649, 6112, '709', 'Metrolex F Tablets 21\'s', 'standard', NULL, '18.0000', '18.0000', '2.0000', 1, '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 (18337, 1649, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (18338, 1649, 6156, '753', 'Zintab 20mg Disp Tablets 100x10', 'standard', NULL, '0.5500', '0.5500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '0.5500', 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 (18339, 1649, 5904, '501', 'Tears Natural II Eye Drops', 'standard', NULL, '24.7000', '24.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.7000', '', '24.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 (18340, 1649, 5797, '394', 'Normo Tears Eye Drop', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (18341, 1649, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '4.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 (18342, 1649, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (18343, 1649, 6908, '78818546', 'Congestyl Syrup 60ml', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (18344, 1649, 6725, '1322', 'Bonjela Adult Gel 15g', 'standard', NULL, '71.1000', '71.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.1000', '', '71.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18345, 1649, 6626, '1223', 'Zithromax  200mg/5ml 15ml Susp. Pfizer', 'standard', NULL, '171.2200', '171.2200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '171.2200', '', '171.2200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18346, 1649, 6805, '1402', 'Res-Q Tabs 2x10\'s', 'standard', NULL, '4.3000', '4.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.2000', '', '4.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 (18347, 1650, 6295, '892', 'Cyprodine 200ml Syrup', 'standard', NULL, '59.8000', '59.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', '59.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 (18348, 1650, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (18349, 1650, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (18350, 1650, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18351, 1650, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (18352, 1650, 6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', 'standard', NULL, '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '7.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18353, 1650, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (18354, 1650, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', '6.7600', 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 (18355, 1650, 6379, '976', 'Dexone 0.5mg', 'standard', NULL, '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '2.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 (18356, 1650, 6389, '986', 'Salocold Syrup', 'standard', NULL, '13.4000', '13.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '13.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 (18357, 1651, 5603, '200', 'Etisala Capsules', 'standard', NULL, '4.4000', '4.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '4.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 (18358, 1651, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18359, 1651, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (18360, 1652, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '15.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 (18361, 1653, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18362, 1653, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '1.3000', '1.3000', '10.0000', 1, '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 (18363, 1653, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.6000', '', '3.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 (18364, 1654, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.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 (18365, 1654, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (18366, 1654, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', 'standard', NULL, '46.5000', '46.5000', '2.0000', 1, '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 (18367, 1654, 6466, '1063', 'Mist Sennaco Mal-Titi', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (18368, 1654, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (18369, 1654, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (18370, 1654, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '85.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18371, 1654, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '49.0000', '49.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '49.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18372, 1654, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '71.0000', '71.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '213.0000', '', '71.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18373, 1654, 6100, '697', 'Haem Up Syrup 200ml', 'standard', NULL, '18.0000', '18.0000', '3.0000', 1, '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 (18374, 1654, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '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 (18375, 1654, 5427, '24', 'Agbeve Tonic', 'standard', NULL, '13.2000', '13.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '13.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 (18376, 1654, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '56.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 (18377, 1654, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.1000', '', '21.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 (18378, 1654, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.9000', '12.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.7000', '', '12.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18379, 1654, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5500', '', '12.8500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18380, 1654, 6210, '807', 'BX Syrup 200ml', 'standard', NULL, '13.5300', '13.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5900', '', '13.5300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18381, 1654, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '5.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 (18382, 1654, 6265, '862', 'Folic Acid Tablets 50X10 ECL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18383, 1654, 5610, '207', 'Feroglobin Capsules 30\'s', 'standard', NULL, '60.5000', '60.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.0000', '', '60.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18384, 1654, 5501, '98', 'Calpol 6+ Suspension 80ml', 'standard', NULL, '49.0000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '49.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18385, 1654, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18386, 1654, 5720, '317', 'Lexsporin Skin Ointment 20g', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (18387, 1654, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '138.4000', '', '34.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 (18388, 1654, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '3.0000', 1, '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 (18389, 1654, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '28.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 (18390, 1654, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.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 (18391, 1654, 6344, '941', 'Perfectil platinum 60 (Radiance)', 'standard', NULL, '292.4000', '292.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '292.4000', '', '292.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 (18392, 1654, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (18393, 1654, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.2800', '', '8.1400', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18394, 1654, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (18395, 1654, 6102, '699', 'Haemo Forte Syrup 200ml', 'standard', NULL, '27.8000', '27.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.6000', '', '27.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 (18396, 1654, 6389, '986', 'Salocold Syrup', 'standard', NULL, '13.4000', '13.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', '13.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 (18397, 1654, 6694, '1291', 'Prowoman 50+ Capsules 30\'s ', 'standard', NULL, '52.8000', '52.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '52.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 (18398, 1654, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18399, 1654, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.5200', '', '27.2600', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18400, 1654, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '294.0000', '', '14.7000', 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 (18401, 1654, 6467, '1064', 'Benylin Infant 125ml', 'standard', NULL, '50.6000', '50.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '50.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 (18402, 1654, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '12.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '12.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 (18403, 1654, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '3.5000', '3.5000', '5.0000', 1, '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 (18404, 1655, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18405, 1656, 5731, '328', 'Lonart DS Tablets', '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 (18406, 1656, 5587, '184', 'Drez Ointment 10g', 'standard', NULL, '8.8000', '8.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '8.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 (18407, 1656, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1600', '', '3.0800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18408, 1656, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '14.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 (18409, 1656, 6361, '958', 'Basecold Tablets (50x4)', 'standard', NULL, '1.0000', '1.0000', '4.0000', 1, '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 (18410, 1656, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18411, 1657, 6440, '1037', 'Diamicron 60mg MR Tablets 30\'s', 'standard', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '88.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18412, 1657, 6524, '1121', 'Perfectil Plus Caps', 'standard', NULL, '234.0000', '234.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '234.0000', '', '234.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18413, 1657, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '118.0000', '', '59.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18414, 1657, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.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 (18415, 1657, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '8.8000', '8.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '8.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 (18416, 1657, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '7.3200', 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 (18417, 1657, 6177, '774', 'Gogynax Tablets 100mg Clotrimazole Vaginal inserts', 'standard', NULL, '4.9000', '4.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '4.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 (18418, 1658, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (18419, 1658, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18420, 1658, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (18421, 1658, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18422, 1658, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '2.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 (18423, 1658, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18424, 1658, 6217, '814', 'Ascorbin Syrup (Child Care)100ml', 'standard', NULL, '3.5000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18696, 1659, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18697, 1659, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', 'standard', NULL, '36.9000', '36.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '36.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18698, 1659, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18699, 1659, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18700, 1659, 6813, '1410', 'Becoatin Syrup 200ml', 'standard', NULL, '17.5000', '17.5000', '1.0000', 1, '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 (18701, 1659, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '3.0000', 1, '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 (18731, 1682, 6870, '04973952', 'Vinmythro 500 Clarithromycin Tablets  500mg ECL', 'standard', NULL, '40.1400', '40.1400', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.4200', '', '40.1400', 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 (18692, 1659, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (18693, 1659, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.4000', '', '12.3000', 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 (18694, 1659, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '50.4000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18695, 1659, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (18436, 1660, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '12.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18437, 1661, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '18.6000', '18.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '18.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 (18438, 1661, 6128, '725', 'Tobufen (Ibuprofen)Syrup 100ml', 'standard', NULL, '9.8000', '9.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '9.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 (18439, 1661, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (18440, 1661, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '36.0000', '36.0000', '1.0000', 1, '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 (18441, 1661, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.5000', '', '13.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 (18442, 1661, 6568, '1165', 'Lexofen 150ml Suspension', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18443, 1661, 6386, '983', 'Paingay Capsules', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (18444, 1661, 5978, '575', 'Magacid Tab 25\'s', 'standard', NULL, '23.1000', '23.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '23.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18445, 1661, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '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 (18446, 1662, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '50.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 (18447, 1662, 5651, '248', 'Glucose Powder 400mg', 'standard', NULL, '6.1700', '6.1700', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3400', '', '6.1700', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18448, 1663, 5849, '446', 'Rhizin Syrup', 'standard', NULL, '3.3000', '3.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '3.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 (18502, 1664, 6679, '1276', 'Gebediclo 100mg Tablets', 'standard', NULL, '9.9900', '9.9900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9900', '', '9.9900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18501, 1664, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (18500, 1664, 6312, '909', 'Malin Junior', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '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 (18499, 1664, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '13.9800', '13.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.9800', '', '13.9800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18498, 1664, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1600', '', '3.0800', 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 (18497, 1664, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.9000', '', '2.6900', 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 (18496, 1664, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18495, 1664, 6095, '692', 'Cartef-DS Tablet', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.2000', 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 (18494, 1664, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (18493, 1664, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (18492, 1664, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18491, 1664, 5980, '577', 'Martins liver salt(Lemon)25\'s', 'standard', NULL, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18490, 1664, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (18489, 1664, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.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 (18488, 1664, 5584, '181', 'Doxycycline 100mg Letap', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18487, 1664, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.5200', '', '6.7600', 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 (18467, 1665, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (18468, 1665, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (18469, 1666, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.6000', '', '15.8000', 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 (18470, 1667, 6559, '1156', 'Perfectil Capsules 30\'s', 'standard', NULL, '87.8000', '87.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', '87.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 (18471, 1668, 6213, '810', 'Hemoforce Plus Syrup 200ml', 'standard', NULL, '9.3000', '9.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.3000', '', '9.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 (18472, 1669, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '1.0000', 1, '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 (18473, 1670, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '1.0000', 1, '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 (18474, 1671, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (18475, 1672, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '369.0000', '', '12.3000', 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 (18476, 1673, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '246.0000', '', '12.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 (18477, 1673, 5487, '84', 'Bonaplex Syrup 250ml', 'standard', NULL, '27.0000', '27.0000', '1.0000', 1, '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 (18478, 1673, 6351, '948', 'Ronfit Cold D Syrup', 'standard', NULL, '10.0000', '10.0000', '2.0000', 1, '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 (18479, 1673, 6349, '946', 'Ronfit Cold Forte Syrup', 'standard', NULL, '6.3000', '6.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.6000', '', '6.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 (18480, 1673, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.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 (18481, 1673, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '14.7000', 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 (18482, 1673, 6099, '696', 'Clear Inhaler 12\'s', 'standard', NULL, '29.5000', '29.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.5000', '', '29.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18483, 1673, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.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 (18484, 1674, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (18485, 1674, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '14.8000', '14.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '14.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 (18486, 1675, 6861, '52042899', 'Prowoman Plus Caps ', 'standard', NULL, '83.6400', '83.6400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '83.6400', '', '83.6400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18503, 1664, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18504, 1664, 6926, '49821716', 'Mist Sennaco (Extem)', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.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 (18505, 1676, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '346.0000', '', '34.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 (18506, 1676, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.5000', '', '12.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 (18507, 1677, 6864, '98367406', 'Fiesta Condom Strawberry ', '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 (18508, 1677, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.7000', '', '2.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 (18509, 1677, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '2.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 (18532, 1678, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', 'standard', NULL, '1.3000', '1.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '1.3000', 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 (18533, 1678, 6517, '1114', 'Res-Q Antacid Suspension', 'standard', NULL, '11.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.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 (18522, 1678, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18523, 1678, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', 'standard', NULL, '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', '28.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18524, 1678, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '36.0000', '36.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18525, 1678, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', '15.8200', 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 (18526, 1678, 5999, '596', 'Antasil Tablets 50\'s', 'standard', NULL, '25.7000', '25.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7000', '', '25.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18527, 1678, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '1.5000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18528, 1678, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18529, 1678, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '1.9000', 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 (18530, 1678, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', '2.6900', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18531, 1678, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18534, 1678, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (18730, 1682, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18715, 1682, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.6000', '', '11.8000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18714, 1682, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (18713, 1682, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '18.6000', '18.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '18.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 (18712, 1682, 6110, '707', 'Maalox Stick Packs 20\'s', 'standard', NULL, '39.5000', '39.5000', '1.0000', 1, '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 (18711, 1682, 6084, '681', 'Amaryl 2mg Tablet 30\'s', 'standard', NULL, '91.8900', '91.8900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '91.8900', '', '91.8900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18710, 1682, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.4000', '', '8.2000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18709, 1682, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (18708, 1682, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '9.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 (18707, 1682, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '14.7000', 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 (18706, 1682, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.8000', 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 (18705, 1682, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18704, 1682, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '81.7800', '', '27.2600', 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 (18703, 1682, 5650, '247', 'Glibenil (Glibenclamide) 5mg Tablets ECL', 'standard', NULL, '8.0000', '8.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.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 (18702, 1682, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '65.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 (18589, 1683, 6320, '917', 'Nifedi-Denk 20mg 100\'s', 'standard', NULL, '117.6000', '117.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '235.2000', '', '117.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 (18590, 1684, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.4000', '', '7.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 (18591, 1684, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.4000', '', '21.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 (18592, 1684, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.6000', '', '29.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 (18593, 1684, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.2000', '', '7.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 (18594, 1684, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.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 (18595, 1684, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '14.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 (18596, 1684, 6752, '1349', 'Taabea Taacum', 'standard', NULL, '25.0000', '25.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '25.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 (18597, 1685, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.5000', '', '9.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 (18598, 1685, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '82.5000', '', '27.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 (18599, 1685, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18600, 1686, 6753, '1350', 'COA Mixture', 'standard', NULL, '85.0000', '85.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '85.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18601, 1687, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.5000', '', '20.1000', 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 (18602, 1687, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '12.5000', '12.5000', '1.0000', 1, '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 (18603, 1688, 5676, '273', 'Imax Delay Spray', 'standard', 0, '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 (18604, 1688, 5716, '313', 'Letaron 200ml Syrup', 'standard', 0, '7.5500', '7.5500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.7500', '', '7.5500', 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 (18605, 1688, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '2.0000', 1, '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 (18606, 1688, 5827, '424', 'Polyfer Capsules 30\'s', 'standard', 0, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.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 (18607, 1688, 5847, '444', 'Redsun Jelly', 'standard', 0, '7.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '7.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 (18608, 1688, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (18609, 1688, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', 0, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (18610, 1688, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', 0, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.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 (18611, 1688, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', 0, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (18612, 1688, 6191, '788', 'Shal\\\'Artem Dry Syrup', 'standard', 0, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (18613, 1688, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', 0, '3.0800', '3.0800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3200', '', '3.0800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18614, 1688, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', 0, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (18615, 1688, 6304, '901', 'Lonart Suspension', 'standard', 0, '17.0000', '17.0000', '2.0000', 1, '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 (18616, 1688, 6333, '930', 'Adom Koo Mixture', 'standard', 0, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (18617, 1688, 6348, '945', 'Loperon', 'standard', 0, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18618, 1688, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', 0, '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', '7.9800', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18619, 1688, 6421, '1018', 'Martins liver salt Plain', 'standard', 0, '13.1000', '13.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1000', '', '13.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18620, 1688, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', 0, '5.7000', '5.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '5.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 (18621, 1688, 6607, '1204', 'Skyclav 625', 'standard', 0, '17.7100', '17.7100', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '17.7100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18622, 1688, 6617, '1214', 'Babyvite 50ml Drops', 'standard', 0, '9.5000', '9.5000', '1.0000', 1, '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 (18623, 1688, 6649, '1246', 'Stopkof Cold and Catarrh Syrup', 'standard', 0, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (18624, 1688, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', 0, '8.8000', '8.8000', '5.0000', 1, '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 (18625, 1688, 6830, '1427', 'Ganaman Capsules', 'standard', 0, '29.7000', '29.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '29.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 (18626, 1688, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', 0, '4.0000', '4.0000', '5.0000', 1, '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 (18627, 1688, 6927, '19085995', 'Ayulabs Gripe Water', 'standard', 0, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18628, 1688, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.6000', '', '22.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 (18629, 1688, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (18630, 1688, 5463, '60', 'Atorvastatin 20mg Tablets 28\'s', 'standard', NULL, '12.4000', '12.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.4000', '', '12.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 (18631, 1688, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (18632, 1688, 6778, '1375', 'Nugel Susp 200ml', 'standard', NULL, '26.1800', '26.1800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.1800', '', '26.1800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18633, 1688, 6111, '708', 'Ancigel Suspension 200ml', 'standard', NULL, '14.5000', '14.5000', '2.0000', 1, '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 (18634, 1688, 6120, '717', 'Ancigel O Suspension 200ml', 'standard', NULL, '18.6000', '18.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.2000', '', '18.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 (18635, 1688, 6188, '785', 'Polygel Suspension 200ml', 'standard', NULL, '9.8000', '9.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '9.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 (18636, 1688, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', 'standard', NULL, '38.0000', '38.0000', '1.0000', 1, '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 (18637, 1688, 5730, '327', 'Lofnac Gel 30mg', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (18638, 1688, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', 'standard', NULL, '59.0000', '59.0000', '1.0000', 1, '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 (18639, 1688, 6338, '935', 'Osteocare Tablets UK', 'standard', NULL, '53.5000', '53.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '53.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18640, 1689, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (18641, 1689, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '2.2000', '2.2000', '10.0000', 1, '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 (18675, 1613, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.9000', '', '22.3000', 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 (18676, 1613, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '151.2000', '', '50.4000', 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 (18677, 1613, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '29.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.7000', '', '2.3000', NULL, 1, 'pc', '29.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18678, 1690, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '246.0000', '', '12.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 (18679, 1690, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.6000', '', '20.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 (18680, 1690, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (18681, 1690, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (18682, 1690, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (18683, 1690, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.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 (18684, 1690, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (18685, 1690, 6572, '1169', 'Zubes Extra Strong Cough Mixture 125ml', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (18686, 1690, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (18687, 1690, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '4.9200', '4.9200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7600', '', '4.9200', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18688, 1690, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '5.0000', 1, '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 (18689, 1690, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18690, 1690, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '7.9800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18691, 1690, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18732, 1691, 6930, '68829408', 'Pylin Capsules ', 'standard', NULL, '44.0000', '44.0000', '1.0000', 1, '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 (18733, 1691, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', 'standard', NULL, '5.8000', '5.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '5.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 (18734, 1691, 6924, '21613850', 'Hydrogen (Extem)', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (18735, 1692, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (18736, 1692, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (18737, 1693, 6010, '607', 'Rooter Tytonic', '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 (18738, 1694, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (18739, 1694, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (18740, 1694, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', '20.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18741, 1694, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '2.0000', 1, '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 (18742, 1695, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', '15.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18743, 1695, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '20.0000', 1, '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 (18744, 1695, 6603, '1200', 'Eskaron Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.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 (18745, 1695, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '2.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 (18746, 1695, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '3.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 (18747, 1695, 6178, '775', 'Ibucap Capsules 20\'s(Monopack)', 'standard', NULL, '2.2000', '2.2000', '4.0000', 1, '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 (18748, 1695, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.5000', '', '8.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 (18749, 1695, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.4000', '', '3.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 (18750, 1695, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.5800', '9.5800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.1600', '', '9.5800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18751, 1695, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '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 (18752, 1695, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '5.0000', 1, '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 (18753, 1695, 5714, '311', 'Letamol Elixir 125ml', 'standard', NULL, '3.9600', '3.9600', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8400', '', '3.9600', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18754, 1695, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.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 (18755, 1695, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (18756, 1695, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (18757, 1695, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '14.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 (18758, 1695, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (18759, 1695, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', '7.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 (18760, 1695, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '4.9200', '4.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8400', '', '4.9200', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18761, 1695, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '6.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 (18777, 1696, 6459, '1056', 'Infa V Ointment', 'standard', NULL, '20.9000', '20.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.9000', '', '20.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18778, 1696, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (18779, 1696, 6557, '1154', 'Ocip TZ', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.6000', 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 (18776, 1696, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (18788, 1697, 6817, '1414', 'Basecold 1x6 Tab', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18789, 1697, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '1.0000', 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 (18787, 1697, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.7200', '0.7200', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '0.7200', NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18786, 1697, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '17.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 (18782, 1697, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (18783, 1697, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '6.9000', 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 (18784, 1697, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '6.6000', 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 (18785, 1697, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', '1.9000', 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 (18775, 1698, 6380, '977', 'Cafaprin Tablets', 'standard', NULL, '13.1400', '13.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.1400', '', '13.1400', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18780, 1699, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '4.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 (18781, 1700, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (18790, 1701, 6809, '1406', 'Bendroflumethiazide 5mg Tabs Bristol ', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18791, 1702, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '9.9000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18792, 1702, 6148, '745', 'Tobin\'s Cod Liver Oil 10X10', 'standard', NULL, '24.3000', '24.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.3000', '', '24.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 (18793, 1702, 5801, '398', 'O-Formin 500mg (Metformin)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18794, 1703, 6779, '1376', 'Actifed Multi Action Tabs 12\'s', 'standard', NULL, '46.0000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '138.0000', '', '46.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18795, 1704, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (18796, 1704, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (18797, 1705, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (18798, 1705, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.7000', '', '28.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 (18799, 1705, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '14.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 (18800, 1705, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6000', '', '7.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 (18801, 1705, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '4.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18802, 1705, 6191, '788', 'Shal\\\'Artem Dry Syrup', 'standard', NULL, '7.7000', '7.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.1000', '', '7.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 (18803, 1705, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (18804, 1705, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18805, 1706, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', 'standard', NULL, '2.6900', '2.6900', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.0700', '', '2.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 (18806, 1707, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18807, 1707, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.9000', '3.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '3.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 (18808, 1708, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (18809, 1708, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.9000', '3.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '3.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 (18810, 1709, 6604, '1201', 'Eskyzole Triple Action Cream 30g', 'standard', NULL, '8.0000', '8.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '8.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 (18811, 1710, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18812, 1711, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18813, 1712, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (18814, 1712, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', '11.1000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18815, 1712, 6834, '1431', 'Eskafan Susp(180mg/1080mg)', 'standard', NULL, '7.4300', '7.4300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2900', '', '7.4300', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18816, 1712, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '1.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 (18817, 1712, 6115, '712', 'Gudapet Syrup 200ml', 'standard', NULL, '7.1000', '7.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.2000', '', '7.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18818, 1712, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (18819, 1712, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (18820, 1712, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '31.8000', '31.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '31.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 (18821, 1712, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18822, 1712, 6655, '1252', 'Mayfer Syrup 200ml', 'standard', NULL, '9.8000', '9.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.8000', '', '9.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 (18823, 1712, 5973, '570', 'Finelife Blood Tonic 200ml', 'standard', NULL, '8.9000', '8.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.9000', '', '8.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 (18824, 1713, 6393, '990', 'Luex Baby Cough Syrup 150ml', 'standard', NULL, '20.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '20.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 (18825, 1713, 5738, '335', 'Luex Child Chesty Cough Syrup 100ml', 'standard', NULL, '20.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '20.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18826, 1713, 5739, '336', 'Luex Child Dry Cough 150ml Syrup', 'standard', NULL, '20.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '20.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 (18827, 1714, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.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 (18828, 1714, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '2.0000', 1, '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 (18829, 1714, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (18830, 1714, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9400', '', '7.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18831, 1714, 5545, '142', 'Cororange Drops', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (18832, 1714, 6417, '1014', 'No. 10 Liver Salt (All Flavors)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 1, '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 (18833, 1714, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (18834, 1714, 6424, '1021', 'Durol Tonic  Junior 200ml', 'standard', NULL, '8.5500', '8.5500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.1000', '', '8.5500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18835, 1714, 5588, '185', 'Drez Ointment 30mg', 'standard', NULL, '14.9600', '14.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9600', '', '14.9600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18836, 1714, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18837, 1714, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8500', '', '14.8500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18838, 1715, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '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 (18839, 1716, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.8000', '', '20.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 (18840, 1716, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '7.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 (18841, 1716, 5465, '62', 'Augmentin  625mgTablets 14\'s', 'standard', NULL, '130.7200', '130.7200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.7200', '', '130.7200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18842, 1716, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '224.8000', '', '56.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 (18843, 1716, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '27.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 (18844, 1716, 6137, '734', 'Foligrow Capsules 30\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '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 (18845, 1716, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (18846, 1716, 5720, '317', 'Lexsporin Skin Ointment 20g', 'standard', NULL, '30.0000', '30.0000', '2.0000', 1, '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 (18847, 1716, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '14.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 (18848, 1716, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.9000', '12.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.6000', '', '12.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18849, 1716, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', '12.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 (18850, 1716, 5419, '16', 'Acidom 20mg Capsules', 'standard', NULL, '22.0000', '22.0000', '2.0000', 1, '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 (18851, 1716, 5580, '177', 'Diphex Cough Syrup', 'standard', NULL, '8.4000', '8.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '8.4000', 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 (18852, 1716, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '10.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 (18853, 1716, 5805, '402', 'Omeprazole 20mg Tablets 28\'s Teva', 'standard', NULL, '10.8000', '10.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.2000', '', '10.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 (18854, 1717, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18855, 1718, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.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 (18856, 1719, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18857, 1720, 5799, '396', 'Nugel-O Suspension 200ml', 'standard', NULL, '27.2600', '27.2600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.2600', '', '27.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 (18858, 1721, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.2000', '', '2.3000', 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 (18859, 1722, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '6.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 (18860, 1723, 5447, '44', 'Apetamin Syrup 200ml', 'standard', NULL, '28.7000', '28.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.7000', '', '28.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 (18899, 1724, 6818, '1415', 'Foliron Capsules', 'standard', NULL, '3.9000', '3.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.7000', '', '3.9000', 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 (18897, 1724, 6677, '1274', 'Azirocin 250mg Capules', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18898, 1724, 6747, '1344', 'Neoferon Syrup 200ml', 'standard', NULL, '12.9800', '12.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.9600', '', '12.9800', 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 (18888, 1724, 6193, '790', 'Shalcip TZ Tablets 10\'s', 'standard', NULL, '6.6000', '6.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '6.6000', 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 (18889, 1724, 6223, '820', 'Indomethacin 250mg Capsules 50x10 Letap', 'standard', NULL, '0.7200', '0.7200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.2000', '', '0.7200', 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 (18890, 1724, 6275, '872', 'Gana Balm 20g', 'standard', NULL, '4.7000', '4.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.4000', '', '4.7000', 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 (18891, 1724, 6354, '951', 'Parafenac', 'standard', NULL, '4.2000', '4.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '4.2000', 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 (18892, 1724, 6532, '1129', 'Ascovit CEE (Vitamin C) 100ml Syrup', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (18893, 1724, 6542, '1139', 'Amoxicillin 125mg/5ml 100ml Suspension EXE', 'standard', NULL, '9.9000', '9.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '9.9000', 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 (18894, 1724, 6652, '1249', 'Normal Saline Nasal Drops 10ml Lavina', 'standard', 0, '3.8000', '3.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.4000', '', '3.8000', 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 (18895, 1724, 6657, '1254', 'Aspanol Jnr. Syrup', 'standard', NULL, '5.4000', '5.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '5.4000', 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 (18896, 1724, 6670, '1267', 'Dicnac 75', 'standard', NULL, '9.5000', '9.5000', '1.0000', 1, '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 (18885, 1724, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (18886, 1724, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (18887, 1724, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.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 (18877, 1725, 6352, '949', 'Roxidol', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (18878, 1725, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '10.0000', 1, '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 (18879, 1725, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (18880, 1725, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (18881, 1725, 6820, '1417', 'Metronidazole 200mg Tablets 10X10 Letap', 'standard', NULL, '5.9000', '5.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9000', '', '5.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 (18882, 1725, 5906, '503', 'Tetracycline Capsules', 'standard', NULL, '15.8200', '15.8200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8200', '', '15.8200', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18883, 1726, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '17.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 (18884, 1726, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (18900, 1724, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '8.3000', '8.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.3000', '', '8.3000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18901, 1727, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (18902, 1727, 6599, '1196', 'Dexatrol Eye / Ear Drop 5ml', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (18903, 1727, 6746, '1343', 'Livertone Tonic 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '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 (18904, 1727, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (18905, 1727, 6819, '1416', 'Peladol Junior', 'standard', NULL, '13.2000', '13.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.2000', '', '13.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 (18906, 1727, 6910, '52852667', 'Osteocare Liquid 200ml ', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '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 (18907, 1727, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '24.1000', '24.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1000', '', '24.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18908, 1727, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '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 (18909, 1727, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (18910, 1727, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (18911, 1727, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.7800', '', '22.7800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18912, 1727, 5968, '565', 'Zymax 200mg/5ml Suspension 15ml', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (18913, 1727, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '14.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 (18914, 1727, 6448, '1045', 'Diagellates Elixir 125ml', 'standard', NULL, '15.0000', '15.0000', '1.0000', 1, '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 (18915, 1727, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '0.6000', 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 (18916, 1727, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (18930, 1728, 6019, '616', 'Cetapol 500mg Tablet 2X10', 'standard', NULL, '2.5300', '2.5300', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.7100', '', '2.5300', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18929, 1728, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.2000', '', '7.3000', 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 (18928, 1728, 5749, '346', 'Major Nasal Drops', 'standard', NULL, '8.1400', '8.1400', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.7000', '', '8.1400', 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 (18927, 1728, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.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 (18926, 1728, 5641, '238', 'Gebedol Extra', 'standard', NULL, '52.8000', '52.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '52.8000', '', '52.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18925, 1728, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18924, 1728, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '24.1000', '24.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1000', '', '24.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18931, 1728, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '4.0000', 1, '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 (18932, 1728, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (18933, 1729, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.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 (18934, 1729, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18955, 1730, 6823, '1420', 'Fluxamox Susp. 250mg/5ml ECL 100ml', 'standard', NULL, '15.8000', '15.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.2000', '', '15.8000', 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 (18952, 1730, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (18953, 1730, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1600', '', '3.0800', 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 (18954, 1730, 6685, '1282', 'Alu Hyd Tablets', 'standard', NULL, '0.6000', '0.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '0.6000', 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 (18943, 1731, 5472, '69', 'Baseboom Gel', 'standard', NULL, '4.5000', '4.5000', '1.0000', 1, '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 (18944, 1731, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '10.0000', 1, '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 (18945, 1732, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.6000', '', '17.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 (18946, 1732, 5715, '312', 'Letamox 500mg plain Tablets', 'standard', NULL, '19.5000', '19.5000', '1.0000', 1, '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 (18947, 1733, 6898, '32866404', 'Mimovite Multivitamin 200ml Syrup', 'standard', NULL, '10.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18956, 1734, 5881, '478', 'Solak Mixture', 'standard', NULL, '14.8500', '14.8500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.7000', '', '14.8500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18957, 1734, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.3200', '', '6.7600', 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 (18958, 1735, 5676, '273', 'Imax Delay Spray', '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 (18959, 1736, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (18960, 1736, 6240, '837', 'Metronidazole 400mg tabs 21\'s Exeter', 'standard', NULL, '11.9500', '11.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9000', '', '11.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19095, 1737, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '267.6000', '', '22.3000', NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19094, 1737, 6893, '233', 'Impressor Capsules', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.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 (19092, 1737, 6408, '1005', 'EPanol 100ml Syrup Plain', 'standard', NULL, '7.9800', '7.9800', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '103.7400', '', '7.9800', NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19093, 1737, 6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', 'standard', NULL, '7.9800', '7.9800', '17.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '135.6600', '', '7.9800', NULL, 1, 'pc', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19091, 1737, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '198.0000', '', '9.9000', 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 (19090, 1737, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '6.0000', 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 (19089, 1737, 5983, '580', 'Rhizin 10mg Tabs10x10', 'standard', NULL, '6.9000', '6.9000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.1000', '', '6.9000', 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 (19087, 1737, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '7.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 (19088, 1737, 5975, '572', 'Durol Tonic 200ml', 'standard', NULL, '12.9000', '12.9000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '258.0000', '', '12.9000', 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 (18979, 1738, 6228, '825', 'Vitamin B-Complex Tablets 100x10 Letap', 'standard', NULL, '28.0000', '28.0000', '2.0000', 1, '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 (18980, 1738, 5775, '372', 'Multivite Tablets Letap', 'standard', NULL, '36.0000', '36.0000', '2.0000', 1, '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 (18981, 1739, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '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 (18982, 1739, 5974, '571', 'Magacid Susp 200ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (18983, 1739, 5808, '405', 'ORS Flavored', 'standard', NULL, '23.9000', '23.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9000', '', '23.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 (18984, 1739, 6020, '617', 'ORS Plain 25\'s', 'standard', NULL, '22.0000', '22.0000', '1.0000', 1, '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 (18985, 1739, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '123.0000', '', '12.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 (18986, 1739, 6162, '759', 'Go Cough Syrup 125ml', 'standard', NULL, '7.3000', '7.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '7.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 (18987, 1739, 5632, '229', 'Gacet 250mg Suppository', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.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 (18988, 1739, 5631, '228', 'Gacet 125mg Suppositories', 'standard', NULL, '8.8000', '8.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', '8.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 (18989, 1739, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '16.0000', '16.0000', '2.0000', 1, '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 (18990, 1739, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '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 (18991, 1739, 6376, '973', 'Letavin (Griseofulvin)125mg Tablets', 'standard', NULL, '1.9200', '1.9200', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.6000', '', '1.9200', 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 (18992, 1739, 5996, '593', 'Malafan Tabs 50\'s', 'standard', NULL, '2.0000', '2.0000', '20.0000', 1, '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 (18993, 1739, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (18994, 1739, 5451, '48', 'Arfan 20/120mg', 'standard', NULL, '7.3200', '7.3200', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '109.8000', '', '7.3200', 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 (18995, 1739, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (18996, 1739, 5985, '582', 'APC TABS 10X10', 'standard', NULL, '12.2000', '12.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', '12.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 (18997, 1739, 5573, '170', 'Diclolex 100mg Tablets 10X10', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (18998, 1739, 6303, '900', 'Lofnac 100mg Tablets', 'standard', NULL, '2.2000', '2.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '2.2000', 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 (18999, 1739, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (19000, 1739, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '80.8000', '', '20.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 (19001, 1739, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.6000', '', '15.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 (19002, 1739, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '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 (19003, 1739, 6381, '978', 'Flucloxacillin 100ml Suspension Letap', 'standard', NULL, '5.3000', '5.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '5.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 (19004, 1739, 6297, '894', 'Malar-2 Suspension 60ml', 'standard', NULL, '11.8000', '11.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.2000', '', '11.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 (19005, 1739, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.8000', '', '7.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 (19006, 1739, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '3.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 (19007, 1739, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.6000', '', '7.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 (19008, 1739, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19009, 1739, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '9.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 (19010, 1739, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '1.3000', '1.3000', '10.0000', 1, '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 (19011, 1740, 5971, '568', 'Asmadrin Tablets 25\'s', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (19012, 1740, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '3.4000', 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 (19013, 1741, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (19014, 1741, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '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 (19015, 1741, 6696, '1293', 'Abyvita Capsules', 'standard', NULL, '4.9500', '4.9500', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '4.9500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19016, 1741, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '6.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 (19017, 1742, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (19018, 1743, 6752, '1349', 'Taabea Taacum', 'standard', NULL, '25.0000', '25.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', '25.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 (19251, 1744, 6825, '1422', 'Oxytetra Cap 250mg', 'standard', NULL, '1.0000', '1.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.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 (19250, 1744, 6699, '1296', 'Folic Acid 5mg Tablet 28\'s Accord', 'standard', NULL, '8.4000', '8.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '8.4000', 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 (19249, 1744, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', 'standard', NULL, '21.7000', '21.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.7000', '', '21.7000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19248, 1744, 6399, '996', 'Nesben (Albendazole) Tablets 200mg', 'standard', NULL, '6.1000', '6.1000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.6000', '', '6.1000', 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 (19247, 1744, 6378, '975', 'Flucloxacillin 250mg Tablets Letap', 'standard', NULL, '31.8000', '31.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.8000', '', '31.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19246, 1744, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', NULL, '5.1000', '5.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.3000', '', '5.1000', 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 (19245, 1744, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (19244, 1744, 6348, '945', 'Loperon', 'standard', NULL, '10.5000', '10.5000', '1.0000', 1, '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 (19243, 1744, 6347, '944', 'Happyrona forte syrup 200ml', 'standard', NULL, '15.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.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 (19242, 1744, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '5.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 (19241, 1744, 6235, '832', 'Vitamin B-Complex Syrup 100ml (Jacket) ECL', 'standard', NULL, '7.4000', '7.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.2000', '', '7.4000', 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 (19240, 1744, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', 'standard', NULL, '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '1.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 (19239, 1744, 6209, '806', 'Zinol (Paracetamol) Suspension 100ml', 'standard', NULL, '8.3000', '8.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.9000', '', '8.3000', 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 (19238, 1744, 6154, '751', 'Paracetamol 500mg M&G Tablets 50x10', 'standard', NULL, '45.0000', '45.0000', '1.0000', 1, '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 (19237, 1744, 6151, '748', 'Jeditone Syrup 200ml', 'standard', NULL, '12.6000', '12.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.2000', '', '12.6000', 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 (19236, 1744, 6117, '714', 'Gudapet Capsules', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (19235, 1744, 6077, '674', 'Fiesta Condom All Night', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (19234, 1744, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (19233, 1744, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (19232, 1744, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '8.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 (19231, 1744, 6026, '623', 'Tacizol Suspension', 'standard', NULL, '3.2000', '3.2000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '3.2000', 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 (19230, 1744, 6025, '622', 'Tacizol 400mg Tablet', 'standard', NULL, '1.3000', '1.3000', '6.0000', 1, '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 (19229, 1744, 6007, '604', 'Penicillin V 125mg Letap', 'standard', NULL, '1.5000', '1.5000', '10.0000', 1, '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 (19228, 1744, 6006, '603', 'Panacin Tabs 25X4', 'standard', NULL, '15.9600', '15.9600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9600', '', '15.9600', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19227, 1744, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', '3.6000', 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 (19226, 1744, 5826, '423', 'Plaster roll Extra care 2Inches', 'standard', NULL, '7.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '7.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 (19225, 1744, 5809, '406', 'Osons Cod Liver Capsules', 'standard', NULL, '15.1000', '15.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.2000', '', '15.1000', 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 (19224, 1744, 5729, '326', 'Lofnac 100mg Suppository', 'standard', NULL, '13.8000', '13.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '13.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 (19223, 1744, 5717, '314', 'Letavit Syrup', 'standard', NULL, '2.8800', '2.8800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5200', '', '2.8800', 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 (19222, 1744, 5673, '270', 'Ibex Capsules 24\'s', 'standard', NULL, '17.7000', '17.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '17.7000', 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 (19221, 1744, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.7000', '', '18.9000', 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 (19220, 1744, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '19.0000', '19.0000', '1.0000', 1, '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 (19219, 1744, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '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 (19218, 1744, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (19217, 1744, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', NULL, '14.5000', '14.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '14.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 (19216, 1744, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', NULL, '4.9200', '4.9200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7600', '', '4.9200', 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 (19059, 1745, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '4.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 (19060, 1745, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19061, 1745, 5601, '198', 'Epiderm Cream 30g', 'standard', NULL, '6.0000', '6.0000', '4.0000', 1, '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 (19062, 1745, 6839, '1436', 'Maxmox Suspension 100ml', 'standard', NULL, '6.4300', '6.4300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.7200', '', '6.4300', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19063, 1745, 5949, '546', 'Wormplex 400 Tablets', 'standard', NULL, '7.3000', '7.3000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '58.4000', '', '7.3000', 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 (19064, 1745, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '6.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 (19065, 1745, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '6.0000', 1, '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 (19066, 1745, 6221, '818', 'Dynewell Tablet 50x10', 'standard', NULL, '17.4000', '17.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '17.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 (19067, 1745, 6222, '819', 'Folic Acid 5mg Tablets 70x10 Letap', 'standard', NULL, '17.0000', '17.0000', '1.0000', 1, '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 (19068, 1745, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (19069, 1746, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', '12.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 (19070, 1746, 6665, '1262', 'Plaster Strips Easy Care', 'standard', NULL, '11.0000', '11.0000', '1.0000', 1, '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 (19071, 1746, 5473, '70', 'Basecold Syrup', '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 (19072, 1746, 6227, '824', 'Promecine Syrup 125ml', 'standard', NULL, '3.4000', '3.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.8000', '', '3.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19073, 1746, 6923, '16693403', 'Mist Mag. Triscillicate MMT (Estem)', 'standard', NULL, '4.0000', '4.0000', '3.0000', 1, '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 (19074, 1746, 6169, '766', 'Vitamin B-Complex S yrup 125ml M & G', 'standard', NULL, '7.4000', '7.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.8000', '', '7.4000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19075, 1746, 6000, '597', 'Vigorix Forte Syr 200ml', 'standard', NULL, '11.1000', '11.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.1000', '', '11.1000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19076, 1746, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '8.4000', '8.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '8.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 (19077, 1746, 6635, '1232', '2B Benzyl Benzoate 25% Lotion 100ml', 'standard', NULL, '13.1000', '13.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.2000', '', '13.1000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19078, 1746, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (19079, 1746, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', NULL, '2.7000', '2.7000', '2.0000', 1, '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 (19080, 1746, 6621, '1218', 'Lumetrust Suspension 150ml', 'standard', NULL, '9.5000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '9.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 (19081, 1746, 6129, '726', 'Kofof Child Syrup 100ml Entrance', 'standard', NULL, '3.4000', '3.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '3.4000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19082, 1746, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '9.6000', '9.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '9.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 (19083, 1746, 6671, '1268', 'Kofof Baby', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (19084, 1746, 6847, '1444', 'Kelcuf Adult Syrup 100ml', 'standard', NULL, '7.5000', '7.5000', '2.0000', 1, '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 (19085, 1746, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.9000', '', '18.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 (19086, 1746, 6394, '991', 'Mycostat 150mg Capsules 1\'s', 'standard', NULL, '7.0000', '7.0000', '2.0000', 1, '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 (19096, 1737, 6909, '16662605', 'Osteocare Tablets (India) 30s', 'standard', NULL, '13.4000', '13.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '13.4000', 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 (19097, 1747, 6374, '971', 'Amoxicillin 250mg (Letap)', 'standard', NULL, '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '1.8000', 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 (19098, 1748, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '8.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 (19099, 1748, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', NULL, '20.9200', '20.9200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.6000', '', '20.9200', 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 (19100, 1748, 6555, '1152', 'Ocip 500mg Tablets 10\'s', 'standard', NULL, '4.0000', '4.0000', '4.0000', 1, '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 (19101, 1748, 6258, '855', 'Hydrocortisone 1% Cream (Lavina)', 'standard', NULL, '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', '10.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19102, 1748, 6557, '1154', 'Ocip TZ', 'standard', NULL, '9.6000', '9.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '9.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 (19103, 1748, 6645, '1242', 'Tetracycline Eye Ointement 5g Troge', 'standard', NULL, '3.3000', '3.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '3.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 (19104, 1748, 6680, '1277', 'Gebediclo 50mg Tablets', 'standard', NULL, '14.3000', '14.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.3000', '', '14.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 (19105, 1748, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.5000', '', '14.7000', 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 (19106, 1748, 6879, '34265543', 'Zulu Extra ', 'standard', NULL, '5.0000', '5.0000', '5.0000', 1, '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 (19107, 1748, 6458, '1055', 'Infa V Pessaries', 'standard', NULL, '22.9000', '22.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.8000', '', '22.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 (19108, 1748, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', 'standard', NULL, '30.0000', '30.0000', '1.0000', 1, '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 (19109, 1748, 6256, '853', 'Folic Acid Tablets 5mg 28s UK', 'standard', NULL, '7.9000', '7.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.6000', '', '7.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19110, 1748, 5448, '45', 'Apetatrust 200ml Syrup', 'standard', NULL, '14.5000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '14.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 (19111, 1748, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '49.0000', '49.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '49.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19112, 1748, 6607, '1204', 'Skyclav 625', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19113, 1748, 6304, '901', 'Lonart Suspension', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (19114, 1748, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '12.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 (19115, 1748, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.2800', '', '6.7600', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19116, 1748, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '55.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19117, 1748, 5931, '528', 'Viscof D 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8400', '', '12.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19118, 1748, 6368, '965', 'Viscof S 100ml Syrup', 'standard', NULL, '12.8400', '12.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.8400', '', '12.8400', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19119, 1748, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', 'standard', NULL, '5.5000', '5.5000', '2.0000', 1, '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 (19120, 1749, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (19121, 1750, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (19122, 1750, 6667, '1264', 'Gyprone Plus Tablets', 'standard', NULL, '3.0000', '3.0000', '5.0000', 1, '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 (19123, 1750, 6345, '942', 'Blumoon 100mg', 'standard', NULL, '4.4000', '4.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '4.4000', 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 (19124, 1750, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1500', '2.1500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.7500', '', '2.1500', 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 (19125, 1750, 6136, '733', 'Chlo Eye (Chloramphenicol) drops', 'standard', NULL, '3.8000', '3.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '3.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 (19126, 1750, 5519, '116', 'Chlo Ear Chloramphenicol Drops', 'standard', NULL, '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '3.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 (19127, 1750, 5995, '592', 'Haemoglobin Syrup Aryton 200ml', 'standard', NULL, '7.6000', '7.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '7.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 (19128, 1751, 6754, '1351', 'Happyrona Forte Tablets 20X1X20', 'standard', NULL, '4.5000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '4.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 (19427, 1752, 6597, '1194', 'Nostamine Eye/Nose Drop 10ml', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.9000', 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 (19426, 1752, 6570, '1167', 'Luex Nasal Inhaler (Jar)', 'standard', NULL, '4.5000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.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 (19425, 1752, 6568, '1165', 'Lexofen 150ml Suspension', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (19424, 1752, 6528, '1125', 'Levon 2 Postpill CRD', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (19423, 1752, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', NULL, '5.7000', '5.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '5.7000', 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 (19422, 1752, 6454, '1051', 'C-Pheniramine Syrup 100ml (Piriton)', 'standard', 0, '5.2000', '5.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '5.2000', 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 (19421, 1752, 6438, '1035', 'Cataflam 50mg Tablets 20\'s', 'standard', NULL, '56.6300', '56.6300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.6300', '', '56.6300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19420, 1752, 6431, '1028', 'Ladinas 2X10', 'standard', NULL, '5.3000', '5.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '5.3000', 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 (19419, 1752, 6389, '986', 'Salocold Syrup', 'standard', NULL, '13.4000', '13.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.8000', '', '13.4000', 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 (19418, 1752, 6385, '982', 'Amcof Junior Syrup', 'standard', NULL, '13.5000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '13.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 (19417, 1752, 6366, '963', 'Flotac Capsules 75mg 20\'s', 'standard', NULL, '116.8000', '116.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '116.8000', '', '116.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19416, 1752, 6365, '962', 'Enacef (cefuroxime) 500mg Tablets', 'standard', NULL, '42.8000', '42.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '128.4000', '', '42.8000', 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 (19415, 1752, 6363, '960', 'Bells Vitamin C Syrup', 'standard', NULL, '22.7800', '22.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5600', '', '22.7800', 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 (19414, 1752, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', '56.2000', 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 (19413, 1752, 6304, '901', 'Lonart Suspension', 'standard', 0, '17.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.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 (19412, 1752, 6298, '895', 'Malar-2 Forte DS Tablets 80/480 6s', 'standard', 0, '12.8000', '12.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '12.8000', 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 (19411, 1752, 6292, '889', 'Fluxacin 100ml Suspension', 'standard', NULL, '11.0000', '11.0000', '2.0000', 1, '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 (19410, 1752, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (19409, 1752, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.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 (19408, 1752, 6264, '861', 'Permoxyl (Amoxicillin) Suspension 100ml', 'standard', NULL, '7.9800', '7.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9400', '', '7.9800', 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 (19407, 1752, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19406, 1752, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '49.0000', '49.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '49.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 (19405, 1752, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19404, 1752, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.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 (19403, 1752, 6100, '697', 'Haem Up Syrup 200ml', 'standard', NULL, '25.0000', '25.0000', '2.0000', 1, '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 (19402, 1752, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '6.9000', 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 (19401, 1752, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (19400, 1752, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.3000', 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 (19399, 1752, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (19398, 1752, 6038, '635', 'Omega Oil Liniment 50ml', 'standard', NULL, '9.7000', '9.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.4000', '', '9.7000', 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 (19397, 1752, 6010, '607', 'Rooter Tytonic', 'standard', NULL, '16.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.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 (19396, 1752, 6009, '606', 'Rooter Life', 'standard', NULL, '35.9000', '35.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.9000', '', '35.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19395, 1752, 6002, '599', 'Ferrodex Syrup 200ml', 'standard', NULL, '9.0000', '9.0000', '2.0000', 1, '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 (19394, 1752, 5997, '594', 'Linctus Junior Syrup 100ml', 'standard', NULL, '6.6000', '6.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '6.6000', 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 (19393, 1752, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', 0, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (19392, 1752, 5977, '574', 'Samalin Adult Cough Syr 125ml', 'standard', NULL, '7.8000', '7.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '7.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 (19391, 1752, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.2000', 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 (19390, 1752, 5970, '567', 'Virol blood tonic 200ml', 'standard', NULL, '12.8500', '12.8500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5500', '', '12.8500', 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 (19389, 1752, 5969, '566', 'Teedar Syrup 125ml', 'standard', NULL, '10.7000', '10.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.1000', '', '10.7000', 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 (19388, 1752, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '4.9000', 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 (19387, 1752, 5958, '555', 'Zincovit Syrup 200ml', 'standard', NULL, '21.7000', '21.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.1000', '', '21.7000', 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 (19386, 1752, 5949, '546', 'Wormplex 400 Tablets', 'standard', 0, '9.3000', '9.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.1000', '', '9.3000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19385, 1752, 5948, '545', 'Wormplex Suspension', 'standard', 0, '10.3000', '10.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.9000', '', '10.3000', 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 (19384, 1752, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '147.0000', '', '14.7000', 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 (19383, 1752, 5854, '451', 'Rough Rider Condoms 3\'s', 'standard', NULL, '14.8000', '14.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', '14.8000', 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 (19382, 1752, 5853, '450', 'Rooter Mixture', 'standard', NULL, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (19381, 1752, 5849, '446', 'Rhizin Syrup', 'standard', 0, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.6000', 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 (19380, 1752, 5847, '444', 'Redsun Jelly', 'standard', NULL, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (19379, 1752, 5828, '425', 'Polyfer Forte Syrup 150ML', 'standard', NULL, '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', '12.3000', 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 (19378, 1752, 5808, '405', 'ORS Flavored', 'standard', NULL, '23.9000', '23.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.9000', '', '23.9000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19377, 1752, 5757, '354', 'Mark 2 Inhaler', 'standard', NULL, '42.0000', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19376, 1752, 5751, '348', 'Malar-2 Forte Tablets 40/240mg 12\'s', 'standard', 0, '12.8000', '12.8000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.2000', '', '12.8000', 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 (19375, 1752, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '15.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 (19374, 1752, 5731, '328', 'Lonart DS Tablets', 'standard', 0, '24.0000', '24.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '24.0000', NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19373, 1752, 5705, '302', 'Kofof Adult Syrup 150ml', 'standard', NULL, '9.6000', '9.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '9.6000', 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 (19372, 1752, 5677, '274', 'Imboost Herbal Mixture 500ml', 'standard', NULL, '15.4000', '15.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '15.4000', 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 (19371, 1752, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '18.9000', 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 (19370, 1752, 5632, '229', 'Gacet 250mg Suppository', 'standard', 0, '11.8000', '11.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.6000', '', '11.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 (19369, 1752, 5624, '221', 'Foligrow Syrup 200ml', 'standard', NULL, '24.1000', '24.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '48.2000', '', '24.1000', 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 (19368, 1752, 5582, '179', 'Domi 30mg Suppositories', 'standard', NULL, '19.0000', '19.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '19.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 (19367, 1752, 5581, '178', 'Domi 10 Suppositories', 'standard', NULL, '16.0000', '16.0000', '1.0000', 1, '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 (19366, 1752, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', '3.9100', 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 (19365, 1752, 5532, '129', 'Coartem 80/480 6s', 'standard', NULL, '65.0000', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '65.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 (19364, 1752, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.8000', '', '9.2000', 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 (19363, 1752, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', NULL, '71.0000', '71.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19269, 1753, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '6.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19268, 1753, 6445, '1042', 'Vermox Suspension', 'standard', NULL, '29.5000', '29.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '29.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 (19267, 1753, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', 'standard', NULL, '6.3800', '6.3800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.7600', '', '6.3800', 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 (19266, 1753, 6333, '930', 'Adom Koo Mixture', 'standard', NULL, '7.7000', '7.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.8000', '', '7.7000', 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 (19265, 1753, 6273, '870', 'Vikil 20', 'standard', NULL, '27.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '27.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 (19264, 1753, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', NULL, '49.0000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '49.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 (19263, 1753, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19262, 1753, 6125, '722', 'Lufart Suspension', 'standard', NULL, '12.5000', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '12.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 (19261, 1753, 5988, '585', 'Samalin Lozenges 2x10\'s', 'standard', NULL, '3.6000', '3.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '3.6000', 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 (19260, 1753, 5986, '583', 'Rapinol Tab 25X4\'s', 'standard', NULL, '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.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 (19259, 1753, 5731, '328', 'Lonart DS Tablets', 'standard', NULL, '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '24.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 (19258, 1753, 5674, '271', 'Ibucap Capsules 10C (BamBam)', 'standard', NULL, '2.1500', '2.1500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '2.1500', 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 (19257, 1753, 5589, '186', 'Drez Powder 10g', 'standard', NULL, '9.4000', '9.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.6000', '', '9.4000', 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 (19256, 1753, 5585, '182', 'Dragon Tablets', 'standard', NULL, '28.5000', '28.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '28.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 (19252, 1744, 6836, '1433', 'Fluclox Suspension 100ml Eskay', 'standard', NULL, '5.2300', '5.2300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.6900', '', '5.2300', 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 (19253, 1744, 6838, '1435', 'Maxmox 250mg (10x10)', 'standard', NULL, '17.7100', '17.7100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4200', '', '17.7100', 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 (19254, 1744, 6868, '70949987', 'Fiesta Condom Classic', 'standard', NULL, '4.0000', '4.0000', '2.0000', 1, '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 (19255, 1744, 6907, '01827710', 'Congestyl Tablets 12s', 'standard', NULL, '12.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '62.5000', '', '12.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 (19270, 1753, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', 'standard', NULL, '5.0000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.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 (19271, 1753, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', 'standard', NULL, '22.3000', '22.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.9000', '', '22.3000', 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 (19272, 1754, 5515, '112', 'Cetapol Syrup', 'standard', NULL, '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '5.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 (19273, 1754, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '6.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 (19274, 1754, 6316, '913', 'Tothema Box of 20 Bulbs', 'standard', NULL, '74.0000', '74.0000', '1.0000', 1, '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 (19275, 1754, 5826, '423', 'Plaster roll Extra care 2Inches', 'standard', NULL, '7.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '7.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 (19276, 1754, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', 'standard', NULL, '66.5300', '66.5300', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5300', '', '66.5300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19277, 1754, 6386, '983', 'Paingay Capsules', 'standard', NULL, '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '4.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 (19278, 1754, 6509, '1106', 'Gacet 1g Suppository', 'standard', NULL, '13.2500', '13.2500', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.7500', '', '13.2500', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19279, 1754, 6832, '1429', 'Eskadol Nyte', 'standard', NULL, '2.6000', '2.6000', '10.0000', 1, '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 (19280, 1754, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.2000', '', '34.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 (19281, 1754, 5676, '273', 'Imax Delay Spray', 'standard', NULL, '34.0000', '34.0000', '2.0000', 1, '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 (19282, 1754, 6204, '801', 'Painoff Tablets 25X4\'s', 'standard', NULL, '18.6000', '18.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.6000', '', '18.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 (19283, 1755, 6929, '32027899', 'Gynicare', 'standard', NULL, '52.0000', '52.0000', '1.0000', 1, '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 (19284, 1756, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (19285, 1756, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (19463, 1757, 6496, '1093', 'Dymol 50/500 Mg Tablets 10\'s', 'standard', 0, '5.7000', '5.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.5000', '', '5.7000', 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 (19462, 1757, 6478, '1075', 'Fluconazole 150mg Capsules Teva', 'standard', 0, '9.7200', '9.7200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.1600', '', '9.7200', 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 (19461, 1757, 6375, '972', 'Metronidazole 100ml Suspension Letap', 'standard', 0, '5.1000', '5.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '5.1000', 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 (19460, 1757, 6312, '909', 'Malin Junior', 'standard', 0, '7.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.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 (19459, 1757, 6234, '831', 'Amoksiklav 625mg Tablet 14s', 'standard', 0, '49.0000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '49.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 (19458, 1757, 6201, '798', 'Samalin Junior cough syrup 125ml', 'standard', 0, '9.1000', '9.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.5000', '', '9.1000', 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 (19457, 1757, 6121, '718', 'Strobin Lozenges 25x6', 'standard', NULL, '34.1000', '34.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.1000', '', '34.1000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19456, 1757, 6083, '680', 'Methylated Spirit Rokmer 60ml', 'standard', 0, '2.7000', '2.7000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.1000', '', '2.7000', 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 (19455, 1757, 6020, '617', 'ORS Plain 25\'s', 'standard', 0, '22.0000', '22.0000', '1.0000', 1, '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 (19454, 1757, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', 0, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (19453, 1757, 5969, '566', 'Teedar Syrup 125ml', 'standard', 0, '10.7000', '10.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.5000', '', '10.7000', 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 (19452, 1757, 5886, '483', 'Stopkof Adult Cough Syrup 100ml', 'standard', 0, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.8000', 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 (19451, 1757, 5853, '450', 'Rooter Mixture', 'standard', 0, '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.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 (19450, 1757, 5740, '337', 'Lufart DS Tablets', 'standard', 0, '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', '15.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 (19449, 1757, 5440, '37', 'Amoxicillin Suspension 100ml 125mg/5ml(Letap)', 'standard', 0, '4.9200', '4.9200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', '4.9200', 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 (19448, 1757, 5439, '36', 'Amoksiklav 1g Tablet 10s', 'standard', 0, '71.0000', '71.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19304, 1758, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (19305, 1758, 6828, '1425', 'Letamox (All Flavour) Tab 500mg (1X20)', 'standard', NULL, '15.8000', '15.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.8000', '', '15.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 (19346, 1759, 6446, '1043', 'Dermiron Plus', 'standard', NULL, '8.4000', '8.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '8.4000', 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 (19347, 1759, 6606, '1203', 'Skyclav 1g', 'standard', NULL, '28.2000', '28.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.2000', '', '28.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19345, 1759, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', NULL, '56.2000', '56.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.2000', '', '56.2000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19344, 1759, 6285, '882', 'Auntie Mary Gripewater 150ml', 'standard', NULL, '11.8000', '11.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.4000', '', '11.8000', 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 (19339, 1759, 5453, '50', 'Ascoryl Syrup 125ml', 'standard', NULL, '9.2000', '9.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.4000', '', '9.2000', 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 (19340, 1759, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19341, 1759, 5696, '293', 'Kidicare Srup 200ml', 'standard', NULL, '14.0000', '14.0000', '1.0000', 1, '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 (19342, 1759, 6092, '689', 'Ferrolex Syrup 250ml', 'standard', NULL, '23.0000', '23.0000', '1.0000', 1, '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 (19343, 1759, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '3.0000', 1, '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 (19316, 1760, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '2.0000', 1, '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 (19317, 1760, 5586, '183', 'Dragon Spray', 'standard', NULL, '34.6000', '34.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.6000', '', '34.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 (19318, 1760, 6924, '21613850', 'Hydrogen (Extem)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19319, 1760, 6925, '27458123', 'Mist Potassium Citrate (Eextem)', '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 (19320, 1760, 5654, '251', 'Gentian violet (GV PAINT)', 'standard', NULL, '2.0000', '2.0000', '3.0000', 1, '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 (19321, 1760, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (19322, 1760, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (19323, 1760, 6358, '955', 'Fenbase Extra', 'standard', NULL, '3.4000', '3.4000', '10.0000', 1, '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 (19324, 1760, 5926, '523', 'Vermox 500mg Tablets', 'standard', NULL, '14.7000', '14.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.4000', '', '14.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 (19325, 1760, 6590, '1187', 'Peladol Extra', 'standard', NULL, '25.3000', '25.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.3000', '', '25.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 (19326, 1760, 5629, '226', 'Funbact A', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19327, 1760, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '25.5000', '', '8.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 (19328, 1760, 6003, '600', 'Bella cough Syr 125ml', 'standard', NULL, '9.5800', '9.5800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5800', '', '9.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 (19329, 1760, 5976, '573', 'Koffex Adult Cough Syr 125ml', 'standard', NULL, '8.2000', '8.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.4000', '', '8.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 (19330, 1760, 6075, '672', 'Kiss Condom Classic', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (19331, 1760, 6076, '673', 'Kiss Condom Strawberry', 'standard', NULL, '2.3000', '2.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '2.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 (19332, 1760, 6225, '822', 'Letalin Expectorant Syrup 125ml', 'standard', NULL, '3.0800', '3.0800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.1600', '', '3.0800', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19333, 1760, 6078, '675', 'Mr. Q', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (19334, 1760, 5965, '562', 'Zubes Expectorant 125ml Syrup', 'standard', NULL, '13.5000', '13.5000', '1.0000', 1, '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 (19335, 1761, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', '6.7600', 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 (19336, 1762, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', 'standard', NULL, '8.8000', '8.8000', '2.0000', 1, '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 (19337, 1762, 5740, '337', 'Lufart DS Tablets', 'standard', NULL, '15.5000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '15.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 (19338, 1762, 6359, '956', 'Dipex Capsules', 'standard', NULL, '2.5000', '2.5000', '5.0000', 1, '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 (19348, 1759, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '16.3000', '16.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.6000', '', '16.3000', 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 (19349, 1759, 5959, '556', 'Zincovit Tablets', 'standard', NULL, '29.8000', '29.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.8000', '', '29.8000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19350, 1759, 6668, '1265', 'Arziglobin Plus 200ml Syrup', 'standard', NULL, '8.9000', '8.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '8.9000', 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 (19351, 1759, 5598, '195', 'Entramol 500mg Tablets 15X12', 'standard', NULL, '4.3000', '4.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.9000', '', '4.3000', 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 (19352, 1759, 5967, '564', 'Zulu 100mg Tablet', 'standard', NULL, '4.9000', '4.9000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.7000', '', '4.9000', 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 (19353, 1759, 6932, '78866726', 'Technologist Choice Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '50.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19354, 1763, 5982, '579', 'Samalin Jnr cough syr. non-drowsy 125ml', 'standard', NULL, '11.1000', '11.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '11.1000', 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 (19355, 1763, 5898, '495', 'Taabea Herbal Mixture', 'standard', NULL, '20.2000', '20.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.2000', '', '20.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 (19356, 1763, 5535, '132', 'Coldrilif Capsules 10X10', 'standard', NULL, '3.9100', '3.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5500', '', '3.9100', 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 (19357, 1763, 6435, '1032', 'Coldiron Syrup 125ml', 'standard', NULL, '9.0000', '9.0000', '3.0000', 1, '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 (19358, 1763, 5640, '237', 'Gebedol Tablet', 'standard', NULL, '18.9000', '18.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '37.8000', '', '18.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 (19359, 1763, 6220, '817', 'Dynewell Syrup 200ml', 'standard', NULL, '6.0000', '6.0000', '5.0000', 1, '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 (19360, 1763, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', 'standard', NULL, '6.3000', '6.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '6.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 (19361, 1764, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (19362, 1764, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.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 (19428, 1752, 6664, '1261', 'Pregnancy Test Kit One-Step', 'standard', NULL, '1.6000', '1.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19429, 1752, 6787, '1384', 'K.Y. Jelly Sterile 82G', 'standard', NULL, '50.6000', '50.6000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '101.2000', '', '50.6000', 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 (19430, 1752, 6852, '1449', 'Samalin Adult Syrup (Non Drowsy)', 'standard', NULL, '12.4000', '12.4000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.8000', '', '12.4000', 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 (19431, 1752, 6864, '98367406', 'Fiesta Condom Strawberry ', 'standard', NULL, '4.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.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 (19432, 1752, 6890, '15222916', 'One-Step Maleria Test Kit', 'standard', NULL, '6.6000', '6.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', '6.6000', NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19433, 1752, 6895, '49637846', 'Zubes Child Cough Syrup', 'standard', NULL, '10.8000', '10.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.6000', '', '10.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 (19434, 1765, 6940, '30328845', 'Ekuro Bewu', 'standard', NULL, '4.5000', '4.5000', '6.0000', 1, '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 (19435, 1765, 5418, '15', 'Aboniki', 'standard', NULL, '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', '6.7600', 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 (19436, 1765, 6205, '802', 'Citro C Tablets 25\'s', 'standard', NULL, '55.0000', '55.0000', '1.0000', 1, '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 (19437, 1765, 5991, '588', 'Kwik Action Tablets 50x4', 'standard', NULL, '43.0000', '43.0000', '1.0000', 1, '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 (19438, 1765, 6543, '1140', 'Gastrone Suspension 200ml', 'standard', NULL, '17.0000', '17.0000', '2.0000', 1, '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 (19439, 1765, 5948, '545', 'Wormplex Suspension', 'standard', NULL, '10.3000', '10.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '51.5000', '', '10.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 (19440, 1765, 6082, '679', 'Coldrilif Syrup', 'standard', NULL, '6.9000', '6.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.6000', '', '6.9000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19441, 1765, 6609, '1206', 'Skyclav 228.5mg', 'standard', NULL, '16.3000', '16.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.6000', '', '16.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 (19442, 1765, 5792, '389', 'Nifecard XL 30mg Tablets 30s ECL', 'standard', NULL, '50.4000', '50.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.4000', '', '50.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 (19443, 1765, 6744, '1341', 'Nexcofer Blood Tonic 200ml', 'standard', NULL, '14.8000', '14.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.6000', '', '14.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 (19444, 1765, 6286, '883', 'Kidivite Syrup 200ml', 'standard', NULL, '13.9800', '13.9800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.9400', '', '13.9800', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19445, 1766, 6666, '1263', 'Examination Gloves', 'standard', NULL, '50.0000', '50.0000', '1.0000', 1, '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 (19467, 1767, 6280, '877', 'Hayan Capsules', 'standard', NULL, '40.0000', '40.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '160.0000', '', '40.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 (19466, 1767, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '8.5000', 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 (19464, 1757, 6611, '1208', 'Skycef 250mg (Cefuroxime) 1X10', 'standard', 0, '11.5300', '11.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0600', '', '11.5300', 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 (19465, 1757, 6612, '1209', 'Skycef 500mg (Cefuroxime) 1X10', 'standard', 0, '20.9200', '20.9200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.8400', '', '20.9200', 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 (19468, 1768, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '41.4000', '', '13.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 (19469, 1769, 6074, '671', 'Lydia Postpill 1Tablet', 'standard', NULL, '8.5000', '8.5000', '2.0000', 1, '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 (19470, 1770, 6218, '815', 'Ascorbin 100mg (Vitamin C) Tablets 30x10', 'standard', NULL, '17.8000', '17.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '17.8000', '', '17.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 (19471, 1771, 6938, '52430931', 'Zahara Gee Capsules', '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 (19472, 1771, 6337, '934', 'Feroglobin Syrup 200ml', 'standard', 0, '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', '74.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19473, 1772, 6944, '50560029', 'Metformin 500MG (ENTRANCE)', 'standard', NULL, '16.6000', '16.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.6000', '', '16.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 (19474, 1772, 6232, '829', 'Amlodipine 10mg Tablets 28s Teva', 'standard', NULL, '9.9000', '9.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.9000', '', '9.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 (19475, 1773, 5947, '544', 'Wormbase 400mg Tablets', 'standard', NULL, '13.8000', '13.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8000', '', '13.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sales
#

DROP TABLE IF EXISTS `sma_sales`;

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

INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (109, '2022-09-12 16:27:00', 'FMMS0038', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '271.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '271.7700', 'completed', 'paid', 0, NULL, 5, 6, '2022-09-13 09:46:31', 32, 0, '271.7700', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '17342f7cafddb3e1d27cb2280ce8b965ade999d8de91be79bf60c6551291cc3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (108, '2022-09-12 16:30:00', 'FMMS/POS0066', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1776.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1776.9100', 'completed', 'paid', 0, NULL, 7, 5, '2022-09-12 17:03:24', 149, 1, '1989.5100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'add7172305f41156014549f2ad6c3d460540580fa53dd00f8d23f8effea9c7ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (77, '2022-09-12 09:07:22', 'FMMS/POS0044', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, 'Theresa', '', '33.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '33.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66835ae75f9d160fad27194e587725af86dec0dc9632c700fbec2646e8f7b8bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (78, '2022-09-12 09:24:53', 'FMMS/POS0045', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, 'Auntie Agyeiwaa', '', '66.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '66.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24170b74ec1309f242c0d5ec2f7a52047323666741ccb75b5398967af9776062', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (79, '2022-09-12 09:33:57', 'FMMS/POS0046', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, 'KINGSWALK', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b959222073f42c47d64275f72e180647c45312e5637a2ab9dd67405c18771d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (80, '2022-09-12 09:39:42', 'FMMS/POS0047', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2817.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2817.3300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 136, 1, '2817.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d1457cf5f8da6caca02e7ae4a85ec4fa9c7bf94494e0204fea53cee90fbc4d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (81, '2022-09-12 09:53:00', 'FMMS/POS0048', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;GD CHEMICAL SHOP&lt;&sol;p&gt;', '', '410.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '410.8000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-13 13:09:33', 45, 1, '410.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a130100dd998a35b15605f9e9f8f283ab24051574c15ace9af86c8d77fd3bf29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (82, '2022-09-12 10:07:00', 'FMMS0029', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2309.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2309.6200', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-13 08:13:26', 114, 0, '2309.6200', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '31710056b274ad255fe0be5eae44877178e2c082370b133066bcf13f317c9abe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (83, '2022-09-12 10:17:07', 'FMMS/POS0049', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac13f75b6e7fa5f7c972b10f68f893abeb009c22b8b3b3c9bdd0197946c89875', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (84, '2022-09-12 10:21:45', 'FMMS/POS0050', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '85.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90dcb4c4f205fe10cba2f3995fcc052bcb2fb3cc6f7339d042ee90d4c38610fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (85, '2022-09-12 10:44:00', 'FMMS/POS0051', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.8400', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 15, 1, '60.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb520352a6ae11c2f5b160272c128fd2db5ef8f7c997e5cca9045a6badc99ef1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (86, '2022-09-12 10:33:00', 'FMMS0030', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '604.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '604.7000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 53, 0, '604.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '148ca121b7509d3d0bd9812a849e1fe79f0517047a2f3dcb7b1bec003f7f9b2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (87, '2022-09-12 10:33:00', 'FMMS0031', 7, 'JULIET CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '253.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '253.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 0, '253.0600', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6868758f3a4c63d666de577f8e811a0f409f91f64140f601b313d1d1f1816aaf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (88, '2022-09-12 11:11:00', 'FMMS0032', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '493.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '493.4500', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 48, 0, '493.4500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '773ba20f5c7b422520e0d300f67f1faffaf91faaba523abe84e88199b048338e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (89, '2022-09-12 11:04:00', 'FMMS0033', 282, 'MENDMEDICS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1237.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1237.4400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-12 12:38:34', 136, 0, '1237.4400', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6cb77ae5496f7b8538936690fef05207f291ebf196d27e8cc56d3154dbe6ea8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (90, '2022-09-12 11:44:00', 'FMMS0034', 287, 'MADNA PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '248.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '248.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 0, '248.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6c8050573f4c1947806558bbeaf083e7731993eb70fe5559e155751e8dbcac47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (91, '2022-09-12 11:44:00', 'FMMS0035', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '357.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '357.3500', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 37, 0, '357.3500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cdd6cc865e853f29a0230ea474908dcbb9587047c20ef6fb5f58786a4e00ac4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (92, '2022-09-12 11:52:00', 'FMMS0036', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '77.8500', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 3, 0, '77.8500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c9c5034f7c7687ad1f5e7063108594ba91af42b97d4708731e76b79e9a096ac5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (93, '2022-09-12 12:01:43', 'FMMS/POS0052', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, 'S&period; O&period; DARKO', '', '121.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '121.8200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 19, 1, '121.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ac900f5536b3896db27d38efba7913cacf55b3472419d0a6c003d3645065d38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (94, '2022-09-12 12:11:45', 'FMMS/POS0053', 175, 'MENDMEDICS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84d19ca8f2f178ff7a8566e5a67823b98ee4f6bd6789a3a28641c64c9271a50c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (95, '2022-09-12 12:03:00', 'FMMS0037', 288, 'Optimax', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1041.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1041.4600', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 103, 0, '1041.4600', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dbe9583687568f5422f498a6d8c9d05c258d2603e61ceb28603fcf19b228d95a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (96, '2022-09-12 12:46:45', 'FMMS/POS0054', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.4000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 2, 1, '8.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '366d5c7e196a18bc3d75cd638e77574ae9df506c426a80b18f28b84a03987ba3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (97, '2022-09-12 12:53:04', 'FMMS/POS0055', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '278.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '278.0800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 43, 1, '278.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c83c0c41f77d0dd0cfd2f33dc980ea26c524ff772380b06cf80e07ec2ece1157', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (98, '2022-09-12 12:57:38', 'FMMS/POS0056', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '148.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '148.4000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 19, 1, '148.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e0939d4f2058cf988e8c04671e1fa059f4fcda9896dcbc91f5d5969fc412258', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (99, '2022-09-12 13:45:58', 'FMMS/POS0057', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '126.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '126.5200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 24, 1, '126.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eb07dc0531f100e3ac50c15e27def1444017c009b5029d1956fc4e24f74d0b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (100, '2022-09-12 14:18:36', 'FMMS/POS0058', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '406.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '406.6800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '406.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25739d518fe9366a3bba0cc0d3e2d7b127775e4896947aac011a471eaa921035', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (101, '2022-09-12 14:28:50', 'FMMS/POS0059', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.3500', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 5, 1, '23.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa59d7c89c12d48a14d8b11bb7046d5a21d0528c5fc28c6408c2ace6a3508c7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (102, '2022-09-12 14:41:00', 'FMMS/POS0060', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '277.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '277.2500', 'completed', 'paid', 0, NULL, 5, 6, '2022-09-14 08:06:06', 44, 1, '350.8500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22ff625e27c665301333da187c611e5a2ba4d3473ac9e310d42c8ba1bd4fe050', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (103, '2022-09-12 14:57:27', 'FMMS/POS0061', 211, 'PM', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '261.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '261.5800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 14, 1, '261.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25fa4cbfe29249ab3f75e12fc39fcf2501557a5a174810c272661b24def60616', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (104, '2022-09-12 15:51:00', 'FMMS/POS0062', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '189.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '189.8000', 'completed', 'paid', 0, NULL, 7, 5, '2022-09-12 16:45:08', 14, 1, '189.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dda188158c2f26d2ad8a01936c1f6b50b48f3b6815d578bee35ab55775f9fb4f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (105, '2022-09-12 15:58:43', 'FMMS/POS0063', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '153.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '153.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '153.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '273f74294329a6bad83dcb7529cb7473f573dfa644c35ab4a0d5148c6f3b2665', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (106, '2022-09-12 16:00:35', 'FMMS/POS0064', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.8900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '10.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c21168db7c525ad315be4862ac41aaa0a8df75e8db65a30de62fa1d3e4f004a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (107, '2022-09-12 16:24:29', 'FMMS/POS0065', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.5000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 7, 1, '50.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '318389f95e416a9b72faccbeff189fc413b6102f7c58b51fe7c4a9212b3b844b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (110, '2022-09-12 16:36:51', 'FMMS/POS0067', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.5600', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 4, 1, '52.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b928a4640962319c987e985813544dc8ea4300e7a1b0eddbe367fbd4ff971480', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (111, '2022-09-12 16:46:00', 'FMMS/POS0068', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '400.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '400.7000', 'completed', 'paid', 0, NULL, 5, 5, '2022-09-12 16:58:23', 43, 1, '400.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94a1954fc30f3fea6aaeb7cb5c2b950f1389a53acad2030d1407a6dedea328e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (112, '2022-09-12 16:55:24', 'FMMS/POS0069', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.7000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 2, 1, '10.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f871952768008b9c5966d7dc9a3e965d792e6ca3bcdaed262165566851ee63d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (113, '2022-09-12 16:59:42', 'FMMS/POS0070', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cf2342f78a77e0bd01abc8a2c8033a90d9be6b9fe6da21e8e2ffcd0d2622e00', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (114, '2022-09-12 16:59:49', 'FMMS/POS0071', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 3, 1, '13.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '084d206a6f60ddd4985e16f1aa6a7559fcb3df0fc62970b7729c4be200fa659b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (115, '2022-09-12 17:09:30', 'FMMS/POS0072', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 20, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eea622e1bada184df8d7d6741ff52fe545aea405f3aa97f697661591e074eccd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (116, '2022-09-12 17:10:47', 'FMMS/POS0073', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '263.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '263.2600', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 22, 1, '263.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b460ce3cf362b3927f6f84cde4b4663bdf369a7288389ad17dbf4f6818d68621', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (117, '2022-09-12 17:16:00', 'FMMS/POS0074', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '198.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '198.6000', 'completed', 'due', 0, NULL, 5, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff7ee88f5082d165fc2dd40ecd1ce932551831fd37f4e6b4f0478ca9ec106b1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (118, '2022-09-12 17:27:03', 'FMMS/POS0075', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.8200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '39.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cee3798eed7845b97febf561d520fbd7d25e7b21c806b9331e821415b49e1f5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (119, '2022-09-12 17:58:08', 'FMMS/POS0076', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.3800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 3, 1, '77.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cfc57bb6f1e33b8a43f47a89aca465e5db42b146180a1a9b0331d10b6ed67f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (120, '2022-09-13 08:17:16', 'FMMS/POS0077', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '25.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27042e996b291d679bfc89bcf4e03062a646a99fb95dce95f59ba8dd610140ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (121, '2022-09-13 08:19:49', 'FMMS/POS0078', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96646972189b21e732a74f9e2c71ec6214e1fac1d6cfd742b130c60452f7e0d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (122, '2022-09-13 08:20:35', 'FMMS/POS0079', 290, 'Isaac Brako', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '125b4777051af6fc97f4617868509a39e6a26aa5edcb0837ec86bc5099928a9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (123, '2022-09-13 08:57:42', 'FMMS/POS0080', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '596.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '596.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 51, 1, '596.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '308998a14d5c4d6e69f04e8e25dbf58da7e7c2c2e9454d250433017abbd45ff5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (124, '2022-09-13 08:58:43', 'FMMS/POS0081', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38f18335e213210a149efef4649bec234143e30d9c6506cc1e9c15eb3295abe6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (125, '2022-09-13 09:05:57', 'FMMS/POS0082', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '353.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '353.3900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '353.3900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a0ae812b9db882430bbdf20862f3fca0ab94bdfa809ccc1bf74b2e9aa9d4abe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (126, '2022-09-13 09:14:02', 'FMMS/POS0083', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '11.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1c5c91d89603ee24934b77fc8aef3b822c8acfbb5d3e281c1a6f5092d5b3165', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (127, '2022-09-13 09:24:07', 'FMMS/POS0084', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '651.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '651.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 75, 1, '651.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'efd985508b9f7118e025a3e7b45f332dde378a0eeef0c53be9e54eb9e0076988', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (128, '2022-09-13 09:37:11', 'FMMS/POS0085', 166, 'Madna Pharmacy', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1744.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1744.2200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 173, 1, '1744.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db0ed5e799cea8dca06a0859a7dfe040332210cd35dc288c6e5f7f6387bd0bbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (129, '2022-09-13 09:50:40', 'FMMS/POS0086', 11, 'ABDUL RAZAK', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.7100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '17.7100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '751b6adccab56fe897121512c1099a5fce72ced4fbf80cdf643478ab816cf14e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (130, '2022-09-13 09:57:28', 'FMMS/POS0087', 166, 'Madna Pharmacy', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.4600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '168.4600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a6a84c6be00b749a54b781979304f222c2c56cfb770ed1c69f057850a2e6dbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (131, '2022-09-13 10:07:46', 'FMMS/POS0088', 192, 'nipahiamoa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '48.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '48.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '48.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23fcda18b7bb4d8c96319596ff1778b420f0b44e7e557e351aca971d6eb6172c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (132, '2022-09-13 10:12:17', 'FMMS/POS0089', 208, 'Patricia Akakpo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '94.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '94.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '94.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79b28ab933364354d4398e82cfb0a1616e63df5548f69f68f11cdeb3f1fc4424', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (133, '2022-09-13 10:23:37', 'FMMS/POS0090', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba3bcc7438ea137285cdfc3e061794806852f0253a59dcec18227eb17d4db62e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (134, '2022-09-13 10:50:17', 'FMMS/POS0091', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '531.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '531.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 102, 1, '531.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89c00f88cfdf83e68aa396134141c96a5556240e7d76814e2d5dc3e6148617a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (135, '2022-09-13 10:57:00', 'FMMS/POS0092', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '341.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '341.9600', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-13 12:30:41', 49, 1, '341.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b43e758af8c656ad7236a08aa10c169caced26b6731b74a80a959eb0355942e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (136, '2022-09-13 11:16:54', 'FMMS/POS0093', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.3800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '27.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66e1d1ec802a939f1a51609aa59f315329bbebcf32cd4812ef9c13f9108fc95e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (137, '2022-09-13 11:53:06', 'FMMS/POS0094', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.1600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '60.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2590cfae7dfbe65947f0b7b967a7bce53eb673652a9c9c34bf994fa7a890e5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (138, '2022-09-13 12:09:05', 'FMMS/POS0095', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.9800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '12.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76a727ce3ab3909127421246ad7456cb78c84de2c8ed88efca50a3955117ccc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (139, '2022-09-13 12:10:03', 'FMMS/POS0096', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8da43f8ec8c87e1f30db027cc0a365d40f7ed422d4713cac8adfeaf65989f9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (140, '2022-09-13 12:12:00', 'FMMS/POS0097', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '364.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '364.7000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-13 12:25:27', 54, 1, '364.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6369a43611f99d20132e6bbab5f3852f3e03e659c2f107c13af173ca72fc9c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (141, '2022-09-13 12:13:00', 'FMMS/POS0098', 271, 'VYNE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '548.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '548.5200', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-13 12:28:08', 65, 1, '560.6200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16f9983b782ee79532c475e76868a5b6fefe0b6e82780b9af23f0236eb6e51ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (142, '2022-09-13 12:35:21', 'FMMS/POS0099', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e36825411a977b3d4ceb05f0cbeb2b4b024e29fb5a47c232bc4ebf1624159832', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (143, '2022-09-13 12:37:36', 'FMMS/POS0100', 271, 'VYNE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '57.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '57.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '57.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b0dfed868eecabed3f041c25665256ab7acdc3e48e1e57232ed90aa53533c490', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (144, '2022-09-13 12:41:23', 'FMMS/POS0101', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '56.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '56.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '56.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f39433afeddfad490dae60bf272f6c49e2fa5e392e3666bd5591fd582a221916', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (145, '2022-09-13 13:06:23', 'FMMS/POS0102', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '206.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '206.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '206.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01631f996cbaf1fb760081d76ef2b1b308ef61fdfa8a6a30287c470acc0bd6d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (146, '2022-09-13 13:19:00', 'FMMS/POS0103', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1036.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1036.9600', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-13 13:51:05', 99, 1, '1038.4600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '091e2ef626e336558b730751328a1ac311dc77fcb210057fd733d2080cec501d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (147, '2022-09-13 13:22:46', 'FMMS/POS0104', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.7300', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 7, 1, '90.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7dca684a82a8a77214a2127f2a6b1ef4682b9f048035a632cdca99efbd49394', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (148, '2022-09-13 13:27:05', 'FMMS/POS0105', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd860a82e40c58d518b677077c96992cc0bee8404c3376f5d21f32dffd3c6ad3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (149, '2022-09-13 13:29:36', 'FMMS/POS0106', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '86.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '86.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7eeb8ddfedf379cec08ef5cebe95eeda26b711c946b607a407571960a97926a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (150, '2022-09-13 14:18:00', 'FMMS/POS0107', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '265.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '265.0000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-13 14:20:20', 26, 1, '265.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c5fb7983c12a6ef44b52077c5e4df062b247c674e8c823b1e99fddba8daa1c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (151, '2022-09-13 14:30:05', 'FMMS/POS0108', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '234.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '234.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '234.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ad415e3e4580847f6b51e6c8733aeccf045bce6b8d9e1c66a1ab62efcb2030d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (152, '2022-09-13 14:37:50', 'FMMS/POS0109', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1081.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1081.5500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 82, 1, '1081.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'efbb2ab7659962a084baf0ef5826258198663bd17e8092873fdc588cf3b2c47a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (153, '2022-09-13 14:40:12', 'FMMS/POS0110', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '20.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a7be08dc24e7a578203f508a88ca2de36e6fef7266499f5b595499318e97a7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (154, '2022-09-13 15:15:48', 'FMMS/POS0111', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1959.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1959.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 113, 1, '1959.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1674a1a2c300cf863d6c513c8b9fff7fb5062a759d34a69e6bd76ee59e670bda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (155, '2022-09-13 15:20:34', 'FMMS/POS0112', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '25.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7f0a386e60e39ded6d6a4be18e7718566ec80493d87d74591345fc49bab02c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (156, '2022-09-13 15:21:57', 'FMMS/POS0113', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65e6b60d96160d1aa7677df957354019743f42d4409af0b92c6edf7f16e74c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (157, '2022-09-13 15:30:50', 'FMMS/POS0114', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '311.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '311.4200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 38, 1, '311.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '285f4a2d0599480caad30ba7b10c7c59f279fd97814a8c4f1dae7e2fc4d2e546', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (158, '2022-09-13 15:35:25', 'FMMS/POS0115', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '175.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '175.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '175.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39732a732f9c0d93158612c623bdb2784ceafb00e75ec50b37185c2a0c6b2ee9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (159, '2022-09-13 15:45:43', 'FMMS/POS0116', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '109.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '109.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '109.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b441259264ad1180d91550a776e3f3faeb01c9933bb6d3286ad35cb82c6cb62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (160, '2022-09-13 15:48:41', 'FMMS/POS0117', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '98.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '98.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '98.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14ec692c6c084f7a39c96eef6316e7c65cb5e04e3b4c9ca8ae7051365a7308db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (161, '2022-09-13 15:54:40', 'FMMS/POS0118', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '32.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '32.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '32.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea5867acafd8738440ef2dfaf6f056b64064c3ffd15b6418bcaeb94ae8831e4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (162, '2022-09-13 16:26:20', 'FMMS/POS0119', 11, 'ABDUL RAZAK', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '716.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '716.6600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 82, 1, '716.6600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bb93bc9ada644444bbfd8db4c1e35ce01e4292409f260b85e2f126bb0cf91dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (163, '2022-09-13 16:37:30', 'FMMS/POS0120', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '104.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6763acda09be5a17debe0e03fcbc2868ff2cb9ff22afe28aa35f155f74bf3c0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (164, '2022-09-13 16:40:16', 'FMMS/POS0121', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9417651bcacc96e2ba909ef65f1923aeea53513cac1601ce925f921b134a0ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (165, '2022-09-14 07:57:11', 'FMMS/POS0122', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '163.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '163.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '163.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1937880e5fd30ad6f0d7feebaf0a3b6fbfd71848979ec76c09ca7e649b4e7755', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (166, '2022-09-14 07:58:59', 'FMMS/POS0123', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7be4db6d910068d6219981c7a85f176b0fe46e927fd5fbd35440a03bf6612e47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (167, '2022-09-14 08:44:00', 'FMMS/POS0124', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '800.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '800.5600', 'completed', 'paid', 0, NULL, 7, 5, '2022-09-14 15:40:01', 79, 1, '807.2600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '213a7f4c372d5c5534d85c337080af9d0898c52f19e9feb61c57821c74109929', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (168, '2022-09-14 08:48:33', 'FMMS/POS0125', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '121.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '121.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '121.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6772e35cc0714dec06ae3bf08eee986f1b8c12e505d4f9885b181017049fc628', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (169, '2022-09-14 08:48:40', 'FMMS/POS0126', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '175.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '175.6100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '175.6100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b96cb3d2ffa3ab99c802b20d291962d628c00e886977040f6a0cb92245a8f2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (170, '2022-09-14 08:54:57', 'FMMS/POS0127', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '433af5031e49c32e37395d9a0b1b6347691157de5258e27c43c1fd75fffe0d52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (171, '2022-09-14 08:58:07', 'FMMS/POS0128', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38779985bc690da84aa54c7c6ebf130acd149f1754b2f79f0e8b15625c77f081', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (172, '2022-09-14 08:59:13', 'FMMS/POS0129', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6fe379c775083f0255122a8c9ca81f58d08a173e323c3140a8bfa34d8d21dac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (173, '2022-09-14 09:09:44', 'FMMS/POS0130', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5b7e461acc4c6a39eea4b7178a44bbb76b63c49226b9114456accb05f2ff4b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (174, '2022-09-14 09:14:50', 'FMMS/POS0131', 363, 'Agnes ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '319.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '319.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '319.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d04bb95b8198d45c3c4530833c52d566e19ecd892855a5f7806c91c664ea6bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (175, '2022-09-14 09:35:18', 'FMMS/POS0132', 256, 'T K', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.4200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '39.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb0c49aa405bf47c25e1090e0a46ddf6416ea2f018807a852845743228845ff9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (176, '2022-09-14 09:57:32', 'FMMS/POS0133', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8994b99dbd65ae4e5b757b8384d73f2672efabe9b28d25798713e49158b7e1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (177, '2022-09-14 10:01:23', 'FMMS/POS0134', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '603f14249a01c7c5cd87a60b632e3b6b07abdd9a53e97977252f51e454bd86cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (178, '2022-09-14 10:17:32', 'FMMS/POS0135', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55e00d08dba6bde944501b58903d15cb7014da8de189f4aacf13373d6a311043', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (179, '2022-09-14 10:50:56', 'FMMS/POS0136', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '199.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '199.8600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 18, 1, '199.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '374b9a606089822972009b5370210caccc384285148f571b5c52a59f8fe07689', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (180, '2022-09-14 10:55:14', 'FMMS/POS0137', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e087f01dd993f4c036d9cf2a4d2ccd1eac2b4f43cd37600ad4b03f0ad4d9e477', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (181, '2022-09-14 11:06:59', 'FMMS/POS0138', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '179.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '179.7400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '179.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51f31446fccc1e2223d6b3bd18f8395b634c9cffb368ae314caa0d3f0fd37bf8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (182, '2022-09-14 11:09:57', 'FMMS/POS0139', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '1.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76e6680991abea60fda66a45b2d33014711d37489b6040675cdfd220d91fbb9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (183, '2022-09-14 11:14:49', 'FMMS/POS0140', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '17.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c95711738c233669cfdb25aefb260ff680042e16e71cee04eb16297c7beb7f6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (184, '2022-09-14 11:26:59', 'FMMS/POS0141', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '207.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '207.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '207.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '701f99c51e6f6a1ae023b56129c8d3060b2e3ffe53c4ec0df2be97aed5c84989', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (185, '2022-09-14 11:29:48', 'FMMS/POS0142', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b29d3ebeff5065d43b31ad86a03809cc7ef3935bc520bd59656c22ab0b954739', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (186, '2022-09-14 11:30:32', 'FMMS/POS0143', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.7200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82332985c5b06f41f6ffe053f79897dad1430fcf2af019a65055ce1791524f2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (187, '2022-09-14 11:32:39', 'FMMS/POS0144', 21, 'ADOM', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3bbdb096be0f8ceecbc9f0f05acd840198023e2dc1010ff175bafaabd492c19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (188, '2022-09-14 11:33:18', 'FMMS/POS0145', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '11.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5941e0255f953e9c77c0c07bf705412b22851e00a53940a74e8331574f09ff64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (189, '2022-09-14 11:43:04', 'FMMS/POS0146', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '417.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '417.5600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '417.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53eb48679873929aaba064cf667982785a126f110ce9760fe9779894ca5cc882', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (190, '2022-09-14 11:54:11', 'FMMS/POS0147', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 25, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b331572891da6d13fa9ed63df5ceff7b0b6a64962429497194d00abdc26a2873', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (191, '2022-09-14 13:03:26', 'FMMS/POS0148', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '354.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '354.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 43, 1, '354.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7c070b4a30b032043f46c98c588b8bf932bfa0e7d0592729ea54f3e4ad5a24f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (192, '2022-09-14 13:06:33', 'FMMS/POS0149', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '23.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e05c4faed427276f7159d9f99e72d6a25dc9a28fd149939d81aa3199a66fd56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (193, '2022-09-14 13:12:47', 'FMMS/POS0150', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '42.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e70464a3e5a152d7927764cc8b5fbbcbd635f322508d684695cdfcd1536f9549', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (194, '2022-09-14 13:24:18', 'FMMS/POS0151', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '859.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '859.9500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 88, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '060b1f318b2103fe63ba41ab8f4bb6d15dc3cecddb2302d1b7b14f75e47a5e20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (195, '2022-09-14 13:30:50', 'FMMS/POS0152', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.8100', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 3, 1, '69.8100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc735c2ce2acedb867277cf7f3267b9a53c4ae21c5f40f83d7cd9d0a22dd0f8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (196, '2022-09-14 13:41:18', 'FMMS/POS0153', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '316.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '316.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '316.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b41cbb94614299510fc60480945cceba23afbc2ad8bb45725c6066b829d55c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (197, '2022-09-14 13:48:29', 'FMMS/POS0154', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '447.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '447.6200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 68, 1, '447.6200', 203, '0.0000', NULL, 'SR0002', NULL, '-267.8000', '0.0000', NULL, 0, 0, NULL, NULL, '7661e161431a4dabd2b628409a0a982dcdb73fb618210686a59e3658fb06d706', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (198, '2022-09-14 14:11:17', 'FMMS/POS0155', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cd73e81962e991900b848b83b67fef8dba6c33cd41dfddc81402be4849eba92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (199, '2022-09-14 14:13:33', 'FMMS/POS0156', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '19.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17b3fd623a59f6e41cc987f6b06957b5e8cb775a55227b38a0c82e2c66099406', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (200, '2022-09-14 14:16:05', 'FMMS/POS0157', 364, 'Diana Nyarko', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '86.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '86.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2ee98721beb339530c89d8d8ac1539524e53a8ac2aa315432c451293196bd60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (201, '2022-09-14 14:18:59', 'FMMS/POS0158', 364, 'Diana Nyarko', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81e52c083a96c692ccfff0f9ae56b9888043cc5a8680f514d21d1d93264a49b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (202, '2022-09-14 14:23:35', 'FMMS/POS0159', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '48.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '48.6000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 11, 1, '48.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aac92417819e157a34bd600a484a78b2fa118d1b937a067618699732e592b902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (203, '2022-09-14 14:33:00', 'FMMS/POS0154', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', NULL, '-267.8000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-267.8000', 'returned', 'paid', NULL, NULL, 6, NULL, NULL, NULL, 1, '-267.8000', NULL, '0.0000', '0', 'SR0002', 197, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (204, '2022-09-14 14:42:33', 'FMMS/POS0160', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 2, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7267b424f95f78ebb0c061ccfdaccfa6c3e115d1d31edf02b378cf33b3379a65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (205, '2022-09-14 14:44:08', 'FMMS/POS0161', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '338.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '338.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 82, 1, '338.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60b506e14a0883f0782586442bf0f21784a4f89252cb1fc88c4605638061c247', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (206, '2022-09-14 14:44:00', 'FMMS/POS0162', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '196.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '196.3800', 'completed', 'paid', 0, NULL, 7, 5, '2022-09-14 16:00:18', 47, 1, '196.3800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46b40c9263f9f4003091ef52bb5830828820fb49e591710cc16244491dbe9684', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (207, '2022-09-14 15:02:00', 'FMMS/POS0163', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '280.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '280.8000', 'completed', 'paid', 0, NULL, 7, 5, '2022-09-14 16:05:06', 15, 1, '281.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5fad5577648ca579ea72a1b3d585caeb43ff096fa7abe2e7a30f619c8b43816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (208, '2022-09-14 15:17:38', 'FMMS/POS0164', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '99.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae4f6bcd9b5b10a264eff89970efe6df9e92e82dca6cf0e716d48f38d19962a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (209, '2022-09-14 15:24:47', 'FMMS/POS0165', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.4000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 14, 1, '97.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '013452afe8f42c74ba429f4462982537538d906bff723b9564b720d29538bf71', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (210, '2022-09-14 16:19:23', 'FMMS/POS0166', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '346.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '346.4500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 45, 1, '346.4500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60a63d7e3cb64606c60edbd03be446087c2151ee3341ef220805aae9332f00f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (211, '2022-09-14 16:28:48', 'FMMS/POS0167', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '24.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fea8aa11433c6acf0958d5ebe5fbce8f97950dcc4461376b17f274433f5a5349', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (212, '2022-09-14 16:30:01', 'FMMS/POS0168', 235, 'Noah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '493.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '493.5900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 47, 1, '493.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a046a0a83ebfd478726fa541ed20c98e7e2117819dfee2a03782aaf9c3250cc9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (213, '2022-09-14 16:39:47', 'FMMS/POS0169', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.6300', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '41.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd78e3bffe7440218dd6a18e972f7058d32e6e706bce2f3c08698abd954a3922d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (214, '2022-09-14 16:50:14', 'FMMS/POS0170', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.2300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '69.2300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95a60abd2edac096b1ae413dcfd505edf2eb292af6057b01bb763f201fee3f2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (215, '2022-09-14 17:37:00', 'FMMS/POS0171', 81, 'Slivia Donkor', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '199.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '199.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '199.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c99da2268337e6662c83e9c90f39eeeadf72c3305cd1ad83f0febada83194bf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (216, '2022-09-15 08:09:00', 'FMMS/POS0172', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1492.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1492.1400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-15 09:34:46', 180, 1, '1503.9400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1fa95554ba9275638f60259aa9fb98367064c445a4d7e8773cdc700d550bf34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (217, '2022-09-15 08:28:02', 'FMMS/POS0173', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1029a8a953b9b47961a3de858b71b5a1ec097c9adee1b2113081cf46ed0f8a35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (218, '2022-09-15 08:46:02', 'FMMS/POS0174', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '290.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '290.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '290.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2ac9db32b8b743405d8a24106f4910394f324573a586f124b07a5b31a2f27e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (219, '2022-09-15 09:01:50', 'FMMS/POS0175', 189, 'NAYRAM HERBAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '149.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '149.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0463d0708254184f88dc26f116c959e5c1f8f59678080db13c8b01b3855dc7df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (220, '2022-09-15 09:07:11', 'FMMS/POS0176', 189, 'NAYRAM HERBAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7386c1aedf7cb6900bbec4c3e81320b900ecec6a108b358d83614d6423babe6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (221, '2022-09-15 09:53:55', 'FMMS/POS0177', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '504.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '504.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '504.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '626960e0f15c377fa988aa51037a67663d91379c04aa369fbd5660b11c414687', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (222, '2022-09-15 10:04:00', 'FMMS/POS0178', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '330.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '330.9600', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-15 10:15:41', 24, 1, '330.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a444038e72ad298211d8bb7415d3245524e5301b7589c585c34b60e9e9c35929', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (223, '2022-09-15 10:11:37', 'FMMS/POS0179', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6994fe9ed4198469d9d69aaf2acc09796cbaa4602a5d9fdce00b1b94a875283e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (224, '2022-09-15 10:40:07', 'FMMS/POS0180', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '99.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28c99e63385c8a2646d8fb027086273c5b6473933de305bc6eee869cb526956f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (225, '2022-09-15 10:41:22', 'FMMS/POS0181', 148, 'KINGS WALK', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '725ef3bb45e8337ddf1e9123fcd9d1efd9f46ce9d2855046af6fd6102402a2ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (226, '2022-09-15 10:49:52', 'FMMS/POS0182', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '82.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '82.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '82.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3282971c61438271a670c02fe98ebf4706e4d5278037bc6df4ee8ba5d0337a2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (227, '2022-09-15 10:52:42', 'FMMS/POS0183', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '26.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b46693a97c095a9183ba5f2a30be41e440d7821bbfc6ef10d8ec2789a275c431', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (228, '2022-09-15 10:58:53', 'FMMS/POS0184', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1038.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1038.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 47, 1, '1038.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4527b9dc72cebe9ff6eddd425a2eabf5ef47645b81012286f726ca8e7bf3b561', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (229, '2022-09-15 11:02:15', 'FMMS/POS0185', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04d00eac7ff15692274b0a171d00b439f15e16918ab39fa1993ec9ec33486a0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (230, '2022-09-15 11:08:20', 'FMMS/POS0186', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '100.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '100.5400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '100.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c476ba1a65b4fc6bafb154d367aa590fd48d55ff16e109953cce03d689b7a488', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (231, '2022-09-15 11:09:08', 'FMMS/POS0187', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.8600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '710b0baebdd604c62ce34ca079264efc44d05f01b341957abe36ab74d76b788a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (235, '2022-09-15 11:22:38', 'FMMS/POS0190', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '1.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38698a2dd0577230949011d423ca7e3cc9c2df9f3de94f07ba3f969325a92dbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (234, '2022-09-15 11:17:26', 'FMMS/POS0189', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2355.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2355.7600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 157, 1, '2355.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbba092a58f5d67f5f7d2ea6c51d87f86f1e393e6d87c817e7bd4e0923eb01b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (236, '2022-09-15 11:48:47', 'FMMS/POS0191', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba30ae250751ff5757ec9407e5bec0e3a8a66843c0774c19b98bdf5bfaaafca2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (237, '2022-09-15 11:55:38', 'FMMS/POS0192', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1303.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1303.6400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 91, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4070dacfb1a8c263a39acc1457e629e7570a6c85ce21d5ec032fff1fd84cb264', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (238, '2022-09-15 12:03:56', 'FMMS/POS0193', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c4fa09c4c791d981322c92756019c6014fbab9e7e01823ca2f2a560eb7b424f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (239, '2022-09-15 12:05:40', 'FMMS/POS0194', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.3800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '27.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d5ec90286d8452231679df6a38f08d76df20ed88f0cd2f1ecd958f7d633a994', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (240, '2022-09-15 12:14:22', 'FMMS/POS0195', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '91.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '91.4900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '91.4900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '136d649db80faa0fe8d50be285b1e1128b23b82a9ed2416e281952d6db8959f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (241, '2022-09-15 12:22:31', 'FMMS/POS0196', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '176.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '176.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '176.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5081b98bfbbbda45486741c7b8109c1299d6ce18e6b7b5f2dd42002cb07093f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (242, '2022-09-15 12:35:00', 'FMMS/POS0197', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '291.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '291.1000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-15 12:51:15', 49, 1, '291.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be7379655b05089d2a84ff01b020e6604d62e9b0870852ddab6e5f9da5683e83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (243, '2022-09-15 12:37:56', 'FMMS/POS0198', 21, 'ADOM', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '40.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c2a7e62d387161346e68d569f4c78901922161fc44d60bde96fcbd27eb95655', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (244, '2022-09-15 12:50:10', 'FMMS/POS0199', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '652.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '652.8300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 48, 1, '652.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3034e78021162784162cf5e499dc6eba9f4ec468e20a00df7a3798b6b5a7915', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (245, '2022-09-15 13:06:41', 'FMMS/POS0200', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f9299b26b93ebd6327f984a1dfb0862f1193f9f3d46f51d68262dbad75f863d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (246, '2022-09-15 13:24:10', 'FMMS/POS0201', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4c75f1c56e21f67e399fa82ce5cedbb1dcb0fa3b8d50aadf9a499b8596f6119', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (247, '2022-09-15 13:46:19', 'FMMS/POS0202', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6622ed62d7f93bbfc80e321cc2a8a0880a7e35c3bd1939f0e3e7206c77490901', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (248, '2022-09-15 13:47:00', 'FMMS/POS0203', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '310.0000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-15 15:16:21', 5, 1, '310.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad466092fb29b1aeb001968105dafd1a78656cb482baa90488de26194412eb34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (249, '2022-09-15 13:51:00', 'FMMS/POS0204', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '8.2000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-15 15:22:15', 1, 1, '8.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42a20fd16794cba95c0519876f28f7e6c6dc2fc20c857d4dbd7991b5805aabf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (250, '2022-09-15 13:52:27', 'FMMS/POS0205', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '538.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '538.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 1, '538.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ace6ee3b369580611f5f80d5cfe33ef56064d680bbf2b35df9e713e734735d51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (251, '2022-09-15 14:21:40', 'FMMS/POS0206', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6be4de8c3a286c1dfc32eb53f42512a7726c5712356652e4447e3b445458370', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (252, '2022-09-15 14:30:15', 'FMMS/POS0207', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '12.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7cccf00a2921a3c5ae3ae88458c31bb1fc67665ab4ea5c53b6c789587efb68f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (253, '2022-09-15 14:48:49', 'FMMS/POS0208', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '495.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '495.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '495.3000', 259, '0.0000', NULL, 'SR0002', NULL, '-495.3000', '0.0000', NULL, 0, 0, NULL, NULL, '47f7f4bd529582501de63e03eee3ade8b9c6577672071d2cc9032b52d32737d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (254, '2022-09-15 14:51:40', 'FMMS/POS0209', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '39.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b0899a873994b193d4017e81d2cde765bc57cd5e5397a5e945964e84087c980', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (255, '2022-09-15 14:55:41', 'FMMS/POS0210', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '154.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '154.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '154.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba5ac4308de5b34265b01aa27986b64b6aa41a00d5c9ecf5ffd173ed5b99b67b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (256, '2022-09-15 15:00:47', 'FMMS/POS0211', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '74.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '74.4000', 260, '0.0000', NULL, 'SR0002', NULL, '-74.4000', '0.0000', NULL, 0, 0, NULL, NULL, '52c115f1ba112ea7d7b3ae4529f0d8bb2703bb179c6d188b59a9b1987c241734', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (257, '2022-09-15 15:10:00', 'FMMS/POS0212', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '39.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-15 15:18:31', 2, 1, '59.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba8ea6c62fe65ea920c98fa7c6c56ae9363f95219f679aae711b77c0e498b9bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (258, '2022-09-15 15:32:00', 'FMMS/POS0213', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '40.2000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-15 15:36:08', 10, 1, '70.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '117b0f9836221eb4be0849b3fea11e9ddf5b861387854ed539c0b93365a67c05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (259, '2022-09-15 16:08:00', 'FMMS/POS0208', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', NULL, '-495.3000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-495.3000', 'returned', 'paid', NULL, NULL, 6, NULL, NULL, NULL, 1, '-495.3000', NULL, '0.0000', '0', 'SR0002', 253, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (260, '2022-09-15 16:08:00', 'FMMS/POS0211', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', NULL, '-74.4000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-74.4000', 'returned', 'paid', NULL, NULL, 6, NULL, NULL, NULL, 1, '-74.4000', NULL, '0.0000', '0', 'SR0002', 256, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (261, '2022-09-15 16:10:31', 'FMMS/POS0214', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '569.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '569.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '569.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '070434de0942eaaeadf3cedcca4437fb9576fccb0e99f99be760ff43d86f77fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (262, '2022-09-15 16:27:17', 'FMMS/POS0215', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '86.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '86.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f3daf2a002facac50f0230d70661681910b6c75c1e872ed55827828f4ed6171', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (263, '2022-09-15 16:56:28', 'FMMS/POS0216', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '437.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '437.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 38, 1, '437.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59dcae67b1573170a3819508e627851caa58e36e6c8e2c161274d9d1df99560e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (264, '2022-09-15 17:03:02', 'FMMS/POS0217', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '108.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '108.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '108.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b13d61dcdd33f0e2fad9b2f4f0ab00c8cdcd21ce19bd7ff0e2e45df4db27bb81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (265, '2022-09-15 17:17:02', 'FMMS/POS0218', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.3300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f952c73b2a55167cc0d2a998160ffcdf4e5997e4c1fe19f70f58849ef64654cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (266, '2022-09-15 17:21:39', 'FMMS/POS0219', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '18.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '149e671947f4f47450966e60b29ccf4dbbb1af4a2a037038243c46687fadaf65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (267, '2022-09-15 17:24:51', 'FMMS/POS0220', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '66.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '528810a6ebda3c45c0b387dcf35fcd45d71bcc265d524b9a8301e347b5b811a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (268, '2022-09-15 17:34:01', 'FMMS/POS0221', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '12.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ac11578379dfff8ba08261499607887a978e62723eaabff9ea04365b9dc6636', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (269, '2022-09-15 17:37:32', 'FMMS/POS0222', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59f32045e01907b046e0ca8d9f0e81d4861cd25dfbf654467b49b3604c1a9218', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (270, '2022-09-16 07:56:40', 'FMMS/POS0223', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '132889c191d5fedb0a914cdcfb441e2e2971b18273e54e79cac35ad9c275a9f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (271, '2022-09-16 09:17:00', 'FMMS/POS0224', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '871.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '871.9000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-16 09:42:28', 47, 1, '871.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f69825608244984eb4e5c47ae8a11e12acfa5ffd52e7125507adf17337663d78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (272, '2022-09-16 09:27:56', 'FMMS/POS0225', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '209.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '209.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '209.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fad1eccd9e8d25f54b3bb53410e1b54cd14ef33f1e5350798459489270c0be8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (273, '2022-09-16 09:33:51', 'FMMS/POS0226', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '66.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd03ce9b4def612754f61de44c9c0c8f93e09af3ed11b9b7e0026526806c5aff1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (274, '2022-09-16 09:34:00', 'FMMS/POS0227', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1525.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1525.7900', 'completed', 'due', 0, NULL, 6, 6, '2022-09-16 10:16:29', 118, 1, '1490.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b008a8bb17fc7a63827dc5325348b13021bcfc2d1bd7582a9a1dc2aa8176b8a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (275, '2022-09-16 09:43:22', 'FMMS/POS0228', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '301.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '301.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '301.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c966aa92d842858ca86936140ba7d498c50e9c2bf2006fba34d1bb8c1b081e65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (276, '2022-09-16 09:54:09', 'FMMS/POS0229', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '381.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '381.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '381.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b4a964cef765dd261b7b6cb726aae44cc586b40a7e9e7c0d0c3e6382a3d4dd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (277, '2022-09-16 10:11:00', 'FMMS/POS0230', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2195.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2195.1400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-16 10:17:39', 149, 1, '2195.1400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fad86cef601a4934a0177db27d68460010bdada7accabb1f9a8b690c68a98324', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (278, '2022-09-16 10:12:00', 'FMMS/POS0231', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1238.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1238.0700', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-16 10:17:14', 69, 1, '1238.0700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '999fc7c7464893ce73eb167386ea86240b8dc67469167137a16c38d28f20938a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (279, '2022-09-16 10:38:00', 'FMMS/POS0232', 286, 'Ahmed', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '204.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '204.0500', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-16 11:34:51', 29, 1, '220.5500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fe1e655292f37dff07ea4758c2a6faff6bd4df8d85d8ac64c11479a81761b9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (280, '2022-09-16 11:10:47', 'FMMS/POS0233', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '44.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '44.7300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '44.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '667e05cf9e4d7334462e821394e3c158dd3b2cf3eaa122df7c418417571d2249', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (281, '2022-09-16 11:15:06', 'FMMS/POS0234', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76a4e137ce6ffee3b8533d06f4c24d99cbf27a734630ea3d320d24c5fac9a1af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (282, '2022-09-16 11:23:50', 'FMMS/POS0235', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '335.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '335.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 41, 1, '335.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9b26a3e615433f14f38873fc216a2c92bbc94220421921f90968f128e4a748e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (283, '2022-09-16 11:31:15', 'FMMS/POS0236', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b46baa79cbdc69dba6be64735cf458ce57e9ea6f5fca1c830f7055c08f14213', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (284, '2022-09-16 11:32:09', 'FMMS/POS0237', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '48.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '48.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '48.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eafa1c71aa80494c0bc6b60e1c3b855d841361bd018456afc7849d77044673c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (285, '2022-09-16 11:33:37', 'FMMS/POS0238', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '30.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5c6b0ef1ddd19a0b6995d7c8370828500b19c9b5e47f6ee87ba53422ea4cc6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (286, '2022-09-16 13:26:14', 'FMMS/POS0239', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '19.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3de12d53905a4c0aa0db607f81fe2d575e990c4e10e2ae8cda56b98888cc7527', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (287, '2022-09-16 13:30:05', 'FMMS/POS0240', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.8900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '10.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c668f1340af2b4cd4db9ccc6ef51878c428a25fd7cbd4fd306901dbd2dfe2cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (288, '2022-09-16 13:38:57', 'FMMS/POS0241', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.5600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '52.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0686f78302552dd718b871b639215c854b0f907997eb7f498e5f132bdee864b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (289, '2022-09-16 13:57:00', 'FMMS/POS0242', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.7600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '23.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fe437404d38df5cc2ce6e854a3c3fe2c944649986a2a1b53f0654c2777e3710', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (290, '2022-09-16 14:20:35', 'FMMS/POS0243', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '347.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '347.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '347.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d2648a68537afa90e809314d58d82c7b63fc8f8432289dda74f1d406dff8a04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (291, '2022-09-16 14:55:08', 'FMMS/POS0244', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9639dce59bde52bea77ac3867a5bfa5ea7832446a3afb88745a9ffb72f0f50dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (292, '2022-09-16 15:04:58', 'FMMS/POS0245', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '896.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '896.3200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 73, 1, '896.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6d840de2b42bc9c67d138400ae8518d015e9f173f7c7bcce8730238cf5b9c53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (293, '2022-09-16 15:23:58', 'FMMS/POS0246', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '127.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '127.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '127.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d6c831bb42f4802cc939e420590dd73509a37d0726ac810a90c6ced308acfa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (294, '2022-09-16 15:33:24', 'FMMS/POS0247', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '714.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '714.5000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 37, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5a6e27efed15e09907d508ef3c6a38e050e406decba04c6426ceb3123a93a8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (295, '2022-09-16 15:58:46', 'FMMS/POS0248', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '332.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '332.8100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '332.8100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '017200956481a7b5be2b1c07d372c99db0f0bd8729e86352ab3e4ce1910184bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (296, '2022-09-16 16:34:35', 'FMMS/POS0249', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.8800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '75.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3f456c47fdebe2cc70872cd48f28f3ba76f903dfab5059dfdd8413822d653dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (297, '2022-09-16 16:39:51', 'FMMS/POS0250', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81adc973eaa1b281b93ee860b7f715dd6c32c683662a5f87f161085f3df37582', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (298, '2022-09-16 16:53:31', 'FMMS/POS0251', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '61.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '61.7800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '61.7800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a30009d51cabc87750d746dc2ca97614b39b464e53e69364e4bf3dd086631af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (299, '2022-09-16 16:57:55', 'FMMS/POS0252', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '144.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '144.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 17, 1, '144.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43ae025aa77701280f4e3d58af42cbb6bbcd896a8d1e361029371e8cc9b62b67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (300, '2022-09-16 17:07:10', 'FMMS/POS0253', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '279.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '279.6600', 'completed', 'due', 0, NULL, 7, NULL, NULL, 19, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4ed7ab6f26313cc3952dc6a4c506cf6dfd49d2c403c94a1b17721666e05f653', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (301, '2022-09-16 17:13:10', 'FMMS/POS0254', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '63.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00c05ea11832f9957cb00569cb96e5712390ef01cdce887027574d054267fb16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (302, '2022-09-16 17:14:11', 'FMMS/POS0255', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '722.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '722.3600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 224, 1, '722.3600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ffb8bcd187a9e0a4d2710c27b34ca8304387902168c54ec1d7f93945b911215', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (303, '2022-09-16 17:17:34', 'FMMS/POS0256', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ab0f2434b2c8b6ea99cf7fa2cfb1a72f1d9d892acc6c037940d3adbe5dce958', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (304, '2022-09-16 17:20:23', 'FMMS/POS0257', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '5.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80e2f1d67dcc16bbbbf26e8b05e524ee3c5e5554ae21fe7d8342ce744767d4b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (305, '2022-09-16 17:25:10', 'FMMS/POS0258', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '120.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '120.8800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '120.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '287174f8d19f307876a031bd9cf1be6405c00508f739b058189ede91e02689b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (306, '2022-09-16 17:28:24', 'FMMS/POS0259', 139, 'JOY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.6300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '41.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97bbd3b3dcf8fcd2a823b5f00d4d9e886d8056aba72a517bc84277ee641ef00f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (307, '2022-09-16 17:39:04', 'FMMS/POS0260', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1edf6c7bce36a8c6254d2bd391b0733d61dcec3b4c825016f1ef13c123fec9ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (308, '2022-09-16 17:46:39', 'FMMS/POS0261', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b5681754858797a4fede6cd0ce8a6ca3b85ceebe4fe1ff79e0ca9b8ea6183c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (309, '2022-09-17 07:53:59', 'FMMS/POS0262', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '40.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffa512746622b95d6fe20910398ed68243f80387e7dffefbc52661997c423695', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (310, '2022-09-17 08:20:23', 'FMMS/POS0263', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '81.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '81.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '81.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d9d06044836b44bfe797939f5c15df18311201ef0e5d34e759812c1900211cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (311, '2022-09-17 08:33:37', 'FMMS/POS0264', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '179.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '179.8300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '179.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '774b3987db831d1f9d3caae95120ab806a8cc07b7dccb49f4144c20a378e48d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (312, '2022-09-17 08:41:46', 'FMMS/POS0265', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.8100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '168.8100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2b7dddde68687f6e50aef39b2600f36b1278c7f1e625fbec441c091a20342fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (313, '2022-09-17 08:44:16', 'FMMS/POS0266', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '10.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3f768868b77bbbd68e42c8208457315b4471823595339c79088994ae6a1defa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (314, '2022-09-17 08:56:00', 'FMMS/POS0267', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '277.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '277.1400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-17 09:22:59', 52, 1, '277.1400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd76381e0cf2c5660e7aa1280e578a81e0815f04a8827094750166135ad14b40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (315, '2022-09-17 09:19:46', 'FMMS/POS0268', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '46.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '46.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '46.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d7e568ed460a54eb5e4a3640a1f3c9ac43a4a779c61d5ae9a4ea23e4d1cc6bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (316, '2022-09-17 09:25:39', 'FMMS/POS0269', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb86f40b8be50f8c800404f864c2d4dd483593c3f4d5930802caa933a1d47f12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (317, '2022-09-17 09:53:54', 'FMMS/POS0270', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.7400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '54.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2562ae1be7989acb471f9f8d70562d9898ddb3765d9a173be4fd979abff51c07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (318, '2022-09-17 10:06:59', 'FMMS/POS0271', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '649.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '649.5700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 91, 1, '649.5700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fef429225357a55a12c399ca76eeaa1db00986b4ed8e88ad6416fc7a2a8b0b9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (319, '2022-09-17 10:12:00', 'FMMS/POS0272', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '767.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '767.3500', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-17 12:27:38', 71, 1, '767.3500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a59e0be0d70e78bb4e2b78d1466a329e78949658f584a75c75a906c491bda3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (320, '2022-09-17 10:15:37', 'FMMS/POS0273', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '677.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '677.4300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 76, 1, '677.4300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fef7436410e8d47f7534847375db1cf1398c4ce67dc86be702255fa7f389be87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (321, '2022-09-17 10:25:00', 'FMMS/POS0274', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.6800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '18.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba0af0c9cfa2c01d105f94ab3b5d8ea4c46c7c95ab71ddb04f0c4b7210b6e068', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (322, '2022-09-17 10:38:00', 'FMMS/POS0275', 120, 'Good Morning Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '320.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '320.4200', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-17 11:00:09', 36, 1, '320.4200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7048182d0f42ef4ad68b872896c45c42f303cca7a556abe67de0faf42ccc5bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (323, '2022-09-17 10:41:00', 'FMMS/POS0276', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '494.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '494.8000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-17 11:02:22', 29, 1, '494.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a257b95267850b76c0cd25a333daea8e037225bf2806ca3b3b158dd3f1980f4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (324, '2022-09-17 10:42:04', 'FMMS/POS0277', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '144.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '144.6300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '144.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ba7d3a82c9416876f14870daef33c25cc29e07abcea06917b06f044a1d26c36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (325, '2022-09-17 11:21:00', 'FMMS/POS0278', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '160.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '160.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '160.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e407e65105afb8cf492aabbb4dc96706a703f617202acee05f42650d2842b79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (326, '2022-09-17 11:22:14', 'FMMS/POS0279', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1508.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1508.7700', 'completed', 'due', 0, NULL, 7, NULL, NULL, 71, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50d7c754db73e563c58e8d474c149ca0ce749a552b73675130976b64cdd01eb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (327, '2022-09-17 11:28:00', 'FMMS/POS0280', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '242.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '242.9000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-17 13:27:54', 38, 1, '242.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbd84f5786bf9292f1a1f9069ed44e019140e4fe2fe050211f38a92ad55bad04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (328, '2022-09-17 11:32:52', 'FMMS/POS0281', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88ccdaf235b7277534c65e78bf9ceddf679d653d9bdaf95ca83f33124176fcd1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (329, '2022-09-17 11:36:28', 'FMMS/POS0282', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '217.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '217.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 49, 1, '217.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2278640737685919a0e26edbc32e14ef81f19560144680f06d0c04f4051dc18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (330, '2022-09-17 11:50:32', 'FMMS/POS0283', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b7af6a3e82adbfdc72cdea888d1c0cf9e42ea641c7798e61de5f61a22e925f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (331, '2022-09-17 11:59:13', 'FMMS/POS0284', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '38.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c07c12954fd390147c1758a21a301f8e959af77a9c3b8cc0b1e61579a9dc0e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (332, '2022-09-17 12:00:00', 'FMMS/POS0285', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '146.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '146.3600', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-17 13:26:40', 14, 1, '146.3600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ec79b50af8d0050efaf4395040f510a996e3578575055fdae34749ff53074bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (333, '2022-09-17 12:16:14', 'FMMS/POS0286', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '551.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '551.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '551.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9da28692023c0ce3183b3eddd267abce8a95f673a594fb2d7e000b0d9052fa0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (334, '2022-09-17 12:18:17', 'FMMS/POS0287', 93, 'Evans Appiah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2725.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2725.8400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 203, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bb3c0ffae1f590537be4ab0f3cda66f7e67b7678c4133c0466c7f9ea0dd2755', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (342, '2022-09-17 14:23:31', 'FMMS/POS0295', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '306.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '306.5400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 35, 1, '306.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '096c220f124509d685e456b5d0948a8e31a3f8e15c881cc8d23dc00d49b97c44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (335, '2022-09-17 12:54:00', 'FMMS/POS0288', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1322.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1322.5100', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-17 13:55:47', 91, 1, '1322.5100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1331eb9ef0e6da03113532fdf41bb47c5506d56e829fd0aed508a0e9f2e9fd30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (336, '2022-09-17 12:56:29', 'FMMS/POS0289', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.6300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '79.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3e6369eca21430b23dbcdcbc4fc5c9a129a9ca2fbebb2f16c127089602a2018', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (337, '2022-09-17 13:09:18', 'FMMS/POS0290', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '69.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc7bae46097dcab5d182978ddf797b6ff7d24d5234debc466b03a5ccf03eda42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (338, '2022-09-17 13:21:24', 'FMMS/POS0291', 20, 'Dr. Appiah Kubi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.2200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '63.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11181da6e15c2522485d54cb6cbf34ff8f77c8184c13e05f7973902f605ce25e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (339, '2022-09-17 13:38:00', 'FMMS/POS0292', 93, 'Evans Appiah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '344.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '344.2000', 'completed', 'due', 0, NULL, 6, 6, '2022-09-17 14:10:28', 20, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bf6be1b90b38e9ec9b286f73b55aeb268caa6a000554b112ad984b4fa0e07f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (340, '2022-09-17 13:39:39', 'FMMS/POS0293', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c06bfe70405dce45cd3e308388d75389907a61ef1f8297bcbc69330875a4a1cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (341, '2022-09-17 13:45:25', 'FMMS/POS0294', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.4500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '30.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e70d119190d9a54c7635e55f446576aafdba4d6bdf7c6ae4b66134a8fe3ea098', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (343, '2022-09-17 14:26:55', 'FMMS/POS0296', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.3800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '27.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1b945c6f844ab0b7ab2fdcada6ea0da9a2593758f5d31a262624a7ad80ac402', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (344, '2022-09-17 14:32:00', 'FMMS/POS0297', 72, 'Dela Lorm', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '150.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '150.6000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-17 14:43:51', 17, 1, '150.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7724f50ec862c51df6680b343ecba2b31082f189cce4507f06b1c292802034f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (345, '2022-09-17 14:42:29', 'FMMS/POS0298', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '15.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a77cf9b02e3ff682714fff2bb4e1300a02a63cb4ec7ca032c658f9ef0977b1cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (346, '2022-09-17 14:46:59', 'FMMS/POS0299', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '608.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '608.2800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 67, 1, '608.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7de2000d0da981fe8a8c26609f21321d9f2f271e603582e4393d487c9235dbc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (347, '2022-09-17 15:01:40', 'FMMS/POS0300', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '14.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5223edf5849b7067070bdf5740dcfc5e34d71a4f58378d17af7ad54f6e837ac3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (348, '2022-09-17 15:03:26', 'FMMS/POS0301', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e246bbdaec26f2192bdf4f5207579a14bb9a8360ef3d17aceb6374a53907042', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (349, '2022-09-17 15:47:57', 'FMMS/POS0302', 21, 'ADOM', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41ec4e2be88974703ee723331b19fc7edeaf29ab5d5e63699b9a26f54206620c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (350, '2022-09-19 07:43:44', 'FMMS/POS0303', 366, 'PHYLLIS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '134.2700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '134.2700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '134.2700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36919ab75598865dfddfd41dbac245448fc1315383cdb8c308bfdddd9db2d984', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (351, '2022-09-19 08:21:42', 'FMMS/POS0304', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '194.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '194.6700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '194.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04bb83b26e2fd3aa752045c1969effc86d7f9bd58e31deb7cb45cfa467e99a09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (352, '2022-09-19 08:28:36', 'FMMS/POS0305', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '197.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '197.9700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '197.9700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '699a6ddc4c9f0a1333216dfe958b25c1f5a315c05a9ed6bde09103b5caea8c12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (353, '2022-09-19 08:35:35', 'FMMS/POS0306', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '641.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '641.8500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 63, 1, '641.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cf35e22249564835d2748c4d9275cfd1b4fc74308d0c32f7cace41acce1c1aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (354, '2022-09-19 09:11:00', 'FMMS/POS0307', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '104.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '104.7900', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-19 09:26:09', 18, 1, '104.7900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad6c7637d7b7e5ea76e17441698a99a67b261be1614061a32f96c8fb471609e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (355, '2022-09-19 09:14:36', 'FMMS/POS0308', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '26.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '540bd38dd2dcf7f2353f2dc287268ba1d28e868bfc3544ceace32a4cd82721a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (356, '2022-09-19 09:33:03', 'FMMS/POS0309', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.5800', 360, '0.0000', NULL, 'SR0002', NULL, '-13.5800', '0.0000', NULL, 0, 0, NULL, NULL, '18c4d6e306082aea2344fc8379eec8c995c5a4e74016746222e78a80c59cc123', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (357, '2022-09-19 09:34:00', 'FMMS/POS0310', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1781.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1781.3600', 'completed', 'due', 0, NULL, 7, 6, '2022-09-19 10:40:21', 251, 1, '300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a5b953646f779be474c0e83af8fc5a8edcee0d028cc00186882a42552614311', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (358, '2022-09-19 09:40:44', 'FMMS/POS0311', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '302c7535e2da8ae87139523623be6a4470146ab358c4225f3bf5381a7a9580a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (359, '2022-09-19 09:41:22', 'FMMS/POS0312', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '455.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '455.8400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 46, 1, '455.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '333ad7ada188fcd87afb0a464796c43a2668114a60fa8ef9156a191a7f5aa779', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (360, '2022-09-19 09:43:00', 'FMMS/POS0309', 362, 'Benjamin', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;ascorbin out of stock&lt;&sol;p&gt;', NULL, '-13.5800', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-13.5800', 'returned', 'paid', NULL, NULL, 6, NULL, NULL, NULL, 1, '-13.5800', NULL, '0.0000', '0', 'SR0002', 356, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (361, '2022-09-19 09:57:00', 'FMMS/POS0313', 145, 'GLADYS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '323.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '323.5900', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-19 10:54:29', 25, 1, '323.5900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '104e7d0fc9f53bb7c703427726bbc28f3cfbe37282cfd826ea9362a68a239df6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (362, '2022-09-19 10:04:11', 'FMMS/POS0314', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '820.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '820.9900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '820.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '833aae30ae1fc413ebe0ada508b17d1aa03d5058ea5ec1299b7ff63423b2c45f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (363, '2022-09-19 10:05:36', 'FMMS/POS0315', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '132.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '132.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '132.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '165b655cf875cf7fcbc41e3a4b7b0776583f2a74552fbcb19e359d160dcaafc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (364, '2022-09-19 10:08:48', 'FMMS/POS0316', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '265.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '265.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '265.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a4b91e50c34af8a3c8ccc2395a72aae52df9f78934d0edb854bdd4e45cb44a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (365, '2022-09-19 10:49:21', 'FMMS/POS0317', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec34774933cebc27cd8b8f97a2515d23ca4679dfb147e312b5aeea6a0a15d5eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (366, '2022-09-19 11:13:00', 'FMMS/POS0318', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '942.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '942.6000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-19 11:44:33', 31, 1, '942.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa9b0325d5ccece5bc01d2a25217c3e690ddf0aed3ca0ea8d37a9b7d5397d99c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (367, '2022-09-19 11:29:46', 'FMMS/POS0319', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1107.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1107.5200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 113, 1, '1107.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1584bedacb8aa7287ace931e0fc636450010e0ab1008118276f7dbe7c4081b9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (368, '2022-09-19 11:49:10', 'FMMS/POS0320', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.5300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '49.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b13322340f6d185a177ba659242bc7afe6d003b1139c072985cd488c1cc3f7ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (369, '2022-09-19 11:58:10', 'FMMS/POS0321', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '157.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '157.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '157.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8a8592c380feb316319b679e23ad9ffe23e395301403f184f732ba24f9d3f0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (370, '2022-09-19 12:00:10', 'FMMS/POS0322', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.7600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '10.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f4b121d910c18003c3710485ffec65fd0d2128401876255865665e191ae431d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (371, '2022-09-19 12:04:06', 'FMMS/POS0323', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cacc388060ba529831e16013075177707ead666ff989329552fc4841ec7e295e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (372, '2022-09-19 12:09:54', 'FMMS/POS0324', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '891e4e46c92253adea5e020063f540bdcc4321716b4315e574138e9a4173c2c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (373, '2022-09-19 12:11:00', 'FMMS/POS0325', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4983.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4983.8200', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-26 12:22:54', 491, 1, '5135.8200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9ded4b727892da915d089006c6f0a4b9273f219e61d77c3e3985c3e93526caa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (374, '2022-09-19 12:12:39', 'FMMS/POS0326', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '20.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0dfe0495286683b73dae17d9f08399e25dbd39febc67bb09e15b6df3a7650cfb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (375, '2022-09-19 12:14:15', 'FMMS/POS0327', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.8900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '60.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18b1f878c3e9d6198bb47b85c7742a747321d1b3d006e012578bbb0c5848f889', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (376, '2022-09-19 12:21:20', 'FMMS/POS0328', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '274.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '274.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '274.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b602a17e6d6ef76a6161cd11968db00c61babd8c0c10f8885862412b75849f4f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (377, '2022-09-19 12:36:00', 'FMMS/POS0329', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1121.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1121.4800', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-19 13:47:18', 90, 1, '1121.4800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e2d23e5f8c5dbb795df4bab44bd08c0389941c93c6b94bd47e381e4c4210042', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (378, '2022-09-19 12:48:01', 'FMMS/POS0330', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '88.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '88.4800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '88.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8db20f72b4c7f469073786389d16b5912a6a2fffdb8174fd7a20f05d239d6ee1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (379, '2022-09-19 12:56:16', 'FMMS/POS0331', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1696599612ea05489db2da5a8d87fcd4e23b10d7d964c66cd90f52b92f42ac32', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (380, '2022-09-19 13:19:19', 'FMMS/POS0332', 121, 'Grace Bosompem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a2fcc81ac1d3bd5c7970342b93da5939c0ef1c5ea425fa191ac35179d60d431', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (381, '2022-09-19 13:43:16', 'FMMS/POS0333', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38a1d62a58af1fa87a333bbbe58d24e8efe5509714758f4708862491a18f19bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (382, '2022-09-19 14:21:53', 'FMMS/POS0334', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcaadbf9735c9881154233af494ce7bce9226153a6fa49927a8843a78208a24c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (383, '2022-09-19 14:26:00', 'FMMS/POS0335', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2148.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2148.3500', 'completed', 'paid', 0, NULL, 5, 6, '2022-09-19 17:03:24', 157, 1, '2148.3500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3714b86a6759431ee4b2cc236de7f312ed1402225fd4ba3c692ee8cf8e84fbaa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (384, '2022-09-19 14:35:06', 'FMMS/POS0336', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '51.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '51.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '51.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3283636d71ae8a1df7e975ba12ad5b61b3607d88af97b0ab442b41f26d6e6bdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (385, '2022-09-19 15:12:08', 'FMMS/POS0337', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '26.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26ec36f2e4f15483a41405e020483e9723842ff7f98ecba4473ac3bf3fda1095', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (386, '2022-09-19 15:12:54', 'FMMS/POS0338', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '46.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '46.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '46.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f625078f45fc18ed50e08841e7777a204f439865cc290d3d54b63faa3b61eb59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (387, '2022-09-19 15:19:40', 'FMMS/POS0339', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa15a3fad389b3d79e56f5b670d801d8bc5592b0743acceec2fb02d2148d9680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (388, '2022-09-19 15:22:16', 'FMMS/POS0340', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a442027cf583277e36305c2eb65ec1bc93d508be37e2acda6741b1b0f73abb11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (389, '2022-09-19 15:36:00', 'FMMS/POS0341', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6920.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6920.0100', 'completed', 'due', 0, NULL, 5, 6, '2022-09-19 17:59:17', 534, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a6be3209a1828f78e25ab00e629e1056d026f72546beaa281e986fbda2ead1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (390, '2022-09-19 15:46:31', 'FMMS/POS0342', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.5600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '52.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7933b7e0c2df5ffb04f6d0a438897b1bbc7c1a0f24e78c3f2870c61b5c00bd9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (391, '2022-09-19 15:48:47', 'FMMS/POS0343', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '83.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '83.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '83.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb72cfb881a73976f52ab75a43fd97dab2bc2f2c6625f0035546be1dd708566f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (392, '2022-09-19 15:56:45', 'FMMS/POS0344', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7b5b86890cca06f3e658f2dbea0f7938e9d30c7deee3728925c20e4890c04b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (393, '2022-09-19 16:33:37', 'FMMS/POS0345', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.2100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '14.2100', 395, '0.0000', NULL, 'SR0002', NULL, '-14.2100', '0.0000', NULL, 0, 0, NULL, NULL, '7fdb3ca730d2111aa6464578a71b30f2039513529c3ee6d11799a87c033d5cf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (394, '2022-09-19 16:41:15', 'FMMS/POS0346', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '789bfba8f2be7fcd65c762dfb898c82b46e93f021e2bea408b74502775fbb646', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (395, '2022-09-19 16:42:00', 'FMMS/POS0345', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;drug returned&nbsp;&lt;&sol;p&gt;', NULL, '-14.2100', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-14.2100', 'returned', 'paid', NULL, NULL, 6, NULL, NULL, NULL, 1, '-14.2100', NULL, '0.0000', '0', 'SR0002', 393, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (396, '2022-09-19 16:49:48', 'FMMS/POS0347', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd14bedeedf24156df0f09a97de51c327e580693bc4a2f9755ea5b2ebe48395e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (397, '2022-09-19 17:27:29', 'FMMS/POS0348', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8923ddaf9db575b908788b9108454fc14531f0e2faf704737d8993654d2193b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (398, '2022-09-20 07:53:24', 'FMMS/POS0349', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '64.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '64.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '64.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '768c7078c2b101fb34a41db1625825b262cc7490c2c3b38b3d2977c4e715f4de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (399, '2022-09-20 08:07:48', 'FMMS/POS0350', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0432aa008e2dd03cec33f7aea2f5d749cc685f7d3916679cc6b9a4b414b1bba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (400, '2022-09-20 08:12:00', 'FMMS/POS0351', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '184.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '184.1600', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-20 08:43:41', 31, 1, '184.1600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc9f60eed21b9d56cbfe7f062b77e11e6a41d4fbd238e0f80bf40c7ba9fe2397', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (401, '2022-09-20 08:56:32', 'FMMS/POS0352', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '53.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '53.3200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '53.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5a927cacf6cce62f7910cde66d31b49e92390a946431fd51952951582be3b19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (402, '2022-09-20 09:20:00', 'FMMS/POS0353', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '515.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '515.1200', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-20 10:35:43', 28, 1, '515.1200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a071eef5217d3a972fc162785b7cb4dbc3ebe7d7ae236d1591e875bf1797be46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (403, '2022-09-20 09:39:17', 'FMMS/POS0354', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '447.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '447.0200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '447.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d5e1d8a985b6af4aa43e558b676f15b6c1f4244551b5b9eaf3538c064a2f2c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (404, '2022-09-20 09:50:35', 'FMMS/POS0355', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.2600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '27.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec1fdedaf9adf2a9e0c38b4d16fd5ff5f66327e5ff1e1867a0bd15f9416ee750', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (405, '2022-09-20 09:55:44', 'FMMS/POS0356', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '078d122aee4acc1e2f18cb56a42b53a7fc739dc845cf393bf732ee1b2e21a466', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (406, '2022-09-20 10:16:59', 'FMMS/POS0357', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '248.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '248.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '248.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac7d2ddc58b78485b39103baaceca28c639d5fb8cfe2c0ff4aa325ccfb9b6f3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (407, '2022-09-20 10:20:00', 'FMMS/POS0358', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p xss&equals;removed&gt;customer returned livopat and neuropat&lt;&sol;p&gt;', '&lt;p&gt;customer returned neuropat and livopat&lt;&sol;p&gt;', '660.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '660.2800', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-21 12:46:11', 40, 1, '721.8300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb8f864461e42847aa9d8b48cf93c9c959bc2de5e7055017ca0b41e3f8bc2608', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (408, '2022-09-20 10:22:27', 'FMMS/POS0359', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.5300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '55.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b848b078688f87e49fc71baeea31af9b7dcd583d24ccd04ec2cd7a6649c7f2c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (409, '2022-09-20 10:57:10', 'FMMS/POS0360', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '444.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '444.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 76, 1, '444.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1827676ea752a9f3525a04dbcf2bae547d07aee1aca3be148f3f6f731af2076f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (410, '2022-09-20 11:05:01', 'FMMS/POS0361', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '166.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '166.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '166.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '866e5db24a2efdd3c301ecaf495db51d00f67f7da6b856caa0f825e9470ec578', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (411, '2022-09-20 11:31:47', 'FMMS/POS0362', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '349.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '349.4400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 50, 1, '349.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecab46a476f6c2be3fbdb059cca819ed28405de1c51f00decdacac253787c13a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (412, '2022-09-20 11:55:00', 'FMMS/POS0363', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '588.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '588.6800', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-20 12:49:11', 71, 1, '602.9800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17a0a6e56d79dbea8ef12fef1e2f0b784f27a42315fd595a99244bbb241a6cb3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (413, '2022-09-20 12:03:44', 'FMMS/POS0364', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '265.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '265.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 1, '265.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34dba2e037a20b810b656c5a4ac306452f08e9bc5bbbf1d756fdc8916adc3bc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (414, '2022-09-20 12:18:47', 'FMMS/POS0365', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '264.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '264.4100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '264.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45058756104573107f4f48d77ed4d298db386e1b750d12062e38f4405775f102', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (415, '2022-09-20 12:21:07', 'FMMS/POS0366', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '983.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '983.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '983.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abfa403608088427892b2c3bdcc292e82529506963a698d0dd3c18dfb5ad8e21', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (416, '2022-09-20 12:31:00', 'FMMS/POS0367', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.8900', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 4, 1, '52.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87201b2772979172cc0c84f4b30b05023efd9be905b1a4d3816e3d9a1977d2b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (417, '2022-09-20 12:31:00', 'FMMS/POS0368', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '785.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '785.2400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-21 12:33:24', 49, 1, '785.2400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d41bc15a4b2c547ad4a8712a1c0b88782be9628787640b7881e1ba74b897ace', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (418, '2022-09-20 12:34:21', 'FMMS/POS0369', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '118.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '118.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '118.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc95ddf131619245baa95568f38391e143c98c1c56ffded8970c6dd63ebfa9c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (419, '2022-09-20 12:34:34', 'FMMS/POS0370', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.9000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '5.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e159ff4df9c0a7e4ad488a7ab194dd8858ce2d0db1afa5f50d2e90a27b37713', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (420, '2022-09-20 12:37:09', 'FMMS/POS0371', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '74.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '74.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c117e3c89e4e78ad759e94c4c6201ca006aee4a41dfa1590c545b76ca0fddfd9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (421, '2022-09-20 13:04:12', 'FMMS/POS0372', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '416.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '416.9000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 32, 1, '416.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2167919223fcedc1468d949a88867f36d0031561153582ae80483ab056adcf7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (422, '2022-09-20 13:08:31', 'FMMS/POS0373', 369, 'Arhin Chemist', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '186.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '186.5600', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 2, 1, '186.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6b90882c1757e0d9749f40aa1284f7ec722b22f803ce897c0dd12ef577192fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (423, '2022-09-20 13:08:34', 'FMMS/POS0374', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '105.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '105.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '105.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5d1403fa173406f17f20e6de5357fa5f55d71b1bf35b138e3ae931ccc6f21d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (424, '2022-09-20 13:08:52', 'FMMS/POS0375', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '26.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0372e41ca4e63b4d1b43a7eb7bc296830f2bc8e16d2a0d2818eabcc1d9c218cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (425, '2022-09-20 13:21:38', 'FMMS/POS0376', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '680.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '680.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 68, 1, '680.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28d31dbf90c670236914c623fe49d4646bdb3ebab5b617de131b2823ed384777', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (426, '2022-09-20 13:30:47', 'FMMS/POS0377', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '176.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '176.1800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '176.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6eab48293a7336524a5476018e14c905c0e50e89f1679626a3078763254e5f97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (427, '2022-09-20 13:33:04', 'FMMS/POS0378', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '59.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c61399277f684cdf45acab3a76c19c8a1bd65a94b85f2dcb83358d0c7363328', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (428, '2022-09-20 13:34:00', 'FMMS/POS0379', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '490.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '490.1100', 'completed', 'paid', 0, NULL, 5, 6, '2022-09-21 15:23:40', 38, 1, '490.1100', 486, '0.0000', '0', 'SR0002', NULL, '-454.9100', '0.0000', NULL, 0, 0, NULL, NULL, '7e57d5c7159afa85c695da0521291873bb8de618287b933c755af8e7a0f1322f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (429, '2022-09-20 13:44:28', 'FMMS/POS0380', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '17.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04dfbc9dc7da30f5db36a0cc9d87e9fd9a3a958f0c963b032d6d1536847a7d5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (430, '2022-09-20 14:18:51', 'FMMS/POS0381', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '167.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '167.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '167.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '784725b4d747be13f42bc191da5c6f87bbad6375d2a697d7af66fe3ee6d674b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (431, '2022-09-20 14:41:45', 'FMMS/POS0382', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1316.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1316.3700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 87, 1, '1316.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c8c1d3c7399974e390910397eb9343816a699f415ffe017a9292dc10dc7bcf3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (432, '2022-09-20 15:24:09', 'FMMS/POS0383', 233, 'SEED PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '384.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '384.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 48, 1, '384.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa4d5947df169b32908dd187e9b0f83ad56251995381911690b6e5d418313100', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (433, '2022-09-20 15:50:03', 'FMMS/POS0384', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.7400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '40.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ffae5b2637281008d2986570b960de5f7797acb38d0ad20c8f282903c900ea9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (434, '2022-09-20 16:04:41', 'FMMS/POS0385', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '288.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '288.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '288.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd23f2f64dc222134537452d024cede7e82c2bf221b6389a66c40bdb3fa51574a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (435, '2022-09-20 16:14:46', 'FMMS/POS0386', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbf03c300e038203085ffcdfa70067f50d65aafd7b3ef428669f3037764013d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (436, '2022-09-20 16:18:07', 'FMMS/POS0387', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3254.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3254.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 262, 1, '3254.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20cf275bc8d1199fd5d044d95bcfb9e53a9f6e0548c4e19954f209027fa07970', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (437, '2022-09-20 16:20:07', 'FMMS/POS0388', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '87.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3249f81ad7a792e7a51e78cbbca6e6dbd65211936f4f7f4dc1796912f2b96fc5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (438, '2022-09-20 16:22:21', 'FMMS/POS0389', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '87.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1bfd987f18181c9ecde78a5c6aab9a23cc817572a69ea89ae4dac67fc418576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (439, '2022-09-20 16:26:53', 'FMMS/POS0390', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bf28e61d18215b16674ce7eaa4a72d377c04bbe85803269f7034f91ce8d9368', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (440, '2022-09-20 16:28:19', 'FMMS/POS0391', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '162.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '162.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c01d5da9d7d572f1df22013004c8d77faf555084cc72e090313b8b66687002d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (441, '2022-09-20 16:51:58', 'FMMS/POS0392', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88d91ed6cfcdec1b1c9da8f93342e9de1efeaf166ba9bcca0821d00fa7468e8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (442, '2022-09-21 07:58:06', 'FMMS/POS0393', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '46.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '46.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '46.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97301b81ca4f804d0364d95cf888869528d1e30e43d5343106e6c7c9194a7410', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (443, '2022-09-21 09:00:52', 'FMMS/POS0394', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '450.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '450.7200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 74, 1, '450.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68d29a4fcb465e93d32f8baeacb512daec949e47d639f98ee5b067c110df80a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (444, '2022-09-21 09:15:41', 'FMMS/POS0395', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '346.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '346.4100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '346.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eed0c3c2614f0d3ffa48059311f8dde3b6c64e3022c0f26ee237c433f84f6bd8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (445, '2022-09-21 09:28:54', 'FMMS/POS0396', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '30.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '274da422c8cf8105a04b4cbc54494bb7af22f70c8afbbcbc9816b96a2f2e9cfe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (446, '2022-09-21 09:53:32', 'FMMS/POS0397', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '287.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '287.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 43, 1, '287.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '353ec3ff8ffe445b95493256ed5566aeecfde9d0a8688f1d43bc4cf2f29afc4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (447, '2022-09-21 09:53:48', 'FMMS/POS0398', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fac0e67f541c36d396c5523e9166fa87a00d122878eecdba3dae8218fdc9f44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (448, '2022-09-21 10:19:15', 'FMMS/POS0399', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.2700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.2700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '43.2700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c901e516bfba01018c51c37d41884b667af4b0818e02856676085e29a5080dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (449, '2022-09-21 10:26:09', 'FMMS/POS0400', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.0500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '26.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc0a90685ae1b399715d5a79be6190003fb3603e270f3f16e8312bb43ed37249', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (450, '2022-09-21 10:31:49', 'FMMS/POS0401', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '102.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '102.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '102.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443d7c5e472aaef6a9dc77407cd844296e5cdbae6a2cfcaf1c837cae0bf0456d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (451, '2022-09-21 10:37:49', 'FMMS/POS0402', 370, 'Obaa Yaa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '93.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '93.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '93.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2897c7aaaf12cebab433cb891aa9eddbe900ecae6a1d2b8ff9ddba880f6af0ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (452, '2022-09-21 10:39:50', 'FMMS/POS0403', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.1500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '69.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '299b9c67816c522d76a5a9253003c2883c856d9affcb1c88451e307003a1ee8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (453, '2022-09-21 10:44:02', 'FMMS/POS0404', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '73.7400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '73.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b56b44b5e4932f82cc85473993a088dcd34cd8492b98a15131b670548ae2bed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (454, '2022-09-21 10:48:08', 'FMMS/POS0405', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '16.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6efe10f7716f1a869f8ae104d42d447942e9596c52c77b7f2ee1c11581d2320b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (455, '2022-09-21 10:51:46', 'FMMS/POS0406', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f15f47822602b736e5b28406c5822d703bb07666b1dcba3b380f8290945f94a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (456, '2022-09-21 10:57:56', 'FMMS/POS0407', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '41.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96d0e0a62ade9c6fe37ce4f25f64862c2738afb3d17b49af09f78d38cf484d1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (457, '2022-09-21 11:00:31', 'FMMS/POS0408', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.8600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a179692fcf6bddfdae3d8c8f4f42dd4c14ef6df9e364c98fc53350d8fe9938a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (458, '2022-09-21 11:09:00', 'FMMS/POS0409', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '109.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '109.3100', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-21 11:55:20', 11, 1, '119.2900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '789920fb9bb63fe82e9d789dbca91e492c2f11580b3096b74b25cba36702d756', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (459, '2022-09-21 11:16:03', 'FMMS/POS0410', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.2300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '99.2300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66cd457b951b0cc6b3c94944f4404afbabe482199a702d4c29bfa6f6ab3c2c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (460, '2022-09-21 11:28:41', 'FMMS/POS0411', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '58.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '58.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2743fe9f42d55fb1d2abc4b93c23794b87f710c412920ec11e140af3b9b9d37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (461, '2022-09-21 11:30:13', 'FMMS/POS0412', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9acb0c3693edd2e86d1cfd59e1b7523aa1b77f6e031442d55b49aaec21a20aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (462, '2022-09-21 11:30:16', 'FMMS/POS0413', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '88.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '88.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '88.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ec4747aa2621fd1de67eb3b13f582589313f212ddcfffce873094e638933438', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (463, '2022-09-21 11:50:16', 'FMMS/POS0414', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '156.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '156.2800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '156.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88a3f5dca84ba02ae2082d249cd2c0a440f2615f218c8e52127f20f30ca21f52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (464, '2022-09-21 11:58:00', 'FMMS/POS0415', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1039.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1039.7800', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-21 14:02:38', 127, 1, '1039.7800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0e251e7a862bdb03215e8d5cc5fd9e545678f0c69b4d9ae36338466b36ac835', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (465, '2022-09-21 12:02:22', 'FMMS/POS0416', 64, 'cynthiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '200.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '200.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcbbc104c3ff9983d0eaa24f5ac0dd5102b37dc1b68570c1cbe597ac724402de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (466, '2022-09-21 12:02:00', 'FMMS/POS0417', 145, 'GLADYS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '349.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '349.6900', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-21 13:10:06', 68, 1, '349.6900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e31ab95f2f06f7830624054ef634af0e5f052403827c8f329ad1a1d326047816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (467, '2022-09-21 12:15:15', 'FMMS/POS0418', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.4400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '23.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7a56dc334f818add6c0fa0b3e5dffb51fa3c99927cf420348f41136b3d53aef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (468, '2022-09-21 12:16:25', 'FMMS/POS0419', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.8500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 9, 1, '1.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f18b2cc78f2ab8454807487526fe7e29be70f915ca20ec42389306886f1a2c4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (469, '2022-09-21 12:21:25', 'FMMS/POS0420', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '158.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '158.6400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '158.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8250d734e6b78bc266fc038a76c56a72046b05d1011c01a58ba7165b43226895', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (470, '2022-09-21 12:28:34', 'FMMS/POS0421', 371, 'KEDEM V', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2db03f336b2a0f1f2d28aeae3d5d07cab8b0b8aa90cabb3da5946150bf966cd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (471, '2022-09-21 12:30:54', 'FMMS/POS0422', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '285.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '285.7400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '285.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdf1c9c5a66038662925ba9eae6abe7ad1c720f613033baf7b98e069010e880e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (472, '2022-09-21 12:33:56', 'FMMS/POS0423', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '425.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 5, 1, '0.0000', 647, '0.0000', NULL, 'SR0002', NULL, '-425.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a896f471c59c26376f993bfea7167dbeceec5b82c0ebc1914f6ee3224304818b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (473, '2022-09-21 12:37:12', 'FMMS/POS0424', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '20.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32b06081b27ae29fabb633b16a019916716d8ad8ce370fc43cf0c7c4398665f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (474, '2022-09-21 13:04:48', 'FMMS/POS0425', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '29.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '29.4500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '29.4500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cc1b8eab32bb4986e875dec8be85e23340cd81a0abd7052e2d8345ba771711f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (475, '2022-09-21 13:11:06', 'FMMS/POS0426', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c31647b034f3f7fc8853a5e6f62ce6e7463334dc6ffa8427e6407331545903d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (476, '2022-09-21 13:23:49', 'FMMS/POS0427', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2014.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2014.1200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 167, 1, '2014.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9bb30c86408aa93fb403820705793179cab5f00bfc0cebaff9fe34463b20c566', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (477, '2022-09-21 13:59:08', 'FMMS/POS0428', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2282.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2282.0900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 157, 1, '2282.0900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0aacbff44960efc5cd94b64ef576283e7ef7c2e9b21ab0464b36854f5dcbb96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (478, '2022-09-21 14:06:33', 'FMMS/POS0429', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '42.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef85d60af90c6e53934566a88ba49c89796a5b373cf2898c0cdf5de66c365ce3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (479, '2022-09-21 14:35:56', 'FMMS/POS0430', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '59.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '910e1e2d57dea63f83b74a03016d9886485c80aa45046831a6c6f1158b762b6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (480, '2022-09-21 14:37:14', 'FMMS/POS0431', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '442.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '442.1600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 64, 1, '442.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '917918c69fca10afcc950dc2650dbfa0cf5841910d0f7b5d2510a57f4f42351a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (481, '2022-09-21 14:43:40', 'FMMS/POS0432', 166, 'Madna Pharmacy', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '95.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '95.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '95.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15ac05c53e3316b6f798edf958a960bfedfedc232dd143892f18b60b99133144', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (482, '2022-09-21 14:46:43', 'FMMS/POS0433', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2064.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2064.0400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 143, 1, '2064.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3789ce4a2dca1776b26e686692400a9e1db58025e8daeaa5b81bc85c1aa6ecc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (483, '2022-09-21 15:04:08', 'FMMS/POS0434', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '502.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '502.7100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '502.7100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ccddec2801c816055609d24b2597161fd7f7a4a38be393ca753acf03e2c30c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (484, '2022-09-21 15:31:47', 'FMMS/POS0435', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1316.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1316.1000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 128, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f81b0e5c686c924800e5be987184423954a1cdb450c77fb12fa34254f7e8b9f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (485, '2022-09-21 15:42:54', 'FMMS/POS0436', 250, 'TAP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5c1230b413893416675464af22622aac8f79c331295c9a8f369c7287f1aba24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (486, '2022-09-20 00:00:00', 'FMMS/POS0379', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', NULL, '-454.9100', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-454.9100', 'returned', 'paid', NULL, NULL, 2, NULL, NULL, NULL, 1, '-454.9100', NULL, '0.0000', '0', 'SR0002', 428, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (487, '2022-09-21 16:16:13', 'FMMS/POS0437', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c665eba4e394a11f27fa165b3715f38b1e93801ca54ca55a4445cd4dce74e6e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (488, '2022-09-21 16:20:30', 'FMMS/POS0438', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1216.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1216.1100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 79, 1, '1216.1100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c10ef8d9d2130151af8487504beebb90994c6766e1b3c62d452f3974fd0d9328', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (489, '2022-09-21 16:36:00', 'FMMS/POS0439', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '285.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '285.2500', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-21 17:01:52', 71, 1, '285.2500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a38c33783950e48f75332a1bdbfc3808608a1a055e155b55f7e706c416cb4747', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (490, '2022-09-21 16:37:32', 'FMMS/POS0440', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '54.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3442079e22f2ac2b0a4ed256daf4e9bbbaf417090e42c2817ea6a04402e38c7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (491, '2022-09-21 17:02:58', 'FMMS/POS0441', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '121.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '121.5600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '121.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b069ae4aeb8532c09964850602dfba3eb470eb85609e98cb186c4fea8f6345b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (492, '2022-09-21 17:26:00', 'FMMS/POS0442', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-21 17:34:41', 1, 1, '13.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d94df76fe86c81fa3f0856fbcc274cb226487f518d4043e7554e839ae262006', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (493, '2022-09-21 17:32:42', 'FMMS/POS0443', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f3699ff23f109a222bd90c94c4115a7d27c5a5886205a5899f20d8fedc6c7d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (494, '2022-09-21 17:34:33', 'FMMS/POS0444', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3.5200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '3.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a29612bad7ef2e3bbdfbd99608265f43899e879acb7c07fc5c56bd29d7ebbaf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (495, '2022-09-21 17:43:22', 'FMMS/POS0445', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e021252db4f180397eb7df12e5473ea995f1b2f7911dc557b79ee12111737cdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (496, '2022-09-21 17:52:11', 'FMMS/POS0446', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df7bc8523ebaa1505f84971a14d950b71ef421014676cc5c2d414e7fe5741b14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (497, '2022-09-22 07:39:24', 'FMMS/POS0447', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4c0a7a2193e92878d8b677b65824d6de805d5d9455c778e017b62215db1a2c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (498, '2022-09-22 07:41:45', 'FMMS/POS0448', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '82.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '82.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '82.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b063d84f320c0918e7b4da7fb985379b91f9c54861c81fb050349e617135025f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (499, '2022-09-22 07:46:25', 'FMMS/POS0449', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15da247664b31e375e6afaf08f9f9a01535c1c0968198b57be1676e5f24a2010', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (500, '2022-09-22 07:53:02', 'FMMS/POS0450', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '124.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '124.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '124.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0b43624f789322e4a83900951234e244aca1f298693832c7df594458755f973', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (501, '2022-09-22 08:06:31', 'FMMS/POS0451', 86, 'EMerald herbal shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '142.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '142.5700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '142.5700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffc13c96d381a3a730d86ed4fab8f7a399d77c92a6d96f60ba68dfe90940d9c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (502, '2022-09-22 08:27:01', 'FMMS/POS0452', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '130.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '130.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '130.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '223930aff907f97490da0fd404cda18af76871a7076c17165115731acbd7e453', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (503, '2022-09-22 08:39:21', 'FMMS/POS0453', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '47.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '47.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '371748b01b0a0af8571b5a72c1c746b2b26477f88bb4ef04a79a796c4f8eec7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (504, '2022-09-22 08:55:31', 'FMMS/POS0454', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '250.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '250.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 49, 1, '250.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3dbc39f465043196b3b929714c360b15ca85a25dc9c352a905ba125009d0246d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (505, '2022-09-22 09:00:58', 'FMMS/POS0455', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '183.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '183.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 64, 1, '183.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '184181bcb2cd58051d4b92ebb4e2d0f85418050bb14d1898c9d2e7999ab5a009', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (506, '2022-09-22 10:11:00', 'FMMS/POS0456', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-22 13:45:14', 2, 1, '25.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f00f0a6eec2b25232af65056a7d7b3d4e51cc1bc0168fa54bb4aa6b7be3871c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (507, '2022-09-22 10:12:00', 'FMMS/POS0457', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '175.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '175.5400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-22 10:25:02', 115, 1, '175.5400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48b8b855bde1cc47747d21c1d1f91523a6d490acc14ebc788f4e17de1ce80bce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (508, '2022-09-22 10:13:27', 'FMMS/POS0458', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '409.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '409.4800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 63, 1, '409.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6a7b1f85d79f79e32109b6f800f7d836be8cdcd170fb5918d97c14b10e9331e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (509, '2022-09-22 10:35:00', 'FMMS/POS0459', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8441.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '8441.6000', 'completed', 'due', 0, NULL, 7, 6, '2022-09-26 11:52:47', 492, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c71aef82a5636078118e909034c84a8ca0c8edea6b7848618bd0a7a8358d7383', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (510, '2022-09-22 10:51:35', 'FMMS/POS0460', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '950.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '950.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 37, 1, '950.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e314eacba2edad68e9e6fad0e7c0826f7fe39fa3f9757bc92b84cdccd32c36aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (511, '2022-09-22 11:46:22', 'FMMS/POS0461', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '276.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '276.4800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '276.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '371fba5c330d4483e70632ad672b07cd38c9a90880460b7a56ad0f8892eef9da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (512, '2022-09-22 11:48:32', 'FMMS/POS0462', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '21.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a98e36a0df7f3d8217ca1874b80bbf7c352e74de272621cf8a47437179a749dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (513, '2022-09-22 11:49:56', 'FMMS/POS0463', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32de5ffe81f90fa3d121bd57c2575335e7aa29bcbd5d2009249ac4ac8905cfc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (514, '2022-09-22 11:51:42', 'FMMS/POS0464', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e33bf8afb7b89441f85b88cbe6ca7c51385e01f96adcea35b2b3c9923aacc68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (515, '2022-09-22 12:02:10', 'FMMS/POS0465', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '576.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '576.4500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '576.4500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf868b22d7b4a3b4b28b951f2e346dfdb2be3f57ec19697e87eb853405784f1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (516, '2022-09-22 12:10:31', 'FMMS/POS0466', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '72.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '72.6700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '72.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16cae90ecdb2bf219a9ce34e9aef83719bbe7e99e684dbc5649b23490a1e3294', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (517, '2022-09-22 12:30:07', 'FMMS/POS0467', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.1200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1b88fc1871dcf17f584eabe4cca4d85fa304be11d8598db2d6a297079b1eafd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (518, '2022-09-22 12:34:16', 'FMMS/POS0468', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '64.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '64.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '64.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04c500bf0651b6073ee93e7cafa02ca7f272c79da8fbe17d2cca4385b935355b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (519, '2022-09-22 12:50:47', 'FMMS/POS0469', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '283.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '283.6000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 9, 1, '283.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01f5e73df4be2be352902721ffdb868f5cfd34a85c5490bb1653c9659b5b077a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (520, '2022-09-22 12:55:00', 'FMMS/POS0470', 373, 'St. michael', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3344.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3344.3800', 'completed', 'due', 0, NULL, 7, 6, '2022-09-23 09:15:26', 284, 1, '1393.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '858ee745d8f6b1925fd337c744bbbdf9e68024dd84ac8dbd9d17abc6612e7b0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (521, '2022-09-22 13:01:44', 'FMMS/POS0471', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '120.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '120.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '120.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ada7def8ba1ef1aa3afa114c1bfc09db1ad947f99680cdd444611a5985bd8a42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (522, '2022-09-22 13:38:00', 'FMMS/POS0472', 170, 'MAWUDOR CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '688.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '688.0500', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-22 14:36:50', 72, 1, '688.0500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a55672748396bbc9b452d750a24c31fcec027a87f66141d19ffce842b25cd840', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (523, '2022-09-22 13:57:38', 'FMMS/POS0473', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '503.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '503.7100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 42, 1, '503.7100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6eed457704af1ff25610dd25db9b88a7d8de820bb0727a7063d8c0b17991de41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (524, '2022-09-22 13:58:52', 'FMMS/POS0474', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '52.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4098dfa5dcc3d70f3d558006dd983decb055efe48a3e4d2d694e7a0822143b24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (525, '2022-09-22 14:39:18', 'FMMS/POS0475', 170, 'MAWUDOR CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.4100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '30.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59c571c740368dc5f25eb527ea1bdea48e1def9b08ebedebabc71bed31e27c50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (526, '2022-09-22 14:42:05', 'FMMS/POS0476', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '162.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '162.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '162.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9da6f8cfdbd17c75e8016846dd5e80e8c21614be77ffa46f240ab8bc99897ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (527, '2022-09-22 14:44:04', 'FMMS/POS0477', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '33.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72ad7e6b2bf98d0fc8e4e2e80863d34a5c6044f3e70cbed5e5fed472e8e9c4a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (528, '2022-09-22 14:48:06', 'FMMS/POS0478', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62b23024eef5efa19a3c3daa8ca304daecebcf57a55b36d3146a3d4d0888a728', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (529, '2022-09-22 15:10:09', 'FMMS/POS0479', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '452.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '452.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 55, 1, '452.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c189f858b88bcc916aaa2bae8366c3daca822066c3b6d0c1568b2ebdd7a2158', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (530, '2022-09-22 15:12:34', 'FMMS/POS0480', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e72af844cb4dd96e7167c825ce7f0519cb51c384f432dcb369955fa4087f4e62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (531, '2022-09-22 15:13:54', 'FMMS/POS0481', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '79.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e29182682143687119b3fab29ee5b777eeb702f4213af8aaddf8c2f38724c3b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (532, '2022-09-22 15:14:53', 'FMMS/POS0482', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '58.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '58.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29a748377a11be1eccf3d11b37d8f5695e16e960a6c676f6176eeb3963916ed3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (533, '2022-09-22 15:17:47', 'FMMS/POS0483', 194, 'Zakaria', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '23.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e11cf670f069f2857646f58707bb8f0a0be9bb27baca494174fc251162a5fdbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (534, '2022-09-22 15:21:33', 'FMMS/POS0484', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '432.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '432.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 24, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba56eb03aa798c8debfbc9412a40a42873a3edac12bf01e06113e5745ead441b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (535, '2022-09-22 15:45:26', 'FMMS/POS0485', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94e5af1a8db1e8b829d22a86c7c5c28f60b2db0e17692b0b8a6df8a748afe700', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (536, '2022-09-22 15:53:30', 'FMMS/POS0486', 194, 'Zakaria', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '928dbe8964e255f21a078ae3cb442281a1e99d9e3413cd6f0afc26b6b2d345f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (537, '2022-09-22 16:25:32', 'FMMS/POS0487', 180, 'Mensah Tabitah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '2.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e635480d54f5390c4ceadc04d26a2fa96ebd4fb70455313b33edd6462eb9f46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (538, '2022-09-22 16:40:10', 'FMMS/POS0488', 70, 'DAVID', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '22.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc595c36dcf8fb4d576e6a397ce8b7e101d7ab66966965a08c64ce71f5320729', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (539, '2022-09-22 17:01:00', 'FMMS/POS0489', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '530.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22720db235c1d4ed1d2497135165c6d8dbfe4056a32ffa62955fd4d6f6b06a57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (540, '2022-09-23 07:55:30', 'FMMS/POS0490', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '19.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cddbcbd35a3c06bfba9c07dc054b11785430491bd89dab918aa76747ca4f1cee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (541, '2022-09-23 08:11:15', 'FMMS/POS0491', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.2800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '43.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6693a8cb2f0592715ea125c01a7a19b10ab8ab4c49dcc7968def7afc67fd163c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (542, '2022-09-23 08:11:57', 'FMMS/POS0492', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '324.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '324.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 30, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32de0cdcea63dc2585a4f4c544776c1870e31809db5df01b5a5ea12c8125287e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (543, '2022-09-23 08:34:00', 'FMMS/POS0493', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '428.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '428.9700', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-23 10:37:32', 62, 1, '428.9700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff3756d9441ab45f16ea258e954f3df54e34337c9f116279e28ad52385dc8b55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (544, '2022-09-23 08:37:00', 'FMMS/POS0494', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '9.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed12105e91842a299b78a3e7c7d96a9211e0252ecdb0cd23d7b7f2f65aaf67fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (545, '2022-09-23 08:53:38', 'FMMS/POS0495', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.6700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '42.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c89bc1837cfeb3eaedb29863c76ec6f25ced88f77e214410367389abeea100b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (546, '2022-09-23 09:30:52', 'FMMS/POS0496', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91f510169f792ccc8c0e952cfa077eeef1620bbcdba6f2e54c09d98a9467e10f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (547, '2022-09-23 09:37:05', 'FMMS/POS0497', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c26ad306de83ba1b531d28dd11b88fe8f9da4abe2922b0d18b62c2556344b422', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (548, '2022-09-23 09:51:39', 'FMMS/POS0498', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '19.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03d67e222140d2bf6b67741aeb11702901b9adb21bb0fb4026be6baef4aa23f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (549, '2022-09-23 09:52:26', 'FMMS/POS0499', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.1700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '54.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a08a1eff768655e7a26fc534d63dca01dca54a4c5de2b74f39e8bb1252c50733', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (550, '2022-09-23 10:10:57', 'FMMS/POS0500', 373, 'St. michael', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.5000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8327e351fa2728ed06180d5b3c4320d54a1aa64590b9cb87bae6c17f62cce776', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (551, '2022-09-23 10:34:01', 'FMMS/POS0501', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '887.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '887.5400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '887.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd187581e98268d9ef853a4bec440b4826f5076387899ccf9bc602bfefbd7a602', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (552, '2022-09-23 10:54:14', 'FMMS/POS0502', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '22.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21cc34d52875ee3a110e4eb6c71df8904bcff4d82d39950016c55e95ece76de2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (553, '2022-09-23 10:57:17', 'FMMS/POS0503', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '9.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abeb76fed81d65e858eba8247b232c2cf534f18789622bed1c1e936b310eab4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (554, '2022-09-23 11:21:00', 'FMMS/POS0504', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2071.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2071.0500', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-07 14:22:02', 166, 1, '2076.0600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71c3395882f36733a8832fc8fdd63fd12c219565bc7b32cd9c7233fff09f6cad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (555, '2022-09-23 11:24:46', 'FMMS/POS0505', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '30.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3258f909cef79b67056323f5b213bec8933158b064c8f2e34172cd9291a48486', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (556, '2022-09-23 11:29:20', 'FMMS/POS0506', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26c845c708cb60028551bffd42e8bef5eaca1dd87814fb2cecc493eb9b0de930', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (557, '2022-09-23 12:40:50', 'FMMS/POS0507', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '39.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa38ea864b2aaae01d750a234e6242771c87d40df633fad2bfe31a5a8e674b8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (558, '2022-09-23 12:57:42', 'FMMS/POS0508', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1ff268aae762571b3c1be38717408e385d67a88aa928cce545af7ff25c898aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (559, '2022-09-23 12:59:04', 'FMMS/POS0509', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '62.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a10d963d3dc9f47e6784e8e0983a60209047299a0ca5901e86c62a4d525882a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (560, '2022-09-23 13:27:00', 'FMMS/POS0510', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '279.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '279.6800', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-28 12:10:04', 31, 1, '318.3600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02e9c8d9bf3996e56c26eaf0df9ae9440d02849a252bc0f42d45281561e14789', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (561, '2022-09-23 13:41:31', 'FMMS/POS0511', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1955.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1955.8400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 258, 1, '1955.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'daf23c58f954f4b07cf79bb38cc7d8930b2adf56b62fd524f11c0bd2182b6a26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (562, '2022-09-23 13:41:52', 'FMMS/POS0512', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '350.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '350.0900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 45, 1, '350.0900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a11fd74f0db0c783372bf46466d38bbaa9e7c590905791c23eb94ab0bb9640b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (563, '2022-09-23 13:44:28', 'FMMS/POS0513', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '249.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '249.3500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '249.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9fbb45d49d358a065362efe68e29982017d4207e779635971cbb3aee2a77b86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (564, '2022-09-23 13:56:00', 'FMMS/POS0514', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1017.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1017.1400', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-23 14:42:21', 75, 1, '1017.1400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14f3e53006faf941c02dcea55df0578ccc5f811e98e79c0a6932b0da560bedf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (565, '2022-09-23 13:56:46', 'FMMS/POS0515', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.0800', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 2, 1, '49.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adcf8f7b8735c62cb74e89037f01c86f6a466136924aa5037968c06ff160ac03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (566, '2022-09-23 14:03:41', 'FMMS/POS0516', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '56.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '56.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '56.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52b940e44715e943eb5a8ae4c642ec9a94ef7bffa52dcf2a5e61eb9adf878c3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (567, '2022-09-23 14:26:18', 'FMMS/POS0517', 272, 'Walter', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '144.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '144.8900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '144.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97086ef90e5eae93eda62a0cd91b8626690200e7dbd200f2505d261baf0cea98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (568, '2022-09-23 15:01:55', 'FMMS/POS0518', 374, 'LD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.2400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '59.2400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1a9c142747ee9b2037a91309952ef821d0a3d47900519371d52593efd35bf8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (569, '2022-09-23 15:03:23', 'FMMS/POS0519', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.8200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd8178261c1788fb17b49729f1350d01147074696aa16f9a10472527324a860e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (570, '2022-09-23 15:03:57', 'FMMS/POS0520', 374, 'LD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '030dc5bc6d251ad5d549ab26adf09eaea81d18628e84bc8b89117be489e5d952', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (571, '2022-09-23 15:05:40', 'FMMS/POS0521', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '16.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa0b83e999542c1455e256b948beda5003bc0924877e45e6c6ecd08282dc5d11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (572, '2022-09-23 15:11:23', 'FMMS/POS0522', 375, 'Gideo Mensah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e16d19c10552ed036e920cec04da6e3c56382ed2676ba68ab54ccc1c287d82f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (573, '2022-09-23 15:35:43', 'FMMS/POS0523', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2093.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2093.3900', 'completed', 'due', 0, NULL, 5, NULL, NULL, 157, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce5615917268054fba590126e62000237a16cdb2ba62a75e27fd01edd1491a39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (574, '2022-09-23 15:54:29', 'FMMS/POS0524', 207, 'PALZA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.5200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 1, 1, '66.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b19411ff540eb7b1150a896af2ffbb2db20010c809ffe281c86cc20525b0c690', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (575, '2022-09-23 16:03:20', 'FMMS/POS0525', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1064.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1064.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 72, 1, '1064.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2ae28d836b1421640d049f2a0d2e15671899a81f67c22f3b6e9a980d993f41c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (576, '2022-09-23 16:06:37', 'FMMS/POS0526', 375, 'Gideo Mensah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.8600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '63.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c0aec8afbf2acf4c7886beeeebed3f254f4e3041df646a35e9966f9cb5ec9eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (577, '2022-09-23 16:43:40', 'FMMS/POS0527', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '397.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '397.3000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 30, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74137820288da5221bb299ffca5c4b9e585a35cb31c784981879ea0d6683f862', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (578, '2022-09-23 16:44:18', 'FMMS/POS0528', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '18.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '899ae6fe8c8cc3336749210d5a609e32c9323a9adb1fdf0b8c87a3be975aaf44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (579, '2022-09-23 16:52:21', 'FMMS/POS0529', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.5100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '59.5100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9640218a4e4465db7c61cb8e17ebaa2126839872fe31575e12444f468f85614', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (580, '2022-09-23 16:57:42', 'FMMS/POS0530', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '84.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '84.4000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e41f9e7f3531eee59f241f77d393d71aad43703912a2b211ccea6a735be14b6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (581, '2022-09-23 17:00:17', 'FMMS/POS0531', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '654ea0b3ebd784661aca2077941aeac1ebd83e20dcbbec8ba4979621b273ef10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (582, '2022-09-24 07:58:16', 'FMMS/POS0532', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '109.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '109.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '109.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f71a88198bc5b96ce4edc16980c27d661ae71d987b84ddc5e7a1d4fb07617b40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (583, '2022-09-24 07:59:41', 'FMMS/POS0533', 180, 'Mensah Tabitah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b9274dad482cc8d4bcff639bdf46833a1e003296463dae001c2f0804e7c7aca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (584, '2022-09-24 08:01:57', 'FMMS/POS0534', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fabefbbb2bac43d92a82fe5b25452f5093411d5b57b517a047e72a67f45d175', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (585, '2022-09-24 08:11:22', 'FMMS/POS0535', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c383c9e7ff0f4b3a5cd48cdf2521a0d7aa84971a6f1aa43c9019995a9c4f706a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (586, '2022-09-24 09:02:02', 'FMMS/POS0536', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '55.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93c7e205a139052ce5fee7231548370ee0337f0f99c41b6f0db134a5ca3a094d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (587, '2022-09-24 09:03:11', 'FMMS/POS0537', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '3.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a566212edd1c4f8de4f189f4b7ad16c90d8002e7041e2114ecb5aa51602a2d3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (588, '2022-09-24 09:11:00', 'FMMS/POS0538', 175, 'MENDMEDICS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '623.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '623.8700', 'completed', 'due', 0, NULL, 7, 6, '2022-09-24 09:54:19', 91, 1, '550.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85f1291716b5b7b21d01d8ee19ec0cc5c9b2c25cd0cc73e482038150f4a8fc4f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (589, '2022-09-24 09:25:42', 'FMMS/POS0539', 81, 'Slivia Donkor', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '353.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '353.3500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '353.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '434843f7bab78c30cbfe09960834712255027abdd74a0c4d60356b6616c93f2b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (590, '2022-09-24 09:41:00', 'FMMS/POS0540', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1116.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1116.5500', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-24 10:35:16', 55, 1, '1116.5500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05784b9e054a086b6177fd2c2cb657fdeb39fae9e4f678902d6b20b4906a2c45', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (591, '2022-09-24 10:18:42', 'FMMS/POS0541', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1380.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1380.1700', 'completed', 'due', 0, NULL, 6, NULL, NULL, 132, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c286f3bf100b2e96b227e28f5a0c89c36fe6f0b6ae39391f140653f7cdc238b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (592, '2022-09-24 10:28:52', 'FMMS/POS0542', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1311.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1311.9900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 75, 1, '1311.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65af0831cbc2b7b3085a0822e41c7f36e30617ecf3990447d3fd87f5993c9dbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (593, '2022-09-24 10:32:23', 'FMMS/POS0543', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '134.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '134.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '134.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1dd78cd6c63714e34c6a25237247a7f0f12491ff7d5495882ee7a5e300c8b5cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (594, '2022-09-24 10:45:06', 'FMMS/POS0544', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '700.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '700.5600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 102, 1, '700.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '828a81d1bb2e0323fb6635a9fd1bbf0a24c66f38267922944736a85d84073a8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (595, '2022-09-24 10:52:36', 'FMMS/POS0545', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '900.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '900.4300', 'completed', 'due', 0, NULL, 6, NULL, NULL, 140, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f35916cb20c48a19292b72bb97d07328a3ee16883f79a987ce4c6f3656d3af66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (596, '2022-09-24 11:01:05', 'FMMS/POS0546', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '523.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '523.9000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 73, 1, '0.0000', 644, '0.0000', NULL, 'SR0002', NULL, '-523.9000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9a371b80fc7ce6031d2574817d32a67e6d971a0a9e973ce346aede37ead9e0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (597, '2022-09-24 11:02:00', 'FMMS/POS0547', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '233.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '233.4700', 'completed', 'due', 0, NULL, 6, 6, '2022-09-24 13:10:17', 41, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b547b20d92019a65bb5255d64fdd48f94395461bd30b200a9a801f3ea70ef2bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (598, '2022-09-24 11:04:16', 'FMMS/POS0548', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd89f888c95fb2b9b5e17a76a42b6b0663acda7d59ef27f7220937fe5965e1592', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (599, '2022-09-24 11:08:39', 'FMMS/POS0549', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.5900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '33.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6e5acce7228f1fbcbe4bd41a352f8b4d11da8bbfa8267988402aa74ff80a622', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (600, '2022-09-24 11:17:09', 'FMMS/POS0550', 376, 'Gifty Agyeiwaa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bddb4142115a55e1c3ccc781965c3f945bc73c7926f81eb97b542cd09e6c6ec0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (601, '2022-09-24 11:18:36', 'FMMS/POS0551', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '743.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '743.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 145, 1, '743.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30fcc7fd0f55c4f086493e66465739f48b0d55a8abf56c0f95912703e678f09c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (602, '2022-09-24 11:18:40', 'FMMS/POS0552', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75df63155efa2bd5c2daf8cba717e97df183be5887c27112dcd52a3f68c3241f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (603, '2022-09-24 11:29:58', 'FMMS/POS0553', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '100.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '100.3100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '100.3100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7607628bd2242956dd2891d1dcaf5ec9a0394d504cce470365b7f9f808ed014', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (604, '2022-09-24 11:49:41', 'FMMS/POS0554', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '86.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '86.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c591e0f1c9b4b5d5feea20d7f0dd3c5ac46d0cd011b58efe95f9d92e9893ae3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (605, '2022-09-24 11:51:06', 'FMMS/POS0555', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e53f1ab921e1e5cd426776498a4dc43b8d1280d19c55267bbaf0358d49bb99c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (606, '2022-09-24 11:56:45', 'FMMS/POS0556', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '303.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '303.4100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '303.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49e945e86cf043de8441848b5ca5c07482e8532fa70bc3104f218fcefc305452', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (607, '2022-09-24 12:02:45', 'FMMS/POS0557', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '380.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '380.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 85, 1, '380.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b26c7c92458e7690d26b5a9fd81dbadc74e734073c8a77d8553c8bf88148ed3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (608, '2022-09-24 12:48:25', 'FMMS/POS0558', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '42.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f92018a19fd8cbe330ae7c61d24d4edd7d7423a2eb210d2a558a144472418c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (609, '2022-09-24 12:48:50', 'FMMS/POS0559', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '72.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '72.1200', 'completed', 'due', 0, NULL, 7, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2c1e6050af8577ddca1683ca50cf75481183c89975e8ba492d7acd3f2017bce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (610, '2022-09-24 13:00:57', 'FMMS/POS0560', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '17.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b49432f3a730f5582d58be280bcb268fd8bf72c008b7679e2b8872947c2f695', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (611, '2022-09-24 13:14:00', 'FMMS/POS0561', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2361.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2361.7300', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-24 14:18:00', 213, 1, '2361.7300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8feb48ae6d031280df918e019fcab1e6fe9a9ae1d6a4e8a328b0b13e594b3255', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (612, '2022-09-24 13:22:20', 'FMMS/POS0562', 288, 'Optimax', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43c5f111c04c9411cd049d0cbc04f1be10d534f6448c3c98c62f57a2a1fcc639', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (613, '2022-09-24 13:30:39', 'FMMS/POS0563', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '101.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '101.7200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '101.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c81b8e06515c80e9343984b8a7502379aa0e4a1c4b4708a69353d18fed367be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (614, '2022-09-24 13:46:45', 'FMMS/POS0564', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1178.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1178.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '1178.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '154436d9491571401a3bb9bce4dac5483228723fd2b622958f5c105c7812f3c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (615, '2022-09-24 13:52:41', 'FMMS/POS0565', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.2200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '63.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f946676ffe520d328ba619804b24c652be65c511eaf03ef35a801736583d61b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (616, '2022-09-24 14:07:28', 'FMMS/POS0566', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09ae21365a5cc7be734ed4974696e317bd446e0a5e6390931b38904109142399', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (617, '2022-09-24 14:11:25', 'FMMS/POS0567', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3c6f7ab4add7502ec155d698074eee85213b8043c6da5eb972dd58c3b402a5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (618, '2022-09-24 14:24:12', 'FMMS/POS0568', 120, 'Good Morning Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '248.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '248.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '248.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08edc21a33f4bbc4163f25275f816599cc41f51536903d2312fb749d2dc3a467', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (619, '2022-09-24 14:28:04', 'FMMS/POS0569', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '53.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '53.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '53.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc3907de2c79cba295123f8b2c42b570e68025da5e32dfbe09f1b775d32d969d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (620, '2022-09-24 14:28:39', 'FMMS/POS0570', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '20.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fea4e4cb6b047f06e47453075c6d2acd424b7063cdaee123f548faded77ad8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (621, '2022-09-24 14:30:46', 'FMMS/POS0571', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '112.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '112.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 7, 1, '13.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bee08607795ddedb93399221d7e8986540ad95060daebb9caee08d8ae1117e1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (622, '2022-09-24 14:35:46', 'FMMS/POS0572', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '22.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6dae4a72fefe602a57f58b3464a089d5e9e909ac7a3e86cc279b641b11e1567f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (623, '2022-09-24 14:37:00', 'FMMS/POS0573', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '749.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '749.8500', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-24 15:37:26', 130, 1, '749.8500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3f5b4d362b7e31b7f426d749c85e9c77e03dc96b7e8cd4967f7aa063016b83d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (624, '2022-09-24 14:38:13', 'FMMS/POS0574', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '923.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '923.2300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '923.2300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4ed7a42e8badccdc7d97c5997cc3cadcb64967583bad6d7c368581deed01599', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (625, '2022-09-24 14:46:23', 'FMMS/POS0575', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '841e2025c5bbab5420adfff6a39d4a65aad21e94ebf52338b48d5f6b1731e26d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (626, '2022-09-24 14:58:43', 'FMMS/POS0576', 20, 'Dr. Appiah Kubi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '84.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '84.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '84.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f3793eca89e151c7f86e80067f85b3e834180592109519448b2f5b1e56fca72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (627, '2022-09-24 15:00:42', 'FMMS/POS0577', 121, 'Grace Bosompem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a26e2931fbb1f05fdf6251a855171296007f5a43c577ac1d7c418173eca1dc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (628, '2022-09-24 15:39:43', 'FMMS/POS0578', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '004548b3a61d9b7b9367843e24f024f2a34b0be789bb51a8eadfa6784bdfdd9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (629, '2022-09-24 15:44:54', 'FMMS/POS0579', 20, 'Dr. Appiah Kubi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '65.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '65.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '65.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91b51d5e11e1644ddb4330483a551c320bd42acd0a391face8a54b0acd957e28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (630, '2022-09-26 07:48:20', 'FMMS/POS0580', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '115.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '115.3500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '115.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db60431383ee17a19803145b06ec8c5216a285497756c50bce5dec349b76103e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (631, '2022-09-26 07:48:49', 'FMMS/POS0581', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6409918593cdb806884b009b59fa5ded21c8e70512adab149a2e802aa87ba14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (632, '2022-09-26 08:01:00', 'FMMS/POS0582', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '614.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '614.2400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-26 08:10:08', 17, 1, '614.2400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f201adc00b9f3d78037a99b6362f95baa5036d8092716c6190677c30d7078c57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (633, '2022-09-26 09:02:30', 'FMMS/POS0583', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '499.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '499.7500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 78, 1, '499.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8aa42adace582d2cd6e9cbfadf9ba0a9cf272fcea3436fa42020e5a25f05485a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (634, '2022-09-26 09:21:56', 'FMMS/POS0584', 176, 'MJ CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '470.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '470.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 113, 1, '470.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57b49c5556cad010d338c5c2ce5266e3daa51d35be58de1c33d8faf9ce062267', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (635, '2022-09-26 09:52:00', 'FMMS/POS0585', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '57.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '57.5800', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-26 11:15:31', 5, 1, '57.5800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ed8946d7943b9412891d79123ad53261ff4b833a0fa697cd38dfef1976825d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (636, '2022-09-26 09:58:16', 'FMMS/POS0586', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '103.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '103.1800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '103.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5286aea4b3f74cf6f2aef30461a1f53a80fccd3cd4df750ae8bae097cec233a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (637, '2022-09-26 09:59:53', 'FMMS/POS0587', 235, 'Noah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '124.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '124.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '124.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4ad6b2e2b324a851126eea87b03400dc2add0980edd28e4fa1115151a7ed38d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (638, '2022-09-26 10:25:25', 'FMMS/POS0588', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5620be3a071141643120f7cd05f5626132129bbd9aafc929b11d97b7ee832061', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (639, '2022-09-26 10:34:58', 'FMMS/POS0589', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '713.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '713.5600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 118, 1, '713.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c286ed7076369bf1fb961abd8182d831f6b34741b3059fe2f698fb3d53a25ebf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (640, '2022-09-26 10:37:25', 'FMMS/POS0590', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '973.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '973.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 78, 1, '973.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c65037050edfc7948df3c9ef90a6fe2bc7e3aae61a23139a32ad9b072341e8fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (641, '2022-09-26 10:40:10', 'FMMS/POS0591', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '30.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e232ed8881304c4afc00b9d187e2d4eff3b5a3aa06d84289ff111a43be55eb3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (642, '2022-09-26 10:56:31', 'FMMS/POS0592', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.6400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '13.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '581078e228ab68284d18d9a1c0b97aeebf96930db06f4172ceb468a20e2cadf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (643, '2022-09-26 11:43:00', 'FMMS/POS0593', 47, 'Banini', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1130.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1130.6000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-26 12:56:42', 109, 1, '1130.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6289d376f937e409f6929305d3f3b216a1ea3f2d878dc083e0fbec888b824f8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (644, '2022-09-26 11:45:00', 'FMMS/POS0546', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;CANCELLED ORDER&lt;&sol;p&gt;', NULL, '-523.9000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-523.9000', 'returned', 'pending', NULL, NULL, 6, NULL, NULL, NULL, 1, '0.0000', NULL, '0.0000', '0', 'SR0002', 596, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (645, '2022-09-26 12:50:16', 'FMMS/POS0594', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '825.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '825.2500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 38, 1, '519.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd83a0a5aa5ce1782895879874bba7f65f9403b76e83644e5b26ff921ac310b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (667, '2022-09-27 08:20:54', 'FMMS/POS0615', 54, 'Bless', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '38.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74a292f1c487dcc455ad0b821ce826be3e3a440062e1b53c47b46b5dbbfcbbe1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (646, '2022-09-26 13:18:03', 'FMMS/POS0595', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '177.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '177.7000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f06cc259da976998e7defb896fd540c67bc85c164eb3c6cdd2e232e32bd366ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (647, '2022-09-26 13:33:00', 'FMMS/POS0423', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;customer didn&bsol;&apos;t come for items&lt;&sol;p&gt;', NULL, '-425.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '-425.0000', 'returned', 'pending', NULL, NULL, 6, NULL, NULL, NULL, 1, '0.0000', NULL, '0.0000', '0', 'SR0002', 472, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (648, '2022-09-26 13:40:53', 'FMMS/POS0596', 176, 'MJ CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '78.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '78.0300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '78.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e227679e77dd4dc560109660de7cb4fbdb3b240d56f6c32742059f4120b3c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (649, '2022-09-26 13:47:08', 'FMMS/POS0597', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '300.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '300.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 47, 1, '300.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca352f9a7b287d12698d07f53325879f9557dd34fe7a010d74b841775df98041', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (650, '2022-09-26 14:33:52', 'FMMS/POS0598', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '634.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '634.7900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 43, 1, '634.7900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17263f410eeccc65502200c0bcf1d4ba9a38c017391c9ef1ea2292c6c5048d0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (651, '2022-09-26 14:53:15', 'FMMS/POS0599', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4dc57eef8bffc6c1255c9344f64a6875dfbb4e5f1c74bc6fd078c1c24aa095e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (652, '2022-09-26 15:05:04', 'FMMS/POS0600', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '144.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '144.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '144.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0213295426361b7c0fbddd591d729a47a66f3eeec165c9577be09c382437d29e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (653, '2022-09-26 15:42:27', 'FMMS/POS0601', 203, 'OSEI', 3, 'FMMS MADINA WHOLESALE', 1, 'PART OF 1ST SEPT&period; SALES', 'PART OF 1ST SEPT&period; SALES', '96.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '96.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16770e2cea1560987862681f107c452f04589d6ba2d44fb8fe85426eeb6d14e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (654, '2022-09-26 15:45:57', 'FMMS/POS0602', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '250.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '250.4400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '250.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86d9512fcc1a1bca5763ec55f90d29020481dc07128010e23627b7929fc0adef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (655, '2022-09-26 15:49:46', 'FMMS/POS0603', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '196.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '196.0300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '196.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca2d78db4932bf860cef933b7d049b7cd082fab23c0caeff9fc3d78c7819d0bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (656, '2022-09-26 15:53:04', 'FMMS/POS0604', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '373.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '373.4800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 59, 1, '373.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '802fe966d1d24dd7032bd688040311bf6211e49eac11261c7e8c0b0f7b68bdf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (657, '2022-09-26 15:57:55', 'FMMS/POS0605', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.4500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '21.4500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '693b770ff13e5bf29e02086cab8e45bdffbe295caefa546c89b899d3715230bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (658, '2022-09-26 16:36:07', 'FMMS/POS0606', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '27.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19122d028439783df9afefc68e22cbe5a21e78d5a12037af8a7ff7f5762ef274', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (659, '2022-09-26 16:38:50', 'FMMS/POS0607', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '402.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '402.6400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '402.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '595368097522bb0a90fcff798e709800b44ee9be3572be86b6ed6c4be8ddb376', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (660, '2022-09-26 16:46:53', 'FMMS/POS0608', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1411.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1411.7000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 101, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60c6b7bf62fcb0594d4d1dd5cc745b07aaa48387db17d9288f71435d5ca3ef65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (661, '2022-09-26 16:50:28', 'FMMS/POS0609', 99, 'florencegamali', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '280.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '280.1600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '280.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '460dc21604c4b0466ee93552af6fcf74270bef7d50e350a399a76d9eaae3b46b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (662, '2022-09-26 16:56:04', 'FMMS/POS0610', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.5300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '49.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9dbf196d3937538adca09ec9358cc7d3fdd82503d849129fc14ceb1d3519b84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (663, '2022-09-26 16:59:10', 'FMMS/POS0611', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '610.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '610.6000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 47, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29a9103eb4df392ccce9704ca75cd5adbf244b8f7906f9d6d1b5ef4ad6495ad4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (664, '2022-09-26 17:01:01', 'FMMS/POS0612', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '157.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '157.6800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '157.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21840dd896fc6d742488d9957e1d670bfd885a51889e81bd69dd0f7751ae288f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (665, '2022-09-26 17:07:00', 'FMMS/POS0613', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '200.4000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-26 17:14:22', 18, 1, '200.4000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bb33fe2dafb125f110794096a2481e225848b689790e892d53e928a7cb4fa26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (666, '2022-09-26 17:30:47', 'FMMS/POS0614', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3.9100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '3.9100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8268bcedb0a0aa53559fb56baa4264fc865f25a550432fbde55cffca5612ba2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (668, '2022-09-27 08:21:20', 'FMMS/POS0616', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '728.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '728.8200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 63, 1, '728.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0022dd66a657a410c7f69b0b85b62b28889498c0568a6a0b84a623cbf9af66a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (669, '2022-09-27 08:26:04', 'FMMS/POS0617', 92, 'EUNICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '64.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '64.3000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 6, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1ef310551b4523132fcb7c46ee2536a8a1b697fbe0e9a24136b55c819b084d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (670, '2022-09-27 09:01:44', 'FMMS/POS0618', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '557.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '557.9400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 70, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21ab5c3674ebc9fe8b14dc7b9e6df1bff825a4033f6172f6b6783d437b1ef5a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (671, '2022-09-27 09:28:00', 'FMMS/POS0619', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1633.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1633.6200', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-27 10:29:40', 104, 1, '1633.6200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdf90ac5793ec2eb6598a8b5da2e87cf329a5ceef32c940586d9e5a6f05adb0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (672, '2022-09-27 09:28:00', 'FMMS/POS0620', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '626.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '626.9000', 'completed', 'due', 0, NULL, 7, 6, '2022-09-27 09:52:44', 35, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd78d3e8198aea6717ec3a519f4683514008c0e627c39081de8d72273c36d3590', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (673, '2022-09-27 09:33:00', 'FMMS/POS0621', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '208.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '208.0400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '208.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f32d3785d523a84bf93a5255f40bce65f1ab1b4de041f2364eb9e63882585cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (674, '2022-09-27 09:41:35', 'FMMS/POS0622', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '354.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '354.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 34, 1, '354.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53154eb949d4f59fff543a777c485299f2c61372a30f0a587c56dd20c4f2ba86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (675, '2022-09-27 09:44:52', 'FMMS/POS0623', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.7500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '38.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d7568c5eae24e0860bfdfab8c5365262022cd99d1ea4556ea980923a45c721e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (676, '2022-09-27 09:52:55', 'FMMS/POS0624', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '376.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '376.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 40, 1, '376.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c22db2945e0a37a222d6f17627db4dc3dfea905af446003c771371f0cff62697', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (677, '2022-09-27 10:06:30', 'FMMS/POS0625', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1272.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1272.9400', 'completed', 'due', 0, NULL, 7, NULL, NULL, 82, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c17135be8e95b8df26888f929872c0aa5d0e855761f8e58d1022b940a555512f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (678, '2022-09-27 10:09:31', 'FMMS/POS0626', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '68.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '68.8000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3a6d73da11e8adca84e438523921a697c6270bafd77c378d9542d94f4c5cc22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (679, '2022-09-27 10:33:48', 'FMMS/POS0627', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.2000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f73d37e560137730faee63b5c70c776dc8b45f863967cd5b5cdd5d5e7e87a824', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (680, '2022-09-27 10:35:00', 'FMMS/POS0628', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '296.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '296.5400', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-27 13:48:26', 22, 1, '296.5400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76a9ef3a676d3affba246128ad3c409f36da553a6c50066f1dcf77d541894e88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (681, '2022-09-27 10:48:23', 'FMMS/POS0629', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.3000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a437fe2c9521569071ebe710571ea21c6702e6c44726833ab812a93c4f15939', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (682, '2022-09-27 11:05:44', 'FMMS/POS0630', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '123.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '123.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '123.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89394416da5a7166389f8f18e13a86b4c112cc8ff8a9b26dd5cde7798a47db79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (683, '2022-09-27 11:08:09', 'FMMS/POS0631', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '61.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '61.9600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '61.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a251347440c93dbdb60061e185a838d5c113839108e0d885a33692ac5c8e4e5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (684, '2022-09-27 11:17:07', 'FMMS/POS0632', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.4200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '30.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17c47510ddbcd87a3c0254c2380dcbc13a274a9369022764b25921728b812fbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (685, '2022-09-27 11:41:32', 'FMMS/POS0633', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1839.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1839.3400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 219, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f41985672941e97eab025c6e21bdba98cea0d7bba339fada4ea2d3c572a36492', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (686, '2022-09-27 11:43:37', 'FMMS/POS0634', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '289.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '289.0800', 'completed', 'due', 0, NULL, 7, NULL, NULL, 12, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24b4960746081cf354db9e7b3cd3b209f536ffdac0dd0acc8a9644b132e858b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (687, '2022-09-27 11:49:03', 'FMMS/POS0635', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '62.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c18c6def6406db38a14c1b346871769c841078adaaa1e04d5a93f158e443880', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (688, '2022-09-27 11:56:30', 'FMMS/POS0636', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '391.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '391.2500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '391.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b22729e6a860eb3e67ff250c81e1e1137a6f5bb479ebf17c7a9baa81f5d32ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (689, '2022-09-27 12:01:14', 'FMMS/POS0637', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '337166d8d0b9209dff0a0ab87585503ea65d87a83cbaf64ad4ae9af6b5dac328', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (690, '2022-09-27 12:33:32', 'FMMS/POS0638', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '84.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '84.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '84.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1455dc0a3edb2e7c42a1383ff46f6a77c23c057b9b29a7ae6c69a9aef3ffdd8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (691, '2022-09-27 12:56:00', 'FMMS/POS0639', 226, 'DARKO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '242.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '242.1700', 'completed', 'due', 0, NULL, 7, 6, '2022-09-27 13:20:59', 29, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f0d726a5db4d137e46c0bd83767ad88c207f7483a0b2165f93caeacb5390031', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (692, '2022-09-27 13:07:24', 'FMMS/POS0640', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '47.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2651b9ab79c773274640b969959b1f0b3925fb7fb49cc0d55307081e9d125f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (693, '2022-09-27 13:14:16', 'FMMS/POS0641', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '395.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '395.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '395.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0809018d276568f9e7055fc4fbeec2f11645ab8ddc14b99df60674632455b9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (694, '2022-09-27 13:44:00', 'FMMS/POS0642', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '94.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '94.2400', 'completed', 'due', 0, NULL, 6, 6, '2022-09-27 13:45:13', 8, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c030256dcd564a3a81bb1aeb8b18f9aec0a93bf5a38985f72963e3f7fc71a2a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (695, '2022-09-27 13:49:27', 'FMMS/POS0643', 94, 'Evans Baah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be0a25b8905c0eddd968a3a15fde054fa7476358a9634ee1b9899848e589d460', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (696, '2022-09-27 14:24:23', 'FMMS/POS0644', 380, 'Stable Plus Healthcare', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '345.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '345.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '345.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4393e12e49f0b2b3bff7602cb56303f262ff173068a2d2f861e99ab73ec4341b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (697, '2022-09-27 14:34:37', 'FMMS/POS0645', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34ce8d37d3c9d5fa1bb04ded21bc2715ed19c5e07732575c328b1494c6deaf1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (698, '2022-09-27 14:35:23', 'FMMS/POS0646', 381, 'Lona', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 13, 1, '75.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67d5a1a01b75d679f0f12258813ce7be07d37423785ae10a901758480e86da81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (699, '2022-09-27 14:45:42', 'FMMS/POS0647', 288, 'Optimax', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '500.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '500.6800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 64, 1, '500.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff8a113758ae8b429954032b9539fef3c434e59d628733166e206122756d55a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (700, '2022-09-27 14:52:00', 'FMMS/POS0648', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-27 15:08:28', 12, 1, '31.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5157259c4e1ae5af0a3f0385e4c5e7958d256742123e1b7ab1c5857d5d7b09c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (701, '2022-09-27 15:19:00', 'FMMS/POS0649', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '137.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '137.4500', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-27 15:48:32', 20, 1, '137.4500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6a971bcb1ec7f9ec18c0a50969251eeba06cf448e28d8b22811114e107bfa02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (702, '2022-09-27 15:42:00', 'FMMS/POS0650', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1012.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1012.4100', 'completed', 'due', 0, NULL, 7, 6, '2022-09-27 16:51:57', 82, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3e829fd7b66514046e9dbc85a0b52059a3b6019ba5953ed7bf1cf12d0d99ec0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (703, '2022-09-27 16:19:08', 'FMMS/POS0651', 255, 'Theressa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '43.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31144094d5e17615d964e0d59bc9afca99135ec7b3135417b3a48689f39680f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (704, '2022-09-27 16:26:23', 'FMMS/POS0652', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '70.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '70.2000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f1d9bc78758ed48d9851f1f81fa6a04f7f460ee3751c844825e2c866ac90234', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (705, '2022-09-27 16:46:12', 'FMMS/POS0653', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '163.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '163.7000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2be52ff6ef12890ffc0d640cdb1515269fc303a6c48886627a770e47fc11be74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (706, '2022-09-27 17:08:34', 'FMMS/POS0654', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13e746dc264c190e34fb97e3a06b036dc4dc9c430b52109406d8d7b104903576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (707, '2022-09-27 17:17:41', 'FMMS/POS0655', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '334.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '334.3700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '334.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e74641f6aa72739fc467b4835a5043a6893a1690d1fd645410eafb74c31af43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (708, '2022-09-27 17:24:03', 'FMMS/POS0656', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '114.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '114.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '114.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d94f6f92deedc6899aa45a85a49648e827123bd14926b1789087aa1fa3c5a1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (709, '2022-09-28 08:41:06', 'FMMS/POS0657', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4960d02bcd2a2fb123de605f6842b398b3142449ed531dbc2f08b824d01bf0b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (710, '2022-09-28 09:58:44', 'FMMS/POS0658', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13d27d7c618f0fae9e372b71368876a7a4b500386d9f7be8fa336b38b9a46a75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (711, '2022-09-28 10:24:20', 'FMMS/POS0659', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27d4e826d2aafdf8f7bf8c534f14c06122766d9df8ca090deb12567dd461ba77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (712, '2022-09-28 10:48:00', 'FMMS/POS0660', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '723.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '723.6200', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-28 11:24:03', 31, 1, '723.6200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '216fb905ae5647a90506c6f307c6800618f0b2e9cab8397c5e88dc0779d0f350', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (713, '2022-09-28 11:40:05', 'FMMS/POS0661', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '529.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '529.2900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 68, 1, '529.2900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a94a91cc0d7c41d0204bef95b45411e071e3a036ddf79005ec587be1d7a776e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (714, '2022-09-28 11:45:22', 'FMMS/POS0662', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '18.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f05ec9044a3c7b9cd670390ad1d1f0cc2550268fd10d2760490785af03fa0c14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (715, '2022-09-28 11:53:42', 'FMMS/POS0663', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '45.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'faf1dbc5920308c15d9ad37a7bc4156ff1f23b13f5df6eb2c570ac3a8f4a560d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (716, '2022-09-28 11:58:02', 'FMMS/POS0664', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b543a5ce30b677b54e6f2fddc5922e89928cb83f742427414fff2dc0aedb930', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (717, '2022-09-28 12:24:59', 'FMMS/POS0665', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '17.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68ddd4262797f1fd17349127ec3878780c47aa10cf2ab9bf54cd55042ad5f227', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (718, '2022-09-28 12:32:00', 'FMMS/POS0666', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '73.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-28 12:36:35', 2, 1, '73.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b238ec33909bca628ee6cd3df3450adbb5cbc7d036ae9024bfb697b70a290fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (719, '2022-09-28 12:43:08', 'FMMS/POS0667', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '498.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '498.9100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 69, 1, '498.9100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c62eccb74250578da3b67aab447d03134170feada6e80dd57d1ddbc4696bfb9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (720, '2022-09-28 13:15:33', 'FMMS/POS0668', 121, 'Grace Bosompem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '13.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '225f59421eda2be4c5fc6880e08951803826a11c181078694a98607cb51d9ab1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (721, '2022-09-28 13:30:46', 'FMMS/POS0669', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '220.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '220.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 36, 1, '220.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6b6506b3a42faa4bad9ee60b3eec4b729e736c1095f5ec5a68490c6873b1ea6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (722, '2022-09-28 13:32:26', 'FMMS/POS0670', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.9200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '97.9200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc36480ec17c4b25401d9891c87d6f91bcc1c751331836280b6783f9226daf7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (723, '2022-09-28 13:41:36', 'FMMS/POS0671', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '237.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '237.9700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '237.9700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0806488704ca7f791d3fa39263e1b6f8bf362c8253c9c9240b10005e0f5ab7f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (724, '2022-09-28 13:53:17', 'FMMS/POS0672', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.7100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '17.7100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e39696a4f7eeb6602ab7815071ea0ed33230e2c0b2d8ca0c1c0e1907dd8d892', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (725, '2022-09-28 13:54:10', 'FMMS/POS0673', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '714.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '714.1700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 94, 1, '714.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '575fdb52d9064fee8abe2d54b31a1af0a4a51dea9ef673d869fa1ebb9ad411cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (726, '2022-09-28 14:06:00', 'FMMS/POS0674', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '174.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '174.5000', 'completed', 'paid', 0, NULL, 7, 6, '2022-09-28 14:19:27', 36, 1, '174.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '845d6538ee6b2f846b0e3863e17a33388d1698c0cfd2da4f290afe83cb9c9918', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (727, '2022-09-28 14:09:00', 'FMMS/POS0675', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.2500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '14.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd572b498daa983aeeb99c76b74997f672030844733f1b07a9dca165a012d9684', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (728, '2022-09-28 14:27:03', 'FMMS/POS0676', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d62b1446d15cfad1f10d2cded456e33e40fcc049a32e4c0622c294a40613c48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (729, '2022-09-28 14:37:19', 'FMMS/POS0677', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '38.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c77bba5c518671c9398c872112db5dbf48aeb35dcad150efcf29074283d1f08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (730, '2022-09-28 14:39:32', 'FMMS/POS0678', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '235.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '235.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '235.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54fdf7be27904ca413e8365bee79da49bab0a883ab2b09df84e6c59c684f5947', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (731, '2022-09-28 15:38:40', 'FMMS/POS0679', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '164.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '164.5000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba075578db2987add9317c427db84eca58fa16540e1c7ac4ee1b4a22c48b1ad3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (732, '2022-09-28 15:46:09', 'FMMS/POS0680', 272, 'Walter', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.6700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '71.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d770ab02566df0ccf7b007f26d2b6651aa59811e5d316c18b392b271dfa70b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (733, '2022-09-28 15:49:51', 'FMMS/POS0681', 272, 'Walter', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.9500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '20.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e51405d0c1c3e879941c13e4abfcc66d42b05ea2007fef077646e7314549a92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (734, '2022-09-28 16:01:20', 'FMMS/POS0682', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.8200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '55.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba433feb21ff1dd89be892632618cdeb265696b5b19b8166d18c7a1e818928da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (735, '2022-09-28 16:13:23', 'FMMS/POS0683', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00aa2164e25e48a2248d6cc22aa879786f561aa7ab8bf7e9f53d4f0bafd89a1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (736, '2022-09-28 16:13:48', 'FMMS/POS0684', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '41.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9e095e5ab3a0e3fda3384645cbde564c4ac6888552c0a07b5e1821d56de7033', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (737, '2022-09-28 16:21:10', 'FMMS/POS0685', 382, 'kojo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b0c37396d17d22ddbbc330a062ca1d7406e2125a65947a38c2a0e17390aa980', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (738, '2022-09-28 16:34:48', 'FMMS/POS0686', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '149.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 17, 1, '149.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56d6b646ec877e2c0dd8241c44bc0ab2f84ceb7b065925aa9645dc736530fc18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (739, '2022-09-28 16:55:24', 'FMMS/POS0687', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '219.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '219.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 12, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4daeb5a6542f4609e8b079244fb1225eaa154feb7a6f76a73a3c612bf9e069d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (740, '2022-09-28 16:57:05', 'FMMS/POS0688', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '270.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '270.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce9a983451794253485fcc82e0cd5b078270f5596cd13dd8356c25c68cd4ac3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (741, '2022-09-28 16:58:26', 'FMMS/POS0689', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '540.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '540.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 40, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0892cdfd314c628e4a917b60e0a0a4557f757a4be6b21100e006b59c96058a0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (742, '2022-09-28 17:20:21', 'FMMS/POS0690', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '301ffe704d2dc3c736a4ce395a4568f9f976c7119a0fac9514c3c85ebd0fa2c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (743, '2022-09-29 07:49:41', 'FMMS/POS0691', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '203.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '203.0200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 19, 1, '203.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36618823b92d38cccb2b4beaffdd24feb8c38db6b4281525c37730a87d77129b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (744, '2022-09-29 09:08:37', 'FMMS/POS0692', 131, 'isabellaquarshie', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '67.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '67.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '67.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7077c162aebea7e58faf4d8fe2b1a58f823db15ddc47dbbea91ed1f2cd21f12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (745, '2022-09-29 09:12:22', 'FMMS/POS0693', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '329.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '329.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '329.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acdcfe9f74898e1462ce7b001a72d95f01d4e64a8db3363ab251c387acc661e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (746, '2022-09-29 10:07:00', 'FMMS/POS0694', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '536.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '536.5400', 'completed', 'due', 0, NULL, 6, 6, '2022-09-29 11:33:33', 73, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9b7a46d09c9ab9ff638d537bb8d262baa80b4c976b5932dc9164aa7b09f66d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (747, '2022-09-29 10:47:35', 'FMMS/POS0695', 192, 'nipahiamoa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '80.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '80.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '80.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d5851b832af58ae3d56d072750ca5cd495480d5f355ce2b8f0ab0b95cabe8c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (748, '2022-09-29 11:00:05', 'FMMS/POS0696', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '97.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a72ebbe5a2a72d3d8959ab7e49fb871d10addc44b37731a99808f0d72045ad18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (749, '2022-09-29 11:27:00', 'FMMS/POS0697', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '209.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '209.2900', 'completed', 'due', 0, NULL, 6, 6, '2022-09-29 12:45:49', 19, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'becae3e9995209c35e1e1a5bc1c7c2ddad206439e6bbcca71fe957c507841652', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (750, '2022-09-29 11:37:14', 'FMMS/POS0698', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '504.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '504.7200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 65, 1, '504.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f216e5d993d97948a4151166b824c49ad9efa6366e984cae2f837baa7567ffc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (751, '2022-09-29 11:50:00', 'FMMS/POS0699', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '105.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '105.5800', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-29 12:01:30', 6, 1, '105.5800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c711b7b1b038338b85d25fa5327ec6fbb7498eaeb00274fc2ca73b1d8ccfeba4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (752, '2022-09-29 12:02:38', 'FMMS/POS0700', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47b296cfb2d1b93efcd496e0ea4c77184e250da2bbbc4350e0b77b4886845a75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (753, '2022-09-29 12:15:38', 'FMMS/POS0701', 384, 'NATDAS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '137.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '137.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '137.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fa1fba5e174a4cc61e8f46969dc8bb8afe820d9dbb26a428da16eec514314f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (754, '2022-09-29 12:23:30', 'FMMS/POS0702', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9939fb255d36048f447f10f9c147c6fcdeba37d1638da8bd557c659ecf26f49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (755, '2022-09-29 12:46:33', 'FMMS/POS0703', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01cdb65ae559d4786c04c57d2954cb12a57bf5c634880c7218fbe37f1fae8ca0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (756, '2022-09-29 13:03:00', 'FMMS/POS0704', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '861.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '861.9600', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-29 13:25:31', 85, 1, '861.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'baab130497e9a0a230232eb388ccf23a3c3048c75a85c92784706a3c5d935edc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (757, '2022-09-29 13:53:34', 'FMMS/POS0705', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1807.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1807.2000', 'completed', 'due', 0, NULL, 5, NULL, NULL, 112, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18fd4183fbbabc4e81477ba625bbc8ce731d1df201306d23484b7892b35a6281', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (758, '2022-09-29 14:20:29', 'FMMS/POS0706', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 15, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ddaaa9a5585489c83bdac976a4cb245e2bdb029c24ed435bacf9aa996503ee6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (759, '2022-09-29 14:24:00', 'FMMS/POS0707', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1589.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1589.2900', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-29 16:02:07', 89, 1, '1589.2900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd82cb0428aeb79a9a21462d0ddc16720bf22c2af6ce96fa2ef7c773a7d5d3f7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (760, '2022-09-29 14:25:30', 'FMMS/POS0708', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '65.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '65.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b858968f5c6de2fd5f4dc179ebf5987936baff9b0e71428d87f8fd6e90ad1315', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (761, '2022-09-29 14:43:00', 'FMMS/POS0709', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '409.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '409.0600', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-29 16:42:48', 56, 1, '409.0600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb8620d014bf118744ba090d724d01f92353af50532226d3712bc6384465c5f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (762, '2022-09-29 14:46:58', 'FMMS/POS0710', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '673.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '673.1200', 'completed', 'paid', 0, NULL, 5, NULL, NULL, 58, 1, '673.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89d89e99d6090a321cd63265d47f9d179a9a30734a70df0dab342bac5a20ed0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (763, '2022-09-29 15:36:50', 'FMMS/POS0711', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '202.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '202.7600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '202.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97c9a6ead1220a10e2ebb1b9ca092d3f38a7a0143c4ffd35d922f9d87811a240', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (764, '2022-09-29 16:21:35', 'FMMS/POS0712', 385, 'ANFEGA HOSPITAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '16.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '879229a850fde9bd1fd790e7eaa544ab4986699757d9b1c77a8bcc23929f9785', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (765, '2022-09-29 16:35:02', 'FMMS/POS0713', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1190.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1190.1500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 113, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '047bc24756b304b6d76aa784b55f596d20042233c6fb562f5e45dabb6933086b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (766, '2022-09-29 17:05:51', 'FMMS/POS0714', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b65cd114789f20e61c7b24866ec1b6ddc4fe43db18f0496bf6304b91c6d63afb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (767, '2022-09-29 17:06:30', 'FMMS/POS0715', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4bd0a9c45315836b62ee22cd0b5dea962b0b73f563ece2ac38315acf4c5c8f22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (768, '2022-09-29 17:16:00', 'FMMS/POS0716', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '302.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '302.0000', 'completed', 'due', 0, NULL, 6, 6, '2022-09-29 17:18:09', 21, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10a15a3ba1b6828289c4fdabe587a2934fb6897bebf19a52924721badab1d439', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (769, '2022-09-30 08:07:00', 'FMMS/POS0717', 189, 'NAYRAM HERBAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '270.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '270.4800', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 09:21:16', 44, 1, '270.4800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50d3e44f930f390d9d0d46815814c877c38511a33899efb58efbd1cae9162902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (770, '2022-09-30 08:27:34', 'FMMS/POS0718', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '599.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '599.1800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '599.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42efa992ace4e33bb5b33043b540a6bba6bbc49861ed756345167e3349a0e96a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (771, '2022-09-30 09:11:08', 'FMMS/POS0719', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd01003b27c83fe66ae81b07b0ebe3db5d8e3ff28a286be703e2629a4ddd14295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (772, '2022-09-30 09:13:06', 'FMMS/POS0720', 54, 'Bless', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '71.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3af63589ec6dcf47a6330126e9c81900c60f861a9d669b91e7522aaa034a39a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (773, '2022-09-30 09:32:00', 'FMMS/POS0721', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '563.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '563.0600', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 09:56:05', 48, 1, '563.0600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6657d08ac3ddac2d54bf47a58ab67d0a2c2afaa739e6316319b37b1edc7ecc35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (774, '2022-09-30 09:35:00', 'FMMS/POS0722', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '747.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '747.2500', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 10:14:53', 125, 1, '747.2500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf6694bb1568a852d613c55cee5f68a153178c5e9974cf2bcc3027f0cff2ddf3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (775, '2022-09-30 09:43:10', 'FMMS/POS0723', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '456e3cab633aa8fcc9e0bf231786f76cfff5fca24ce84727ad0311eb0867d766', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (776, '2022-09-30 09:48:00', 'FMMS/POS0724', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '73.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 10:00:43', 10, 1, '73.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '998ee8324788851380b6541a05c83eddb6dff26aadb70728a6f0734e8800ad7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (777, '2022-09-30 10:18:00', 'FMMS/POS0725', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '763.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '763.4600', 'completed', 'due', 0, NULL, 6, 6, '2022-09-30 11:46:44', 84, 1, '761.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6084aed17c0ad25e6b84aea530996993bcf7b69ed03efd49cd87e9aac038538', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (778, '2022-09-30 10:22:00', 'FMMS/POS0726', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1118.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1118.1400', 'completed', 'due', 0, NULL, 6, 6, '2022-09-30 11:55:40', 92, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e489dc5952464d34a8f50ac7f1845bb3a0644bc6956687762a02d1a8539d5e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (779, '2022-09-30 10:38:03', 'FMMS/POS0727', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '552.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '552.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '552.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '250e9129d20facee5052e8452542e968c66e98a2d9dc6ad899ec2ab25fbae58e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (780, '2022-09-30 11:08:00', 'FMMS/POS0728', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1763.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1763.0100', 'completed', 'due', 0, NULL, 6, 6, '2022-10-07 14:12:13', 119, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67d935ec92f280acaf20e069515be6f9f7bdd4185202b57c0fb86c2c20117600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (781, '2022-09-30 11:08:00', 'FMMS/POS0729', 176, 'MJ CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '351.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '351.5400', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 11:10:52', 23, 1, '351.5400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4aac96b9cf40f8a816700784de600cfed9fc8e41b1201ff6f3333ad878c140e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (782, '2022-09-30 11:39:00', 'FMMS/POS0730', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '365.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '365.3700', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 13:04:01', 42, 1, '373.2700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0a76d0696fff417cedccd62e75a4bf71038e827ca5d7099fde4ccbd9fcff489', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (783, '2022-09-30 11:44:00', 'FMMS/POS0731', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1373.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1373.9000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 12:15:51', 173, 1, '1373.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e875bb72643cc8fc48fa2e4e2e7568b74099e126449ec9fc7c66db770af55805', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (784, '2022-09-30 11:48:32', 'FMMS/POS0732', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '186.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '186.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ba2f0bae5f20e64fb194ef12c33d998ef11208b3d33a1009ed6ce2ded2a05e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (785, '2022-09-30 11:50:00', 'FMMS/POS0733', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1774.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1774.3500', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 13:20:36', 139, 1, '1774.3500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6613cfbec765784af16d3a8b0375f97e607df112d2a3d63a3a054e789879fba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (786, '2022-09-30 12:00:00', 'FMMS/POS0734', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '221.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '221.3800', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 12:09:30', 28, 1, '398.3400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1c5bfd7ea7a657ef10d5e12f7861d7fa629cd881fc010bc1379f8f79c22ba49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (787, '2022-09-30 12:24:22', 'FMMS/POS0735', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '510.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ea7fa8b7bdd1a3c5b5d1aa51e1b40c8a23f1a28e92f34ad680bcfa58db5988c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (788, '2022-09-30 12:52:00', 'FMMS/POS0736', 282, 'MENDMEDICS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '456.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '456.7000', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 14:14:11', 54, 1, '456.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fa0c81ba42bebde2f9fd67694d315df9712bdc1522076223bc2f336154b2b2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (789, '2022-09-30 12:55:00', 'FMMS/POS0737', 286, 'Ahmed', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '40.6000', 'completed', 'due', 0, NULL, 6, 6, '2022-09-30 13:03:33', 3, 1, '22.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32937daa3844f8dcdee0496ddfab36b4e4b0c237652e5c4fcdcf51b38a569e90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (790, '2022-09-30 13:01:53', 'FMMS/POS0738', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '107.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '107.1800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '107.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8adf4296e07c7d2dc0dde35bcbc9aac283e44d2593edb9154d470e71d177f924', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (791, '2022-09-30 13:07:38', 'FMMS/POS0739', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '53.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '53.8500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '53.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be8fb5e444cec0d8f725457f7fff9c1311ae2e72057148d35b9dded6db26e524', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (792, '2022-09-30 13:15:44', 'FMMS/POS0740', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '6.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70036612d9033cc579897ae9f093d1194f64f994319af40d0490a2422a184d44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (793, '2022-09-30 13:32:29', 'FMMS/POS0741', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83d3acac5bed212c55bed772d21b7c459258d0fa3517850fc69863303364dd63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (794, '2022-09-30 14:14:00', 'FMMS/POS0742', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '360.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '360.6900', 'completed', 'paid', 0, NULL, 6, 6, '2022-09-30 15:14:49', 59, 1, '412.8900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba1c34fd7bd33cee8a976506a3fa317a325bbe35c8e00639989dfab132c2165a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (795, '2022-09-30 14:28:50', 'FMMS/POS0743', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6a90d4e28ef7980a744a7eba6a697399ac7c18b405104aee4d8099396d36697', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (796, '2022-09-30 14:29:15', 'FMMS/POS0744', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '16.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a8490c4397c9ba2c9718ca5f1c5f6d7ac59bddfa86befe12a1ae6b2dc0f942b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (797, '2022-09-30 14:34:00', 'FMMS/POS0745', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1391.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1391.5800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 14:38:43', 181, 1, '1391.5800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09ec6d437c1c3c6e9bb9ae032bfc1cb61acec1eeb6610bbb5010f6a15f6a01af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (798, '2022-09-30 14:52:47', 'FMMS/POS0746', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4499bce33cb523e91e8e643c6c779e8c31441a45fd9fafac0852e7a41ac3b0a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (799, '2022-09-30 15:10:03', 'FMMS/POS0747', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '12.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '614bda34127d155279442e929d9cc3422ae82c67f1c7ca656c2ff106feaee51e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (800, '2022-09-30 15:32:53', 'FMMS/POS0748', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1040.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1040.4600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 89, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f4032b172dcb462af014245f74a08c4cc7f364f67ac2238a8cd547a44de5b9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (801, '2022-09-30 16:52:00', 'FMMS/POS0749', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1061.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1061.8500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-01 11:28:21', 111, 1, '1061.8500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f10382861880debe60b00f3f75c16140cff92e8df814d7519ff2895bada2f9ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (802, '2022-10-01 08:57:59', 'FMMS/POS0750', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '149.0800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '149.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '283137b2ed12c59138c266de45b307eee7ad49730e2576e779019f9af080aec3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (803, '2022-10-01 09:08:19', 'FMMS/POS0751', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '116.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '116.6000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37cae22e1a191c13803d502adff964c34a9cf8c551657dc3c54c172a171f50ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (804, '2022-10-01 09:14:08', 'FMMS/POS0752', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '794.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '794.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 40, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '911203ccbd3673bc64d9781a42660f1cd12ec50d49e0a37ce430572d5a018baa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (805, '2022-10-01 10:42:08', 'FMMS/POS0753', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6072d9211e9d522685e6fb03af49e61b46fced869ca5b3d5ef710543d0c78f29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (806, '2022-10-01 11:06:59', 'FMMS/POS0754', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '617.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '617.7600', 'completed', 'due', 0, NULL, 7, NULL, NULL, 100, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3424b545f04188be1ac42e7b320cda3b772703013b5c1f9531b9029eac8e1dfd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (807, '2022-10-01 11:21:29', 'FMMS/POS0755', 373, 'St. michael', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '607.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '607.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '607.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3bc5ea2055e8040365a5e3d98c380dc9d1724bb5a77b1ac301aba2bb54a8d0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (808, '2022-10-01 11:37:32', 'FMMS/POS0756', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d1cbbb07129264ef0eb1cdad15b9b29b9f90f06adb956197e91e040e4e7f134', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (809, '2022-10-01 13:10:37', 'FMMS/POS0757', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c185916e5b1ae68a86b6e7e00e7b18ba6573541393f424e19ba89e01e3c50be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (810, '2022-10-01 13:17:37', 'FMMS/POS0758', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '104.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '104.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '104.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0568b423a54e180ed177906138e3a143843b4c6f31642ff46a919ec15fb8735e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (811, '2022-10-01 14:20:16', 'FMMS/POS0759', 11, 'ABDUL RAZAK', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '777.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '777.1300', 'completed', 'due', 0, NULL, 7, NULL, NULL, 185, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4984628c047f6d0fdeaabeec9325f7d951da0708b24111a77b258361185d079e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (812, '2022-10-01 14:42:04', 'FMMS/POS0760', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '89.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '89.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '89.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3430df9a5e2d71014eaab0d2b8c5db219dc33877666d8172eb5da248baa605a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (813, '2022-10-01 14:58:12', 'FMMS/POS0761', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '849.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '849.6900', 'completed', 'due', 0, NULL, 7, NULL, NULL, 193, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f0beee41dcd85aa0c73c7a3c4a5180eaa33b447732ddd74b6449c7132d5ef72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (814, '2022-10-01 15:03:22', 'FMMS/POS0762', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '142.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '142.4400', 'completed', 'due', 0, NULL, 7, NULL, NULL, 27, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3886126f9b14a41e12ee04e95d621de34d4036879d3f65add3308c2c1e36aa46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (815, '2022-10-01 15:16:11', 'FMMS/POS0763', 285, 'tabitha', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.6400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '55.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18ada15668345baec7679d4078d1c3ba2862c6d6b5d6916eaea1d84d93de757b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (816, '2022-10-01 15:41:52', 'FMMS/POS0764', 121, 'Grace Bosompem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '107.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '107.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '107.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c8789117dbd26d5650e8752bef9ed73861803e09d54f3b6046da9b541b4bb97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (817, '2022-10-01 15:47:32', 'FMMS/POS0765', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '7.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c93517e60a2ad9fdd369259d965cca6f0920e60c106af80b35af80ab5a5362a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (818, '2022-10-01 16:01:47', 'FMMS/POS0766', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '16.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8fd8e7c71a84d1f4b19a4c51681b721726c6ec855039f84c06b7e250f8854f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (819, '2022-10-01 16:28:25', 'FMMS/POS0767', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '105.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '105.1100', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '834416e0e41a061afaa4cdab50c1b814ff62bb533789e2f8f1fc98c3d959150d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (820, '2022-10-01 16:57:16', 'FMMS/POS0768', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '107.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '107.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '107.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '092e4f219ac761cd6927ebb8de1d4772e5ea5d81dc80f80f0261739f8d5c7aa5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (821, '2022-10-03 07:56:45', 'FMMS/POS0769', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '254.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '254.5600', 'completed', 'due', 0, NULL, 7, NULL, NULL, 22, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8c3562a2cc8ba6ab2e470aa48dc2265c40ff0ca9548ed5889320f0168280669', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (822, '2022-10-03 08:04:26', 'FMMS/POS0770', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '96.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '96.8800', 'completed', 'due', 0, NULL, 7, NULL, NULL, 36, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05444cd2c83a3b2f38420001c124d41e6bb03e27a4fea15d05221459d88b8ac2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (823, '2022-10-03 08:33:28', 'FMMS/POS0771', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '116.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '116.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '116.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '797acfac78de4742b17f400330151221ce2f8d27fc932e03f9ca2d0cd4237fc7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (824, '2022-10-03 08:43:10', 'FMMS/POS0772', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1147.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1147.5000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 25, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '471f5095b0003730387826de487335d5b4fba7a4d42097372a7add7d11547740', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (825, '2022-10-03 09:50:00', 'FMMS/POS0773', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '325.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '325.6000', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-05 15:24:20', 38, 1, '467.1300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd87266289ac4cc8d75af749b0f974d5009b11a14e88dac5375c8a8922fc6b681', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (826, '2022-10-03 10:10:52', 'FMMS/POS0774', 370, 'Obaa Yaa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '485.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '485.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '485.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45a941f0118db79265a497278ae3875c443bf2ae7085d6ea8db8685f8f85771f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (827, '2022-10-03 16:13:51', 'FMMS/POS0775', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83740f3d02aa622e5924d98001bfaeb6668f58b22378291fe022d280b96976cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (828, '2022-10-04 08:34:39', 'FMMS/POS0776', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '126.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '126.5400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '126.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e530122d43235cc4de043c1b5e60b5f04c3c1ae76d6e27aff0b281d3848f3fe0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (829, '2022-10-04 08:54:42', 'FMMS/POS0777', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1987.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1987.8400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 108, 1, '1987.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39c85949d15f0e1e346faf5fb882d993a195c49b798610c96581b14031957221', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (830, '2022-10-04 09:02:33', 'FMMS/POS0778', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '323.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '323.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '323.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ab84ff735a9702bc713c2c57c43337007790dbcb61ce7352a397548675e2a24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (831, '2022-10-04 09:20:00', 'FMMS/POS0779', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1151.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1151.7200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-04 14:05:52', 159, 1, '1151.7200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5093db5aa0732ae175a622a5db484b145d7cbd22b1f952774aefebb015229d73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (832, '2022-10-04 09:31:17', 'FMMS/POS0780', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '222.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '222.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '222.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '578ade293ba28d0886c7e072d0b3187cfaf4c3bfe02a30f181eb78efc00092f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (833, '2022-10-04 09:35:46', 'FMMS/POS0781', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '301.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '301.5300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 76, 1, '301.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c334c3492b83b76b37e7d3eb3cbd29f18405aabe172d0aa91b443350242bfe79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (834, '2022-10-04 10:11:00', 'FMMS/POS0782', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3365.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3365.4700', 'completed', 'due', 0, NULL, 6, 6, '2022-10-18 17:40:58', 224, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '205a41de21a23707b015e011d91c35195db3c7cffb5e380f9c5287ba78106945', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (835, '2022-10-04 10:21:38', 'FMMS/POS0783', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '294.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '294.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 58, 1, '294.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21dc4d27a5beecd87006908c97f5d511eb6d06aef10a3c81c741ca5eb7e2b8c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (836, '2022-10-04 10:40:33', 'FMMS/POS0784', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '417.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '417.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 58, 1, '417.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f15b893994c6559d81a4d2f357a6c05500d8b01cc7d35422cfd63670a57bb9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (837, '2022-10-04 10:43:00', 'FMMS/POS0785', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '112.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '112.8000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 09:18:42', 20, 1, '132.3000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eccc94df1212753aed32a043c8d6493294867aa497617fac28fae3768c2eb808', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (838, '2022-10-04 10:50:00', 'FMMS/POS0786', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '204.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '204.4700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-04 13:19:55', 34, 1, '204.4700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7665f424fd8e1fe63d71c070ffdf581842114188e47238942c1f32d5a2e602a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (839, '2022-10-04 10:53:25', 'FMMS/POS0787', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '425.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acb1f301736ccb5455118aa48250661da2f45f63b9f7bb5d81fc7ded7ff7991e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (840, '2022-10-04 10:54:53', 'FMMS/POS0788', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '425.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08b806b64d592fde97b70db55d9c61ecd4c4534c83b02aa35738434e2ae5606c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (841, '2022-10-04 11:18:24', 'FMMS/POS0789', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '540.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '540.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 163, 1, '540.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4510c545763627d56368d7d779aaba7aeab4d70c34a9859d10e24f4722d651c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (842, '2022-10-04 11:31:20', 'FMMS/POS0790', 23, 'Kwame Afrane', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '72.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '72.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '72.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fedcbbe2504718aa22784d2180848ae28e0871c62a22ef2c55a8d075b2d8ec4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (843, '2022-10-04 11:34:03', 'FMMS/POS0791', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.6800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '168.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9139409101c880dec68a322f6f40c3edfd561372ccc0b7c70d5bce929d0983f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (844, '2022-10-04 11:40:01', 'FMMS/POS0792', 23, 'Kwame Afrane', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '11.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c9a8dc20a6a765c91d1c26ae3326c00bd4ca3b88114562aab099dc6d9c29dce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (845, '2022-10-04 11:44:00', 'FMMS/POS0793', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '175.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '175.5000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 09:22:12', 12, 1, '180.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13c6fb28bec939302df37c7df971135aca5c2907c82907c604a9a343d730c819', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (846, '2022-10-04 11:55:00', 'FMMS/POS0794', 267, 'Vida Herbal Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '129.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '129.6600', 'completed', 'due', 0, NULL, 6, 6, '2022-10-05 15:47:52', 11, 1, '128.1100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5631531ab9cd0cb081dd4e13d6fffa52353fb916fcc58805223b682255bbce4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (847, '2022-10-04 12:00:00', 'FMMS/POS0795', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '321.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '321.9000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-05 15:31:28', 33, 1, '321.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4bfea7485f680caf477d1c0076d2439412ecf7175969b720f99324e98c93c6b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (848, '2022-10-04 12:05:11', 'FMMS/POS0796', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '156.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '156.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '156.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e68e0002cdc4dc5ebfdbcbf3723862de5358071721737457cc9ebf3a94dfcd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (849, '2022-10-04 12:10:46', 'FMMS/POS0797', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '608.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '608.8500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '608.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d3dabf5639cbcd729c82c1e5f18fba9cbc5efd2e3e7506d328729678c9309c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (850, '2022-10-04 13:04:00', 'FMMS/POS0798', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '121.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '121.8700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-04 13:17:26', 36, 1, '121.8700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80c698777829d871bf41e6a94428852551d18df9acad80c4542adad6e318b1d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (851, '2022-10-04 13:27:00', 'FMMS/POS0799', 59, 'CLIFCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9304.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9304.0800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 09:00:30', 1262, 1, '9304.0800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '360517504d18dc8a26b033403bf407e9094385a41b38aa8a7ce8e4be6e7a251d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (852, '2022-10-04 13:35:09', 'FMMS/POS0800', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '337.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '337.1100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '337.1100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f703d830c77a532d5c7a374e6033a69cd0796e38575902d2728bdf7203fee629', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (853, '2022-10-04 13:38:14', 'FMMS/POS0801', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '77.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb6b0aabba7c3915ed1856ee68540dfae5140b2e7b7f9254ba7bcfe6d6d44884', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (854, '2022-10-04 13:51:27', 'FMMS/POS0802', 251, 'Esther', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89e2b289806ea0ab15e66fd65a8122288d49e0c3f150843215e39925526c28cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (855, '2022-10-04 14:19:00', 'FMMS/POS0803', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1195.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1195.4000', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-05 15:17:33', 156, 1, '1206.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f3815dbe05d19effd0f105010c894c9789f27e336c75c3106d7cd2ec034ed1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (856, '2022-10-04 17:06:36', 'FMMS/POS0804', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '200d3a488253e5a559df16151bd6d1490d2413bad12564e2f370c1a02c36ac5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (857, '2022-10-04 17:07:34', 'FMMS/POS0805', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '18.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f50f9b07960b7c80fe7cbbd91d694fca9883b36a77284424ef0884b07560f390', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (858, '2022-10-04 17:09:29', 'FMMS/POS0806', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '57.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '57.4200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '57.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e14ee1ddd771a6551c0b4d8e055c20fba2152a18518ee31f866a7067be0bc082', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (859, '2022-10-04 17:12:02', 'FMMS/POS0807', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '34.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '34.8800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '34.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d72ff027b3a22deb47101f58d2ce001f53399fdf0d7fee2e6b0c1aae8085f99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (860, '2022-10-04 17:14:53', 'FMMS/POS0808', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '171.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '171.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '171.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6ce1ff32b727d592ec0204d4b03e9f0dc39ba21adde45d261ec2a562d494b13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (861, '2022-10-04 17:17:13', 'FMMS/POS0809', 83, 'Liberty Lancet', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a04e431832e54b292ee8b2f420e4a1dc96747c71647a31cfc2b49ef6dc1ebb7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (862, '2022-10-04 17:19:46', 'FMMS/POS0810', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '629.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '629.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 34, 1, '629.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c45e8a736e9c59ec86ea697b1395538e99a0f4dd3301a35f53effbee3f39ef1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (863, '2022-10-04 17:20:56', 'FMMS/POS0811', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d8390a719de0b69a0531871ed0f0ace34df94c5cd00e15c4a8690b4d2b45694', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (864, '2022-10-03 13:40:00', 'FMMS/POS0812', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '68.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '68.4000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:36:57', 17, 1, '68.4000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '893704ac84e4c7181b3107685a8efc0973bcec78570a9fd09b67604f05d5e9d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (865, '2022-10-04 23:32:24', 'FMMS/POS0813', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.5500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05818644cf1daa7e4413d207f44a8ce4b8e30333ee801de6369498487a2b83eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (866, '2022-10-04 23:38:44', 'FMMS/POS0814', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '304.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '304.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '304.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fb5d7594d1f19f06930aa6c06c4f06ffcca4476108eb9de45ea8effaf6d6cd9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (867, '2022-10-04 23:48:35', 'FMMS/POS0815', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '302.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '302.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '302.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94ed7e2327a8beebf05a4af9a4d0d4594cba5d21360480480cb12938c7accb4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (868, '2022-10-05 00:04:38', 'FMMS/POS0816', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '829.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '829.9700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '829.9700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69f823cf987d80ffc0a7cdf71b36a3773b5f1eee1c1f58181e86fd493a5e8960', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (869, '2022-10-05 00:05:30', 'FMMS/POS0817', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e1872211b5b6e7f9eecef04e83af00b0fe9f89e54b06cb4ede727900f6212a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (870, '2022-10-04 15:00:00', 'FMMS/POS0818', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-05 09:10:52', 20, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a338073c6a8c3d57010e8d20ed234a710f02e3a6ebc8186f67d612ae42451a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (871, '2022-10-05 00:10:52', 'FMMS/POS0819', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '49.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd519c943c41edb7946569f8bf142ecb51be54230fb179c6dc24cd08bd1b2a80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (872, '2022-10-05 07:48:12', 'FMMS/POS0820', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74d1540d2ba52db1e74fe22dacddb7a6d62f67d3d392f86e1fa2f3cb97840a19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (873, '2022-10-05 08:02:12', 'FMMS/POS0821', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '775.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '775.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 91, 1, '775.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cac09f1b591bdefb80368bdf210466e668132fb913f73b39da695fc40149b598', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (874, '2022-10-05 08:03:06', 'FMMS/POS0822', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '114.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '114.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '114.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de92d8247b08a1f530818840966556a34909a894b91623dc4af8eeb05677aeae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (875, '2022-10-05 08:11:45', 'FMMS/POS0823', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.4800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '33.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '092ded0efe6b3c87f3a18f795a7eef1d9b5a82ea5c83a13e9f20080fdcbe3a28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (876, '2022-10-05 08:21:12', 'FMMS/POS0824', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '593.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '593.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 84, 1, '593.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7397ec5386dc1c2bcbc9e6553a30d5ac63a9af7ee11651dc1a259ff493936e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (877, '2022-10-05 08:33:31', 'FMMS/POS0825', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1499.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1499.9600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 94, 1, '1499.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd76ed7ad916a65445b28ba3655ab40cc8c3b47b82f1c63201949ad5cb9112ea5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (878, '2022-10-05 08:48:59', 'FMMS/POS0826', 235, 'Noah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '78.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '78.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '78.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c4302421b2c144540a4d13433f8ebaba2bfabecb1e8564d7746d5144c021c59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (879, '2022-10-05 08:50:23', 'FMMS/POS0827', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '16.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '175ae9947d8e8e3d64bfc8c11254c88ab315f41c7d1aad7ab4ff93d68fe29eb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (880, '2022-10-05 08:53:31', 'FMMS/POS0828', 386, 'Regina', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3b22925f6b06ff5aba0a1345dc4aba696851d9a3eb96e357a812e8080a1b7f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (881, '2022-10-04 08:50:00', 'FMMS/POS0829', 289, 'JusticeElect', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-05 09:22:58', 1, 1, '4.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d3bbfc15d29a862f47faf3ef4eea066f4625a24252d4364a04443ed897a31bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (882, '2022-10-05 09:05:44', 'FMMS/POS0830', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd409a3b7fba2ef39829bb6b6e9331ee1fa4367a66c43476512475cf61e04687', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (883, '2022-10-05 09:07:47', 'FMMS/POS0831', 63, 'Cynthia', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '200.6600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '200.6600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea4a7d5a88c6d453ff7f8677e34fc5f8bd7392aa2d41fb6c792fccb2e6802419', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (884, '2022-10-05 09:20:53', 'FMMS/POS0832', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '818.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '818.6500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 36, 1, '818.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10e9e889e6a13ac3f5e659c71f46789bca0d3bf012e41809e535691bdaa7fc5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (885, '2022-10-04 09:20:00', 'FMMS/POS0833', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '126.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '126.5400', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-12 18:03:17', 30, 1, '126.5400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd81c6a97f2464da271a831ae7d08647ebd47b6f687093fe546f9650b972965d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (886, '2022-10-05 09:24:53', 'FMMS/POS0834', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '77.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79bba1fb0899fe38af8ae9d4399b9f62fb0631c249e9dec8c569b3d2e162c48f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (887, '2022-10-05 09:26:10', 'FMMS/POS0835', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.7100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '17.7100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be2f2c2fbd5cff736f30fd5c124a2ca5c3ca837ff684a0d21b462597caba6fe1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (888, '2022-10-05 09:32:38', 'FMMS/POS0836', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9b1d95b11a5726265c5f26e1da4e5304a5eb6fb168a0c61c1f697815ed5f61a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (889, '2022-10-05 09:45:00', 'FMMS/POS0837', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '596.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '596.6700', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 10:47:51', 120, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54708dda8daf7c469f275612d0a41a8f66e8734567e90bc80c282a0d0412c17c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (890, '2022-10-04 14:50:00', 'FMMS/POS0838', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '&lt;p&gt;SIMONY&lt;&sol;p&gt;', '', '842.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '842.3000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 09:52:32', 107, 1, '842.3000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61dd5a982d1d92cd5aad8a1e3d8a4c1778cec690e921507fe2b6c85b43aef21a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (891, '2022-10-05 09:52:20', 'FMMS/POS0839', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1183.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1183.9000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 84, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '335feafdca25e9cf2597899c94e6f1c33d52cb29509ee5b2f736252330a99754', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (892, '2022-10-05 10:00:56', 'FMMS/POS0840', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1013.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1013.7400', 'completed', 'due', 0, NULL, 7, NULL, NULL, 118, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a5f7e6451706f2cbff0dda66d14a7eee23d1b05a13ffc8060cc5b57e08bbb85', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (893, '2022-10-05 10:06:22', 'FMMS/POS0841', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '36.1200', 'completed', 'due', 0, NULL, 7, NULL, NULL, 6, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '644566b71e525aff8ba5d33651bb510af2c222395e3a6251bb02ef2e023ef61e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (894, '2022-10-05 10:06:26', 'FMMS/POS0842', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9808bfaed66e05bbaa69d6983c1850199df5bea8802fb0d4dedfb7e91aed798b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (895, '2022-10-03 10:00:00', 'FMMS/POS0843', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '301.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '301.5700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 10:13:30', 21, 1, '301.5700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88cbfc32299b5fe538ae967fb931e3cb6cb8b3a3b677d59c28daad4309cefc6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (896, '2022-10-05 10:15:51', 'FMMS/POS0844', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '163.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '163.7700', 'completed', 'due', 0, NULL, 7, NULL, NULL, 14, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '514414cc4dc9a53f96646af83b12c9f83e773ea12e5bb81df0778e5be12c17c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (897, '2022-10-03 11:55:00', 'FMMS/POS0845', 387, 'BBLITO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '178.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '178.8900', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 10:23:17', 35, 1, '178.8900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6807c615f357691534dc1e1e6add85ac042ebe6bfd1f0747afc3341fd0590d4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (898, '2022-10-03 02:25:00', 'FMMS/POS0846', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '54.1700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 10:43:05', 3, 1, '54.1700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36a8f72be7b71c92f3c7107f55879f24e23ebdfccc06b9b57e6d03b0a698a66e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (899, '2022-10-05 10:37:01', 'FMMS/POS0847', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '79.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '033fd1404d0abcf0bc87f9103b0979450f51d47c7105ac261dac0e122e585a90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (900, '2022-10-05 10:37:41', 'FMMS/POS0848', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ab34917e895b2c9e50b765c1f080171d080f100b95a0027e6b7d519ad0686a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (901, '2022-10-05 10:40:00', 'FMMS/POS0849', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '26.2000', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 10:44:26', 2, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '760da51e12219d2a9c59797981ff514a606b102d0bd1603b62ded9557451871b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (902, '2022-10-05 10:40:49', 'FMMS/POS0850', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd55bee0021e0ce650c8276f96da318baac58346952ceaad71826697ab9e82c33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (903, '2022-10-05 10:55:00', 'FMMS/POS0851', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2004.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2004.9400', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 17:22:10', 159, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb5ae15480ca6b6177f81729490c115cdb5916edc173167b30efe56e7bec9ea1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (904, '2022-10-05 11:13:00', 'FMMS/POS0852', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1713.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1713.3800', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 17:56:29', 95, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15d1886299eefb3ac7068d35f0cec778e6b87f1a6363d906bd426bb189867062', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (905, '2022-10-05 11:15:46', 'FMMS/POS0853', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c2deae268dcafa9a96aae68f7ea192f6c2224afe9e3ac9eba3b62e2f2a48bf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (906, '2022-10-05 11:49:00', 'FMMS/POS0854', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1984.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1984.8200', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 18:02:01', 211, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25919fced0bfca5fcd8c7facb0d853834388b69b1d9ddfcb939c35aa8715cfca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (907, '2022-10-05 11:55:00', 'FMMS/POS0855', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5041.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '5041.3800', 'completed', 'due', 0, NULL, 6, 6, '2022-10-05 13:13:31', 601, 1, '5006.1900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5851f0c5cd330d44fa14b225ccceadc6c074b5aeed49e15b9dbc40c30f5b0f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (908, '2022-10-05 12:06:12', 'FMMS/POS0856', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '746.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '746.2000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 56, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0adb53043d64176bdd9c22c6b5f83ba9883283261071f09d1bd3c77ba3db92b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (909, '2022-10-05 12:10:36', 'FMMS/POS0857', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '35.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd93df641dc31250845ade979f8256f21fd93d1538dfbc05358b57e59909f255b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (910, '2022-10-05 12:11:37', 'FMMS/POS0858', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53b15c46d62b75acded0d26abb7360576c0e459ef82f0d710e4eb40efbbda321', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (911, '2022-10-05 12:23:00', 'FMMS/POS0859', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '902.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '902.8800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:10:49', 60, 1, '902.8800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59914503f26253a769e47adb4a17977d9b2e6c5f2464efb6d2beab7425454c57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (912, '2022-10-05 12:24:53', 'FMMS/POS0860', 388, 'Ayirebi Health Center', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.1600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '66.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f27b1dad2d24d431eeb3407a1bcd46534b7457a0fac2b93e578fc40416991021', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (913, '2022-10-05 12:29:45', 'FMMS/POS0861', 388, 'Ayirebi Health Center', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '857a4506fb2ff05e3057a0dd0071c113da49dfdd727d002a9e0b19838cb5143e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (914, '2022-10-05 12:45:55', 'FMMS/POS0862', 15, 'ADENTA PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '75.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f0e6570c4b3dd5343c1e75cdeff50ec9ba52cda2197eaf2d4c64c3d249562e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (915, '2022-10-03 12:15:00', 'FMMS/POS0863', 262, 'Elder TT', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '420.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '420.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:20:32', 21, 1, '420.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cc751cc73fda14f921ee5a4b9a1fdc645024dfe5aa281169a7b6765e895afa1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (916, '2022-10-03 13:25:00', 'FMMS/POS0864', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:23:04', 1, 1, '15.0700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27f2ad90344b3001c5f8588812484cc4924d29beae41ddea579eb1450e569417', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (917, '2022-10-05 13:22:31', 'FMMS/POS0865', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '425.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '425.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9c44166689d606d67fa317ae5b05cc6c3e8ab20cc6bfea8764f697a093bbb23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (918, '2022-10-03 13:30:00', 'FMMS/POS0866', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '131.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '131.5700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:25:44', 1, 1, '131.5700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2aba4a6b0c223fd483ee269f65d7fbc6b70d790c5e9b1fb7e1e54be0dae189a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (919, '2022-10-03 13:25:00', 'FMMS/POS0867', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '83.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '83.3800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 13:35:07', 5, 1, '83.3800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '770ee0b8b26a3a0dd96bea8c901c5195b1c450f7305c6d4526860d8d803fa82d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (920, '2022-10-05 13:32:23', 'FMMS/POS0868', 364, 'Diana Nyarko', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '90.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b26d25d548480eb6c1bdccac86bbd2e80d32bb285ae728b920ee93747b646a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (921, '2022-10-05 13:45:45', 'FMMS/POS0869', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '157.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '157.6800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '157.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b8c1d104fb01c6a2ccdc7b23bd1052a28b4f8916cec60d2fa18e2d10d6343e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (922, '2022-10-05 14:05:00', 'FMMS/POS0870', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2118.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2118.2900', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 16:03:41', 206, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8ad398577af023510b98d95fd0f6359e461923d81fd7dbabcd8498e2d75d1a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (923, '2022-10-05 14:06:44', 'FMMS/POS0871', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a38ea737d36215c84038fb011937505d3ff13479703389e9e0b67ae49680a258', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (924, '2022-10-05 14:17:17', 'FMMS/POS0872', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 25, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b13d3f9dc3b882abfcc695db37f77fa29088056f9dc72283e5ee2ee3bb0c07a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (925, '2022-10-05 14:18:16', 'FMMS/POS0873', 389, 'Mike', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '62.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27be3d2b1ccbc0742162bf5f75f1df945174e41bae0bff43d68d4e7ea7cdd142', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (926, '2022-10-05 14:33:13', 'FMMS/POS0874', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7da905f1c1c9710cde697bd223d4608e65755dec055b75a0e1f5685bd039881c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (927, '2022-10-05 14:34:11', 'FMMS/POS0875', 72, 'Dela Lorm', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '221.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '221.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '221.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1c22b2d55e6cc4bbd5809388e92cb4fff9e4cc2f3e6218be3b39c95d91d4fff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (928, '2022-10-05 14:45:59', 'FMMS/POS0876', 41, 'GORDON', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '176.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '176.3300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '176.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86acc0c27b6b336596d632f4e19a59e4d4e490a345ba9429919ada006e4ed552', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (929, '2022-10-05 14:48:00', 'FMMS/POS0877', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1887.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1887.8100', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 17:50:36', 197, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b40aceeb8eb51aa1bba373c52d12fb9c8bf9439f93d710d0494f0cc6db8a50d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (930, '2022-10-05 15:03:20', 'FMMS/POS0878', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '159.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '159.7500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 41, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc562e43e202a75c3061efb5bdcf229e1d4265421373c1979fb245ee68bfab6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (931, '2022-10-04 15:00:00', 'FMMS/POS0879', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '182.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '182.6000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-05 15:51:01', 3, 1, '182.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f329759ee543a61ecb39986d37ed1abd0544605e2a3922ab6a5a8f3c9e158100', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (932, '2022-10-05 16:01:58', 'FMMS/POS0880', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.4200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '71.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df9d5199939a1c6197033dec820502ef4cb4b02e6716d1f52edbb57b1bfea74b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (933, '2022-10-05 16:46:00', 'FMMS/POS0881', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '481.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '481.7800', 'completed', 'due', 0, NULL, 7, 6, '2022-10-05 17:05:31', 103, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7872a0db96a76c81617eeabff352b17e70928e7eccca7cb53a71283c465720c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (934, '2022-10-05 17:00:29', 'FMMS/POS0882', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.7600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d31816b8a31c2ed95a10fdad94697503efc04d00df772bbc3e79443f93a0609', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (935, '2022-10-05 17:42:13', 'FMMS/POS0883', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9e3aaf1c020de10a53c7973f5873f7c29cef8f33dcc97ce0234504ae2595b75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (936, '2022-10-06 07:34:51', 'FMMS/POS0884', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64ac626c78dfa91a36577976e5765b26592f848a8f7fc4a259e33a42ad21c3e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (937, '2022-10-06 07:44:41', 'FMMS/POS0885', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e3f0b2d0f145c17f05ffc47139fbc3c1e092e67390fef8973d01c5e852c1c75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (938, '2022-10-06 07:53:02', 'FMMS/POS0886', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '42.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '369f8eb9c1ae17034efa2b21544e5473e9f6c5264b61c770c39251c19660083f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (939, '2022-10-06 08:17:20', 'FMMS/POS0887', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '791.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '791.1600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 96, 1, '791.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54d8aab642f4052ac71b951e599cd6ae710a18eb14923a4aa6295732ecd55554', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (940, '2022-10-06 08:26:47', 'FMMS/POS0888', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.5400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '71.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2164fd8c2be6d7b03b44a0179b06a3edd63c3c174079ccdfa5b492f18893b49b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (941, '2022-10-06 09:02:08', 'FMMS/POS0889', 99, 'florencegamali', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '428.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '428.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 37, 1, '428.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7115074c1b90cbce941b6ee73985296cdbfb5327831c02110aa74693f875fba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (942, '2022-10-06 10:24:00', 'FMMS/POS0890', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '61.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '61.2400', 'completed', 'due', 0, NULL, 7, 6, '2022-10-06 10:57:30', 12, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6382caa27077c313202fda78a25785340b1935b81230a15da4549f64e66260b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (943, '2022-10-06 10:31:49', 'FMMS/POS0891', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e5be6995ed93601734392d0d03d06879417a36a80d1bde5de488267de324a24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (944, '2022-10-06 10:56:00', 'FMMS/POS0892', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2109.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2109.3700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 245, 1, '2109.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68fe4d3dce726c0bbaa2b201fc2859a6d0d72cbd24a8947f4b25bbfb62dbb3d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (945, '2022-10-06 10:58:00', 'FMMS/POS0893', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3058.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3058.9600', 'completed', 'due', 0, NULL, 7, 6, '2022-10-12 09:38:37', 208, 1, '3056.8400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '699f8df06ec4e58f3fa079fef188a1b7ea2f3b87b4c19a5dc43ed863461d6c1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (946, '2022-10-06 11:05:29', 'FMMS/POS0894', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.9200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '55.9200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '987d56478762cbae9e37703c4995d0dc8e82b0657e727eafaaa235250712ab3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (947, '2022-10-06 11:06:33', 'FMMS/POS0895', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '146.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '146.0400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '146.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65c084e0ae111521c5bad3bfa01b2c5790f4a6cb03a97d6f75e821b73280f7fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (948, '2022-10-06 11:13:34', 'FMMS/POS0896', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.1300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '54.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '789fb428eb45a1ffefcd09e2fe521134a1e89772cb7489df10143692d1a9c929', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (949, '2022-10-06 11:28:38', 'FMMS/POS0897', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '66.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a8b811f6e5347c052843f4acc46c18cf08620a13a5b698f10cfa73919038838', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (950, '2022-10-06 11:38:34', 'FMMS/POS0898', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '6.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f091f4784eef78f8050d3df716ae9c5f350b4065b744d460e94254ad7bb8d05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (951, '2022-10-06 11:47:50', 'FMMS/POS0899', 209, 'PAULINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '264.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '264.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 17, 1, '264.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f23ca575c89f8bacccee5bf3af720f6ee04d8a6ce573127745a871d188c59311', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (952, '2022-10-06 11:53:42', 'FMMS/POS0900', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '266.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '266.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 54, 1, '266.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e3f0449a03d76eab9a6dd61a54ee2104f4192489f6082f624313ae451c94bdd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (953, '2022-10-06 12:05:50', 'FMMS/POS0901', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '390.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '390.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '390.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16740429d2f74a8d7dff2013f5dba1108a91172e53bbb4dbc96e26160abbfd7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (954, '2022-10-06 12:44:28', 'FMMS/POS0902', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '38.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf3abbdfa5a14945a157f9b6d1f185a9e7958e50f9cb7f39fad107748a95d8fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (955, '2022-10-06 13:10:14', 'FMMS/POS0903', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '305.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '305.7100', 'completed', 'due', 0, NULL, 7, NULL, NULL, 38, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b9dc998cdf4e8f9edf4313bda78bb7f08d7758c9716dd401a15106e5a6e1583', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (956, '2022-10-06 13:23:18', 'FMMS/POS0904', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83cf80c06d039600dc2556f40c6a4ba066488d7563cad693201eecd41a8ebb9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (957, '2022-10-06 13:25:00', 'FMMS/POS0905', 390, 'Joyce Chemicals', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '166.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '166.0400', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-06 14:40:22', 18, 1, '215.5700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62ec6e9025b27ff336e28e5eb63f3c5265e70f4aaa5fea256581b2c33dbe701d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (958, '2022-10-06 13:34:00', 'FMMS/POS0906', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '862.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '862.4200', 'completed', 'due', 0, NULL, 7, 6, '2022-10-06 13:51:54', 124, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2298bf422cbeb455d6c7136b9ee2446a324167d9e2e664836d83a61363ff9b77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (959, '2022-10-06 14:03:35', 'FMMS/POS0907', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3f3c605505ca43f7a232d02dfee1d4f213c6af73eeccb242aff94b0b4ac4f2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (960, '2022-10-06 14:20:00', 'FMMS/POS0908', 272, 'Walter', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '290.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '290.3900', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-06 14:43:54', 28, 1, '292.7900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a682ffeaecd5609b2a354ee136d58fb00ebf6926683ac3cf0ccea0b37c515f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (961, '2022-10-06 14:23:06', 'FMMS/POS0909', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '80.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '80.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '80.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b63ad38868e4b863128f02d46ff20e8a7f498e36c5500aa13f13c2de01bba7e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (962, '2022-10-06 15:03:00', 'FMMS/POS0910', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '900.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '900.1500', 'completed', 'due', 0, NULL, 7, 6, '2022-10-06 15:56:44', 136, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0eb05dfbfb5afd77254e860ac850ba37e711f25f069e01b900e6a5019fb6fb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (963, '2022-10-06 15:11:49', 'FMMS/POS0911', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '219.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '219.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '219.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '903bf7768cfee47f96e4946afaa57b1f48becb8d6fa58df789618a13c21b2918', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (964, '2022-10-06 15:13:24', 'FMMS/POS0912', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1006.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1006.7300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '1006.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '609c712dd0d856115ce3de3cf3fcbcdadb9c9623dfe34a35011629008910024a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (965, '2022-10-06 15:44:07', 'FMMS/POS0913', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '169.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '169.6400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 36, 1, '169.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa77b0fd1893fd2e541ee632fb9fab1873ddc841316fab343a8a6b4fd4e7e45f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (966, '2022-10-06 15:52:19', 'FMMS/POS0914', 391, 'Mavis Boateng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '251.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '251.6100', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 38, 1, '251.6100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9af538c6ffc75588e4e55f14a8092ff1d610e719e542aec882f61c48491a7dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (967, '2022-10-06 16:03:00', 'FMMS/POS0915', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '58.8000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-07 16:08:54', 8, 1, '58.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01db9f544bcc2b46b7ef0e391695091ef424e31550ff1ba36e954db6df8f3e92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (968, '2022-10-06 16:04:05', 'FMMS/POS0916', 392, 'Magpat Pharmacy ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '300.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '300.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 54, 1, '300.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d0c071a105a47b25bb3f2766ca25eb041e9c83d293bec62c296f1895d6ca885', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (969, '2022-10-06 16:05:06', 'FMMS/POS0917', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '705.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '705.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '705.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e06b9a9fe86ab813190d5d8426f43ee303e67a7f98f18558f95ac0202511852', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (970, '2022-10-06 16:08:56', 'FMMS/POS0918', 250, 'TAP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '300.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '300.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 54, 1, '300.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3547df50856acfba5da90a13ec6c16edabaf8638e5c7fab9c3512aea102999f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (971, '2022-10-06 16:21:25', 'FMMS/POS0919', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '34.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '34.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '34.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd91d2eeae6346bdfffa47da75a0a5d5384e5d436c68596fde13968241c127879', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (972, '2022-10-06 16:22:27', 'FMMS/POS0920', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '161.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '161.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '161.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'add6dc5d4a24fa2c02cc829bd3053c826b1d8df1435a798fe5e52a405e371654', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (973, '2022-10-06 16:25:16', 'FMMS/POS0921', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.2200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '77.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4375cb51e0b02996f350351a05119ae25f182b06d6c22aacca1e10cc79a666f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (974, '2022-10-06 16:30:56', 'FMMS/POS0922', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e473925cabfca69e167137d2dc247baff1963b54ceffe9660d50977edbdb52ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (975, '2022-10-06 16:32:37', 'FMMS/POS0923', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '459d301ba739591d0444f801563bb7119a61a81059c7c329310a2200dbcba7bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (976, '2022-10-06 16:43:58', 'FMMS/POS0924', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '205.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '205.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '205.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af216bee9b8bd0ea6496460668b3a556c35340f4d9e6a3a572614f78dd68341f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (977, '2022-10-06 16:47:43', 'FMMS/POS0925', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '115.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '115.5000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b87b0a82fe167acc999e0ced74e3282111eab25704c9ee39d38c96c9a3c54c28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (978, '2022-10-06 17:13:35', 'FMMS/POS0926', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '49.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e829022496fbc3d8b931b754f18412ed64618ec651c60fbd1666b43d1739db4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (979, '2022-10-06 17:40:00', 'FMMS/POS0927', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '939.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '939.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-07 12:03:31', 24, 1, '939.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95fbd66afa6bea5bf1dc62ea15d7a2a6e3770da07c482551262a8537d703bef0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1006, '2022-10-07 12:19:56', 'FMMS/POS0954', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '183.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '183.8500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '183.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f765c6205462a251da251935671e4ee0d7365a3e3e12e9c3749382477ca6899e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (980, '2022-10-07 07:36:22', 'FMMS/POS0928', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94da5bd1986ad26bb5027572ed31bf1ab98f49d5da844bdf4924c05beede6f33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (981, '2022-10-07 08:00:26', 'FMMS/POS0929', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '599.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '599.9100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 80, 1, '599.9100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8d7a2d174c46b5bab9c6dfdcbef02ce17825f12c5a85e32a6e32aad174c2861', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (982, '2022-10-07 08:02:29', 'FMMS/POS0930', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '9.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01005ca3345d1b4d28189774bc6102706e3830c0e083509af1f1218f49734e5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (983, '2022-10-07 08:27:50', 'FMMS/POS0931', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '43.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af0e0ff022c4c6def93988f638fb2c218adf8ae5f25f8835644eefa8db1c7656', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (984, '2022-10-07 08:40:00', 'FMMS/POS0932', 373, 'St. michael', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4512.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '4512.6400', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-07 11:55:33', 275, 1, '4512.6400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2477b9468c774eea9f821240930c5b2aba03baea245deac906a1963951e44b6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (985, '2022-10-07 08:53:19', 'FMMS/POS0933', 373, 'St. michael', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf19de3cbdc85aab2066e79fdacf09cdb918fe5cace4d10658c382349d3c3555', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (986, '2022-10-07 09:02:17', 'FMMS/POS0934', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '59.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebca18847f2251136f23d675c220610ca83465d55bafe9414c930562dc187ba2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (987, '2022-10-07 09:21:00', 'FMMS/POS0935', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '200.0300', 'completed', 'due', 0, NULL, 6, 6, '2022-10-07 10:50:58', 34, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f7e895e0874edc13a16186eebb48046d9e87ba4e8542b702a128bb7dfc230fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (988, '2022-10-07 09:31:39', 'FMMS/POS0936', 393, 'Harriet', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '76.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '76.4100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '76.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abf42b2123c404a7ff2cc2ac6374739127ed3da519aa518f617bfe5b40604e51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (989, '2022-10-07 09:33:49', 'FMMS/POS0937', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '58.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '58.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f3362bd953bdc55114f0e68610df3b330aed1ec7babe775535dbe81e9381fcd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (990, '2022-10-07 09:34:39', 'FMMS/POS0938', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '71.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd94216b8cdc9233623d0bf83628db81b285eb48e21e5327dc02650b2e04c9ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (991, '2022-10-07 10:01:34', 'FMMS/POS0939', 63, 'Cynthia', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '90.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '645112affc8485f9536df0447764333e10206cb3e46b0e21feacde42f6156897', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (992, '2022-10-07 10:02:12', 'FMMS/POS0940', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2092.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2092.9200', 'completed', 'due', 0, NULL, 7, NULL, NULL, 143, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc964a307e4cc551a9a4422eade2b439c73ffa3286fb43ecfe306830a3e3686a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (993, '2022-10-07 10:05:04', 'FMMS/POS0941', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.6400', 'completed', 'due', 0, NULL, 7, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcb74505c3f7ce4597eb108a830b0a66a8a88c6014e0f7557b7c4824e5359e53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (994, '2022-10-07 10:17:48', 'FMMS/POS0942', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '604.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '604.4800', 'completed', 'due', 0, NULL, 7, NULL, NULL, 59, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a660bf30d92e6d127cc37f67d4a66151204c660d41ee6efccbd3c74d42ac981d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (995, '2022-10-07 10:20:25', 'FMMS/POS0943', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '105.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '105.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '115.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdb39c9cd990ef73d4cd90565bd4be20661412ce73ca9982d4027c97595c2a93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (996, '2022-10-07 10:20:39', 'FMMS/POS0944', 145, 'GLADYS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '180.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '180.5500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 8, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56a730562d85d2b438f804ce49d7891eceeb06bf1267df868935940961727b14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (997, '2022-10-07 10:29:25', 'FMMS/POS0945', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3fd8dad1ddf37ef2191c4fe93065678e6b11c0604fb469a82b74c42d573c6c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (998, '2022-10-07 10:33:56', 'FMMS/POS0946', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19f18bd9c27e129a57957ee3c081cf12849d3b521473e1a6fb676346f28620e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (999, '2022-10-07 10:52:50', 'FMMS/POS0947', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '168.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd042dc1f46d5a350d92d479105c8af5ac5493f95fbaa2f8f7ab705926a6a7af4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1000, '2022-10-07 10:53:47', 'FMMS/POS0948', 283, 'Empiric ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '425.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '425.0600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 17, 1, '425.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14d6797889283f41bc142cc5f2af0fbdfad704aa7818f6e7b9346bdcd950a499', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1001, '2022-10-07 11:19:00', 'FMMS/POS0949', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1952.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1952.9600', 'completed', 'due', 0, NULL, 7, 6, '2022-10-07 16:04:41', 246, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3909b01d9f49811b84957d860b5635ddddc7361631943b41fd976a345de2349a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1002, '2022-10-07 11:30:50', 'FMMS/POS0950', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '499.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '499.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 70, 1, '499.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac1f0043e975be49f2c42e9d09461aaeac0b65d46005be75c4c979fca3b20320', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1003, '2022-10-07 11:32:45', 'FMMS/POS0951', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1877.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1877.7500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 77, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88090835a3046c3b73390b533ec450ccbc42732b1cd17daf9f1723182e5788b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1004, '2022-10-07 11:40:22', 'FMMS/POS0952', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '368.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '368.1000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 51, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2d0a6693dd16a7edb5c680243cdddeb119329d35b6d33c4bffa3f8d4f89dc87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1005, '2022-10-07 11:42:43', 'FMMS/POS0953', 226, 'DARKO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '544.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '544.0500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 48, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33ceb7495ea52eb9beda043a86568510a1218a41afec9c53a0fb3c976cdab1b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1007, '2022-10-07 12:26:00', 'FMMS/POS0955', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '152.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '152.8300', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-07 14:05:19', 13, 1, '152.8300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05d476827d5773c994773561997ba3ba6d34ae4b2eb9b3b39bad851d6902730e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1008, '2022-10-07 12:27:47', 'FMMS/POS0956', 120, 'Good Morning Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '635.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '635.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 71, 1, '635.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecbadfd51624a9adcf6d85be010d03173c7805f4aa2ac55613e25c55dff3b5dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1009, '2022-10-07 12:32:56', 'FMMS/POS0957', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '194.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '194.3000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 14, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '061e31387f133d8bd33ed0b0fe79ff8ca08ed932bc6554efeeb1233108cbcb3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1010, '2022-10-07 13:02:42', 'FMMS/POS0958', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '80.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '80.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '80.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c792a750e250834faf4732a66c0c3e3ffedbba3acf23b50967cc27ee106c8ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1011, '2022-10-07 13:06:34', 'FMMS/POS0959', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.5300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '66.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca9baee566de5e5d0f6342ecea965eb7f30e52e886b16c69714952b23053d156', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1012, '2022-10-07 13:10:00', 'FMMS/POS0960', 108, 'freddi4delord', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1511.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1511.1700', 'completed', 'due', 0, NULL, 6, 6, '2022-10-07 15:36:58', 217, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57ac7558b4bf4d510b0052419a0e5ef19fb265c451dae925d89c3f08beb852a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1013, '2022-10-07 13:33:49', 'FMMS/POS0961', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '11.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5925ebe90b47e9b971e7e7202f8948bdd518eda5e883109ea8ede6bbe25d1654', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1014, '2022-10-07 13:46:23', 'FMMS/POS0962', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed63979c1604ee9ccc71d5654c88c85792fed0ea61ca6e7b0fdbc475d3a0e1fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1015, '2022-10-07 14:07:52', 'FMMS/POS0963', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '17.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adcb40f40d02624b0f8286346834a7eb2df1bf1e22d0bdb44a594de4498c227a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1016, '2022-10-07 14:46:32', 'FMMS/POS0964', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.3000', 'completed', 'due', 0, NULL, 7, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5660d19d5ccb4b97c48113cd608292f81d659ef8c0d6500cfcc9fd8d23384a02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1017, '2022-10-07 14:55:43', 'FMMS/POS0965', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '345.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '345.2800', 'completed', 'due', 0, NULL, 7, NULL, NULL, 23, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9c635f82186378a65d42c8293b9cbf755b6baafd9f4745a8bb531381665b2b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1018, '2022-10-07 15:14:29', 'FMMS/POS0966', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '77.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ee6e66847a05570252cb62afb180fdc5e5f6f941f68112e6e81090106885cfe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1019, '2022-10-07 15:23:13', 'FMMS/POS0967', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '999.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '999.8800', 'completed', 'due', 0, NULL, 7, NULL, NULL, 131, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b571ffe535f9f6912eaf598d80b4a645cc785f4055d9aca5ae2499f73be0fe0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1020, '2022-10-07 15:23:48', 'FMMS/POS0968', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.8600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '24.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21861d285b23c2a3abac6ecabd0a10a8d11210ee258ec347e0a2a41243548358', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1021, '2022-10-07 16:01:39', 'FMMS/POS0969', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '297ab0adabd793c441c91741eb0530801909b938555580b11b79b7e8ec75702f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1022, '2022-10-07 16:08:20', 'FMMS/POS0970', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '184f73090a8569504b176315f3a791169386aaaeaec6302a7852769413d7e2df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1023, '2022-10-07 16:33:58', 'FMMS/POS0971', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '370.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '370.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e13238336772e48575a7ee6d037ad2541c5a8616c8f96b6c0bfabda940960f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1024, '2022-10-07 16:35:30', 'FMMS/POS0972', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e07d7dcf00cc183966d578fc6a4694db76c3b2c7ea49606d0f38a8bba01dd7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1025, '2022-10-07 16:40:03', 'FMMS/POS0973', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '51.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '51.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '51.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b0c1d6772f3751857dffa933b13777f189f6dfed24a3086b447253a07e378c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1026, '2022-10-07 16:49:16', 'FMMS/POS0974', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '660022d3ed7ecea2dd7634a51bc5a1fd6835bde91ae438b881c7ebb945eb82a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1027, '2022-10-07 16:50:28', 'FMMS/POS0975', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '19.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f771749d7c80d0e95221eca47607eb3dbfc615782eaff905b41d7b40e0282a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1028, '2022-10-07 17:03:50', 'FMMS/POS0976', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.9800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '33.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e22cd0bc9888a66f22066ab2f697a1dc36ff74073610f2a89ed3b5ff808cbc22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1029, '2022-10-07 17:07:00', 'FMMS/POS0977', 285, 'tabitha', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59b1cf28de61d5f04cb517bb27af5bdb1cb16a082efda0b67d3e073e07b2b345', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1030, '2022-10-07 17:20:41', 'FMMS/POS0978', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '47.8500', 'completed', 'due', 0, NULL, 7, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16c7b8d6a2e7a6963be1d00bc250e5baa538c35c541066121c5e47c3f74964ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1031, '2022-10-08 07:49:58', 'FMMS/POS0979', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8db259ba892070e2e7e2d29ec3a3f921cdcae7fdddf591ba89649b8cc79ec4a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1032, '2022-10-08 07:52:24', 'FMMS/POS0980', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '12.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '220274384313a23428be719240fa4884fa61de5a5f2f859e7117198e414c6e06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1033, '2022-10-08 07:56:31', 'FMMS/POS0981', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '18.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65a1c79ee8fea7f0efd7aae5c4cc944421888c092fbf38988b9ea5d935999265', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1034, '2022-10-08 08:16:03', 'FMMS/POS0982', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '144.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '144.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 22, 1, '144.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76c06920d8b82425fe47ec26ed6a2dd74e83a827a32139712770754c4af021fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1035, '2022-10-08 08:19:00', 'FMMS/POS0983', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '86.1000', 'completed', 'paid', 0, NULL, 7, 6, '2022-10-11 08:28:40', 4, 1, '174.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '545de932257730bca7ef19c308eae98d42b92326844c9657f5fd1c93c2752441', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1036, '2022-10-08 08:32:07', 'FMMS/POS0984', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '27.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b137ea80f20aa2b2fdad259a421712988d2302400de1a0e90775b908a51922c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1037, '2022-10-08 08:45:48', 'FMMS/POS0985', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.2800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '43.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e34e04086e1c063dacd9496a52f3be166d783cd004d820fa969098894aff8db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1038, '2022-10-08 08:58:24', 'FMMS/POS0986', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.5400', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '71.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '885d9faab029dfbb2ccaafd911fa7aeba38c26c748666b5ed27b20f92b8b978c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1039, '2022-10-08 09:15:05', 'FMMS/POS0987', 285, 'tabitha', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '12.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '778907a9ad30d297b31248caff5f661e02b6878472bf4f0ce1ef57c73ac1e2fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1040, '2022-10-08 09:51:44', 'FMMS/POS0988', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '40.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f49a414e32ecf4013e3098793a17f40d0f58b0d16ddf0163325c2927702affe6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1041, '2022-10-08 09:57:39', 'FMMS/POS0989', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2578a36fe1184601a74b2713bc383a28c7530ee04de029a3f5c163bda72aec0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1042, '2022-10-08 10:56:37', 'FMMS/POS0990', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '723.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '723.3300', 'completed', 'due', 0, NULL, 6, NULL, NULL, 30, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8be6903b24e28d92a8fc1a07e63ca185c5c24374627574134ded34dfafa1c260', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1043, '2022-10-08 11:18:00', 'FMMS/POS0991', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '376.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '376.6700', 'completed', 'due', 0, NULL, 6, 6, '2022-10-08 13:37:28', 94, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '046d35501293f19743a88f84eb277efd9a7c1dda3f8d19a1c8b62212e3fd293d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1044, '2022-10-08 11:32:34', 'FMMS/POS0992', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '52.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6243945fa348d7d3be07d54734e53a3079a85a1e35c4ff3e7c63a339079cc565', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1045, '2022-10-08 11:38:00', 'FMMS/POS0993', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '463.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '463.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-12 16:29:06', 53, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b23245f330112fc4fcd0e563b4479073f1cc5ddd70ea6b74250f951bf8c9b43d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1046, '2022-10-08 11:41:34', 'FMMS/POS0994', 377, 'old soja', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9380cd0c418ce9842db54b5caaad68de871905743deabea916c652d07cf18239', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1047, '2022-10-08 11:46:28', 'FMMS/POS0995', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '48.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '48.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '48.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4daa3d9f48e4311bf0be814b3b9037ff964380af64343623d73e778ba1ffa125', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1048, '2022-10-08 12:01:16', 'FMMS/POS0996', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '224.2700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '224.2700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 43, 1, '224.2700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a66f72b74b4fe870a71a206615120ce29ad771e905918451d5cb6106cb21fa72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1049, '2022-10-08 13:05:00', 'FMMS/POS0997', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '481.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '481.9700', 'completed', 'due', 0, NULL, 6, 6, '2022-10-08 13:31:18', 80, 1, '382.2500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8976ea168361923091d7982f2a0adcef065502ad698740ba89ffea3a9926d9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1050, '2022-10-08 13:41:31', 'FMMS/POS0998', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '873a2f69c7dc2aeab9bc19b287d7d640c9c027022c22f9dd26ef810016084432', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1051, '2022-10-08 14:50:14', 'FMMS/POS0999', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '17.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f4bfc68996da66082996fcde0b5fd9653c668b79c867f9d58d4b9dbd1006d53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1052, '2022-10-08 14:53:04', 'FMMS/POS1000', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd1a9be2a22c0c307d2843c118afca9115a83393970adf570333d0984859b991', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1053, '2022-10-08 14:55:00', 'FMMS/POS1001', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '330.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '330.8000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-08 15:17:59', 104, 1, '330.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83f74e81536be2162894c0ba2e15d90c1a4d91b314e04563595b3836ed0d729e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1054, '2022-10-08 15:02:42', 'FMMS/POS1002', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4139f32b27f15853237422c1f09d096630dd3cf96a320f1483ac7c85d2acb29e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1055, '2022-10-08 15:11:51', 'FMMS/POS1003', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '197.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '197.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '197.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e48e9bdb31d90d482db7b7d96f70a2564be7f03465dfc2d3cf46679edf82f789', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1056, '2022-10-08 15:15:25', 'FMMS/POS1004', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b966d73df3fbc5d0e5487155482a50f1f53d0bc2c352a1c67c89df76319293b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1057, '2022-10-08 15:27:03', 'FMMS/POS1005', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd56a3e9eb7b9f42d8caaab0b684c6c04ee92c347f627fb687c3f6443cfd5b16a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1058, '2022-10-08 15:28:10', 'FMMS/POS1006', 230, 'Sandra Chemists', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '26.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f61884a4987466be33284da5bb01380f8c9719d246388346273a3445927cbbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1059, '2022-10-08 15:29:48', 'FMMS/POS1007', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.7200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '11.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4ff39c591eef84fef4c0835904495b00683dda22d4be6fb88f93d9939f76cf8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1060, '2022-10-08 15:35:46', 'FMMS/POS1008', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.0300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '6.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7dd6a4d0c60478563fc104314f90b65ee4b7a0c6ab2f84d5c2bcfc8fb6cf3bbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1061, '2022-10-08 15:43:41', 'FMMS/POS1009', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.0300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '6.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '275c13393bd1d525d861e711cf8ef6d8e4dbe49dc4e870c45a3495f8ade44637', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1062, '2022-10-08 15:47:54', 'FMMS/POS1010', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.9000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '28.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9228784211f949787200db23780e392adc2348301286e4b2f3a3715332d0d0ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1063, '2022-10-10 08:23:29', 'FMMS/POS1011', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '38.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '38.4400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '38.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f17d42d1e6a04e7d708b407fee1a5224fa65ba01b7d41631f375153df900ff0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1064, '2022-10-10 09:02:28', 'FMMS/POS1012', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.7200', 'completed', 'due', 0, NULL, 6, NULL, NULL, 29, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e802fa0a755d25b7f3c31f4e44d8cf3d9bf430b685cb5c5c9466b067a02d1d09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1065, '2022-10-10 09:13:46', 'FMMS/POS1013', 286, 'Ahmed', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '415.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '415.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 61, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3abfed1bf4084b61ee85bc3b201f0ad45436d6151e1461a178f131b15ee9c01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1066, '2022-10-10 09:23:34', 'FMMS/POS1014', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '22.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5137546262bdc23348d12fe15e7bf851872e04d049d662405c72c910c2715874', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1067, '2022-10-10 09:34:00', 'FMMS/POS1015', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '182.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '182.1000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 15:57:35', 31, 1, '182.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0e8d29f50e01cffa3c4944e08303c99805eb2028792284b89cca81df630613b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1068, '2022-10-10 09:35:42', 'FMMS/POS1016', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56d563c141ff6fa4cf6ab589439d601aac482968c8840bac21e3ca22dabe0ba3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1069, '2022-10-10 10:05:57', 'FMMS/POS1017', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '15.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '516d1b66160056c6b9b91ab50b442067d81bd4004da81fb6103f192c338d485a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1070, '2022-10-10 10:32:30', 'FMMS/POS1018', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5af5a3786de228d13f193f144fe80e1fcea674e62ec09ca4993fbb685a3ebb4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1071, '2022-10-10 10:47:12', 'FMMS/POS1019', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.1700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '54.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e7a5a35ca5f8542c4558c77bdad3b05c09d3e0b0db973063021c34aced29d4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1072, '2022-10-10 10:50:00', 'FMMS/POS1020', 47, 'Banini', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1668.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1668.7900', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 11:22:24', 78, 1, '1668.7900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4800c80bce572f1b26fd00996b2c825bf10cee70d20be0e9bf2882abc12e1535', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1073, '2022-10-10 10:50:58', 'FMMS/POS1021', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2a40da143946d99f8b83bb14dc240e9d94f708f8eb01e97cdb98f7ebccab268', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1074, '2022-10-10 11:19:03', 'FMMS/POS1022', 133, 'JANICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '892.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '892.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 115, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36d30214d84327a4acdae330fbc898da6cec46191e7e2d3cdda2d184763d4476', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1075, '2022-10-10 11:50:00', 'FMMS/POS1023', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '393.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '393.8000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 12:21:39', 11, 1, '393.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5ae842d8fcc8a1a15afb14e0086e083279b629432b8246b544041b34ffd4a6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1076, '2022-10-10 11:51:11', 'FMMS/POS1024', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.0900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '66.0900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da242301f263af705ee94e50822d9803b93a33c46523e5f76e1966e33e759265', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1077, '2022-10-10 12:06:00', 'FMMS/POS1025', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1553.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1553.5000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 13:42:53', 67, 1, '1553.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e8b60ed4a382a5ee28e5a4dc076415481968df3f17aa6e26dc2efb363093e1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1078, '2022-10-10 12:29:00', 'FMMS/POS1026', 133, 'JANICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '70.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '70.3000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 12:56:08', 3, 1, '70.3000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1bf62f6ee89337883d1224365fd053f1e621cf3d48489067656841e9930b45e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1079, '2022-10-10 12:33:58', 'FMMS/POS1027', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.8500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '30.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '106b819cab061895ac256822ebf9fe613d3918090ea9b9a835e7302ce664d4aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1080, '2022-10-10 12:42:00', 'FMMS/POS1028', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '75.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8c5837092362da08a07caa84650f9b1822492229e6cc055407f0553896ae1ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1081, '2022-10-10 13:24:21', 'FMMS/POS1029', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '154.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '154.3300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '154.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '856b552b4b8f88777943df0a43f4a3de2d1abb3cbf975181486849ee7ab6802f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1082, '2022-10-10 13:27:38', 'FMMS/POS1030', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '11.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0087e62a30eb0f7949389a2c1472478a9770ec488738760191d6fd13b3146d92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1083, '2022-10-10 14:04:00', 'FMMS/POS1031', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3971.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3971.8800', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 10:19:25', 353, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fa06e2521c46e3f21f9430bbab886c65456f617e1c043dc243e7d0f295fc57b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1084, '2022-10-10 14:28:00', 'FMMS/POS1032', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2482.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2482.6100', 'completed', 'due', 0, NULL, 6, 6, '2022-10-10 15:25:59', 278, 1, '1700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '513e5d4f98945ff8091dcafa083cafea139bc2c4c8ee35277bbf4664e6cb9a23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1085, '2022-10-10 14:45:14', 'FMMS/POS1033', 395, 'TREASURED LIFE CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '57.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '57.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '57.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7371e934d2ffcd965ad45c06678e7f5e521895757bc39191d442867eb78eb652', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1086, '2022-10-10 15:10:00', 'FMMS/POS1034', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1188.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1188.3800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 16:56:45', 117, 1, '1188.3800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '905d58cf41b824f6c5d667c6d6aec9d037f8fd5e75fcacaa0b140a06e1c5f3dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1087, '2022-10-10 15:28:26', 'FMMS/POS1035', 264, 'Ven', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '194.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '194.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '194.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b33de8e109b4abf5ed5e4e6c3dae2c972814cab47484d4611b3b355aa60b8295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1088, '2022-10-10 16:18:58', 'FMMS/POS1036', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '308.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '308.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '308.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '051d809849d68a435506e313ccecd269d13cf8789d83e314294a3c6930b32882', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1089, '2022-10-10 16:32:10', 'FMMS/POS1037', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '286.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '286.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '286.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c029f28a0e6ca08e663d04627322e32f196d482664d1036d9641ebb67763021', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1090, '2022-10-10 16:50:31', 'FMMS/POS1038', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '75.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '75.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '75.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '866f57a6f66281a842753d74aa5179a26755c595f02a1b785915f3aebd137794', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1091, '2022-10-10 17:17:00', 'FMMS/POS1039', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1443.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1443.0200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-10 17:37:15', 140, 1, '1450.1200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b683a04b2b48a6ee79db3d5189b4e36dd65d17588e921337dc4dbb16a1845f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1092, '2022-10-10 17:27:09', 'FMMS/POS1040', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '41.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '114eeada2d28d6fa0f22b68967c96513e7142c885a1ccadf0c2dad8ec4423d85', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1093, '2022-10-10 17:50:19', 'FMMS/POS1041', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '842.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '842.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 73, 1, '842.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ad9c7fc3282ef180bd7eeab25d6776df9c2c45aef70f9b47d86fdeb10fa7873', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1094, '2022-10-10 18:00:03', 'FMMS/POS1042', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '177.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '177.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '177.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa5fc91dcfbb6f5a78149fcabcae33d1854d52f9850c207e1a195f39b5b9fd15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1095, '2022-10-10 18:14:09', 'FMMS/POS1043', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.2500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '27.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aef51ef664625567f1074d0b56d381633d84e8b5114c81c6c4722f01d4e45047', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1096, '2022-10-11 08:09:12', 'FMMS/POS1044', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '88.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '88.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '88.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1445a1ad674a2cef35baaeca4306346ba15771aa02e499ab590a2098bdaddc7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1097, '2022-10-11 08:30:22', 'FMMS/POS1045', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7262c61ee0a93a24ffe72bd3cfcfc2b9ebc81a22f8a2bbfcf21e73e1d39866e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1098, '2022-10-11 08:48:00', 'FMMS/POS1046', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '126.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '126.7500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '126.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ea852894e2627ac5fa4d631cbc7c3828bb36d0bd8ee0ffd6c808db570813f01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1099, '2022-10-11 09:53:43', 'FMMS/POS1047', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '783.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '783.5400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 59, 1, '783.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f48f9c12d921701d181ffcd6ab82f38464d89e05b62c6e87a21e400e42746af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1100, '2022-10-11 10:06:00', 'FMMS/POS1048', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2391.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2391.4000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 17:56:20', 146, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cecf967c55a5d87becd11e8becaf20f1f1ff06dbfb084d15a349c023c4d010a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1101, '2022-10-11 10:11:41', 'FMMS/POS1049', 54, 'Bless', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '50.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd108d0e890b3b2bc837cabff9a87ea24b7479b39a4090d6aba9f636bc86b742d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1102, '2022-10-11 10:31:41', 'FMMS/POS1050', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '124.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '124.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '124.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05886ee8048d3b2d37e557c2d1cb0b5fbb8c32a098724d133bed925d42cc1c3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1103, '2022-10-11 10:43:00', 'FMMS/POS1051', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '47.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 11:35:42', 7, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dab535e8b7b030b849ccfe6129af448b784425780404103a3c84bc8903327f8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1104, '2022-10-11 10:47:04', 'FMMS/POS1052', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '24.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06c80cd2a481d9fa4a0b1575c0a318c46baeacb80feb7fdd7d3aff1e141552d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1105, '2022-10-11 11:05:00', 'FMMS/POS1053', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '610.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '610.6500', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 13:54:43', 27, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bf6e1f1d1f12c0f0e687766edd7da55a36c276b7dd714c9d299cc21e953eaf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1106, '2022-10-11 11:09:00', 'FMMS/POS1054', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '120.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '120.9000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 11:29:31', 3, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbce07706949cc55d2954fa10fbbdac4fec4ec76b019dee520e2435cfa180467', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1107, '2022-10-11 11:27:33', 'FMMS/POS1055', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '258.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '258.2600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 114, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32b1c8f6d408383b5a140d6dd9d067c8076cd9054d012a2081db7bbe1bcffe00', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1108, '2022-10-11 12:12:10', 'FMMS/POS1056', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b0be62b20bbc256f406ecb3f26a1b9f210c1869e6c5bc97c3579557d3b1afdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1109, '2022-10-11 12:21:54', 'FMMS/POS1057', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '254.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '254.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '254.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29f4cbbead680047e38b1e1291f6a400a25f0646c4075d7e16a0c4ed22857648', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1110, '2022-10-11 12:46:00', 'FMMS/POS1058', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '641.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '641.7700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-11 13:16:18', 72, 1, '641.7700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2f1855d7dabbe63dc7c1688c88a9906ed18b71d5721fdf3ad4ec3ebe1e6f6af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1111, '2022-10-11 12:50:31', 'FMMS/POS1059', 203, 'OSEI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55d0a491be2ad12030a52daa612051ee51dd216a427f9b3d344d79f6d3285e16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1112, '2022-10-11 12:54:46', 'FMMS/POS1060', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '399.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '399.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '399.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7102e404e65b52ff268cace09096ec022ec73b95038b7f113259115841d6aa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1113, '2022-10-11 14:04:00', 'FMMS/POS1061', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90f3974063c4a9e59f9a3ecdee97e77967610a6cbb6b3c8bb09cc2882fbc7214', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1114, '2022-10-11 14:42:34', 'FMMS/POS1062', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '187.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '187.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 51, 1, '187.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac899213e6534e0f2e17cc5c0309aa342d1f12fd0cfd68ad12f5c4d1065a2719', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1115, '2022-10-11 14:44:26', 'FMMS/POS1063', 94, 'Evans Baah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '23.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77571cd07298584088fa2a6ad7b86327187f5a8f68f993caad7ed90ba10a4167', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1116, '2022-10-11 15:00:47', 'FMMS/POS1064', 65, 'DAINA OBENG', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7bacc608c2d0148badfb568e75f91b1009bed55de36437789daf6a5d97c2df9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1117, '2022-10-11 15:05:17', 'FMMS/POS1065', 99, 'florencegamali', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '347.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '347.0500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '347.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cd6323bce49a2f4a7419832a3a40886fc96e384397b30e5cbcd78cf4d7f87bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1118, '2022-10-11 15:28:35', 'FMMS/POS1066', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '901fdc84ee5b372bd8a7642c9bd240323bb93e16a486a71dc21dbb48d246dd8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1119, '2022-10-11 15:32:10', 'FMMS/POS1067', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '283.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '283.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '283.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0961ceeff8084ea596b644da5d79e422c9333eb2e5d185e8a433ea821759da38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1120, '2022-10-11 15:32:00', 'FMMS/POS1068', 170, 'MAWUDOR CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '565.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '565.1900', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 15:40:49', 75, 1, '563.9900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83ec1ec74d086ff4f19a2ffbe5a36649ac69a30211ade37a4f8de8fa34eb2950', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1121, '2022-10-11 15:59:00', 'FMMS/POS1069', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '632.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '632.9000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 16:34:00', 92, 1, '625.2800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af72697bcdcff5e7f25530d934495f44df7b5050fe0ea3ab72313835e174ad8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1122, '2022-10-11 16:06:29', 'FMMS/POS1070', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '79.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2b8624e2c71e295490db0ccb81ec6a166365621d053b3039833c62ec8d613cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1123, '2022-10-11 16:15:07', 'FMMS/POS1071', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '23.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88cbfdb5f33e862aa34e4e6766612fe806aa693a51cf623b1b8be67ec6148d27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1124, '2022-10-11 16:29:07', 'FMMS/POS1072', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40774fa362ffc92433ffb63c4b85f02c799ec9c7589e2c6d199352209b8d5d57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1125, '2022-10-11 16:40:00', 'FMMS/POS1073', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1115.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1115.4200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-11 17:50:34', 114, 1, '1115.4200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c31e8d93193bae7e81880d2ebbb6a1fb9cc2c2af7daa7cdefd22b02e287306bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1126, '2022-10-11 16:58:00', 'FMMS/POS1074', 239, 'Sheila Adusa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '69.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-11 17:06:19', 9, 1, '69.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65d4983806180e9cdfa513bd2e488e61e7de180cb1ce572b9045a828f6b00c5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1127, '2022-10-11 17:18:58', 'FMMS/POS1075', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '74.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '74.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba5f3c6a1ea3e3c3f0c4535fba90506421784551f37c55fc7187db757db0db51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1128, '2022-10-11 17:21:00', 'FMMS/POS1076', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '145.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '145.3000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-11 17:24:56', 14, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eaff713a118f79841b55aea7515b70908a5f396d3dc38c5b16643d339139b77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1129, '2022-10-11 17:36:50', 'FMMS/POS1077', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf0718b1ba96816d2581dd145e05483470acfd1b0b6907858c22395df543d5ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1130, '2022-10-12 07:54:29', 'FMMS/POS1078', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '153.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '153.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '153.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98294f6f2d4bfffee320737fee62aeb4911d9dc25d126c0ae8fb9c7b6e228595', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1131, '2022-10-12 08:11:24', 'FMMS/POS1079', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd7b7bcaef15748c65ba6e7f164bf2126f6cd0293c1e023794556c9844ec6e65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1132, '2022-10-12 08:37:11', 'FMMS/POS1080', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ad044fe7f97162c6891dfe0cdc6d4b3a6c1c339a084a2b7a9ec0cd13d2eb206', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1133, '2022-10-12 08:55:43', 'FMMS/POS1081', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '370.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '370.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 72, 1, '370.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83efc72b79dd10dbd5ed56c713da192728709a240b2e48977c9d2d62e2733a12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1134, '2022-10-12 09:09:00', 'FMMS/POS1082', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '286.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '286.4500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-12 09:29:40', 109, 1, '286.4500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a95bf4d060ec2076909042c420359ab75e774ac3f64f172ea3ac029ba701f2e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1135, '2022-10-12 10:08:35', 'FMMS/POS1083', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '168.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b272874b811800bb06f4e5c65f5a0abfa5d49cd8aea32d6bcef925080764eea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1136, '2022-10-12 10:14:43', 'FMMS/POS1084', 226, 'DARKO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '237.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '237.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '237.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e16d7e7a7d3955c03b75ae9f94f801f0619bfa3b2dda06ae448f60f93bc130ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1137, '2022-10-12 10:17:47', 'FMMS/POS1085', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.9600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '14.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '439ef2bdab77cb8242d7253b4c507ae400b75f0988388b14e539deab0366156c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1138, '2022-10-12 10:38:35', 'FMMS/POS1086', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '249.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '249.1600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 26, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '188b1346ff5d1591205ba5d389f83d544adb2e262630d15c3df7d941aac668ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1139, '2022-10-12 10:43:59', 'FMMS/POS1087', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db7b6b5f5307a61a662729d77ad79e8647cf6a888b6cec72d2fa7183c3c9d38a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1140, '2022-10-12 10:55:20', 'FMMS/POS1088', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '559.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '559.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 87, 1, '559.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7581dfe55d1355b422207f3ed639f1e18ce9fab6e80ed99141bfe650510b8f9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1141, '2022-10-12 11:31:00', 'FMMS/POS1089', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '51.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '51.5000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-12 11:37:02', 6, 1, '51.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf4859ba3b51fe5491b8c41043058c40e7c45a1e63da9c15a41ae66433ca363c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1143, '2022-10-12 12:09:00', 'FMMS/POS1091', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2618.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2618.4900', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-12 13:46:13', 161, 1, '2618.4900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20382e8073c8ae77731084574214b363e9e12c99aee2e58c5fd3ce49fa531170', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1144, '2022-10-12 12:19:00', 'FMMS/POS1092', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '167.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '167.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-12 12:55:13', 14, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03391324ad51756f4a80c921e8c5e1d4884a7cb3ea3bb13d95717627da149996', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1145, '2022-10-12 12:24:54', 'FMMS/POS1093', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '314.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '314.5900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 83, 1, '314.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8aa2a5dba4b6ec7519f89f77cc75e11736a5c21271b5a304979c35a2032b798', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1146, '2022-10-12 12:32:24', 'FMMS/POS1094', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '231.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '231.5700', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ea00f0cb07f92af3955192397565d53577e8f531e1614f6aa2e7b728bc98840', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1147, '2022-10-12 12:47:19', 'FMMS/POS1095', 132, 'jameshph', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '248.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '248.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 13, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17b03b805bfb98e8cee9c987b4c48d304a8fde22e7ebd0e1ae12062109e607bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1148, '2022-10-12 13:25:32', 'FMMS/POS1096', 148, 'KINGS WALK', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6af5bd1a4f886efa9f8745ea357d41083e457049ccd668c43ad09a96c548e97d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1149, '2022-10-12 13:32:27', 'FMMS/POS1097', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '206.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '206.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '206.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77fe7ec3e7b84adf46f50cd93e33f7362fb5b71c932b149bb96a285258dc188c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1150, '2022-10-12 13:40:00', 'FMMS/POS1098', 133, 'JANICE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '85.0200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-12 14:09:20', 11, 1, '85.0200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c9fc9d1b891b2c10686fb12786e3d1751de161b36fc3832917dff68d6584828', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1151, '2022-10-12 14:18:33', 'FMMS/POS1099', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '186.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '186.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '186.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e977a6d4ad16b187691f07534392263055b90f82e7a5230926e84f7610921f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1152, '2022-10-12 14:31:10', 'FMMS/POS1100', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '715.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '715.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 88, 1, '715.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7b7e68ff91375506594adbed21f40e602a30b052ecc9842b67fd852a97ccb35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1153, '2022-10-12 14:48:00', 'FMMS/POS1101', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '10.4800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-12 14:50:25', 3, 1, '10.4800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '858b885afbda3c42bf7bfa5a36156ef2df8ceb82d14b07a5bd12017b1f1320fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1154, '2022-10-12 15:00:19', 'FMMS/POS1102', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c8e9e8c760141a78657f75268d316e6f9d2efe1d1698c68819aeac73fed6904', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1155, '2022-10-12 15:11:00', 'FMMS/POS1103', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '486.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '486.6300', 'completed', 'due', 0, NULL, 6, 6, '2022-10-12 15:49:42', 39, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90cdb4185f359074ea5ba7b8f76157a7c606c30374c4b0e307566c273675f2de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1156, '2022-10-12 15:19:48', 'FMMS/POS1104', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c90d44d8724e12ddb3a547d3d13803220f026150643619bcbf2f28fa79574892', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1157, '2022-10-12 15:24:19', 'FMMS/POS1105', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '37.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '37.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '37.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db0e3fb41adf9b791b3418a9edfa9c6f891e8ed57f81c2e6b3a676311b45117c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1158, '2022-10-12 15:30:48', 'FMMS/POS1106', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50cc172bf3a17662e8bf641bb0005664d0a28660503151f3a6905a0123d1b3f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1159, '2022-10-12 15:56:31', 'FMMS/POS1107', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9208e717faa778b5398271d5c5905118112e0fe2ad1af04ed62ce0dc427f3b99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1160, '2022-10-12 16:24:43', 'FMMS/POS1108', 397, 'NAIBA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c93dc7052b7629c9e2e95741c96da9ba6c1ae5bc716a130d1b28a29f91bc660', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1161, '2022-10-12 17:39:28', 'FMMS/POS1109', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '397.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '397.9500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 58, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75a54e6c402852fa20955532aea227de870a7806fc251c5d11ea97fce3128e3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1162, '2022-10-12 18:05:11', 'FMMS/POS1110', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '430.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '430.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 83, 1, '430.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '774ab721712123278ac5dcb03e6294ad1f627fa1061cdc26c0965d20b4b5ec37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1163, '2022-10-12 18:05:58', 'FMMS/POS1111', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '77.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1f21ea440e08f0d7be151f7143f4ffbfc4c304547ab142e660bb45322d61d5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1164, '2022-10-13 08:23:46', 'FMMS/POS1112', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '401.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '401.9400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 73, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11d8a79cf82ce28cf04ba94a012abd013422d55551b70ae599e5a8a32a836548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1165, '2022-10-13 08:32:15', 'FMMS/POS1113', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5de42252de598148ec0825777330a51f36955db2a7677ca44c6c01e3928dd57e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1166, '2022-10-13 08:39:53', 'FMMS/POS1114', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.6700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '42.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf74e8913faa91c898171ab2e436f08cf38ce30694cf099c340976dd45c5e17f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1167, '2022-10-13 08:55:17', 'FMMS/POS1115', 36, 'APPIAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '64.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '64.5600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '64.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd74cfe926eaafca0a198f960ac3bcc89ed12f6982232afa9d31fd366cedd6797', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1168, '2022-10-13 09:09:29', 'FMMS/POS1116', 99, 'florencegamali', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '87.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20ee535b4c84947b3deb261b6e6b3630f24e8356ef2febb88a12d64fd0dc962b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1169, '2022-10-13 09:40:00', 'FMMS/POS1117', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1327.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1327.3900', 'completed', 'due', 0, NULL, 6, 6, '2022-10-13 11:08:26', 77, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3df85c1a0a288a6cec52ecbd60453210f5d74aef6d8f658d1a58a44302b60738', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1170, '2022-10-13 11:17:34', 'FMMS/POS1118', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '483.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '483.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 48, 1, '483.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '753508d5d8964138cf3f00082830540f5eae9a74985781b87e08816433840f2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1171, '2022-10-13 11:26:00', 'FMMS/POS1119', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '114.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '114.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-13 11:28:30', 4, 1, '98.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85bdb1b383c4cd31a1520a1785daba6e3f038aaff1920a2b61044587a65a7e17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1172, '2022-10-13 11:39:19', 'FMMS/POS1120', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '95.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '95.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '95.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5247c2f9d911998495ceb95d65fdf66d5c623dc231c9df49d8a1aefc31ed886', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1173, '2022-10-13 11:54:59', 'FMMS/POS1121', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '380.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '380.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 37, 1, '380.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84b0ff252238cff4407f2056182f34e8688f928ec19520eb7266ff4ae355ccda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1174, '2022-10-13 12:17:07', 'FMMS/POS1122', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 50, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a83e72f3c8b2139fbc80ea27e98760426f5a62eeb6dede234aa38f10a5a1540', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1175, '2022-10-13 13:35:35', 'FMMS/POS1123', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11b2af686c257f16cd1eebc6b2e7f9df8288da7ff997d4b6d0a1a4849394e996', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1176, '2022-10-13 13:43:02', 'FMMS/POS1124', 273, 'WESTCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '88.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '88.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '88.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6f161ad35ae6edf4a9bae1e98f8c9bf632eebf29ad2ee5712a2112e60747e33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1177, '2022-10-13 14:08:19', 'FMMS/POS1125', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '120.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '120.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '120.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76fce4d11a14a7b57ea904abf60b14d1b05530a45c40933ee868dc4107977a9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1178, '2022-10-13 14:09:52', 'FMMS/POS1126', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '108.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '108.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '108.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee956846b278c796d3cf23f466e2ec179008a5d4705c836fc88aaf1ea146ddb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1179, '2022-10-13 14:12:15', 'FMMS/POS1127', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd96196026c3fc1961ebd089746feee2f56099c02134915085a8e57c4429a0659', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1180, '2022-10-13 14:52:00', 'FMMS/POS1128', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '377.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '377.9600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-13 15:00:58', 78, 1, '378.3000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4db9d467bc4c3020c62c6eefe75d187b2da1f1f817bdff3c297bbbfe99f4a03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1181, '2022-10-13 15:52:04', 'FMMS/POS1129', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd48edd7c6fdf44f198f26191271a483ecf9988f8dff8a430fae8fcdfdd3a2042', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1182, '2022-10-13 15:57:43', 'FMMS/POS1130', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '32.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '32.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '32.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ba6e083ab0be334834b6fb6d36dabe2462af9cf32c88d864090ac05375b5646', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1183, '2022-10-13 16:01:30', 'FMMS/POS1131', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '2.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5f0243a3a35e21c28a38eed24535782e9c11c293556b56630af267976c8f4ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1184, '2022-10-13 16:02:34', 'FMMS/POS1132', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2125dd176c96521bd7a61ef76bdf1a083558329bee6c82fc6f05558bc71b1cde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1185, '2022-10-13 16:27:31', 'FMMS/POS1133', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '34.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '34.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '34.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '721d84d50c0c8b7b24740f130953360cf2d86361dab0d4860b61a9ecd51c1073', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1186, '2022-10-13 16:38:03', 'FMMS/POS1134', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '315.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '315.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 74, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3facf26a23c862bf95856565b004cc643d8e1ea7eba57d1e5e7abff8e39a8fc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1187, '2022-10-14 07:58:17', 'FMMS/POS1135', 131, 'isabellaquarshie', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.9600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2dd9fb10e6d6a75f3706426ed472c832d08cafd69162b3cea3f8c0831bfd721f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1188, '2022-10-13 15:50:00', 'FMMS/POS1136', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '149.2800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-14 08:06:52', 1, 1, '149.2800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ad18d9e0af0f1715be0077bb64e9eb3a834e892448e3a955c02bde8ccd687ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1189, '2022-10-14 08:39:45', 'FMMS/POS1137', 366, 'PHYLLIS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '177.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '177.1600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 29, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0377499f3eafb68292cf8dc42b51c0d7fdfc2807182c87c43bdb4d0e3a31df2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1190, '2022-10-14 08:47:55', 'FMMS/POS1138', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '264.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '264.1500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 32, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccc1fa5b7bf1134eae34de5872da7002ee77d8d4109cd42f50763902ee5ac53b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1191, '2022-10-14 08:53:02', 'FMMS/POS1139', 399, 'FELCHRIS HERBAL CENTER', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '258.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '258.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '258.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '133e616210a0b334518185219ce761e07a99ca31df569484e2ec87699292cb3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1192, '2022-10-14 09:02:00', 'FMMS/POS1140', 366, 'PHYLLIS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '74.4900', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-14 09:08:13', 13, 1, '74.4900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0bedfc2b05ff7db4f774e82f19405c367ed59d8216e56d5786c5eb18197615c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1193, '2022-10-14 09:16:00', 'FMMS/POS1141', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '662.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '662.7200', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 10:40:06', 76, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '636af0e80a2c84f0eae332cab37496d796f21ea36dd5a14042495e008b7acedf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1194, '2022-10-14 09:36:00', 'FMMS/POS1142', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '169.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '169.8000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-15 12:49:41', 54, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad6bdd406277510187dd14b66304c858e1d9d686e84479652e3e2638cfc5e066', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1195, '2022-10-14 09:39:13', 'FMMS/POS1143', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.6700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '42.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59e71ce34c8c14fd0f9016d70ce80c529639cc9e29bba1476ca57694af3ceb76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1196, '2022-10-14 09:50:13', 'FMMS/POS1144', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '439.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '439.2300', 'completed', 'due', 0, NULL, 6, NULL, NULL, 37, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fce679f8b34c53deeff2b64e22a737c4dccf0bd9abcbf9038b62988f91547bc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1197, '2022-10-14 09:53:01', 'FMMS/POS1145', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82d04ba62781cc2546f1eba5290e20e1d528b850b06a3eb3edf860a8d5e76b5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1198, '2022-10-14 09:58:00', 'FMMS/POS1146', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '812.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '812.9000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 10:33:29', 82, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f87349b62bdaec67e07e50719baac09034ce0f0a37f974d627a8d45483a6a5b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1199, '2022-10-14 10:06:03', 'FMMS/POS1147', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '69.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85771b5e59a4b96810dd7a41a71119c7b8f12c5f10543fd3c9076f81808eeb35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1200, '2022-10-14 10:27:24', 'FMMS/POS1148', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1739.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1739.4400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 152, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6d4439e1f7b8e634ba21e30007bcb0936216d2be890b83b4c751ffdb253e30b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1201, '2022-10-14 10:32:44', 'FMMS/POS1149', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '588.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '588.8900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 62, 1, '588.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cab91483d4a927ba6436a506cfcc71fe0b57b048f322a98dc10dcd4d9e8761d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1202, '2022-10-14 10:39:27', 'FMMS/POS1150', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '221.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '221.6300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '221.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad39f5eeac8db8e391f90370549b9f87a0e6c79aade68e21c021425853342401', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1203, '2022-10-14 10:45:00', 'FMMS/POS1151', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '653.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '653.9500', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 12:54:47', 38, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce9623c4ac948c3dcb48e238ac5b025b87143d7077cecf1225127447246a5837', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1204, '2022-10-14 10:51:56', 'FMMS/POS1152', 105, 'Fortune', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9acfe31c75fdc3609338881450fa3e15078ac11287d49285e459c4b078edc989', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1205, '2022-10-14 10:56:23', 'FMMS/POS1153', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '749.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '749.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 36, 1, '749.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f737411088a00340ce39a68e93eeaf8c67daac7fdcb577c2e1671532dc9bc1a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1206, '2022-10-14 11:12:40', 'FMMS/POS1154', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1586.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1586.7800', 'completed', 'due', 0, NULL, 6, NULL, NULL, 75, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76d5b1047360c3276e5df084a87ccd33586f1fc794b2bbdf467e8a9cec42dd7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1207, '2022-10-14 11:17:12', 'FMMS/POS1155', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.1100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '71.1100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8d5e1ece42ed6905e4197134dbccbc350fb3c8bbffe872459a5db3cf724b32c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1208, '2022-10-14 11:23:05', 'FMMS/POS1156', 290, 'Isaac Brako', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '305468b9d74cb25ef25898d3d0b92df53c266f62efaa2279ad7520bc0c944ac9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1209, '2022-10-14 11:28:00', 'FMMS/POS1157', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '100.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '100.9500', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 11:36:12', 29, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01d9838a82da63de2293a5ba09e34c4e6909b4686ea87e72738a410148bd665a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1210, '2022-10-14 11:36:57', 'FMMS/POS1158', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '117.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '117.7900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '117.7900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9391ba3d0547030a88032b19a23db1150d256c1e2102c51849a6582a76d2fa35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1211, '2022-10-14 11:51:00', 'FMMS/POS1159', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1099.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1099.9600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 34, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '711088a312208b7f3b7bea0df267b41981773ea4e84aea6126433bf15747a657', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1212, '2022-10-14 12:21:56', 'FMMS/POS1160', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '362.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '362.9000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 29, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d57089918b98fed9059cf1b2f0d69745fc377afd0867cfd48560944a8230f03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1213, '2022-10-14 12:51:00', 'FMMS/POS1161', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1700.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1700.6200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-14 14:55:52', 156, 1, '1703.2200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '938dbc02b4bdc1012b00333070ab00a60606b629777deb581fb2419c250c3bea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1214, '2022-10-14 13:11:37', 'FMMS/POS1162', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.9400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e0d5ddb087fc59f860aa506c82df13dbfcb5b64b920fbbca389e2d6da1a9929', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1215, '2022-10-14 13:40:00', 'FMMS/POS1163', 272, 'Walter', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '197.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '197.0700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-14 14:01:19', 29, 1, '214.1700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8419cb08ee54449176e13256180e57d1c6df547323f5c37701fffd2e47b299d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1216, '2022-10-14 13:47:00', 'FMMS/POS1164', 226, 'DARKO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '168.2500', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 13:51:56', 5, 1, '138.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76707c359abd940e27e296de8c144ea476015aa098393ec3431e6f3b41ef1d1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1217, '2022-10-14 13:49:00', 'FMMS/POS1165', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '603.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '603.8800', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 15:18:08', 106, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58e4d60c8fdea5874a1e547cb96938db7ada7e84dce2869235ebc21f973ff4f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1218, '2022-10-14 14:10:42', 'FMMS/POS1166', 264, 'Ven', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '310.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '310.6000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 31, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5373d4e257ac0d16ef2c48b11af7689e4eff066f92d551c9d1ffd99e49c6aed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1219, '2022-10-14 14:11:15', 'FMMS/POS1167', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '81.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '81.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '81.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2474f17ab08caf3b8b5f0fa561cec47cc59a1e70ea41e011554ff0bc86d5dbf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1220, '2022-10-14 14:16:28', 'FMMS/POS1168', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '376ea07b815a3aa9f10d47afadf861de29c858b898517df5f41bfa87727c5d81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1221, '2022-10-14 14:22:14', 'FMMS/POS1169', 264, 'Ven', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '276.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '276.2000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f9122065148bc0ec5ed68a6b6ce595f07a2483de458f875e351642c9d7cfe72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1222, '2022-10-14 14:29:34', 'FMMS/POS1170', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '191.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '191.4200', 'completed', 'due', 0, NULL, 6, NULL, NULL, 13, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e34c834c902717606fbe520a9c2dd6264c8fd68ee1d50e63a3d2e2d36ae0246b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1223, '2022-10-14 14:56:47', 'FMMS/POS1171', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 50, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a213096e0e4b7c93a42dab7b2805fb97b6bfe820b13b4d48d3e660492412335b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1224, '2022-10-14 14:57:17', 'FMMS/POS1172', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b913ef609e5eaf15d3fa55115a28514c2cf9cf9e4093cb61a6003f43dc30051', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1225, '2022-10-14 15:14:37', 'FMMS/POS1173', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '206.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '206.0500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '206.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9f3fc2c1eaaf722f420c8e5f2af74f76c1ad0e8ddb676cf2b961056eb01ac5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1226, '2022-10-14 15:24:28', 'FMMS/POS1174', 156, 'latyadms1', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '189.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '189.3700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '189.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '179c107c3bca8d70ba52f7eb7d80768738d3ff27efd113ff4787c6eff3e0fadd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1227, '2022-10-14 15:35:00', 'FMMS/POS1175', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '866.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '866.7000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 16:30:59', 45, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '140a7e7691b60e4b298ac28abb4b1834a1ae54cf613ef8bed2be01de137518e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1228, '2022-10-14 15:37:00', 'FMMS/POS1176', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1463.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1463.3000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-26 12:38:11', 51, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f717ff632ac92895ba1726a95fa37dfa39c6c44906cd80146f754645b1062e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1229, '2022-10-14 15:41:29', 'FMMS/POS1177', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '54.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '54.1700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '54.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6352abd76161a8d7e8c01730cbd96de0962092ab5990576939ac126c83698d88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1230, '2022-10-14 15:51:32', 'FMMS/POS1178', 250, 'TAP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '200.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 49, 1, '200.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9fd6ae72e1ae2edefc269e37a347b76530e0c9b0b108e29f3753f8aa1a6ee8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1231, '2022-10-14 16:05:44', 'FMMS/POS1179', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '97.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3950ef3d27dc66773e32f59972e693e4e441fd7df53dd8f1e4ce7b46017d359', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1232, '2022-10-14 16:12:12', 'FMMS/POS1180', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e1bc982c3b7c6ca3d566f52200eb4ab9afe59eddc3b346f6e75b1cbb77cb035', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1233, '2022-10-14 16:19:33', 'FMMS/POS1181', 43, 'Aseye', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '277.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '277.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '277.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e121138f171347a43a16061ac59b092a66b796044d38a726ddae699c98916df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1234, '2022-10-14 16:22:00', 'FMMS/POS1182', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1271.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1271.8600', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 16:56:38', 218, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '336a3c9a53313a1a224a0b68fad8353d9799b4bae5c9c08a79ea0b563f46e92a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1235, '2022-10-14 16:29:43', 'FMMS/POS1183', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '767596c4599d9982fa461d6ec378b43bbc10ec7d3946b1d30434eeec823feb17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1236, '2022-10-14 16:40:17', 'FMMS/POS1184', 13, 'Hannah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '180.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '180.8400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '180.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9573bac0030a0d130f6eeec8bcc2d288a00e3b03b973026dc467187dbe83702f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1237, '2022-10-14 16:57:52', 'FMMS/POS1185', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed5bb0d733f602c68b89d0e67e949cd9666e5f7e0a7f5af033a5ec18f9f72c0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1238, '2022-10-14 17:10:12', 'FMMS/POS1186', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61fd0edfcd210cd9938901f95fae63a9d7d33996c8eb03e027981d37fc7a1089', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1239, '2022-10-14 17:12:00', 'FMMS/POS1187', 380, 'Stable Plus Healthcare', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '255.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '255.0000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-14 17:17:31', 3, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7368d898cc18e54238954dc9f2a57d5c397fb8112da71de46f167f96e5a7603e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1240, '2022-10-15 07:42:21', 'FMMS/POS1188', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df49c5de489cfd9a01261b176592e2924a21c80bbe4bd7a725ba48b928f6b983', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1241, '2022-10-15 08:49:00', 'FMMS/POS1189', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '445.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '445.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-15 10:12:03', 10, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4d6200785a323715d41d824c4a1cbda24782f4b3c8503a0a8bedecb1ca41b95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1242, '2022-10-15 09:07:58', 'FMMS/POS1190', 48, 'BB CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '250.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '250.8700', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5ceab07511ee93ff0460d9404a89365cf9dd7fb05376c436ac15cf2b216200a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1243, '2022-10-15 09:09:00', 'FMMS/POS1191', 85, 'ELIZABETH CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '79.4000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-15 10:25:10', 2, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce0caf8e2fae112e0b1cb50f8dc48428264aa807fddbc8762656707c4d54de6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1244, '2022-10-15 09:13:00', 'FMMS/POS1192', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '556.2700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '556.2700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '556.2700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44b16406ec04c3a0a7a1457d83c9bbfd373e0b9c15005f6735786f7208437d3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1245, '2022-10-15 09:25:25', 'FMMS/POS1193', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1651.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1651.3000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 80, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a69b8186b9f3e850f8ac67b246cc2c15417cf3a63a8145e2c1fa19e5e67e8e12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1246, '2022-10-15 09:30:27', 'FMMS/POS1194', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '17.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '528f19fd14c5721fde36061789f3009b36576d9ac5563b7fcb365d5e92f45da3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1247, '2022-10-15 10:09:51', 'FMMS/POS1195', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1085.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1085.8100', 'completed', 'due', 0, NULL, 6, NULL, NULL, 84, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcbb0c5a86465846091c8b640d3db16a5b613cf611d7656fc1fb177f64dabf98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1248, '2022-10-15 10:14:13', 'FMMS/POS1196', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '317.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '317.4400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 36, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1a98ca29ae0d47b7bebe6ba9f183713bb824659a0bf6fcb74e5fe524920558c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1249, '2022-10-15 10:17:07', 'FMMS/POS1197', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '605.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '605.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '605.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecb2cf70ab570e7f7ba9736f8a820519e48f95219284bbd7fa02dd048287a647', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1250, '2022-10-15 10:19:00', 'FMMS/POS1198', 4, 'Sims Soft', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '110.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '110.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '110.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2081139bd93fa5bf844a6b37927c46634d6951e9079aedfe941bd84cb41c24e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1251, '2022-10-15 10:38:05', 'FMMS/POS1199', 89, 'EMPIRIC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '263.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '263.9300', 'completed', 'due', 0, NULL, 6, NULL, NULL, 5, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3aacd3c4c5d1aa9f780860661387ff4293630bc6eaec49e8776e0aa072e975e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1252, '2022-10-15 10:45:24', 'FMMS/POS1200', 121, 'Grace Bosompem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.1500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '22.1500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20eb7e18b30b5f956c5818a2ea90c24185e025514395ec3014c77fd8175f65e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1253, '2022-10-15 10:52:31', 'FMMS/POS1201', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87027a2ecaa00859fd722010f2fcf900f67fd7db54ce9c0912147a78f6881492', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1254, '2022-10-15 11:08:59', 'FMMS/POS1202', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '58.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '58.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8814ff5dc71144a6acd3b799f6eb95e4cd064543652104a7526cb4e4d86c6592', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1255, '2022-10-15 11:11:55', 'FMMS/POS1203', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a69e4e154b200c4d85f023ba30ec03e180affb3018bdd0bb1641f54c1c08895', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1256, '2022-10-15 11:21:05', 'FMMS/POS1204', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '56.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '56.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '56.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f0ae8d1d7edc46de0e14762bd11ef13ff9129db60520b8de41b5fd3ed50857c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1257, '2022-10-15 11:23:21', 'FMMS/POS1205', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '68.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '68.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '68.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fc45ed4b39077baee22461d3086cc6bc183689ddbfddb7146bc7e94eef83e22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1258, '2022-10-15 11:52:14', 'FMMS/POS1206', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '74.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '74.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28713ccd04b329864a5cbecac41abe46b174dd06764c1c43878cfa2fdc3d1c36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1259, '2022-10-15 12:07:33', 'FMMS/POS1207', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '120.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '120.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '120.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1215656de869c8a174f644d40afcb927e38581e2e16cea285c26c31f7b92ad7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1260, '2022-10-15 12:08:38', 'FMMS/POS1208', 370, 'Obaa Yaa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '80.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '80.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '80.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5872c2b7e637a96698e0d15f4d60a2c711798556bf2c48d91e84ddc6bcbbd2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1261, '2022-10-15 12:50:21', 'FMMS/POS1209', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '28.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2079cd8cefe8b0bcad9240dc4b181ad82cafd9fd90fd6c80a2b0bff6f664db85', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1262, '2022-10-15 13:03:28', 'FMMS/POS1210', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '49.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c700a091e1736f0c0322e5ab3826bb73ffdbdbe197c13deabf95fec1a3da1c68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1263, '2022-10-15 13:10:00', 'FMMS/POS1211', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '268.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '268.5600', 'completed', 'due', 0, NULL, 6, 6, '2022-10-15 15:18:03', 22, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41d1b4c5f416a35bcf92547ecf4384c808a300137e81165bb48e3332dad577e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1264, '2022-10-15 13:17:22', 'FMMS/POS1212', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '363.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '363.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '363.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12d94c0a41e4a2a20d5ef996321aa18b04cfe8dd1dd00de1f52238556e662a81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1265, '2022-10-15 13:19:47', 'FMMS/POS1213', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '12.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9bda414679cdb85febeb4321eec32ba4ff94e36eaeee2047bbf57ef061e825d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1266, '2022-10-15 14:16:15', 'FMMS/POS1214', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '20.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b42b921ad2a8bfdc7ff49bcec1fa19cc4152d3ce0d8933d5448edbea4fad886d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1267, '2022-10-15 14:27:00', 'FMMS/POS1215', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '162.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '162.1300', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-15 14:43:31', 18, 1, '180.1300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12fd6404832d14f321106f07c1f72549102e7e9f7983f9ebdc20e2bf25ab60f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1268, '2022-10-15 14:29:26', 'FMMS/POS1216', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.0100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '42.0100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a56612d3297cd507e171dbdfb84b380d1ec516a75dd731e2c39b537fab4872b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1269, '2022-10-15 14:36:02', 'FMMS/POS1217', 72, 'Dela Lorm', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '87.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b1f4d8d9ab746151e1da4771113ba8c3d8e4e214625658d8662706982280bf8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1270, '2022-10-15 14:45:11', 'FMMS/POS1218', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '21.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05250058ba085b73410ac6970f4421383bc8ceb9e6c4d41970b197ce46d9e07b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1271, '2022-10-15 14:53:45', 'FMMS/POS1219', 120, 'Good Morning Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '356.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '356.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 56, 1, '356.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6a1e21ad38ce400d732d05581bf59354113f2c4a9773cbdece51213697833da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1272, '2022-10-17 08:11:39', 'FMMS/POS1220', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '138.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '138.9000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '356b26d4e4de4d73dd41d1cb0e98e2e77fa70914283996d48bb2b2bf892a2777', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1273, '2022-10-17 08:48:00', 'FMMS/POS1221', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '765.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '765.0100', 'completed', 'due', 0, NULL, 6, 6, '2022-10-17 12:08:32', 96, 1, '735.0100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03898d6248ce8e299e59c9cf9310d56c56cd4606ef55d569ce93c655c77ae0cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1274, '2022-10-17 09:02:00', 'FMMS/POS1222', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 100, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e717cf4d98edb783ed24406c2e4fed198c6fce1c38d7858e91d35e9a7e079497', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1275, '2022-10-17 09:17:08', 'FMMS/POS1223', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '91.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '91.1100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '91.1100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91242c10b4e114b93045e76573432b8bbb43f2defa141aee14ab8bdebd6f7819', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1276, '2022-10-17 09:18:00', 'FMMS/POS1224', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '553.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '553.4200', 'completed', 'due', 0, NULL, 6, 6, '2022-10-17 10:45:46', 85, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6403d547cfe1e95455de2764e4537caf40e1b25088bca2cb78465c658e24d47d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1277, '2022-10-17 09:24:33', 'FMMS/POS1225', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '205.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '205.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '205.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2b7ce3d14766a425d277828ed735fc0037013795241a082f45307e90259f64f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1278, '2022-10-17 09:33:26', 'FMMS/POS1226', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4086ed21cb9dccd4e2fbe007c8c0b2c24675817fc7fe7d42592e876fad71885', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1279, '2022-10-17 09:38:00', 'FMMS/POS1227', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '149.8000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-17 10:52:53', 8, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6ff6ec797216e3d64a46b20647cb718a4a84fb4db1c436c8ee1e4e409d0b8fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1280, '2022-10-17 10:16:16', 'FMMS/POS1228', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1052.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1052.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 120, 1, '1052.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10713b50a7a8a4cb98603ceb7f0d26f9ac6c391690cb83141fe6598718942f8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1281, '2022-10-17 10:20:06', 'FMMS/POS1229', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '92.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '92.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '92.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd2ff5ee947f63ac480495d3f931e62e86b26349a37c0dd68ed88963559c767e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1282, '2022-10-17 10:25:07', 'FMMS/POS1230', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '65.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '65.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '65.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cff4d1e8c79ad5d1d23a4f242d10df4c541af349e48f266cb1a497bcaca8faa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1283, '2022-10-17 10:29:43', 'FMMS/POS1231', 375, 'Gideo Mensah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.9200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '26.9200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c156cc78ea23fb74827f6afbfce2d733de5b5ecfa322aff0aea143714a3701d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1284, '2022-10-17 10:31:00', 'FMMS/POS1232', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '447.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '447.0500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-17 10:35:41', 85, 1, '447.0500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73adbd5884e7280bb2939ccab0049040318ac58e864380444c0c725070068b9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1285, '2022-10-17 11:03:00', 'FMMS/POS1233', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '68.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '68.4000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-17 11:40:46', 26, 1, '68.4000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d77391f53858fbb95e419dce4b4379170bd5e4970d0910d0ba3c281ac6f87c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1286, '2022-10-17 11:35:19', 'FMMS/POS1234', 400, 'SHARP CURVE CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '416.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '416.6600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 49, 1, '416.6600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13fb9798d240c23f8f96597d22072481f64d5718bc861489e5bf375dc3a0c487', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1287, '2022-10-17 11:47:18', 'FMMS/POS1235', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '12.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ede00316728ff798c25a599d5d8796c05ca1f8b1163c32bd0ae61acc2d7b2129', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1288, '2022-10-17 11:59:00', 'FMMS/POS1236', 401, 'AMAZING GRACE OCT', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '81.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '81.9000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-17 12:03:16', 13, 1, '81.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1313eb2631f317c0765cfb0634d56cbe9684a66e552bc0b5a11f616eed52a05c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1289, '2022-10-17 12:06:33', 'FMMS/POS1237', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '249.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '249.3200', 'completed', 'due', 0, NULL, 6, NULL, NULL, 31, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c37d120ef6b0fd8b3b8b25cf85942d14027fadb3912d3976715bc4605c8b1319', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1290, '2022-10-17 12:52:29', 'FMMS/POS1238', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '97.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd77dee6eba894a4b63a4c76a234cddd054c10f5fb55cd56b71bd359864cc47e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1291, '2022-10-17 13:00:51', 'FMMS/POS1239', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e91aacfca6e0080c585e4bb65c018579121b65c4a857ec37521eeb2b826a4c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1292, '2022-10-17 13:02:00', 'FMMS/POS1240', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3460.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3460.4200', 'completed', 'due', 0, NULL, 6, 6, '2022-10-18 15:12:46', 276, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77f2edb625750d658ef8aad8b36b06dcb217589d9edd32b7e220b5a17a1918b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1293, '2022-10-17 13:16:48', 'FMMS/POS1241', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '73.9500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 7, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5028c554e12199e2cdc86f60cd74096eefce369cb5d9db00f9a54427296e64ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1294, '2022-10-17 13:17:48', 'FMMS/POS1242', 367, 'BRIGHT CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '300.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '300.8900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 72, 1, '300.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61826f523a69be6dc535d9da24c2c945dc574815314f2dbba688b528e385b57b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1295, '2022-10-17 13:22:48', 'FMMS/POS1243', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5464596390a9500169b839c3b9f090e4e3ce4084c59e824a2025623ad9fba9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1296, '2022-10-17 13:39:11', 'FMMS/POS1244', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6381137c13783168d3991a7c752b595a7bf3bdabf3343e395b72e9ad02935c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1297, '2022-10-17 13:48:00', 'FMMS/POS1245', 226, 'DARKO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '965.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '965.4300', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-17 14:33:03', 167, 1, '967.6300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04e39c2cce24aac5bcf64c9348d24652744545f1c07d430d991676f82ea14958', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1298, '2022-10-17 14:13:15', 'FMMS/POS1246', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '409.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '409.2000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 17, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b0a784144cd7729ca90627cbea174eae89e0d53a723919f9a10e261f54fc775', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1299, '2022-10-17 14:19:40', 'FMMS/POS1247', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '467.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '467.5900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 57, 1, '467.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8e777939e4b7b8c90e7ed7ecc5139181d2a52c70e1ccc02454ba4e8027b8816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1300, '2022-10-17 14:21:22', 'FMMS/POS1248', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd082f37a5e483d2959802eba603ff0133d13ca337586ec1dccf2d80797b421b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1301, '2022-10-17 14:45:40', 'FMMS/POS1249', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '330.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '330.2000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 28, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8028acc8c4a2aa0f4b7ca673def042c928b79087b9901c074db1b4a8cea005f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1302, '2022-10-17 15:03:03', 'FMMS/POS1250', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '68.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '68.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '68.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '618d505737f57c9cc14651be4de8c841e26b34f11237d92413a3eacbd1774ab3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1303, '2022-10-17 15:06:29', 'FMMS/POS1251', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1235.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1235.4100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 155, 1, '1235.4100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbfac4669b50d1c3efdc103a110adb02627a12a83ccaa33cdfc4f93286b4a5d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1304, '2022-10-17 15:12:49', 'FMMS/POS1252', 383, 'VELOR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5049d7c101fa63fec34d8f8580b96bcb2001952934a6a7679541bee493722a05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1305, '2022-10-17 15:15:19', 'FMMS/POS1253', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '28.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42b9a03005a8032a04b871268f8a9e977bfc4303a3dc40535a097692f262ebae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1306, '2022-10-17 15:22:00', 'FMMS/POS1254', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1428.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1428.7000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-17 15:34:28', 111, 1, '1428.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6503b2239c0a674e198c042212c0e34d7069486524d1d2b24c9aa891247179a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1307, '2022-10-17 15:37:40', 'FMMS/POS1255', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '21.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '21.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '21.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ed545db3df8bfc1c3525f4de584d68dd3fb8a8a04b128a3761bea84668b6314', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1308, '2022-10-17 15:40:21', 'FMMS/POS1256', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '936928990f28ff6e5f8dfa078bf2e71c6c29060ef55b63b5d4d769f2b10247d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1309, '2022-10-17 15:42:27', 'FMMS/POS1257', 402, 'WONEME CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '736.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '736.6000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 209, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '561c0208a35a6feaf1d7d47eb6264c38da7eaf578a7b51522efcd77ea403ee36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1310, '2022-10-17 15:46:31', 'FMMS/POS1258', 402, 'WONEME CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '124.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '124.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '124.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6355ccdef7e448af7ea59db2a6b85c183b49c262f6a398f652b99e83301fe266', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1311, '2022-10-17 15:48:25', 'FMMS/POS1259', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1616.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1616.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '1616.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdec30365c0e3366b6015087c22929d485e63d94c6e4f139beeb282260165d74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1312, '2022-10-17 15:51:57', 'FMMS/POS1260', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '566c021c9a2f51365cf5e05575ac4b225effd87b9441d3b6d4a4f91b74482a44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1313, '2022-10-17 15:54:08', 'FMMS/POS1261', 386, 'Regina', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e41c132ecdcce080e748e78834682227eaea1e0a1dccf66eff8912ff99ae2918', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1314, '2022-10-17 15:58:38', 'FMMS/POS1262', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '62.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db555f807217fe943bfe57210fd081ef3d1b230850d494db6e4b46f2b849fa0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1315, '2022-10-17 16:00:41', 'FMMS/POS1263', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '355.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '355.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 19, 1, '355.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '743047fcc26f9cd74d901d46e31ea824efd1ee615a465ba5840a287515f71f0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1316, '2022-10-17 16:02:57', 'FMMS/POS1264', 403, 'ENOCK CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c1261aa813c3176ae8c7bdb4682e4de2adf93ec9f48c91bc5dea5e4f874f708', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1317, '2022-10-17 16:10:23', 'FMMS/POS1265', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '408.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '408.7800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 90, 1, '408.7800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7dd178d4d4318ab45aa3db82f6ff0ad041c53383a5bc4f5323bd8fcbe6160a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1318, '2022-10-17 16:20:27', 'FMMS/POS1266', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '233.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '233.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '233.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccce3283b04e5c097b871d76da56c15377d14c551c92e18034cdfada2da5173a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1319, '2022-10-17 16:33:38', 'FMMS/POS1267', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '151.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '151.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '151.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44c020b1778622de304cc22e8f08594cb6b6823bc1b6dfe14472c65994fcb88f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1320, '2022-10-17 16:34:40', 'FMMS/POS1268', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1943.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1943.7600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 114, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2d545ec8bd3faadc7920dc685741aebe9cb85038b986df98db27d95d739e9da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1321, '2022-10-17 16:47:49', 'FMMS/POS1269', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '15.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea413506cb6bc2816ebae78419a90108eb06437760f1f61a0f5de64fca3b13ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1322, '2022-10-17 16:58:48', 'FMMS/POS1270', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1909.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1909.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 133, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c94731be79fa1b26d43cdd2411e0545354707d300f6743eac6ac0fce4f2d92ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1323, '2022-10-17 17:06:28', 'FMMS/POS1271', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1868.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1868.2900', 'completed', 'due', 0, NULL, 6, NULL, NULL, 125, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8538649ae4f0faee03e6a0517fc2a6e9928af2323db6434f9cc2ca6a3fe84cbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1324, '2022-10-18 07:39:00', 'FMMS/POS1272', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '573.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '573.5400', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 11:15:23', 27, 1, '573.5400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a5d267d59d3785cd5532c180f20bb689adc922f813ca336f50f852dc2f5d72a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1325, '2022-10-18 08:11:11', 'FMMS/POS1273', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '149.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '149.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 30, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b6d5bdceb0f6b42819255a93e923062a74c23a1882cf3be095b53439df68052', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1326, '2022-10-18 08:18:52', 'FMMS/POS1274', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1a663784e7665792e9d72c6ae6576726de24a26b8dc363af95c02d6a0d86c80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1327, '2022-10-18 08:36:57', 'FMMS/POS1275', 404, 'HAJARA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '8.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f574c14f0ce704e016e396da50104778741b170b2ef63f57ae00519dc6148e21', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1328, '2022-10-18 08:38:36', 'FMMS/POS1276', 203, 'OSEI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4d2eb86f7988b83f74d356b7c343edc5bc1d0fc1097320c451196219923576a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1329, '2022-10-18 08:59:54', 'FMMS/POS1277', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '674.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '674.8200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 102, 1, '674.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b9700972e444deed9d87bbf3f0143b7f97ec4d6ac25f73ca39688218ddedcc9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1330, '2022-10-18 09:17:05', 'FMMS/POS1278', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '106.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '106.6100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '106.6100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79a0029e2daf98a164bd48cb3ee2d1ed09771baad7671de802a8051c158153cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1331, '2022-10-18 09:53:16', 'FMMS/POS1279', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '899.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '899.7600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 119, 1, '899.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f353dcbb3d48950671f79cded79e79c3d2f5164c5d54f48237711d2e919b21f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1332, '2022-10-18 09:56:27', 'FMMS/POS1280', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '599.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '599.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '599.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff3d64cbc711af16d68a25f02bb8d01e65a5009aa4d688f2d4fd86e5519b7653', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1333, '2022-10-18 09:59:00', 'FMMS/POS1281', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '251.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '251.6400', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 10:22:31', 36, 1, '251.6400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b7230219b2652f09ba0b014a277232172d9de63837e71c80d7a986c4600f1ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1334, '2022-10-18 10:06:00', 'FMMS/POS1282', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '12.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 10:07:55', 6, 1, '12.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'def05122b5725bdea3ecb1ffc7c898eafce0ee8989a0fdb746b2e1f9297f6b63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1335, '2022-10-18 10:14:00', 'FMMS/POS1283', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '367.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '367.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 11:02:35', 37, 1, '367.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc0f8390dcd619cc7f214d24998fc0c4ecd03011adb43a542acb5fa7c8517808', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1336, '2022-10-18 10:32:33', 'FMMS/POS1284', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '241.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '241.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 36, 1, '241.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a7263d2abaad37f9ea43cc52968ecb46decbb2b8afa132d75e8f3568e0d49f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1337, '2022-10-18 10:40:06', 'FMMS/POS1285', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2317.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2317.1100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 186, 1, '2317.1100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e7dfb2612f35e925601b966d9b35d308c5587a69d40620f31d6b2fb0afd2e09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1338, '2022-10-18 10:44:52', 'FMMS/POS1286', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '540.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '540.5100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 53, 1, '540.5100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc8512bf47e88eec1b63e42b9a1079433fd0c8918190dca560a17b1823996f40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1339, '2022-10-18 11:28:44', 'FMMS/POS1287', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '450.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '450.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 72, 1, '450.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffa61b16bcd53a10de23d2ed527452428118a716a82a4a2d71f3d4aaef45a6a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1340, '2022-10-18 12:00:15', 'FMMS/POS1288', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '90.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '567aae5af4946b52150cb2585a731537cacbb74e156f5faf1640d7bf23e09ec8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1341, '2022-10-18 12:12:26', 'FMMS/POS1289', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2250.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2250.7700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 159, 1, '2250.7700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '176bc9df57260780eeffe18a77246ec503571b8c07758654e5eb7524a9f46c3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1342, '2022-10-18 12:33:38', 'FMMS/POS1290', 265, 'VICENTIA CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '91.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '91.2200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '91.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a21d56250b375fb485b262ac4b7f08b69ff8c3cdf9fba3254917534fda254b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1343, '2022-10-18 12:36:55', 'FMMS/POS1291', 406, 'FRAN OSEI CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5341e894542ca069d940b30b03e8ffaa017c7e00dddb0eb86a486bf97d1d37a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1344, '2022-10-18 12:38:00', 'FMMS/POS1292', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '374.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '374.3300', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 15:18:44', 62, 1, '374.3300', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39f12b839fb22fb23f018376aaa40bbc45928046bf74043aa46ad87d5bd8cb25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1345, '2022-10-18 12:50:34', 'FMMS/POS1293', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e67b1c25247565d4a9195b0cd791080eea6b50d182a4f84cf4a05589d3be32d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1346, '2022-10-18 12:55:46', 'FMMS/POS1294', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '194.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '194.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '194.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db5ef7af30db577932b0f2a350d82b032312099f214d3a5ae3064717192c43ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1347, '2022-10-18 13:29:03', 'FMMS/POS1295', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.1900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '60.1900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6171a070f4e14fa2f0ef22d95c1f1b1a182a6e3a0e7345206e96eee7178321f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1348, '2022-10-18 13:29:57', 'FMMS/POS1296', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '62.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54a2be4a3a30dd24f5f2daef731786aa4a2eab846d3bb8ab9517b4d4594f5f27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1349, '2022-10-18 13:43:40', 'FMMS/POS1297', 233, 'SEED PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85e3d6f0856d358c3882d07cf461e1320b2ebb92d5c298dd1cae285aff0527e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1350, '2022-10-18 13:54:56', 'FMMS/POS1298', 407, 'DEKAY PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1811.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1811.9900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 118, 1, '1811.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fb62ca7f74411f7eebba41273ec84bdef017741714abb195c08976d7c6ecdcf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1351, '2022-10-18 13:59:29', 'FMMS/POS1299', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70b2a53c0a8cd49752d829093fedc56acf42cec9e20173e5307e67fe94989b70', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1352, '2022-10-18 14:12:00', 'FMMS/POS1300', 407, 'DEKAY PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '69.5800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-18 14:13:46', 9, 1, '69.5800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7b96d4e77e9c24e3136d253ebff87e6e37adf29521d2e52a96ee3cae18007df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1353, '2022-10-18 14:14:46', 'FMMS/POS1301', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '111.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '111.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '111.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'febbc413c89d0b1d21e3b9a5bc2e93a6356b6e52124c2fb57900db474a48b264', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1354, '2022-10-18 14:21:17', 'FMMS/POS1302', 408, 'NEW CARE CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '209.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '209.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '209.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7612c6510cd87bf718459172d27d332390842e7ba6af0f9bf041bed708140b23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1355, '2022-10-18 14:29:22', 'FMMS/POS1303', 408, 'NEW CARE CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '57.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '57.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '57.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92ac721889ee23baed1028943879b4215029a6fc6d08564dfa56cda9c1c7d65a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1356, '2022-10-18 14:52:06', 'FMMS/POS1304', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '143.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '143.3400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '143.3400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd92cc7fc57978c119a397a9966e5b2d077700518b8a07c183781f1a4397486f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1357, '2022-10-18 15:24:20', 'FMMS/POS1305', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47a5d3f7e65d481a8f1cd610e8517b4bb0b7188b46f8a80d1b3a10829709c751', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1358, '2022-10-18 15:54:35', 'FMMS/POS1306', 392, 'Magpat Pharmacy ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '311.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '311.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 43, 1, '311.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1093b34f42d87564f95ce56c8c2ef080f4f491e974cbd8f918af511442b11b67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1359, '2022-10-18 15:55:36', 'FMMS/POS1307', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '110.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '110.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '110.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68ce2e9d7c435678d8147bbc487a5cc032f883272bca5b7a5262fe62e91ceb8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1360, '2022-10-18 16:16:33', 'FMMS/POS1308', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '70.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '70.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '70.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f97b5a44745feab5a9be369b301f16364d0042f9dfe778539fe9a7b1c8265ed0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1361, '2022-10-18 16:20:00', 'FMMS/POS1309', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '154.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '154.0000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-18 17:29:17', 2, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30be57e24e99a20d424ab2bfd7582fac9fb1c5cf360c5b9845907c2d99c44ddd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1362, '2022-10-18 16:21:18', 'FMMS/POS1310', 403, 'ENOCK CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67501f6fe89ab9ed9b58aeb3a4250b212f892ab913b3d233ff93f09ad3c5a3cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1363, '2022-10-18 16:32:57', 'FMMS/POS1311', 409, 'GREEN HEAVENLY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '809.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '809.2600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 62, 1, '809.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0436f3571160fa77f5b08ebba0737e0918951de322f0a0838b7d58703d6ebba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1364, '2022-10-18 16:43:44', 'FMMS/POS1312', 137, 'Joel', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61bb3a2235d4a3b7d2d3811a68a2fadee818aba11d361a4560405c0057a48eb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1365, '2022-10-18 16:52:15', 'FMMS/POS1313', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.6100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '23.6100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6eb7a076c9509ba1b6dd1f49a1c1c0b91d7a3f02436add877ece94ac209db820', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1366, '2022-10-18 17:11:40', 'FMMS/POS1314', 402, 'WONEME CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '349.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '349.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 67, 1, '349.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '994af59aa2653b952818aacfbed7c7a3f5884bf5ab5275bf49b5c5405ead718d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1367, '2022-10-19 07:41:00', 'FMMS/POS1315', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '364.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '364.9600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 08:18:38', 54, 1, '364.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '852d68c291c3deda0d7de1c4145e943143f4532f95ec655dd514e79c36e0c035', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1368, '2022-10-19 07:54:55', 'FMMS/POS1316', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '81.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '81.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '81.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '159d9f7ee9fbfd955ad3a70f42196ef9f34874fa3320c812ae3ee65e3c68fa08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1369, '2022-10-19 08:17:03', 'FMMS/POS1317', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23db680d02f6d2d7a80f3f9ae33a40e7f0adefffaf02c53e7e3eb4804f89d7ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1370, '2022-10-19 08:24:00', 'FMMS/POS1318', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '274.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '274.1200', 'completed', 'due', 0, NULL, 6, 6, '2022-10-19 15:01:39', 19, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd904875add7beb34d0cc31170fa73ae5d3f7acf2e358231d79eca4a5e22a53eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1371, '2022-10-19 08:28:25', 'FMMS/POS1319', 375, 'Gideo Mensah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '297fc9eb218f85bb5c6533377ccdade348883b5d0bf45866cbe57407708ff4f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1372, '2022-10-19 08:29:00', 'FMMS/POS1320', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '16.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45fd64c2a356b9e1f235b38529025de1dd4e0fdcbab6565b8719f92fea45faec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1373, '2022-10-19 09:24:36', 'FMMS/POS1321', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1287.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1287.8400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '1287.8400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3bf2fc9dd790306b435fd9b60004651101415afebd5911082f349426aea86ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1374, '2022-10-19 09:29:10', 'FMMS/POS1322', 402, 'WONEME CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '95.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '95.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 50, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59c77be8546033402fee2e73616384b5a7f91f55ea266204dda779b875431d44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1375, '2022-10-19 09:37:59', 'FMMS/POS1323', 232, 'SAVIOUR', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '312.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '312.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 17, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe44c8057617f81c487a687fe64524532b21df08acc1eee06418f98780693ef8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1376, '2022-10-04 11:55:00', 'FMMS/POS1324', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '313.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '313.8700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 09:59:11', 31, 1, '313.8700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8e3278bd93a660456a60db55cc94e9c652b8d942eecb94babfa74bf85696cd4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1377, '2022-10-19 10:15:17', 'FMMS/POS1325', 216, 'Rabi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '491.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '491.3000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 14, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4eb2c7f5cc240087f2e8af3edc7bcfeec4821428fe24adde1b943c71304632a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1378, '2022-10-19 10:39:26', 'FMMS/POS1326', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a36e612d1dbb02eeacd51fe56ef4ccf647b43017aa066113bbf6db27c819613', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1379, '2022-10-19 10:51:39', 'FMMS/POS1327', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '450.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '450.2000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 70, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71153ebaf2964dcd976948a5f74cbd32cf5afdbe8390e09224bb8072f1d179ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1380, '2022-10-19 10:58:34', 'FMMS/POS1328', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '159.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '159.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '159.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c53902c963787e3fcb302f5a8d26fe49c533177fc0ddb86055488d33c94885f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1381, '2022-10-19 11:33:00', 'FMMS/POS1329', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1001.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1001.3500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 12:09:42', 87, 1, '1027.1500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2cf8616224f737eda8b3111cd52fce4d0e553488e999dedee7d6e2786b0c5ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1382, '2022-10-19 11:36:32', 'FMMS/POS1330', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '124.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '124.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '124.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5332649b0cb4be7bae16a68b151792dc7754c01158c32d1030a81bb5b550ab36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1383, '2022-10-19 11:45:50', 'FMMS/POS1331', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab691c4914094e7e75ac48b194b836e8fdacf07e7a742360f6b74f4be0e4422a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1384, '2022-10-19 11:59:09', 'FMMS/POS1332', 111, 'GD CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.9000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9000243a926a05ed71f731f484aa42674e0149d1b393434add61c70b48fcd878', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1385, '2022-10-19 12:24:00', 'FMMS/POS1333', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '308.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '308.1200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 13:39:47', 24, 1, '308.1200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1eafbe777c52af2e8be057486edc9b986a65a5bd9fd2ca991f8232c296fb4dd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1386, '2022-10-19 12:24:42', 'FMMS/POS1334', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '6.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd15a547740b2d35d16df4df106fee4ac94c1ece9fe66530be2cdb9a638002a25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1387, '2022-10-19 13:02:00', 'FMMS/POS1335', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '511.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '511.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 13:38:26', 64, 1, '511.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5850dd0704fdcecaa03cb3a7c6b82f21d74cbfdd85371a4084f99c079d08fcf5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1388, '2022-10-19 13:15:35', 'FMMS/POS1336', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1237.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1237.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 69, 1, '1237.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bca870ce17a63495f744797c1cf0a6b53544f0e2b15f22223d53b07b088e3300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1389, '2022-10-19 14:13:00', 'FMMS/POS1337', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1765.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1765.1000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-19 15:16:43', 126, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b4659c21e25eb6252e6b13ab3b04b4a80ad51e2bbd8fb8c543655cf37c9eba9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1390, '2022-10-19 14:38:05', 'FMMS/POS1338', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '118.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '118.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '118.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9051f345da14005191f88557fee05056dd6c55523d841b9e255da7adbcc8600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1391, '2022-10-19 14:39:00', 'FMMS/POS1339', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '130.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '130.6000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-19 15:01:13', 50, 1, '199.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb4eaaaf331c4cd34f7068887983472cc3838eeba311b1bd2e11e3be98100fd1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1392, '2022-10-19 15:12:00', 'FMMS/POS1340', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3516.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3516.4000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-20 10:11:27', 268, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc92ee2e10175f93ed06d6922dcc06b6608cf1efb9266dfa464db8268bbc1a77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1393, '2022-10-19 15:20:08', 'FMMS/POS1341', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '46.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '46.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '46.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e54a9edc9099d58175183bb9156ac9ff998e3d4f389539d864fc93beb18c593', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1394, '2022-10-19 15:28:22', 'FMMS/POS1342', 398, 'AB CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '282.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '282.0200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '282.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c0d33088996e2d7195ac181289d49ac6d0798316f6893c53b691f02a53a156f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1395, '2022-10-19 15:43:34', 'FMMS/POS1343', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '295.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '295.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '295.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ad4c728b1b1aceeef6cafd74ca90458916ccdf97283655a243ebc1b3a37f228', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1396, '2022-10-19 15:55:29', 'FMMS/POS1344', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '56.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '56.9300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '56.9300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60b8c3f599bf27b5797477d0409514227c5e39373e92fe5a085e4cb61642fa68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1397, '2022-10-19 16:04:00', 'FMMS/POS1345', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6154.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6154.8800', 'completed', 'due', 0, NULL, 6, 6, '2022-10-20 11:22:45', 458, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70271ee6cdfda5f5fbf46e3b554770b1a4aaf5915a25065e475c3c334d3fafbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1398, '2022-10-19 16:37:17', 'FMMS/POS1346', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '903.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '903.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 49, 1, '903.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0550269eff2d901060c5a19e27b72d2991acb2623da59837cb76b8d05520126', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1399, '2022-10-19 17:17:06', 'FMMS/POS1347', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '270.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '270.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '270.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdd4d7ba6b778eecc6ffbe0f07cce56c34ace660d1026beb8f70e7886bba08ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1400, '2022-10-19 17:21:41', 'FMMS/POS1348', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63ad7083fb5901c1251da5552f38698b5ec6939a46518ba4f9c645682976008a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1401, '2022-10-20 08:41:18', 'FMMS/POS1349', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '250.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '250.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 31, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ac9b64e81e68bdfefb034c24b3fe79e90ab7dec2ca4aae883ba2a6922b5e9f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1402, '2022-10-20 08:43:29', 'FMMS/POS1350', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.3700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '79.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f499399865f9ecfee3dc4abefe12287d78d7339832bda3eb887dffef8b4013a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1403, '2022-10-20 09:37:54', 'FMMS/POS1351', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '653.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '653.0900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 73, 1, '653.0900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f75de7141f17dbc7effdfe1806be476795096eb921913c46c93c32ef96fa5236', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1404, '2022-10-20 09:40:09', 'FMMS/POS1352', 389, 'Mike', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '14.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '14.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '14.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2dcd6082eab4583cb7d963dfb74725c92fe21d23226b47910137614ffcb49f3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1405, '2022-10-20 09:45:15', 'FMMS/POS1353', 410, 'JOSEPHINE ASANTE CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '239.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '239.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '239.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6f722f332285f00882e933ae2917ea9c0b23a20b9203723c3b2e79dee8ebe43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1406, '2022-10-20 09:48:32', 'FMMS/POS1354', 410, 'JOSEPHINE ASANTE CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '61.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '61.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '61.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0600d401afda1a703b55de1363a7d9727d1a00d76d7b4d4d6b66a587c1cf4adc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1407, '2022-10-20 09:51:00', 'FMMS/POS1355', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-20 13:57:51', 3, 1, '102.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a7924904017f7e3b55b0f461b3fe34175b470732bd69d650ccab22b4bd7ca88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1408, '2022-10-20 10:18:00', 'FMMS/POS1356', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '509.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '509.0900', 'completed', 'due', 0, NULL, 6, 6, '2022-10-20 12:17:06', 47, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35d39ee0f2e3649d96006bbf4bdac6c066b44aee37f163dc7dd504b60b01c343', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1409, '2022-10-20 10:37:43', 'FMMS/POS1357', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9e75c7aae12fa6ad58d08d85928d69ef0781da883df5740ff37f8339e1d68a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1410, '2022-10-20 11:34:20', 'FMMS/POS1358', 79, 'Dunia Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '165.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '165.0600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '165.0600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aee9f595ed8bdc2c1b801360e6722cd1bfe2d63938776d3d6843db44039b2b9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1411, '2022-10-20 11:57:00', 'FMMS/POS1359', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '698.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '698.9700', 'completed', 'due', 0, NULL, 6, 6, '2022-10-20 14:42:18', 55, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4388ad9cbc7b49d4f308ab4704b631361056d2aba9e5e853911847b3f5b8b47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1412, '2022-10-20 12:39:32', 'FMMS/POS1360', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '397.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '397.6800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 47, 1, '397.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1f4fef47281e520ced394befc64a4bfb9889fa07f6fa7b4326d8e602472ab0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1413, '2022-10-20 12:51:38', 'FMMS/POS1361', 52, 'BETVEN PHARMACY MARKET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '167.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '167.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '167.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33fc026736040597c06b254eb0fe721503040f790667781a10c57bce651836ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1414, '2022-10-20 12:54:43', 'FMMS/POS1362', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '972.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '972.5600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 109, 1, '972.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26dff2568735680ed31718d291d3126232002f8cfc4ff4f7ad3804683a2427b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1415, '2022-10-20 13:31:00', 'FMMS/POS1363', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '217.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '217.4400', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-20 13:37:34', 13, 1, '217.4400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d7384120dcd2417dd614c685596811242a3dea69d0b536caa606a079d092b36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1416, '2022-10-20 13:39:31', 'FMMS/POS1364', 412, 'MARGARET CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07e8dd8b4230935439b20e3940b68e41b95fd7b926140ce5613c1968a5ee8a93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1417, '2022-10-20 13:56:39', 'FMMS/POS1365', 163, 'LOWER DODOWA HEALTH CENTER', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '270.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '270.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '270.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5e2262f91b2ef56349ca2da5140775e79cddd7313c296c2e3dc2e29f88b0c56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1418, '2022-10-20 14:11:03', 'FMMS/POS1366', 411, 'DEMARYDAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1610.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1610.9300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 219, 1, '1610.9300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f085df53d5e514217bc2874ff2538392cf495f4af1a5d30b555559d2ef395bed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1419, '2022-10-20 14:15:37', 'FMMS/POS1367', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '98.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '98.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '98.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7343251a2b63d67428aab20f70a663e6c2668a9a13dd26f15ea593804038bdf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1420, '2022-10-20 14:26:00', 'FMMS/POS1368', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '56.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '56.4000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-20 14:52:21', 9, 1, '60.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04268f160bf39110684e4557af8e7eefaf332cbf1717ea090ff7486df511571e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1421, '2022-10-20 14:46:03', 'FMMS/POS1369', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '242.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '242.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '242.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a8b8519355c48e0b22548a78ef50f324c9ea7786acb3b3ed87b9f9375020709', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1422, '2022-10-20 14:50:05', 'FMMS/POS1370', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8940dbf83de1db3515e649a7657d8dd6a14cf3c051aebc380a8819b0544b452', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1423, '2022-10-20 15:10:45', 'FMMS/POS1371', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '510.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe169782892eb77aa22265dacffb16468fb1d39d1d7e064b7355542fe60acc84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1424, '2022-10-20 15:11:48', 'FMMS/POS1372', 395, 'TREASURED LIFE CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ae4e751cbf6762004e93be9b412f91efabfb8177856074584adff750d10a37c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1425, '2022-10-20 15:20:39', 'FMMS/POS1373', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '185.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '185.3200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '185.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de0995551d12383ef2d8319cbc65252e94996ff1943c3035488477070eabcb9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1426, '2022-10-20 15:28:59', 'FMMS/POS1374', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '404.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '404.3700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 41, 1, '404.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e42c32b5878601eb152be61c88ad2a44ec40226c245e5b002efaed079df5535', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1427, '2022-10-20 15:33:28', 'FMMS/POS1375', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '18.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ee1c70eadea31f63a861b980f2ff2dc5c142050d1105fabbc5a0b7318d6554d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1428, '2022-10-20 15:36:37', 'FMMS/POS1376', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07016b92df513d05a6b9a209ab79313d473ee452f26d83e633907c5f7f62204f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1429, '2022-10-20 16:16:52', 'FMMS/POS1377', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '3.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41ab3026d7dd44ea5b658068cb068c2441a0c3608c91a5e82bc2dd9e2a9c61e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1430, '2022-10-20 17:02:31', 'FMMS/POS1378', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41935f2ebabfe44cdb008940b6e29f69d9063386961ffa216181d8a7f0a42327', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1431, '2022-10-20 17:03:58', 'FMMS/POS1379', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.8700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '28.8700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '551a7a2a4924dc28e1bcfe5c59b80b7efb97199d3163a66e13e0c480e7b5d277', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1432, '2022-10-20 17:08:03', 'FMMS/POS1380', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '34.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '34.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '34.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc90ab9fa57e3117e71f9afc12dc734f3e89d1689f7a1fb3c7dee8dbfcaf33af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1433, '2022-10-20 17:14:03', 'FMMS/POS1381', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.0700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '898403f01a879200d2918b498bed2b835ce4c72beaa052a639c9d1ad20ea46b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1434, '2022-10-20 17:27:35', 'FMMS/POS1382', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '279.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '279.0400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '279.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '410763a9aab3ec01a74dec9d71887a6e6c99376972207e90bbc99975d15b8ddd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1435, '2022-10-20 17:30:40', 'FMMS/POS1383', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '59.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1afa65787bb8305c0dd00f6cd8baef094f2e4e0a9ca6e9f3d5a6bdf802b3526c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1436, '2022-10-21 07:58:39', 'FMMS/POS1384', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c3a9480aa5632f9a479ed4d02310b600f51b8acca09640179c2516ed80ebdf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1437, '2022-10-21 08:10:11', 'FMMS/POS1385', 108, 'freddi4delord', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '96.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '96.5300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '96.5300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c5f1b491a07d611d9d34004612172854e05d50b931cc676066249f6dc682bb4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1438, '2022-10-21 08:35:57', 'FMMS/POS1386', 376, 'Gifty Agyeiwaa', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f35352cdf87027016c6766d5617289d5c4f2324dd764321e31ed0c0a0af13c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1439, '2022-10-21 09:04:00', 'FMMS/POS1387', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '597.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '597.5000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-21 10:07:48', 140, 1, '597.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '347266cbd6524bcabf412a4be403462949dcab0cab4f5297edd0a4310b6640ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1440, '2022-10-21 09:09:19', 'FMMS/POS1388', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '404.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '404.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '404.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6334d98c7a8ff5f56e9e4813d6ef6666739eaa2312ab25496271050ca32dbdc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1441, '2022-10-21 10:01:00', 'FMMS/POS1389', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-21 10:06:49', 10, 1, '40.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cf84caf4dd999984bf0d180a9d751993b50260ae0cef21fb28833b7290f87d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1442, '2022-10-21 10:11:41', 'FMMS/POS1390', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '178.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '178.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '178.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '803dc9fafc29b21723804e66c8f949c2a4cd719916f5dfd4ed45f6972d6795f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1443, '2022-10-21 10:29:49', 'FMMS/POS1391', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '228.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '228.7500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '228.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50593667b3a0ff06716a730dbcb1e8a1f9265e7be7f306c86362d72215f0699d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1444, '2022-10-21 10:40:15', 'FMMS/POS1392', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '87.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cd7c2e925447af6ca7988b805ded5cf4eb954fe57fad0971af9b2ef5f7f3e7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1445, '2022-10-21 10:42:52', 'FMMS/POS1393', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '694.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '694.3100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 84, 1, '694.3100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d75c0fa76a71359a1656cf1fe9fa8ee01e78c3b2deb7a25855edad12acac775', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1446, '2022-10-21 10:46:39', 'FMMS/POS1394', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.6500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '23.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2afe3972f35a97cdc6e68f57f6d13f6b1d386b30222c579c89623a0b15a427dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1447, '2022-10-21 10:55:03', 'FMMS/POS1395', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1096.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1096.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 98, 1, '1096.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d75be6de7dda6bc8c3d9871be6273977c409417c16d66c4ddca9ea9ee497480', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1448, '2022-10-21 11:09:46', 'FMMS/POS1396', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '249.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '249.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '249.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c56d2b0fc18acf436dfbe012edc2da67821696d2cc9046f0d2148ca2d178cdc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1449, '2022-10-21 11:24:33', 'FMMS/POS1397', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2723.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2723.7300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 199, 1, '2723.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ad109d066ee59551c50e11ea30ec7dc022e5e66c0e318989ab6749af147755d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1450, '2022-10-21 11:47:57', 'FMMS/POS1398', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '404.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '404.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '404.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55c1a87657ff1331edcdd4ad780f2c48ded7b93d7ff5b572cf753c2591b09cb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1451, '2022-10-21 11:50:16', 'FMMS/POS1399', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34a0057507d65d2190d526f37f0861db003a5048f2be2fdddd884d2050b3fffc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1452, '2022-10-21 12:06:35', 'FMMS/POS1400', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '86.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '86.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '86.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c23745564c7903db25eb28d5897aadabb2f595498736f289ada05736ab4e213', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1453, '2022-10-21 12:21:47', 'FMMS/POS1401', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b0115c513b75efd96985fb09c15e13c25522631d97c52c2d4e789f8d2ccdf30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1454, '2022-10-21 12:26:32', 'FMMS/POS1402', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0493b0b99c6e90355685075a04683421cf2c1dd6a727d8e90b81cc254c94a99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1455, '2022-10-21 12:39:46', 'FMMS/POS1403', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '220.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '220.7400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '220.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2c354b8b6c264a9e1e155d8ea5f907860af6c3f3fad9e372bd148762d5dab92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1456, '2022-10-21 12:55:32', 'FMMS/POS1404', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '29.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '29.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '29.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a8fff739c8eb279436acf12f024efae9b0209e94d1e1e540e9bf1d09a549999', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1457, '2022-10-21 13:03:53', 'FMMS/POS1405', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2319.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2319.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 94, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5992cc686c31b85e3e6c705e88248a986e4daa0b9b5be3c22153e5f92ecb8e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1458, '2022-10-21 14:04:00', 'FMMS/POS1406', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1641.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1641.9100', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-21 14:25:32', 141, 1, '1641.9100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d78d35bbac7bd572285d637714bc1f9dd2056448feac989f808adfafdba833f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1459, '2022-10-21 14:49:02', 'FMMS/POS1407', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '690.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '690.5700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 94, 1, '690.5700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61ae41657b1bbd73761049bb1377ae528e5fb47efcf4e5050d33b590b7871cc7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1460, '2022-10-21 14:53:20', 'FMMS/POS1408', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '117.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '117.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '117.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba63875963814aa46143b706a2c906aa67d6c2dbb2745275ce29569e232f9bbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1461, '2022-10-21 15:02:43', 'FMMS/POS1409', 364, 'Diana Nyarko', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '194.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '194.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 55, 1, '194.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2147e015dcdadff3cd1a135f060fa4e7938ee737ff2a628d7ebd36756a7502c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1462, '2022-10-21 15:04:05', 'FMMS/POS1410', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b49260c9ea800f89b63640db7e091f911e60eeaf2da5c07aa403be7626f110c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1463, '2022-10-21 15:23:10', 'FMMS/POS1411', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '437.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '437.8100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 56, 1, '437.8100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fc067391e0bc02ed2518f525e4f87326c9907455bcada72ce2410a4fc4975ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1464, '2022-10-21 15:28:00', 'FMMS/POS1412', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2538.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2538.2200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-21 16:29:30', 147, 1, '2538.2200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '002acf5be272556ccc4d7e957498212b287a03e38cc5f1c74bfe344aca6e4532', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1465, '2022-10-21 15:28:57', 'FMMS/POS1413', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '151.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '151.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '151.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0c9125f51c16eed90c6ff75dfc00e03cbf3e818e947d3f9707ea9fc55af7696', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1466, '2022-10-21 15:33:18', 'FMMS/POS1414', 150, 'Kofi', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f175f5257f5e0ba15ab85dcf6b2ed81ca7138f02e66a17a91457984049665c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1467, '2022-10-21 16:00:15', 'FMMS/POS1415', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '52.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35afbb6e30c683c055468c6bf5014883578b22b09aadcc92c6c71fdc0ec596ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1468, '2022-10-21 16:00:51', 'FMMS/POS1416', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2899c5e5479ee2b9cd26771729b1aedea5b206a8403532e61b182990d29b259a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1469, '2022-10-21 16:16:10', 'FMMS/POS1417', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '143.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '143.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '143.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6c15921ce55c63e1c58875f22384bd96dc79f1aa34449d1779c51c2cb14eeec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1470, '2022-10-21 16:21:29', 'FMMS/POS1418', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '71.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '71.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '71.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf7be9a24e12d5cb0cbcc1dcc0f2a0ff5b544d955379f8ad4e72c0a4072cdb56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1471, '2022-10-21 16:32:06', 'FMMS/POS1419', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '427.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '427.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '427.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '664969d7d36b139862e3a9ae77d3e1e0d313f85cdf8bbd282a834b105080b348', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1472, '2022-10-21 16:38:01', 'FMMS/POS1420', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6e152ae4b631e1b1f26771e50da384ead889307b5e9dffc82b4ec2cbf1ab49f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1473, '2022-10-21 16:44:00', 'FMMS/POS1421', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73ca6315fa8ce1c0ce559cae2db08ee66f2eaef684aad7093bf283e6d5430ada', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1474, '2022-10-22 07:51:08', 'FMMS/POS1422', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb684170e90d2899bac6b78a2ce0deaa50edd18d5502f5c37b77533383e19c1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1475, '2022-10-22 08:37:00', 'FMMS/POS1423', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3335.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3335.6500', 'completed', 'due', 0, NULL, 6, 6, '2022-10-25 06:56:21', 233, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce6fa5b865bd6cd22638942fac0f8f0332d9345e9931f20a06203c5224107014', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1476, '2022-10-22 09:08:26', 'FMMS/POS1424', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6976.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6976.5500', 'completed', 'due', 0, NULL, 6, NULL, NULL, 371, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bde332ebd705f48998d14f0c40332213e65f1343824e4c495c2f476a8ea667c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1477, '2022-10-22 09:12:01', 'FMMS/POS1425', 63, 'Cynthia', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '155.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '155.5600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '155.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f1575c35230d9e8024af2e1964a58afa1617a10d3ee85a5380c60515082b6ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1478, '2022-10-22 09:30:00', 'FMMS/POS1426', 174, 'MEIRACARE PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '849.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '849.1400', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-22 12:43:09', 36, 1, '849.1400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e36c61ebe6b680a21fd48b4ff25f4378836e702dec3f97c59d8b15345e59122b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1479, '2022-10-22 09:53:00', 'FMMS/POS1427', 120, 'Good Morning Chemical Shop', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '195.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '195.4600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-22 11:10:19', 13, 1, '199.6500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e01dc2e0b3c2f8660dc1a107b1f1bb7f39d424cb823d4a754623c671a8241cab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1480, '2022-10-22 10:03:21', 'FMMS/POS1428', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '44.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '44.7400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '44.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1c9756c2fe513db0e0982021a1fb5238d0960c91755d0b861ce6e27b9cecfcb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1481, '2022-10-22 10:12:54', 'FMMS/POS1429', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '43.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '43.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '43.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68add9d5d7225f67c610835ef5c3a7e38b147b6b21f9f7cfde022b390fcfdd6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1482, '2022-10-22 10:15:52', 'FMMS/POS1430', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba67115eb1a100900d5801405d49908d6f5b3c1699377d121fb24b9a7df48009', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1483, '2022-10-22 10:39:13', 'FMMS/POS1431', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '198.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '198.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '198.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3510aad78b5679e7a308f47f4740efdb6fd2557d303ec18965fbb8babaf4e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1484, '2022-10-22 10:59:03', 'FMMS/POS1432', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '51.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '51.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '51.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94c05fa086667cd8fa74449cad6f7beeee1a35bcd6aaffd3f3c933d7dbc3fdf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1485, '2022-10-22 11:02:13', 'FMMS/POS1433', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '482.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '482.3500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '482.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d74d5ab2ac72221b303f945ba02865b5d860a452b909337cfcf261907c79c02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1486, '2022-10-22 11:25:00', 'FMMS/POS1434', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '834.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '834.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-22 12:05:21', 145, 1, '834.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af8cb51e0b66d07a6ed7d99b97076583b6b29edaea24c0dafdba255a7179e650', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1487, '2022-10-22 11:31:53', 'FMMS/POS1435', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b996df363d90cb70af02ec9a40ebbde6e89944f9637271afabfdf0f3fb7de2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1488, '2022-10-22 11:33:20', 'FMMS/POS1436', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '40.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e61f0ca47ebc3dcf52ac229dd3b59a3aa8e4d9d797431466b2e1385b599cc25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1489, '2022-10-22 11:38:08', 'FMMS/POS1437', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '694.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '694.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 319, 1, '694.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f96bcf928fecfe6c12d5f665840489523d4746f70420940a21463851437ec2b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1490, '2022-10-22 12:07:19', 'FMMS/POS1438', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '73.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '73.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5a6f2b213557a2436f79c5b5a727a7404963e37c5ba307533c26db188bb11a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1491, '2022-10-22 12:17:12', 'FMMS/POS1439', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '405.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '405.0300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '405.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a8748ce7b3955e28724bfe0b48ba507b9af45219b4f3c0b7040b89621f619d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1492, '2022-10-22 12:38:27', 'FMMS/POS1440', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '50.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59b70769035141147bb872658abe491f2428f8b7fea290039d50b58fafd291b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1493, '2022-10-22 13:06:00', 'FMMS/POS1441', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '300.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '300.2200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-22 14:32:19', 76, 1, '300.2200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff95692272adf12559994be235f2595432d706e17dbd9e0caca190f96f732db9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1494, '2022-10-22 13:13:24', 'FMMS/POS1442', 419, 'ROMEE CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '210.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '210.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '210.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd358151d0de492a3bc752cde981d749de9e842f19e4f06b399644124805d27d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1495, '2022-10-22 13:27:10', 'FMMS/POS1443', 419, 'ROMEE CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '168.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '168.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '168.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49578f91f99eebec365628eb805168f855e263bbeaf898006e31aa5168569d72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1496, '2022-10-22 13:54:34', 'FMMS/POS1444', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 2, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6780df0273861e602611addff2a0dfe18e2339ca5bfcb463ff3b3456ef93027', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1497, '2022-10-22 14:19:25', 'FMMS/POS1445', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '339.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '339.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '339.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd6598b989cda03432808bb33d8b55164cb96ca111ea48e2b9a60c762586c8d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1498, '2022-10-22 14:43:49', 'FMMS/POS1446', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '59.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '59.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '59.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d3f2900c36cc4c056559f4f7a45f118ea9fae3b7431c558df9413000a8a046d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1499, '2022-10-22 15:02:32', 'FMMS/POS1447', 50, 'BEKKEN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '63.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cf0eb1b4942ed23b99f54a4f2b15ffd24e94e6cd3c09be0d920960a00751e49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1500, '2022-10-22 15:23:08', 'FMMS/POS1448', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c86d7b49c9c7d2bf7bf23a31a091f3ad7c4159c0a7bc928819f762edf3e6f76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1501, '2022-10-24 07:46:04', 'FMMS/POS1449', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '974a6a640681ade776b2c4efc0fba8d4b44ad62b60fabb9f4ed996a1454e07d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1502, '2022-10-24 08:21:01', 'FMMS/POS1450', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '291.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '291.0500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 54, 1, '291.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42238bfa1ef2ad1523b716d526d9b39b74907fa7a277b2d3613f0a8725df79ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1503, '2022-10-24 09:16:18', 'FMMS/POS1451', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '106.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '106.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '106.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74060513dfb70e848b6789ec23447dfc2bace8bf698fb55b026668c1df5281a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1504, '2022-10-24 09:26:09', 'FMMS/POS1452', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2519.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2519.7600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 329, 1, '2519.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1dfe3f6533fa5401b8016073a139bf8694cf824ddb3cfe0ea29559685852ab58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1505, '2022-10-24 09:26:51', 'FMMS/POS1453', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '99.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9fbb48e0882a415830b84fcd9ec02a433d43eac7eaddbb17034cfb38a0b37f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1506, '2022-10-24 09:55:00', 'FMMS/POS1454', 419, 'ROMEE CHEMIST', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '572.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '572.6800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 16:08:00', 58, 1, '572.6800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '573f5d86e0aee0b7fb1d06edb5fd5e67571500f310d9f4e3e138f6610ed88d51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1507, '2022-10-24 09:55:00', 'FMMS/POS1455', 263, 'URBAN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '625.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '625.9800', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 11:12:20', 61, 1, '625.9800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f5a26ceb89783fe673d6209210d764549e453ada4761b8380aed328b976b9aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1508, '2022-10-24 10:26:29', 'FMMS/POS1456', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '134.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '134.6300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '134.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56a3acd9c4b1e1115fdcf3eee41b7d17cd22578240fb180473a5515db64945d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1509, '2022-10-24 10:34:00', 'FMMS/POS1457', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '72.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '72.3000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-24 10:46:25', 15, 1, '32.4000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '636c0e27392cbc7acc927bf9bb8c1b7ae7db8ef678322bfdc5fb5d72875f6e99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1510, '2022-10-24 10:36:48', 'FMMS/POS1458', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '351.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '351.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '351.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98b332c899b92d50c8834813e490926a3ca1546912643b4238262ea9b13e35ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1511, '2022-10-24 10:43:00', 'FMMS/POS1459', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1359.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1359.7000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 11:52:06', 53, 1, '1359.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d8265eb7093d52253d3ad2546e5ff287e7ed7b9dd23d74bde4aa53de46e7b8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1512, '2022-10-24 10:48:23', 'FMMS/POS1460', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '605.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '605.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 66, 1, '605.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6f42d24015e2062e07fabe55ad6ffa6080392610d022ede33db218dc0ce3ecb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1513, '2022-10-24 11:24:23', 'FMMS/POS1461', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3917.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3917.7900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 173, 1, '3917.7900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36acffe925b86671383669bfa37a8b53d235bd26ae419472b5e21ec108ac7a95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1514, '2022-10-24 11:27:07', 'FMMS/POS1462', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '20.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6b1be4137ea7226e96974c3239178e61ad243d3190326c929158e70286b0544', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1515, '2022-10-24 11:54:09', 'FMMS/POS1463', 101, 'FMMS2COMMANDOS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3360.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3360.7500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 247, 1, '3360.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd903b11821ff9dea81252c3d5b39091ede2724054311af77bff225d782e0d092', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1516, '2022-10-24 11:55:57', 'FMMS/POS1464', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '97.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92e2dcecd7cfd5893a2828df3ad747cdf9c050c61aa0e586af47d91dc0ae7249', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1517, '2022-10-24 12:18:06', 'FMMS/POS1465', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '401.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '401.3600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5d544aee444d308e9ce4b84635634452ff662b15cafc107914227242712a1d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1518, '2022-10-24 12:39:37', 'FMMS/POS1466', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '121.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '121.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '121.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cffdecec7121620a58c0a6491d10ce48471e4a535f48fb51ab21907ce3b79fbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1519, '2022-10-24 12:46:00', 'FMMS/POS1467', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.5000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aaaf39dd03945dd477ed0d6ed488ca7949b81f8cf07d89511eb30f6345a0c56a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1520, '2022-10-24 12:46:00', 'FMMS/POS1468', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1184.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1184.1000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 13:04:42', 154, 1, '1184.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b287a9ac3c4f8aa00aca9bd344fdb279023893749cff479dca16b35a07fba72b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1521, '2022-10-24 13:08:27', 'FMMS/POS1469', 136, 'JESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '214.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '214.5400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '214.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3db51d4bbd0f138190366d7ffda4384828346d0c04bd612926fef37fdd4720d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1522, '2022-10-24 13:10:43', 'FMMS/POS1470', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '212.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '212.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 20, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6701501ebcb5a039ab7f265a7b210e9a1b9cc84ad20eba182b0cf14fd6543ec4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1523, '2022-10-24 13:13:30', 'FMMS/POS1471', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '095184891d8c04978b480fdde1dce4557947e18f248140a62197bdcd83c6015c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1524, '2022-10-24 13:18:12', 'FMMS/POS1472', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '17.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7f84095318a10a8a0df41601a87870b0dd6a6ee8f13be57d6bb50925c75b59a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1525, '2022-10-24 13:20:00', 'FMMS/POS1473', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '32.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '32.2000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-24 13:23:11', 4, 1, '24.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98cb6b74a4e4aa2e2a0c4a014873d1359abed69779a20227294b76bb68790f9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1526, '2022-10-24 13:21:13', 'FMMS/POS1474', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '872fbb162712020f729fa961c215ae3c0a60c16909c01b44c2c641a5ff3c183a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1527, '2022-10-24 13:29:14', 'FMMS/POS1475', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd2cb2974092d4821e2b826f12e9bfb8d4a673386d313174fbbd969635534dd7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1528, '2022-10-24 13:30:25', 'FMMS/POS1476', 380, 'Stable Plus Healthcare', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '110.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '110.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 48, 1, '110.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4db28bfd5bf14c808afba11a49913382e0dcf5655970d95a936e33a64b542dc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1529, '2022-10-24 14:01:00', 'FMMS/POS1477', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2218.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2218.0700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 16:18:57', 316, 1, '2218.0700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0264c5864d5fa2e5af9d69171fee24fa50998558f95da6a25e6ed986f5a25ef3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1530, '2022-10-24 14:01:00', 'FMMS/POS1478', 147, 'kik prestige', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2128.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2128.3200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 15:22:42', 87, 1, '2128.3200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6ca68eb198b0421bd2afab8b861ec00db8c3efdc5a2a02b7b087fc133015707', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1531, '2022-10-24 14:10:20', 'FMMS/POS1479', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '701.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '701.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 80, 1, '701.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '326b847eb66f38e629e2807c73452f23eaf244504089a6ec4131fe6db5b6a0d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1532, '2022-10-24 14:26:43', 'FMMS/POS1480', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22dac73bff921dcba5ee499e5d9d1c3290220fa07bbbaa612e8c2a2e72a3f1ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1533, '2022-10-24 14:36:00', 'FMMS/POS1481', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '552.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '552.7500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 16:25:17', 102, 1, '552.7500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29a04e367c2ae9dfd003a39aef0c5ced29097cb1af2f6091ad4516dc2ff8954f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1534, '2022-10-24 14:42:22', 'FMMS/POS1482', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '370.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '370.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '370.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c95327e5d73b49f747dd1ffb7c52a6a1d2f3f209a605ace5d2253074f2a6b21', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1535, '2022-10-24 14:48:05', 'FMMS/POS1483', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '74.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '74.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '74.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8de7409b606c8fd5af4bd2064a22a04f57d4d2d34ec864a920e8bcff0c501edf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1536, '2022-10-24 14:53:58', 'FMMS/POS1484', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '364.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '364.9500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '364.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43080601be5044cedd086df904a083759f767fcd56becebb3490c8657f4224ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1537, '2022-10-24 15:37:24', 'FMMS/POS1485', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '116.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '116.1800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '116.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20a1463d20c9987726e26d591486061a175e0c8ccabee569d0fddc013f92f71d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1538, '2022-10-24 15:37:00', 'FMMS/POS1486', 366, 'PHYLLIS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '52.5600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 16:02:47', 7, 1, '65.0400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c45f49d4dab57672b2be001cd6438176031acd123cb9fac352e082cc3abd232', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1539, '2022-10-24 15:44:00', 'FMMS/POS1487', 12, 'abokumachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '638.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '638.3500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-24 15:50:16', 117, 1, '638.3500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '770191ce8d6a9633bf293bc04b941e28e6044b68caed154a8e1820fe36d39ad8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1540, '2022-10-24 15:49:07', 'FMMS/POS1488', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '250.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '250.9200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 54, 1, '250.9200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59d0ecb1d113e8ae258bb384c6eb70e226dc7b07876f651b5d28e923453cdfcf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1541, '2022-10-24 15:49:10', 'FMMS/POS1489', 12, 'abokumachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '99.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '99.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '99.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2565e3dc35a6feab2d2544959decc238f517ea9a5922b4f368a3dfbd6f25ff5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1542, '2022-10-24 15:56:31', 'FMMS/POS1490', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7256c04f0294173e493ac330453d397b78fd445e517306a73b431bc1ee1f1638', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1543, '2022-10-24 16:00:57', 'FMMS/POS1491', 74, 'dinkalph', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '232.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '232.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '232.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62e7fd741e9ab703d52ff1a27e0696b97218df2399f60cbd8a79d76cdc5463e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1544, '2022-10-24 16:22:22', 'FMMS/POS1492', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c84b7c9ced676bbfa27eaf8fab5fd46e1a095c10977576b91cf6ed41b6673b22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1545, '2022-10-24 16:29:28', 'FMMS/POS1493', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '9.9600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '756df9b454b45941cc511a1b32d46f5d0d216e8dd2312246266ddb27ad435a58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1546, '2022-10-24 16:30:37', 'FMMS/POS1494', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '11.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '11.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '11.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a423d06b1cd6be50d2e7f5e01ffc164a11dabf81c6b40d0768a5a91686e016b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1547, '2022-10-24 16:47:42', 'FMMS/POS1495', 12, 'abokumachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '200.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '200.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 152, 1, '200.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9307380d7b914ec5414c4c72634e8e5e046820c0db75f4ecee376d11b0ba366', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1548, '2022-10-24 16:51:00', 'FMMS/POS1496', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1105.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1105.2000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-28 08:57:46', 97, 1, '1105.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '484214c0f152431f69b1a1c1d8786cefd78feb45ba18dcd0084d459af4c3cbc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1549, '2022-10-24 16:57:00', 'FMMS/POS1497', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '359.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '359.9900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '359.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cb939419ce5e21e2a337333a5f36ee31ef4cdb3c50b68fa74cc2b86ce42bc40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1550, '2022-10-24 17:08:10', 'FMMS/POS1498', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '85.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '533ada378612b9de92db8985bb8debe752891ed909388a174ab1fe00596aae0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1551, '2022-10-24 17:17:00', 'FMMS/POS1499', 115, 'GINAD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '119.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '119.8000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-24 17:18:52', 10, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10d5fdc28529d4ce537b775e67b15f9c0d53037f484a162b6ff83a4b2d2b26eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1552, '2022-10-24 17:23:39', 'FMMS/POS1500', 243, 'Osuman Sumaila', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '784fcef7fdcdb75fb8073a750593d368396e74c93d635ed60c91fec22ef77c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1553, '2022-10-25 07:44:03', 'FMMS/POS1501', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4339.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4339.5500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 220, 1, '4339.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bc293345f308e0a507f79e74ccdcb836ee1268dbb6f9588cb27abfe0c7fb0d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1554, '2022-10-25 08:11:01', 'FMMS/POS1502', 290, 'Isaac Brako', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '41.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db7ab5ecd4dd6df7f49db3eafac37008f34b1d04b933350ddba26c19e6406de8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1555, '2022-10-25 08:16:46', 'FMMS/POS1503', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '151196e2a72f97c6f33f2cc01cd137568dae73db9c86f7544753e67637c43d87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1556, '2022-10-25 08:42:00', 'FMMS/POS1504', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '591.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '591.0700', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-25 14:36:25', 72, 1, '649.0700', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51ebc3939cff0383ae3e5b1f0d6e104b2427396165cd68faf3a8cd32e06e6ef9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1557, '2022-10-25 08:47:00', 'FMMS/POS1505', 10, 'ABASS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '335.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '335.4000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-25 11:59:08', 41, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21ace45fa281dc9ba405bfc9836c4b882e0b7c3208757723f21118aa37f30d56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1558, '2022-10-25 08:57:44', 'FMMS/POS1506', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb7be7701b82a5aacde847d538a7d14ef3ebb10b8b9c409e19820d2f0502e4ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1559, '2022-10-25 09:06:36', 'FMMS/POS1507', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '174.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '174.7700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '174.7700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c490ae12d517e3b493ce89ceb1765b59d84169049a86503ea0a62a11066991f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1560, '2022-10-25 09:16:31', 'FMMS/POS1508', 411, 'DEMARYDAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1016.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1016.3300', 'completed', 'due', 0, NULL, 6, NULL, NULL, 61, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd9be981852e511469ee1fb18883b5b4081aeb3c93d8b19cfc6f27391566a06b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1561, '2022-10-25 09:41:22', 'FMMS/POS1509', 246, 'SUCCESS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2729.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2729.6800', 'completed', 'due', 0, NULL, 6, NULL, NULL, 259, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3a83a2310834737912a8e6a142872107d85a032712b5e411928daee27dfee89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1562, '2022-10-25 09:45:00', 'FMMS/POS1510', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '769.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '769.6000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-25 13:30:11', 85, 1, '769.6000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dfe3b836fd40179142d1db28f3accf1ee703eb341005312cfe5bc9aba32f6adc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1563, '2022-10-25 09:48:00', 'FMMS/POS1511', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2437.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2437.9000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-25 11:24:00', 94, 1, '2437.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd46994b23368e36957d8360a68bf372b5cbbaaf4b55bd696465b6472b80e53cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1564, '2022-10-25 10:01:27', 'FMMS/POS1512', 229, 'samueltetteh', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '102.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da703d64ea169aa79d23cba1efd800004d7c9c68f2e06928a58d079c39783524', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1565, '2022-10-25 10:11:00', 'FMMS/POS1513', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '155.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '155.5000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-25 11:27:00', 7, 1, '155.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e9c777ccd6d61adbfed8b67940c0f1590a2e24d8c7f74744bbed9078f564bc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1566, '2022-10-25 10:18:52', 'FMMS/POS1514', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '30.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '30.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '30.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81f2cb83cc65ecf1ba1c41a3844947fdeff0929ff956b7c3413e7f155a12c5ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1567, '2022-10-25 10:26:00', 'FMMS/POS1515', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '839.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '839.6600', 'completed', 'due', 0, NULL, 6, 6, '2022-10-25 12:15:04', 44, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e37417ded60f552649f481670c4ce45964fb4c18b1e70a717171e70d6f69fb66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1568, '2022-10-25 10:51:23', 'FMMS/POS1516', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '329.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '329.7600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 40, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8194f5274b7ea9ec51b3a53a739de8b54bef2cdaf51c1fe1a0c6e5d4c689a400', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1569, '2022-10-25 11:03:00', 'FMMS/POS1517', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3209.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3209.9500', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-25 15:00:17', 237, 1, '3209.9500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0dd263365e2f420b1b1d0840158d1492d555eff5152b2e620d3cda615587add', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1570, '2022-10-25 11:05:01', 'FMMS/POS1518', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '255.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '255.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '255.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2e3fcbeef30c893c11d389936878d6665448ab95917364d1289be2a1d622eba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1571, '2022-10-25 11:08:04', 'FMMS/POS1519', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '224.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '224.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '224.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b74ceffa178e7373bb797b41953278c5cc1d17d9dce0cc0da38704df92b1ba7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1572, '2022-10-25 11:32:52', 'FMMS/POS1520', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '76.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '76.8200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '76.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae91f26e5f107fd2399f04aa23d41a7e79194db846b031185f6ca4f11826dc1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1573, '2022-10-25 11:34:47', 'FMMS/POS1521', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cff896e537bdf4350434d84cbc34a11e460f7268696b49f4fda78fd2e19bbb53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1574, '2022-10-25 11:56:32', 'FMMS/POS1522', 137, 'Joel', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.7200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '49.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bbf69a41fe7268d032445c83fe1666afac6a6f1364bd266347811b7e23a16e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1575, '2022-10-25 12:11:46', 'FMMS/POS1523', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '51.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '51.4500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '51.4500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ade8910e29da14736b3af374164fd3bcca44ff0ada91d380d976e1090afccc8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1576, '2022-10-25 12:12:01', 'FMMS/POS1524', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1515.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1515.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 79, 1, '1515.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e45c6df1387886cf20d25a766e462819798281f615f29f50bd9acfa7436f3292', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1577, '2022-10-25 13:46:53', 'FMMS/POS1525', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '382.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '382.1400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '382.1400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '356198a65d9cae36b97fb954efaf23f35149653e7ec749db310d08295e0a6af1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1578, '2022-10-25 14:37:53', 'FMMS/POS1526', 100, 'FMMS1LAKESIDE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1713.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1713.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 52, 1, '1713.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02a1dba62897429e68db6a9fa70a120e91617876b7a41879b8fac7938c15f375', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1579, '2022-10-25 14:53:07', 'FMMS/POS1527', 201, 'OPTIMAX PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '643.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '643.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 67, 1, '643.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41ead1527dd0a18adc7a869718ab8d90e92cf77a0c98da62a48905cc1a470c50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1580, '2022-10-25 15:03:40', 'FMMS/POS1528', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '902.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '902.5100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 78, 1, '902.5100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '661f37f677f52f9074500e00089254896d81511a12989e3fd9f3767b655e4b88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1581, '2022-10-25 15:11:10', 'FMMS/POS1529', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aeea8a58159ae3f3d940e5d32a521d06bd54d0c43b63bd31ad6081fa8553bffc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1582, '2022-10-25 15:26:11', 'FMMS/POS1530', 284, 'Dreamland', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '65.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '65.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '65.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '350152f39cc51cd5c14b50cb1eab7a13667ea5f18f4e610ec4fe849598a8b727', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1583, '2022-10-25 15:34:05', 'FMMS/POS1531', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '47.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '47.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '47.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1635229f0479455d45f06fb029c18c7e9be01d31b1cfe897d577bbab840b6ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1584, '2022-10-25 15:39:52', 'FMMS/POS1532', 411, 'DEMARYDAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef856a26c49ea12bfed40a5599f6bbc2c8efc363fb2fcf35f9f5212f010c2a00', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1585, '2022-10-25 15:48:36', 'FMMS/POS1533', 274, 'OB', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '612b75f8b10ce9da90c27e1a837e2bcfbad0985d5dcc9476dcbcd45262b0855f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1586, '2022-10-25 15:55:31', 'FMMS/POS1534', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8048048ad7795407f5c875b08f79481803257d73b484b9d2bc372d901f53e843', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1587, '2022-10-25 16:25:11', 'FMMS/POS1535', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '7.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '7.9800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '7.9800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc8c4ec722a2f03db74b7edcce30c0265484ec20c04230297322f86c01a07aab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1588, '2022-10-26 07:27:53', 'FMMS/POS1536', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '20.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e6251a805eac5806a8c82d0d92383718b84806def7cca08911cd8552ba7ff51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1589, '2022-10-26 08:17:55', 'FMMS/POS1537', 58, 'Christiana Tome', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '17.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f639cc0b98d7a5eab62fd89ed5888557198e8a95caeae0ea0a7baebbb225506', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1590, '2022-10-26 08:42:48', 'FMMS/POS1538', 421, 'SAMPSON BOAHEN CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02c263b579d6627e362b6206a95fc481f983b9e02dd8e2d12bb78b7146f4743c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1591, '2022-10-26 08:43:49', 'FMMS/POS1539', 54, 'Bless', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '50.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5daf606edfe466929335d51e43eb34632a6e0738cb56770efa2d900c3fa4530', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1592, '2022-10-26 08:47:09', 'FMMS/POS1540', 54, 'Bless', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '6.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c14c5a4b55f13f99095b962f7ec4fbb0c8434edce0393956effd0ae525898b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1593, '2022-10-26 09:03:00', 'FMMS/POS1541', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '613.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '613.8200', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-26 09:55:32', 153, 1, '613.8200', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5864e29bab6fea6eaf1eb93e4da7264c7361dec808a5811ac03ecb72ee943173', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1594, '2022-10-26 09:40:12', 'FMMS/POS1542', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2126.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2126.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 64, 1, '2126.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4347c72b82377f291a768aa986b04c067e18efc270ae252cc52fd69dedbbe30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1595, '2022-10-26 09:47:46', 'FMMS/POS1543', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '36.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '36.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '36.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd9fcf103483b4d7eec1633a20b0731d6e7fb09cb5248a0c77a76c22ae41f581', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1596, '2022-10-26 10:01:52', 'FMMS/POS1544', 63, 'Cynthia', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '241.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '241.9100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '241.9100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '251b9eb3c004a78b68b87f76d4447703bc786da19c76b98725213d511c03fd34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1597, '2022-10-26 10:01:55', 'FMMS/POS1545', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcad82a45dfd84c35dfac818cc46d9991ae5ed219d3204802245bec9b1bf31f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1598, '2022-10-26 10:20:58', 'FMMS/POS1546', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '20.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '20.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '20.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef53a4c0a9e04ea8e7de06635fd76fbd1a020d1828e980bad78b588153c66ac0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1599, '2022-10-26 10:44:57', 'FMMS/POS1547', 141, 'JULIET KPOTSU', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '421.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '421.0300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 57, 1, '421.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f90d94eb649e076fad50149eca43dea1e8db868fbcfbd5dc0389cb77940d9366', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1600, '2022-10-26 10:58:00', 'FMMS/POS1548', 149, 'Kobby', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '82.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '82.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-26 11:13:49', 36, 1, '82.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2a889db49824b16f685827c36ab8044dcde72d6b1e0802a51eb2352a5ca87bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1601, '2022-10-26 10:59:38', 'FMMS/POS1549', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '347042d6f24ff5aeb6d5150009cce5b91ff154679d3a0d9ba2677f29b5b91719', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1602, '2022-10-26 11:02:24', 'FMMS/POS1550', 176, 'MJ CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '467.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '467.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 154, 1, '467.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76f63b55ba581a4850b45a1ea39d3f369f9c3ddb545ecb0d5a4bc93916a14c73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1603, '2022-10-26 11:18:30', 'FMMS/POS1551', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '698.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '698.6300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 89, 1, '698.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2bf7cca99c9dc4bb983e64f4a811572fd588c10f37144e68ebc42f3f4835b10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1604, '2022-10-26 11:18:47', 'FMMS/POS1552', 25, 'AGYEIWAA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '58.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '58.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '58.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a5069a8c2d1569e90bd6e5aac690a03e03f7639cf0b89a65ad21dbf690ef400', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1605, '2022-10-26 11:33:43', 'FMMS/POS1553', 6, 'Banni ', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1889.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1889.4000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 75, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18ce6b42cae1ef3236f83de61a17d9e330e75e4546fbd85765b5f4df337a66a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1606, '2022-10-26 11:34:13', 'FMMS/POS1554', 135, 'JC CHEMICALS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c86aa4d88da23138478c980c663a1c0417283c423ab2f93ac94243f43d4ec7f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1607, '2022-10-26 11:40:30', 'FMMS/POS1555', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '111.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '111.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '111.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5a535017dc682b3060cacdff8974947c1234a71f2d6a93a5fdf30f4887e7818', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1608, '2022-10-26 11:51:05', 'FMMS/POS1556', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '35.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '35.8500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '35.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e96e0f2895e032cbcf45f1e80ebf45eb9656d926e874295fad57f528a66ad58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1609, '2022-10-26 12:01:00', 'FMMS/POS1557', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '612.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '612.7400', 'completed', 'due', 0, NULL, 6, 6, '2022-10-26 12:06:07', 104, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac25b76e003e72e2f73a04cb27867ef3f7e24242671d9bb58b85519729e672a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1610, '2022-10-26 12:30:02', 'FMMS/POS1558', 408, 'NEW CARE CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '210.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '210.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '210.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a5d60f6094aab5ec7780d5551356e56ef29d8ee22f056076638e9387009ab09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1611, '2022-10-26 12:43:00', 'FMMS/POS1559', 204, 'GINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1685.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1685.5000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-26 14:53:09', 93, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36daa86043854851fa043c2b441a2412626f9c55ec17d90369c73baa3ec64430', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1612, '2022-10-26 12:54:01', 'FMMS/POS1560', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '317.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '317.3600', 'completed', 'due', 0, NULL, 6, NULL, NULL, 18, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e5497b4d065388037f187795260fc1a7927b7d45650ba0de3f5cffc3dfea6ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1613, '2022-10-26 13:21:00', 'FMMS/POS1561', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2643.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '2643.9600', 'completed', 'due', 0, NULL, 6, 6, '2022-10-28 10:58:31', 226, 1, '2603.1600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca88393581be28c3429679024cfb71d4c6fdcc40523e51ad293481f0d89ca991', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1614, '2022-10-26 13:25:26', 'FMMS/POS1562', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '537.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '537.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 52, 1, '537.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8a58df25741180745fc1b383a281044a93c35cfcbf476ba2a26c462f3782218', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1615, '2022-10-26 13:45:45', 'FMMS/POS1563', 190, 'NLMC', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '97.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '97.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '97.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3eff0a3de3fdc59ea27022045ddaaa177e9e1010aca372ec34626078aad00dc1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1616, '2022-10-26 14:06:34', 'FMMS/POS1564', 193, 'nnn3', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '109.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '109.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 1, '109.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '883a4a2d7479c8c5abd732b297a774d10892799dc99163c0bd1ee15b4f8822ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1617, '2022-10-26 14:16:33', 'FMMS/POS1565', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1180.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1180.9200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 83, 1, '1180.9200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed10cf7609ba5fb69e681efc1013639935ce00a9de07e43c3be7f9a86c61159c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1618, '2022-10-26 14:16:49', 'FMMS/POS1566', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '160.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '160.9900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '160.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b6ac40e87c1c6fb4707bc2847d61634c24b9415b27182862aa81fb4d2a826d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1619, '2022-10-26 14:38:40', 'FMMS/POS1567', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '69.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '69.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '69.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd94cee31580e2a5c4656b555f0af27fff973261ecbbd3e51e78046f6642a289', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1620, '2022-10-26 14:45:54', 'FMMS/POS1568', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '116.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '116.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '116.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d72ea5824ebac977266d433cd80fe43e69607ba474a9a4b2ea9dfc04573b6e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1621, '2022-10-26 14:51:12', 'FMMS/POS1569', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '19.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3aae240fc5dacdaa98ffd5c2369943d2c0e9eca07b36bf6e77689e47ed409548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1622, '2022-10-26 14:56:07', 'FMMS/POS1570', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01529feb7d05b097f8e9e793cfb9fb075c94df75655dc3825ccfe865f44bd540', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1623, '2022-10-26 15:06:27', 'FMMS/POS1571', 95, 'FAIRGOLD PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '826.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '826.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 51, 1, '826.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c86a06be6f4d0ace9720217500bd8be9aeb12897451aeb4d7110ccacd3d5654', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1624, '2022-10-26 15:43:37', 'FMMS/POS1572', 74, 'dinkalph', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '96.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '96.0400', 'completed', 'due', 0, NULL, 6, NULL, NULL, 14, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80df66aaefee6fb694224a22176ba33ef0d52fd2907f66449f3705847d4ff943', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1625, '2022-10-26 15:56:00', 'FMMS/POS1573', 389, 'Mike', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '13.6900', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-26 15:58:50', 2, 1, '13.6900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ddc28c9f7e3fc45ff1dc1a01d2f5d96875064c9292cb12c0928e1ee8a7ea3d9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1626, '2022-10-26 15:59:01', 'FMMS/POS1574', 48, 'BB CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '161.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '161.6700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '161.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c031595cd8b9b8135975d834de9d3738f785034a3f45a872b3aae0067195147', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1627, '2022-10-26 16:09:30', 'FMMS/POS1575', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd957c79c1356663984c33bc6c0e3eda500f3ea3ebaf9007dbfee042ea0faeb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1628, '2022-10-26 16:13:31', 'FMMS/POS1576', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '987.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '987.5600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '987.5600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '595554166087441e0a93652435902fbee16862c9a31646d073de5467575a1246', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1629, '2022-10-26 16:19:14', 'FMMS/POS1577', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '307.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '307.4800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '307.4800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89204edae2d0cd4e7056c298775ee7c1ffd905bc2e7bff75e6a3e2f36241ec60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1630, '2022-10-26 16:28:33', 'FMMS/POS1578', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '272.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '272.8000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 16, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f59634cf228c62d473a1f69338d139b9b5f37efda60a8002171eed4984ba9787', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1631, '2022-10-26 16:43:27', 'FMMS/POS1579', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '316.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '316.2800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 19, 1, '316.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11ca954aa9961d1c4416f7850acae5f72058ab5c650f564c70ffc6a7cc5ba7eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1632, '2022-10-26 16:45:21', 'FMMS/POS1580', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '52.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c85e12dab335b9c949c2c9008cb32aa5af8a6b0620eda9a8201f52796eb0fa25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1633, '2022-10-26 16:47:51', 'FMMS/POS1581', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b356285c874427532c2bae101d663d176fb0218401238b73c3352faadf4885d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1634, '2022-10-26 17:00:34', 'FMMS/POS1582', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5415abc1970c9437e3d3b18f88055b4b5ba0c740710160e4819a02b4535c8d9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1635, '2022-10-26 17:05:09', 'FMMS/POS1583', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '103.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '103.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '103.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df7c01bf3ce22934571c8897db152875fe4a76f30e0035469d638bf2a7dd05fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1636, '2022-10-27 08:05:12', 'FMMS/POS1584', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '42.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f775b7b661997e7ca7b5ccf2d30803a3c4e37ca7b0b3980995a641816dbb08dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1637, '2022-10-27 08:18:46', 'FMMS/POS1585', 422, 'Equity pharmacy', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '77.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '982524bd8694aab1ff7f2eeba86aa8534168fc7504951db0369b4db608ad271c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1638, '2022-10-27 08:29:51', 'FMMS/POS1586', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '45.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8d3a08cfb40f8025f1427f9673ae36b20bbc0a71776548a3ffabac9741a6512', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1679, '2022-10-27 16:56:00', 'FMMS/POS1627', 225, 'royalcarepharmacy06', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '312.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '312.0000', 'completed', 'paid', 0, NULL, 9, 9, '2022-10-27 16:57:13', 22, 1, '312.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14b1d00277bf6dc38b887ee0ec29431d9c1a134e8ec5713ea232ddb852d327f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1640, '2022-10-27 08:59:04', 'FMMS/POS1588', 170, 'MAWUDOR CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '968.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '968.2600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 81, 1, '968.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81ef9d90fdcd532c379004337d5e7c1da4b3b28a383355775aa69e2723fb931d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1641, '2022-10-27 09:00:00', 'FMMS/POS1589', 36, 'APPIAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '856ee6912f6e353e018040e45e793c763502f77cdbdf748ac3ac34d1135f674c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1642, '2022-10-27 09:08:07', 'FMMS/POS1590', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '284.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '284.1600', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 37, 1, '284.1600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '944b66b5b2d30febccc124b681597ce12ffd1e9fe6aa91ebe7d23abfb99db25b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1643, '2022-10-27 09:34:53', 'FMMS/POS1591', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f2d3d37b0cf9f6cb3cfefe66120399780162c6a4681f1aa70bd36679aeb9241', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1644, '2022-10-27 09:37:16', 'FMMS/POS1592', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '39.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '39.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '39.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d84cf7fef30cd5b53f8e2e7817f5bc8e0d0c7c1b57c132b2e30b9f7d9b276da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1645, '2022-10-27 09:41:24', 'FMMS/POS1593', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '9.9900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cac02d39ac6f074bbe6f1af83af01e147f5459e59c985d6dfad667d628cd9bee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1646, '2022-10-27 09:46:10', 'FMMS/POS1594', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '6.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c38d3f542d65f7aadb8e2cdd3aea4e9100c7de751edfaa7f1138069648cdb13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1647, '2022-10-27 09:51:53', 'FMMS/POS1595', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '33.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ca17f21a06ad0a283fbf703785191a7a7a19c829ef2b999084a56619b16c6af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1648, '2022-10-27 10:08:25', 'FMMS/POS1596', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 2, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32176d33c100daa1ef79fbd8f71964f68eb252acea84de453d16423be337b632', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1649, '2022-10-27 10:24:37', 'FMMS/POS1597', 51, 'BETVEN PHARMACY REDCO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '2000.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '2000.1700', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 169, 1, '2000.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f41abeff2782d4de8dc57e64683e98d1758dc647f7933ea9553ebbbacc667025', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1650, '2022-10-27 10:52:34', 'FMMS/POS1598', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '396.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '396.4200', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 46, 1, '396.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7622b17b116d1c0a754e4d761919ea58f818976eeff3a3d4091a5247740cbe7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1651, '2022-10-27 11:11:30', 'FMMS/POS1599', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.7000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 1, '60.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec72c97ee07a1be8bc53caa759f34bdacd12f5325215bbe67a6bd3a9479630c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1652, '2022-10-27 11:25:33', 'FMMS/POS1600', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a3b26f3508a38f2ea356a88cd18ff213c03cd6b77fb8a6a64ba1b4a5d5b1897', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1653, '2022-10-27 11:32:06', 'FMMS/POS1601', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0200', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 13, 1, '52.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebb5ecaa49445374f969eadc8439442f5a5eeda3cebb08e305a4327164ee9b04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1654, '2022-10-27 11:35:46', 'FMMS/POS1602', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3148.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '3148.4400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 136, 1, '3148.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0fd0184fffe48ec3c92773411294b0e7894ae35ca4fe08bfc26049c43ad5f00d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1655, '2022-10-27 11:37:31', 'FMMS/POS1603', 372, 'JOE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '25.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '25.3000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 1, 1, '25.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8da9a0c9028d17e316b2a33d120e9a1dc22058a282290d12caca67702ed3670f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1656, '2022-10-27 11:47:17', 'FMMS/POS1604', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '73.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '73.6600', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 10, 1, '73.6600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43edeb26b7d49c4f6004eec1bc202c2ea8c276c258dd47fb4aba92187f8eeb5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1657, '2022-10-27 12:17:21', 'FMMS/POS1605', 186, 'NANORMAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '755.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '755.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 36, 1, '755.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b407f91f49b0d0782809fe003b10a134ef63e646803bfdae1a890268c1236db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1658, '2022-10-27 12:27:22', 'FMMS/POS1606', 219, 'RANDOM CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '154.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '154.2000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 23, 1, '154.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0d0fdd8d490b6548ee3d2ef6cec0b3f888a5838627a737f2b8c92a025a200d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1659, '2022-10-27 12:39:00', 'FMMS/POS1607', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '398.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '398.8000', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-28 11:07:45', 19, 1, '398.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71e98203d82e7039cfe4f9490acb591167287a9346ba1a1d7dd7b903e12942f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1660, '2022-10-27 12:59:11', 'FMMS/POS1608', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '24.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '24.8000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 2, 1, '24.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '862cd3966367c2ed502703c473f213119a17d0a380d71b77b3f8846449b426e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1661, '2022-10-27 13:04:41', 'FMMS/POS1609', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '410.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '410.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 35, 1, '410.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '724acbb8e4d7b78f3043e329fc1ea1713ce3ac3f109996c543d12c252eff56b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1662, '2022-10-27 13:12:12', 'FMMS/POS1610', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '62.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '62.7400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '62.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c28e6d584a961d5c3ea172105ed79a078b34d31bbc06d8ce36f0e3526e9a1f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1663, '2022-10-27 13:15:10', 'FMMS/POS1611', 8, 'Mercy Arthur', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.2000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '13.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a86d60520d265a1cecb2d9457d71efa117f9ceaf53f81538cd54ba2e1122ea13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1664, '2022-10-27 13:31:00', 'FMMS/POS1612', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '297.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '297.1500', 'completed', 'paid', 0, NULL, 10, 9, '2022-10-27 15:43:27', 45, 1, '297.1500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4ba378a58f36e210ca836f641772a6ab29f0d3d8948e1b95ebd15b2eb4437e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1665, '2022-10-27 13:45:35', 'FMMS/POS1613', 387, 'BBLITO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '42.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '42.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 7, 1, '42.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b072401451e7e1e71ab8aef1788da67df75ac74746ec14024c47f6d7e463388c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1666, '2022-10-27 13:50:26', 'FMMS/POS1614', 9, 'A.Y.D', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '189.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '189.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 12, 1, '189.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61c140745ee1f2bdd971dc7ee7986071272ba8346ab8b152fd6d2ae21fc2fe7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1667, '2022-10-27 13:57:45', 'FMMS/POS1615', 423, 'EBETODA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '87.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '87.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '87.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3c90fb19caf67f155fe477217091fb9903c15499c860fc704fae4b49051e37e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1668, '2022-10-27 14:00:55', 'FMMS/POS1616', 423, 'EBETODA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.3000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '9.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3eb33466e31b39ddb3d9e050c40dc5e378548b2b7a1b8f6cb2710aa84f152982', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1669, '2022-10-27 14:06:22', 'FMMS/POS1617', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ea544d7943e03282d4f98b590db287cb31da5556b914275ed39a853a6f8ba70', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1670, '2022-10-27 14:27:44', 'FMMS/POS1618', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51135b80d567130d4b573d3582616c0ea23c1daac6467d3854e66596373a4be0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1671, '2022-10-27 14:39:35', 'FMMS/POS1619', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '552de98c5efe30f8bf7a95934de65b09e5e0d5826f5af896bb0b01efaf4227f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1672, '2022-10-27 14:42:41', 'FMMS/POS1620', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '369.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '369.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 30, 1, '369.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb1fdfc46556722f0707e911cd16e67cde01106c5626b2c8ea5f9817c8d8c9be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1673, '2022-10-27 14:49:12', 'FMMS/POS1621', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '460.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '460.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 36, 1, '460.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8b876ada8e51f1b9219f0deb42720ad4947d090c0d4daa16a688c7ad9df7c75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1674, '2022-10-27 15:07:27', 'FMMS/POS1622', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '130.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '130.2000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 1, '130.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96bdd7a9f82daa86cadbe1c9852eee78654327cd88a11a8092fb8787a6a2bf59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1675, '2022-10-27 15:25:33', 'FMMS/POS1623', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '83.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '83.6400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '83.6400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9340445152713dfbbe3a20adf6012d0f4acbc390dea616c3ef595154bdeeec62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1676, '2022-10-27 15:56:29', 'FMMS/POS1624', 394, 'SIMONY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '407.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '407.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 15, 1, '407.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fc039d874cac548fb08310aafd0dde4ce6f55b854e50df7c0da8396c19a59d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1677, '2022-10-27 16:10:56', 'FMMS/POS1625', 424, 'heavenly karis chemist', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '79.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '79.2000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 30, 1, '79.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '424d75351d0f3152d2216b45ecb3eb7fc6235eca15a7cacf0e15ea532a280753', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1678, '2022-10-27 16:39:00', 'FMMS/POS1626', 68, 'danielyeboah', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '655.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '655.7000', 'completed', 'paid', 0, NULL, 9, 9, '2022-10-27 16:42:28', 189, 1, '655.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d998b831a0c93e33054eb76f48f14e57bbd8bc202797745a05d315153c4ca44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1680, '2022-10-28 08:45:31', 'FMMS/POS1628', 290, 'Isaac Brako', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5691432a9685e6a59feaa69de89cdeb60a4873525720f24f0ccec7773a946f6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1681, '2022-10-28 08:49:57', 'FMMS/POS1629', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa9a4a74e6810dfa45c2520eca29d8e65eb1cb6514f03ae982f18742664ec9b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1682, '2022-10-28 09:55:00', 'FMMS/POS1630', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1931.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1931.2900', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-28 11:14:36', 117, 1, '1931.2900', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3524f6a86402da19de3230b5a46e5acaec957a95010d3753114cc8d2cce9765', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1683, '2022-10-28 09:59:20', 'FMMS/POS1631', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '235.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '235.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '235.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '917df16207b0ed944fe2b85095e9a40e8c7146e1aa9ffaaede45ebf67a5ca798', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1684, '2022-10-28 10:19:55', 'FMMS/POS1632', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '486.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '486.1000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 33, 1, '486.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08aae4568f92ec551709b3d9ffb190fd1a092de2bd9588ea446547347d1501f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1685, '2022-10-28 10:22:33', 'FMMS/POS1633', 164, 'Lydiachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '217.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '217.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 9, 1, '217.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6731b4dd50734f38605ea3730f19abd69acf7a68b89d26781420018ea1499d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1686, '2022-10-28 10:23:45', 'FMMS/POS1634', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f65155d81f914b068699cdc2163d627ac39b5d6e5964efba317a3dc5dc7beccc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1687, '2022-10-28 10:28:14', 'FMMS/POS1635', 77, 'DROMO', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '113.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '113.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 1, '113.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10e82efd42ab96e8e51951f0b15d898972c0685bf5d0213548e798682bd60641', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1688, '2022-10-28 10:39:38', 'FMMS/POS1636', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '969.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '969.0400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 81, 1, '969.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bc88132c832dff71d19a85403d255d42f949e7e80c94fcbe558981e17cdb1ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1689, '2022-10-28 10:55:13', 'FMMS/POS1637', 405, 'NARSTEP CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 20, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '144500b210ae52d4999fa51c971ab51d5b25e8ec5b17684a399d1c658b134306', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1690, '2022-10-28 11:04:18', 'FMMS/POS1638', 26, 'AHMED CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '522.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '522.7400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 53, 1, '522.7400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0790ce7be85239119b096b57553daac55b6c5151157f3e20d80c591507fa8f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1691, '2022-10-28 11:16:16', 'FMMS/POS1639', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '88.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '88.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 11, 1, '88.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd49ff55e3e1f78e859d0724557769906ea9328a14771fe6bf8fb3ee57a5496ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1692, '2022-10-28 11:22:58', 'FMMS/POS1640', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9258a6fa8469625d99c9dece911daf5ec527cdd35e5eaedd332d59f0e05143ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1693, '2022-10-28 11:26:19', 'FMMS/POS1641', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '16.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '16.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '16.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f4c74ceb68b0b40b07970ce9edde5247f244948b58ce369220cc023307fe7b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1694, '2022-10-28 11:31:41', 'FMMS/POS1642', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '159.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '159.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '159.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdac2da2553fc3f630fc90ec0f1b45d5c640b19bef58dd7a02ccab3053fc3116', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1695, '2022-10-28 11:47:49', 'FMMS/POS1643', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '435.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '435.0400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 69, 1, '435.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6788c325a6a6c9f622fece833370cddee650442937fd74b9e00b06dede8d0b60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1696, '2022-10-28 11:55:00', 'FMMS/POS1644', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '94.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '94.7000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-28 12:09:23', 9, 1, '94.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '134d6621321c2873183bd92f52cc4be289b6bbb9dffcbc06e8c1a0c1f2db2430', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1699, '2022-10-28 12:13:27', 'FMMS/POS1647', 379, 'Kasba', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '49.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '49.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 10, 1, '49.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3dea8ca89e96c48ca9eabf2c93caa421c3a109d295ea68335d1170ac5bd4c405', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1697, '2022-10-28 11:58:00', 'FMMS/POS1645', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '534.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '534.7000', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-28 12:40:37', 279, 1, '592.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4e58774b050529f809748a331acc01174c56e4791d7eb266e101ad6784119d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1698, '2022-10-28 12:04:00', 'FMMS/POS1646', 85, 'ELIZABETH CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '13.1400', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-28 12:08:52', 1, 1, '13.1400', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc1219b0c4e852f40c163c030ce1b2040053ab663d56cfa500069efe3f16d7ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1700, '2022-10-28 12:29:03', 'FMMS/POS1648', 30, 'AKWESI', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f414ca0402a373724436f3cee18bfb060c87af01be456329e5c19e5113019a2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1701, '2022-10-28 12:48:52', 'FMMS/POS1649', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5f5ba8d0e39a999c1bb4f745920e1abbcb384518fd3d19af091f16a20f0cd59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1702, '2022-10-28 13:38:46', 'FMMS/POS1650', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '60.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '60.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 5, 1, '60.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'addcd486bbf22eac7af60a5e751d39223936d742cd2d8b074e9d98004e5e7c23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1703, '2022-10-28 13:41:20', 'FMMS/POS1651', 128, 'HOBET', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '138.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '138.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '138.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b63d71e17cab3336cdd619bd6f82f4816f3de55127f884a6629940313f9ac902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1704, '2022-10-28 13:48:12', 'FMMS/POS1652', 210, 'PHILYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.7600', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '52.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42293454ff080353e3dd8dc373e2253f7f311d2b8e86f7b002a739a20d8857fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1705, '2022-10-28 14:03:20', 'FMMS/POS1653', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '201.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '201.1000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 22, 1, '201.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f0ebbf1b3200432ecc3957ed36f389925e31dcc8dd21665cf25bd00585609dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1706, '2022-10-28 14:06:32', 'FMMS/POS1654', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '8.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '8.0700', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '8.0700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443e9aff1ef1b6a954ab516cf86eca9c39b1d3eb9a91868c36dca671af7d26fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1707, '2022-10-28 14:14:21', 'FMMS/POS1655', 238, 'SHALOM VP PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '9.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '9.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1eb20156fe1e9e5f357aaa52d952758370d01fae710f757ee5bbfbcfc00e998f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1708, '2022-10-28 14:15:42', 'FMMS/POS1656', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '15.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c38a24b7af11b10600994e2a85b0a144f79e7af2cc112a2ccd61113c12108bad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1709, '2022-10-28 14:30:19', 'FMMS/POS1657', 65, 'DAINA OBENG', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '112.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '112.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '112.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e5974d809d92347e9a5cdfbc53ce086d33d6f433deba9d8695d5f8aafbef89a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1710, '2022-10-28 14:35:20', 'FMMS/POS1658', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0047f9955a485edca83644d6586fae4f77ccc9eb998ef000d14c3ea9e6760ee6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1711, '2022-10-28 14:41:58', 'FMMS/POS1659', 22, 'Samuel Adu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0dd2fcbdaaa91b2fa1b21a942d8f2804e0025074529927d06b551f370f4b46b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1712, '2022-10-28 15:14:06', 'FMMS/POS1660', 12, 'abokumachem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '389.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '389.5900', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 139, 1, '389.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a35648c3754bf71327210c3289753cf0b8da3099bd1baa26c5d8f065228458fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1713, '2022-10-28 15:40:11', 'FMMS/POS1661', 118, 'GN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '893879d5fe19aec57e6836d70523955957e2afa5ac5050b97bb870d98a65811d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1714, '2022-10-28 15:45:02', 'FMMS/POS1662', 156, 'latyadms1', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '275.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '275.0500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '275.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e743e6f08b26e6516587a5cc66fd1a2335546c473febe1468328889e2b99df47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1715, '2022-10-28 16:12:17', 'FMMS/POS1663', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 10, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db5f835423fb60873da502458420104b17a25f81e2878788dba7b69ce71d0ba4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1716, '2022-10-28 16:18:49', 'FMMS/POS1664', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1246.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1246.3200', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 67, 1, '1246.3200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff890d5a24ce8d09c8f920434e158ee44e838b2fd724260697a21df71dd7d754', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1717, '2022-10-28 16:35:04', 'FMMS/POS1665', 202, 'Osei', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '27.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61468af1be535d01bc609de5744d919c1cf32be2c72eead776a8fa7a3ad40cd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1718, '2022-10-28 16:35:51', 'FMMS/POS1666', 61, 'CND', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '19.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '19.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '19.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3653d917b6022a5815d29cf4f21adc7e80c6c8152b5971ba8ba146e4a26a708e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1719, '2022-10-28 16:40:39', 'FMMS/POS1667', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '723eccb87526d78b3b8ff04c7d7cba2939db0fa9291f46acb003ebbc4bd0aad2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1720, '2022-10-28 16:44:40', 'FMMS/POS1668', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '27.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '27.2600', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '27.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '762461872c89f7a18aca0b20471a046bf66b0ab80729eab21527aa9ceb99903f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1721, '2022-10-28 16:49:34', 'FMMS/POS1669', 425, 'BEN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.2000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 24, 1, '55.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd596337194f390637651753a8b9a45140256e375454491b2bd63616f954177d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1722, '2022-10-28 16:55:00', 'FMMS/POS1670', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '6.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6.3000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '6.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '928b6323b429e5e4f2fab3bdbb7b6b63f91a3d6d05799798ad4b29e4f1dd6d12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1723, '2022-10-28 17:09:32', 'FMMS/POS1671', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '28.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '28.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '28.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4704efbef9a8f6db3ff6c60cfd9d133d7d1d73293b881976b93f9156639b248e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1724, '2022-10-29 07:53:00', 'FMMS/POS1672', 14, 'ADAMS', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '291.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '291.2600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-29 08:19:25', 43, 1, '291.2600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f343ca701156c9999396451c0f124b5b3baf2c4e3c8533ea435d106b947e52f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1725, '2022-10-29 07:58:59', 'FMMS/POS1673', 200, 'Kenneth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '78.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '78.2200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '78.2200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '572a76c0cab51191e399abc6053ca5e80f9507e51df4cfcfd4553cf10d876f17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1726, '2022-10-29 08:03:30', 'FMMS/POS1674', 153, 'ANANE', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '63.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '63.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '63.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd99b6f6cf562f5c842bce13ce9e3b89368b7180cb39d0d58f9e68da2bb7a964', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1727, '2022-10-29 08:20:27', 'FMMS/POS1675', 48, 'BB CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '405.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '405.7800', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 125, 1, '405.7800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4d8e8b6df56ed2f1eb02ba7729a851c1defbcab8f87197d98654b32eb1f203b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1728, '2022-10-29 08:29:00', 'FMMS/POS1676', 63, 'Cynthia', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '243.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '243.9100', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-29 08:38:13', 28, 1, '243.9100', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e7b579344fcee561c23073c673a7c0a52497fe3e0f5ce46d53bce3291deac2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1729, '2022-10-29 09:06:09', 'FMMS/POS1677', 84, 'ELINDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '66.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '66.7000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '66.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4d6775e3416a7f80126cb3337938e8d16a16d1274aca170772c0f5de1743c9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1730, '2022-10-29 09:17:00', 'FMMS/POS1678', 426, 'BB2 CHEMICAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '109.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '109.3600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-29 09:27:38', 20, 1, '109.3600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd23f630e95659f0051a5e9c8f79766789d1e7b9faa50c8b342cbed8dc98685cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1731, '2022-10-29 09:17:51', 'FMMS/POS1679', 423, 'EBETODA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '29.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '29.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 11, 1, '29.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ef49a5a09ad16e1e72b749cd9c9ef1541bd05e87ef0d5af49a1b0b0429654ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1732, '2022-10-29 09:21:33', 'FMMS/POS1680', 266, 'VIDA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '55.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '55.1000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '55.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '723f2347a88207031c7bd6832c4a52b5648822779944ba4f3e7fed0203d1f535', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1733, '2022-10-29 09:25:48', 'FMMS/POS1681', 423, 'EBETODA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd61a4222ecb9fe28b7a34abd1be28261211f7075cae7986ccadd1b2ff726d4ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1734, '2022-10-29 09:41:41', 'FMMS/POS1682', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '77.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '77.0200', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 9, 1, '77.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2eaccc6df0ceda22bae0ea4c2c951c2438694ab6967a78c9759f97bc573f166', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1735, '2022-10-29 09:43:41', 'FMMS/POS1683', 49, 'BECKY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '34.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '34.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '34.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8f163b6b7861e7bfdc4a48e1e4e5deeeff035101393bfbd4a3ac6e19519146c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1736, '2022-10-29 09:44:30', 'FMMS/POS1684', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.9000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '31.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46eead0fb220f308e639ca4104ae2c9ed14b2feaa2e797d3478dc82908724aa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1737, '2022-10-29 09:53:00', 'FMMS/POS1685', 198, 'George Hood', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1397.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1397.1000', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-29 11:37:29', 128, 1, '1397.1000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f4e5144eb81ae1f7764540f4de01bea18740c9bfecf0ad34a8f0c9510f268c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1738, '2022-10-29 10:25:56', 'FMMS/POS1686', 227, 'saada', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '128.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '128.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '128.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4409f4ba67fac7658b4d0342841806f3042ee78d9d926239ce66ce0fcb348ba7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1739, '2022-10-29 10:26:07', 'FMMS/POS1687', 160, 'LEXGINA PHARMA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1267.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1267.7000', 'completed', 'due', 0, NULL, 10, NULL, NULL, 194, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33c647f7eb98a18db0622954426bd4a58b2d5ea0a3455bcbd44035da18bc1353', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1740, '2022-10-29 10:28:13', 'FMMS/POS1688', 85, 'ELIZABETH CHEMICAL SHOP', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '118.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '118.0000', 'completed', 'due', 0, NULL, 10, NULL, NULL, 22, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9de355e72a555364b87d3b05cc888b4976a2fae616cd68248c39ca172405fc20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1741, '2022-10-29 10:38:48', 'FMMS/POS1689', 90, 'Eric Arhin', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '45.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '45.4000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 14, 1, '45.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4014d6c1ac0fcc4b5e476cfc8b9d78917385903a731d5d204f1ff13b25f4704', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1742, '2022-10-29 10:41:11', 'FMMS/POS1690', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '18.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '18.9000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '18.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa83a8237d7f77ccab31f175ac1cb9aa0a1881da7679ce8a1a253098ae3a1797', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1743, '2022-10-29 10:57:17', 'FMMS/POS1691', 161, 'LIM PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7642ea88e2d3b3b69b80f3e23cb757d3f47716334d5cead456717d1afdd2d53a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1744, '2022-10-29 10:59:00', 'FMMS/POS1692', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '949.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '949.4000', 'completed', 'due', 0, NULL, 6, 6, '2022-10-29 12:56:23', 140, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61b5543176beba543aa8183e51113f5b59419a0ec4b548fe096db95687372816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1745, '2022-10-29 11:14:30', 'FMMS/POS1693', 106, 'francisocloo', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '309.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '309.7200', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 39, 1, '309.7200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '171b65abff4a1103999161be4894ddeee23cd36ef155a0582a1019d23cb1f2dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1746, '2022-10-29 11:28:28', 'FMMS/POS1694', 67, 'Daniel', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '233.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '233.2000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 33, 1, '233.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '736301f4e8e4286141560c5c2ecba5b861b98d7223bd9c35efde4c965266ea56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1747, '2022-10-29 11:39:14', 'FMMS/POS1695', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 50, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99aa26eeab4cb7436788f547e32794b16db45ce2792d53e92aae3dd18066e5a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1748, '2022-10-29 11:57:09', 'FMMS/POS1696', 411, 'DEMARYDAN PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1001.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '1001.5800', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 74, 1, '1001.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e954ea3e25c2f6a7802c8c9a0ce54ac3c643b20b7ac201570ee15d6bbb6690bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1749, '2022-10-29 12:05:23', 'FMMS/POS1697', 221, 'REGINA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '15.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '15.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '15.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e16f6c94b105099968f40c4b03bb7aa156cd918ff9fb45ee924ee31f8af5071', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1750, '2022-10-29 12:06:59', 'FMMS/POS1698', 189, 'NAYRAM HERBAL', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '136.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '136.0500', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 33, 1, '136.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ec00f2df082b95bcd3a9bb9418687c1b3526952a677f77de15fadd94c319a88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1751, '2022-10-29 12:09:24', 'FMMS/POS1699', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '22.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '22.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 5, 1, '22.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '950bdbee9794e18b19f39f1bebf7224fd12d516813be55a57f3a6b686b53b3ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1752, '2022-10-29 12:28:00', 'FMMS/POS1700', 291, 'Health is wealth', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '3537.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3537.3100', 'completed', 'due', 0, NULL, 6, 6, '2022-10-29 14:25:33', 279, 1, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e0118f38a9d5270bb3a9220e131b9bdd196ea227e1f794c299822e8ecd01c59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1753, '2022-10-29 12:54:00', 'FMMS/POS1701', 31, 'allenchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '1009.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '1009.5600', 'completed', 'paid', 0, NULL, 10, 6, '2022-10-29 13:01:38', 91, 1, '1009.5600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8802adacfa65662ec616bde3db9c5f29e751ff1b366a66f9b69044558fa83c04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1754, '2022-10-29 13:03:35', 'FMMS/POS1702', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '498.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '498.0800', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 45, 1, '498.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa9f92592d541660746f004ca24b5ab8cd1d0c44f06a82449c90831646f5c6ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1755, '2022-10-29 13:04:08', 'FMMS/POS1703', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3acdac8c75417b048ae6f1ed7415eccaa2f7afd3c61b2a69a201f49a0d8af95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1756, '2022-10-29 13:13:06', 'FMMS/POS1704', 21, 'ADOM', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '29.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '29.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '29.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec6280fbc5556a5ec408fe1effcad948241d78bd6908447fd75ddb9e8a640a46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1757, '2022-10-29 13:15:00', 'FMMS/POS1705', 217, 'Ramatu', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '804.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '804.7600', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-29 14:40:40', 64, 1, '823.6600', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96af41f1d4e76a7e47c3a2cbd01bb956853b2c5688f1f8d7bea9ea3c1701101d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1758, '2022-10-29 13:15:56', 'FMMS/POS1706', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '29.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '29.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '29.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2e8f44e8c8df9edcdf446ef22474a9ffabac572cd4ee38ef66143ada41141c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1759, '2022-10-29 13:37:00', 'FMMS/POS1707', 212, 'prahbecky95', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '388.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '388.8000', 'completed', 'due', 0, NULL, 10, 6, '2022-10-29 13:48:13', 28, 1, '360.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7441f99cc292b8ff5f13f116e4a1cfa591a4e6bc6791e0b2b8736482984fcde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1760, '2022-10-29 13:39:00', 'FMMS/POS1708', 40, 'Asamoah Gyan', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '419.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '419.2400', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '419.2400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b704d1ebd27772ff48a00b4da6d458b844402c259e896376287f1c42b11a7f9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1761, '2022-10-29 13:43:30', 'FMMS/POS1709', 87, 'RITA ASHLYN', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '33.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '33.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '33.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '161ecc9f9829337fd06a947103ef1952ae86ef5340976e00907d89b4ca2a7565', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1762, '2022-10-29 13:44:11', 'FMMS/POS1710', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '76.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '76.6000', 'completed', 'due', 0, NULL, 10, NULL, NULL, 10, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd03d8e686aa316e1bdabac8f033d4530cb42a654b8d1d76cf55ed56f4af9380f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1763, '2022-10-29 13:49:02', 'FMMS/POS1711', 228, 'Sampson Obeng', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '221.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '221.5500', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 26, 1, '221.5500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c677318758c93764b44e9249a80fb04aa2555f15e9933b2ef3dfcdd523f87a64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1764, '2022-10-29 14:08:50', 'FMMS/POS1712', 130, 'isaackwakuasantesk', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01153c26158b8faef9f5fe8c6e745ec9e9c06d662dff30223165f75a0fcb5ac0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1765, '2022-10-29 14:26:17', 'FMMS/POS1713', 157, 'LAWMERC PHARMACY', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '426.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '426.4400', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 32, 1, '426.4400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd05afafa982daac49993b7d45ba9314dad77ecdb7c29e762cf398256e8b93d1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1766, '2022-10-29 14:32:51', 'FMMS/POS1714', 102, 'FMMS 3 PHARMACY ROSAROSA', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'due', 0, NULL, 10, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443d3465dcf9f8a700b568434987697fbf4ce63334265be044ee7b995019dab0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1767, '2022-10-29 14:39:00', 'FMMS/POS1715', 218, 'ramatuchem', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 6, 6, '2022-10-29 14:41:36', 24, 1, '330.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b86ef29524d82f31b61e6a0f5a37979b6d780e064ae08cfb4ffe51d401bedaa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1768, '2022-10-29 14:53:54', 'FMMS/POS1716', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '41.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '41.4000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '41.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4749e8e813d916089fc5793f9a37bf046cd1d3b308257f7382b53a4dfd371c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1769, '2022-10-29 14:55:18', 'FMMS/POS1717', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c6d431a191869dd1d6ac987ce7998d58a0f1a799d1ddbbf9f03b18e8a555d9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1770, '2022-10-29 14:57:29', 'FMMS/POS1718', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '17.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '17.8000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '17.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c1c88b07a38e09e25969a519d0213cd2ad64e8580fc1581bba122142ab6794a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1771, '2022-10-29 15:13:28', 'FMMS/POS1719', 125, 'Hakadam chemical', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '164.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '164.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '164.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd41d7eaef5aed146e302066e438092cd5474a864c467b9f1beeef7732026c1c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1772, '2022-10-29 15:25:59', 'FMMS/POS1720', 1, 'Walk-in Customer', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41251f34f9b3107d9da74f28f9cf7c1793098c962434084ed57d88f034f1d1c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1773, '2022-10-29 15:27:50', 'FMMS/POS1721', 177, 'ISSAH', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '13.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '13.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '13.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '879c4690620d5f6a904be662f301cd6a00a4c47f6dd7b2484145e4b2699f5494', NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sessions
#

DROP TABLE IF EXISTS `sma_sessions`;

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

INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5021c3c79f06dec02fc143b94696642a9333dbb', '154.160.2.124', 1667063933, '__ci_last_regenerate|i:1667063862;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667055179\";last_ip|s:13:\"154.160.3.176\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f614e233b3a6eb4a698fe468c3b71ecd75a1c13', '197.159.139.219', 1667057987, '__ci_last_regenerate|i:1667057864;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667057352;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c20a7834f9292d9d59c717aa3188655dfe52c1f7', '197.159.139.219', 1667057864, '__ci_last_regenerate|i:1667057864;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667057352;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d24e2aa29464463f2ffa202c329f99ee28bc714', '197.159.139.219', 1667057159, '__ci_last_regenerate|i:1667057159;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667057102;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79723fb02d8c41d8b82a9872cedf101ddf58d3b1', '197.159.139.219', 1667056737, '__ci_last_regenerate|i:1667056737;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667056550;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc59c766c3475f1e587eef27f15d1e9e6fd40091', '197.159.139.219', 1667056307, '__ci_last_regenerate|i:1667056307;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667055996;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64a933307229c071f953ea7fcb6487e90e2128e', '197.159.139.219', 1667055969, '__ci_last_regenerate|i:1667055969;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667055936;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b520c5250e77ee7db9181748f2569e7af6fd6bc1', '192.64.118.61', 1667055200, '__ci_last_regenerate|i:1667055200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66449672d458062d7b1621741ea30a813f7c5749', '197.159.139.219', 1667055459, '__ci_last_regenerate|i:1667055449;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667055455;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20aab77fc298b759a12522a3997ed03ac634427a', '154.160.3.176', 1667055358, '__ci_last_regenerate|i:1667055165;requested_page|s:14:\"admin/products\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667022119\";last_ip|s:13:\"154.160.16.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d025ccec7bd45a8f7cd91621922a5cf87bfe3f5d', '197.159.139.219', 1667055449, '__ci_last_regenerate|i:1667055449;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667055444;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eafb01b382df8b0119370ded5d4e0876e7e464f3', '197.159.139.219', 1667055496, '__ci_last_regenerate|i:1667055496;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667054649;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554ebdb8e8b1bef947f4dd566334576f43facdef', '197.159.139.219', 1667055099, '__ci_last_regenerate|i:1667055099;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667054649;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957a7fc3bd3cc47878bfcdd63b3b7ab193b68dbf', '197.159.139.219', 1667054631, '__ci_last_regenerate|i:1667054631;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667054557;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c3097994a85860bcf6332aee5027b52ef0fa49', '197.159.139.219', 1667055142, '__ci_last_regenerate|i:1667055142;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667053988;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf0d1ead6110fbf79f3bf40b9d9b8264d3e6496', '197.159.139.219', 1667054273, '__ci_last_regenerate|i:1667054273;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667054197;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008bff248e36a27249f26320bc219e1dfd27bf85', '197.159.139.219', 1667053892, '__ci_last_regenerate|i:1667053892;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667053591;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d9ecb53037f1c5cb2c51fe27d824f90ac84823', '197.159.139.219', 1667053826, '__ci_last_regenerate|i:1667053826;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667053820;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_posls|i:1;remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed30e80516a80a143a7d481cbf5d124c764d4b9a', '197.159.139.219', 1667053577, '__ci_last_regenerate|i:1667053577;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667053507;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94abff27fdd74f3d6497104614be5ea328ca184e', '197.159.139.219', 1667052458, '__ci_last_regenerate|i:1667052458;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667051354;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0452bbb421a22afbe86e6b2eb8137b5f6cf02b5', '197.159.139.219', 1667053508, '__ci_last_regenerate|i:1667053508;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667053503;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200af4e572da2a6e739e767b8e4b9f8bb73b2547', '197.159.139.219', 1667051713, '__ci_last_regenerate|i:1667051713;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667051708;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa002679c1876a25cf3c736dd2ba6fb19eaa77cd', '154.160.8.133', 1667050861, '__ci_last_regenerate|i:1667050861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e17cd6d21098553c671a63fa107970534b6de3b', '197.159.139.219', 1667051354, '__ci_last_regenerate|i:1667051354;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667051346;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5adc823bb68ee0901e546e7df1121cdf69045fc', '197.159.139.219', 1667055366, '__ci_last_regenerate|i:1667050832;identity|s:10:\"kojoappiah\";username|s:10:\"kojoappiah\";email|s:21:\"kojoappiah@fmmsgh.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667028657\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d865c239dfac5925a3ade9c0b5398c7163dca8dc', '197.159.139.219', 1667050088, '__ci_last_regenerate|i:1667050088;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667049968;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c8a8f24d06e1c4f54ad52a0110b5c45d69be8d', '192.64.118.61', 1667047619, '__ci_last_regenerate|i:1667047619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf98d9869e0eef4a054eefa95d3e8068e5d1c625', '197.159.139.219', 1667050172, '__ci_last_regenerate|i:1667050172;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667049356;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d86dc836510331c8534065a4b7117ecfaf782f8', '197.159.139.219', 1667047952, '__ci_last_regenerate|i:1667047952;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667047947;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;user_csrf|s:20:\"uGc1vOaxl8MyzRtE5iBD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4297893ad1ad0a03434d439401a4e00eb831dd', '197.159.139.219', 1667048046, '__ci_last_regenerate|i:1667048046;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667047998;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2035f8057c94d67d81a47986865dba8490e1708', '197.159.139.219', 1667047369, '__ci_last_regenerate|i:1667047369;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667046531;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa59e034e5d49a09fec26994a683106f6777cb5', '197.159.139.219', 1667047357, '__ci_last_regenerate|i:1667047357;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667047007;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d257a3bf5b8ffe04ea5516ab5dc2fd29f5f02e50', '197.159.139.219', 1667046856, '__ci_last_regenerate|i:1667046856;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667046531;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3cb2a93110540b1deaf7e6e86345a71e3f121bf', '197.159.139.219', 1667049215, '__ci_last_regenerate|i:1667049215;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667048854;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ede60a65f47b9ce18010cbca36c02710c59006', '197.159.139.219', 1667049099, '__ci_last_regenerate|i:1667049099;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667048631;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a5b0a1f6de92eb7e013b11d670b6fed1e9dbc5', '197.159.139.219', 1667048732, '__ci_last_regenerate|i:1667048732;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667048648;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uGc1vOaxl8MyzRtE5iBD\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c39385d1d03fb8a6f4cd1873952c65934acadab', '197.159.139.219', 1667048376, '__ci_last_regenerate|i:1667048376;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667048184;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;user_csrf|s:20:\"uGc1vOaxl8MyzRtE5iBD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d687bc3f119deba5bd6f5139609fa6edbc918d', '197.159.139.219', 1667048615, '__ci_last_regenerate|i:1667048615;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667048599;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e8457abdb8419753f707fc695c9f4ab4a7a61c', '197.159.139.219', 1667051293, '__ci_last_regenerate|i:1667051293;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667051010;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ca78c09b49f10147499df594c968bc03e2b399', '197.159.139.219', 1667051051, '__ci_last_regenerate|i:1667051051;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667050968;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37ae21828dcc2ea637b7e4c1d7fd99cc4d9a752', '197.159.139.219', 1667050443, '__ci_last_regenerate|i:1667050443;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667050124;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0506256141a5fc4c3d10e656a5e70dcd04c4e1b6', '197.159.139.219', 1667050642, '__ci_last_regenerate|i:1667050642;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667050612;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3c8ce9d66c9aa8806ba62997d1e744c2989cc8', '197.159.139.219', 1667050767, '__ci_last_regenerate|i:1667050767;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667050740;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;user_csrf|s:20:\"uO1X83zJ5rmvMQxZpDay\";remove_pols|i:1;remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7db69b972883825259f1af810d76b981d36fc25', '197.159.139.219', 1667042907, '__ci_last_regenerate|i:1667042907;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667042882;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389e3a064c8814e8c9d93c233a6bc89f19463577', '197.159.139.219', 1667043261, '__ci_last_regenerate|i:1667043261;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667042991;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73f96700d4b784169a9577dab3305c97beff2e4', '197.159.139.219', 1667044629, '__ci_last_regenerate|i:1667044629;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667043989;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b37a2054db72c7c1ab9bb75949770d06a20ddf', '197.159.139.219', 1667043693, '__ci_last_regenerate|i:1667043693;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667043690;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba52f37e4081e3eb6abe76c831e912e0d90a0317', '197.159.139.219', 1667044025, '__ci_last_regenerate|i:1667044025;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667043715;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7aa34f92e9f1c7ff05f87a34056a7283b74c47c', '197.159.139.219', 1667044594, '__ci_last_regenerate|i:1667044594;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667044224;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3e39f5b7647cf8a24caa5933f842a812060dc9', '197.159.139.219', 1667045025, '__ci_last_regenerate|i:1667045025;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667044846;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0166bdbac342c2f4ebb45e657dde000e19c9af3d', '197.159.139.219', 1667045219, '__ci_last_regenerate|i:1667045219;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667045190;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2baab41e7a3220878d689b2ffaccc243eaa3dd78', '197.159.139.219', 1667045381, '__ci_last_regenerate|i:1667045381;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667045350;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e92babf29245d060e3ad1b3e63c24ddb60c9efd', '197.159.139.219', 1667046613, '__ci_last_regenerate|i:1667046613;identity|s:7:\"nanayaa\";username|s:7:\"nanayaa\";email|s:18:\"nanayaa@fmmsgh.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1666944742\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"8\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667045364;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 10:44:48\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f317b6297dc9a38fbb97b53df9e02f0850fd3e4', '197.159.139.219', 1667046480, '__ci_last_regenerate|i:1667046480;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:16:\"grace@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1666944724\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1667046408;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_slls|i:1;');


#
# TABLE STRUCTURE FOR: sma_settings
#

DROP TABLE IF EXISTS `sma_settings`;

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

INSERT INTO `sma_settings` (`setting_id`, `logo`, `logo2`, `site_name`, `language`, `default_warehouse`, `accounting_method`, `default_currency`, `default_tax_rate`, `rows_per_page`, `version`, `default_tax_rate2`, `dateformat`, `sales_prefix`, `quote_prefix`, `purchase_prefix`, `transfer_prefix`, `delivery_prefix`, `payment_prefix`, `return_prefix`, `returnp_prefix`, `expense_prefix`, `item_addition`, `theme`, `product_serial`, `default_discount`, `product_discount`, `discount_method`, `tax1`, `tax2`, `overselling`, `restrict_user`, `restrict_calendar`, `timezone`, `iwidth`, `iheight`, `twidth`, `theight`, `watermark`, `reg_ver`, `allow_reg`, `reg_notification`, `auto_reg`, `protocol`, `mailpath`, `smtp_host`, `smtp_user`, `smtp_pass`, `smtp_port`, `smtp_crypto`, `corn`, `customer_group`, `default_email`, `mmode`, `bc_fix`, `auto_detect_barcode`, `captcha`, `reference_format`, `racks`, `attributes`, `product_expiry`, `decimals`, `qty_decimals`, `decimals_sep`, `thousands_sep`, `invoice_view`, `default_biller`, `envato_username`, `purchase_code`, `rtl`, `each_spent`, `ca_point`, `each_sale`, `sa_point`, `update`, `sac`, `display_all_products`, `display_symbol`, `symbol`, `remove_expired`, `barcode_separator`, `set_focus`, `price_group`, `barcode_img`, `ppayment_prefix`, `disable_editing`, `qa_prefix`, `update_cost`, `apis`, `state`, `pdf_lib`, `use_code_for_slug`, `ws_barcode_type`, `ws_barcode_chars`, `flag_chars`, `item_code_start`, `item_code_chars`, `price_start`, `price_chars`, `price_divide_by`, `weight_start`, `weight_chars`, `weight_divide_by`, `product_price_percentage`, `ksa_qrcode`) VALUES (1, 'logo-fmms-warehouse_c1.png', 'logo-fmms-warehouse_c2.png', 'Fmms Pharmacy wholesale', 'english', 1, 2, 'GHC', 0, 25, '3.4.53', 0, 5, 'FMMS', 'QUOTE', 'PO', 'TR', 'DO', 'IPAY', 'SR', 'PR', '', 1, 'default', 1, 1, 0, 1, 0, 0, 1, 1, 0, 'Africa/Accra', 800, 800, 150, 150, 1, 0, 0, 0, NULL, 'mail', '/usr/sbin/sendmail', 'mail.fmmsgh.com', 'support@fmmsgh.com', '205700Abc#', '25', 'tls', NULL, 1, 'contact@fmmsgh.com', 0, 4, 1, 0, 3, 0, 1, 0, 2, 2, '.', ',', 0, 3, 'eben1xx', '1c7d6b16-ed3b-431b-933c-88241470fc4e', 0, NULL, NULL, NULL, NULL, 0, 0, 1, 0, 'GHC', 0, '-', 0, 1, 1, 'POP', 90, '', 1, 0, 'AN', 'mpdf', 1, 'weight', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_shop_settings
#

DROP TABLE IF EXISTS `sma_shop_settings`;

CREATE TABLE `sma_shop_settings` (
  `shop_id` int(11) NOT NULL,
  `shop_name` varchar(55) NOT NULL,
  `description` varchar(160) NOT NULL,
  `warehouse` int(11) NOT NULL,
  `biller` int(11) NOT NULL,
  `about_link` varchar(55) NOT NULL,
  `terms_link` varchar(55) NOT NULL,
  `privacy_link` varchar(55) NOT NULL,
  `contact_link` varchar(55) NOT NULL,
  `payment_text` varchar(100) NOT NULL,
  `follow_text` varchar(100) NOT NULL,
  `facebook` varchar(55) NOT NULL,
  `twitter` varchar(55) DEFAULT NULL,
  `google_plus` varchar(55) DEFAULT NULL,
  `instagram` varchar(55) DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `email` varchar(55) DEFAULT NULL,
  `cookie_message` varchar(180) DEFAULT NULL,
  `cookie_link` varchar(55) DEFAULT NULL,
  `slider` text DEFAULT NULL,
  `shipping` int(11) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT 'purchase_code',
  `envato_username` varchar(50) DEFAULT 'envato_username',
  `version` varchar(10) DEFAULT '3.4.52',
  `logo` varchar(55) DEFAULT NULL,
  `bank_details` varchar(255) DEFAULT NULL,
  `products_page` tinyint(1) DEFAULT NULL,
  `hide0` tinyint(1) DEFAULT 0,
  `products_description` varchar(255) DEFAULT NULL,
  `private` tinyint(1) DEFAULT 0,
  `hide_price` tinyint(1) DEFAULT 0,
  `stripe` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`shop_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_shop_settings` (`shop_id`, `shop_name`, `description`, `warehouse`, `biller`, `about_link`, `terms_link`, `privacy_link`, `contact_link`, `payment_text`, `follow_text`, `facebook`, `twitter`, `google_plus`, `instagram`, `phone`, `email`, `cookie_message`, `cookie_link`, `slider`, `shipping`, `purchase_code`, `envato_username`, `version`, `logo`, `bank_details`, `products_page`, `hide0`, `products_description`, `private`, `hide_price`, `stripe`) VALUES (1, 'Fmms Pharmacy wholesale Madina Market', 'WHOLESALE ONLY', 1, 3, '', '', '', '', 'Payment Method', 'Please click the link below to follow us on social media.', 'http://facebook.com/fmmsgh', 'http://twitter.com/fmmsgh', '', 'http://instagram/fmmsgh', ' +2330244282043', 'info@fmmsgh.com', 'We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies.', '', '[{\"image\":\"216ccc03a9025c8850e4494526570605.jpg\",\"link\":\"https:\\/\\/fmmsgh.com\\/wholesale01\\/shop\\/products?page=1\",\"caption\":\"\"},{\"image\":\"fd25e898f5b1902361a721d916052241.jpg\",\"link\":\"\",\"caption\":\"\"},{\"image\":\"3a69f816be976578a6efd0a3ca07b264.jpg\",\"link\":\"\",\"caption\":\"\"},{\"link\":\"\",\"caption\":\"\"},{\"link\":\"\",\"caption\":\"\"}]', 0, '43ef9f84-67da-4174-b217-ab97e6fc1017', 'eben1xx', '3.4.52', 'logo-fmms-warehouse_c.png', '', 0, 1, 'Description', 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_skrill
#

DROP TABLE IF EXISTS `sma_skrill`;

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

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


#
# TABLE STRUCTURE FOR: sma_sms_settings
#

DROP TABLE IF EXISTS `sma_sms_settings`;

CREATE TABLE `sma_sms_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `auto_send` tinyint(1) DEFAULT NULL,
  `config` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_sms_settings` (`id`, `auto_send`, `config`) VALUES (1, NULL, '{\"gateway\":\"Log\",\"Log\":{}');


#
# TABLE STRUCTURE FOR: sma_stock_count_items
#

DROP TABLE IF EXISTS `sma_stock_count_items`;

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

#
# TABLE STRUCTURE FOR: sma_stock_counts
#

DROP TABLE IF EXISTS `sma_stock_counts`;

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

INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (1, '2022-08-08 22:39:00', '', 1, 'full', 'da67b1e383eb4ab303407775142c0cf9.csv', NULL, '', '', '', '', NULL, 1, 1, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (2, '2022-09-18 10:01:00', '', 1, 'full', '3854b701401adb38275453402fc32df4.csv', NULL, '', '', '', '', NULL, 1198, 1198, NULL, NULL, NULL, 2, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_bills
#

DROP TABLE IF EXISTS `sma_suspended_bills`;

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

INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (1, '2022-09-09 02:23:02', 1, 'Walk-in Customer', 4, '', 0, '25.7000', 3, 1, 2, '009987', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (15, '2022-09-17 09:24:31', 174, 'MEIRACARE PHARMACY', 58, '', 0, '607.1000', 3, 1, 6, 'meiracare', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (14, '2022-09-17 09:16:40', 174, 'MEIRACARE PHARMACY', 56, '', 0, '592.7000', 3, 1, 6, 'meira', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (64, '2022-09-30 16:44:45', 1, 'Walk-in Customer', 69, '', 0, '1104.0000', 3, 1, 6, 'CLIFCO', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (37, '2022-09-23 10:57:47', 8, 'Mercy Arthur', 155, '', 0, '2063.2000', 3, 1, 7, 'saint mi', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (35, '2022-09-22 10:08:37', 284, 'Dreamland', 63, '', 0, '409.4800', 3, 1, 6, 'DREAM', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (54, '2022-09-28 08:30:48', 380, 'Stable Plus Healthcare', 340, '', 0, '4634.7000', 3, 1, 6, 'stable', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (66, '2022-10-03 09:56:25', 238, 'SHALOM VP PHARMACY', 31, '', 0, '849.0600', 3, 1, 7, 'shalom', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (97, '2022-10-13 10:12:57', 204, 'GINA', 50, '', 0, '900.0000', 3, 1, 6, 'GINA', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (91, '2022-10-12 09:00:37', 52, 'BETVEN PHARMACY MARKET', 46, '', 0, '909.8500', 3, 1, 6, 'betven', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (96, '2022-10-13 08:14:54', 149, 'Kobby', 2, '', 0, '24.6000', 3, 1, 6, 'kobby', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (98, '2022-10-13 10:12:58', 204, 'GINA', 50, '', 0, '900.0000', 3, 1, 6, 'GINA', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (113, '2022-10-21 13:41:57', 68, 'danielyeboah', 46, '', 0, '258.0600', 3, 1, 6, 'DANIELYEBOAH', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (115, '2022-10-22 14:59:59', 420, 'AISHA', 128, '', 0, '391.0400', 3, 1, 6, 'aisha', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (123, '2022-10-24 16:47:15', 100, 'FMMS1LAKESIDE', 230, '', 0, '4388.5500', 3, 1, 6, 'LAKESIDE', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (137, '2022-10-27 10:35:30', 106, 'francisocloo', 46, '', 0, '396.4200', 3, 1, 9, 'FRANCISOCLOO', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (130, '2022-10-25 15:33:25', 190, 'NLMC', 4, '', 0, '144.6200', 3, 1, 6, 'NLMC', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (136, '2022-10-27 09:50:16', 106, 'francisocloo', 46, '', 0, '396.4200', 3, 1, 6, 'Francisocloo', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (138, '2022-10-27 11:00:06', 161, 'LIM PHARMACY', 2, '', 0, '174.8200', 3, 1, 10, 'lim pharma', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (139, '2022-10-27 15:52:20', 68, 'danielyeboah', 196, '', 0, '572.3000', 3, 1, 10, 'danielyeboah', '0.0000', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_items
#

DROP TABLE IF EXISTS `sma_suspended_items`;

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

INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1, 1, 5173, '669', 'Zamac Tablets 100mg', '3.1400', '3.1400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.1400', '', NULL, 'standard', '3.1400', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2, 1, 4969, '465', 'Septilin Tablet', '20.1600', '20.1600', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1600', '', NULL, 'standard', '20.1600', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3, 1, 5290, '786', 'Rufedol Tablets 10\'s', '1.2000', '1.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', NULL, 'standard', '1.2000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1026, 54, 6134, '731', 'Crepe Bandage 4 Inches Xtra Care', '5.8000', '5.8000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', NULL, 'standard', '5.8000', 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1027, 54, 5549, '146', 'Crepe Bandage 6 Inches Xtra Care', '8.2000', '8.2000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '98.4000', '', NULL, 'standard', '8.2000', 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1028, 54, 5548, '145', 'Crepe Bandage 2Inches Xtra care', '2.9800', '2.9800', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.7600', '', NULL, 'standard', '2.9800', 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2591, 139, 6205, '802', 'Citro C Tablets 25\'s', '55.0000', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', NULL, 'standard', '55.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2590, 139, 5624, '221', 'Foligrow Syrup 200ml', '20.1000', '20.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '20.1000', '', NULL, 'standard', '20.1000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2589, 139, 5906, '503', 'Tetracycline Capsules', '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', NULL, 'standard', '15.8200', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2587, 139, 6374, '971', 'Amoxicillin 250mg (Letap)', '1.8000', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', NULL, 'standard', '1.8000', 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (282, 15, 6356, '953', 'Cotton Wool 100g', '7.2000', '7.2000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.4000', '', NULL, 'standard', '7.2000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (280, 15, 6007, '604', 'Penicillin V 125mg Letap', '11.3800', '11.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.9000', '', 0, 'standard', '11.3800', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (281, 15, 6205, '802', 'Citro C Tablets 25\'s', '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', 0, 'standard', '38.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (279, 15, 5418, '15', 'Aboniki', '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', 0, 'standard', '5.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (277, 15, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', '1.9500', '1.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', 0, 'standard', '1.9500', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (278, 15, 6078, '675', 'Mr. Q', '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', 0, 'standard', '42.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (276, 15, 6323, '920', 'Polygynax Pessaries 6\'s', '39.0000', '39.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', 0, 'standard', '39.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (273, 15, 6509, '1106', 'Gacet 1g Suppository', '13.2500', '13.2500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', 0, 'standard', '13.2500', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (274, 15, 5926, '523', 'Vermox 500mg Tablets', '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', 0, 'standard', '10.9000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (275, 15, 6074, '671', 'Lydia Postpill 1Tablet', '8.5000', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.5000', '', 0, 'standard', '8.5000', 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (272, 15, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', 0, 'standard', '27.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (271, 15, 5847, '444', 'Redsun Jelly', '6.1000', '6.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', 0, 'standard', '6.1000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (270, 15, 5640, '237', 'Gebedol Tablet', '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', 0, 'standard', '11.1000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (269, 15, 5573, '170', 'Diclolex 100mg Tablets 10X10', '18.0000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', 0, 'standard', '18.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (268, 14, 5573, '170', 'Diclolex 100mg Tablets 10X10', '18.0000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', NULL, 'standard', '18.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (266, 14, 5640, '237', 'Gebedol Tablet', '11.1000', '11.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.3000', '', NULL, 'standard', '11.1000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (267, 14, 5847, '444', 'Redsun Jelly', '6.1000', '6.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.4000', '', NULL, 'standard', '6.1000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, 14, 6371, '968', 'P-trust Pregnancy Test Kit 25\'s', '27.5000', '27.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', NULL, 'standard', '27.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, 14, 6509, '1106', 'Gacet 1g Suppository', '13.2500', '13.2500', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', NULL, 'standard', '13.2500', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, 14, 5926, '523', 'Vermox 500mg Tablets', '10.9000', '10.9000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '43.6000', '', NULL, 'standard', '10.9000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, 14, 6074, '671', 'Lydia Postpill 1Tablet', '8.5000', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.5000', '', NULL, 'standard', '8.5000', 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, 14, 6323, '920', 'Polygynax Pessaries 6\'s', '39.0000', '39.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', NULL, 'standard', '39.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, 14, 6436, '1033', 'Genda Eye/Ear Drops (Gentamycin Sulphate 0.3%', '1.9500', '1.9500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', NULL, 'standard', '1.9500', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, 14, 6078, '675', 'Mr. Q', '42.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', NULL, 'standard', '42.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, 14, 5418, '15', 'Aboniki', '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', NULL, 'standard', '5.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, 14, 6007, '604', 'Penicillin V 125mg Letap', '11.3800', '11.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '56.9000', '', NULL, 'standard', '11.3800', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, 14, 6205, '802', 'Citro C Tablets 25\'s', '38.5000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '38.5000', '', NULL, 'standard', '38.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1022, 54, 6824, '1421', 'Cardiofin Tab 20mg 100\' (Nifedipine)', '18.4800', '18.4800', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.4400', '', 0, 'standard', '18.4800', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1023, 54, 6864, '98367406', 'Fiesta Condom Strawberry ', '4.0000', '4.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', 0, 'standard', '4.0000', 1, 'pc', '24.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1021, 54, 6765, '1362', 'Seven Seas Cod Liver Oil; Once A Day 60\' Caps ECL', '59.0000', '59.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '236.0000', '', 0, 'standard', '59.0000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1019, 54, 6712, '1309', 'Warfarin 5mg Tablets 28\'s', '7.8000', '7.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', 0, 'standard', '7.8000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1020, 54, 6722, '1319', 'Keppra 1000mg Tablets', '252.0000', '252.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '252.0000', '', 0, 'standard', '252.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1016, 54, 6702, '1299', 'Carvedilol 6.25mg Tablets 28\'s', '12.6000', '12.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', 0, 'standard', '12.6000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1018, 54, 6705, '1302', 'Sildenafil 100mg Tablets 8\'s', '15.8000', '15.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.0000', '', 0, 'standard', '15.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1017, 54, 6703, '1300', 'Carvedilol 12.5mg Tablets 28\'s', '16.3400', '16.3400', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '163.4000', '', 0, 'standard', '16.3400', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1014, 54, 6642, '1239', 'Metagyl Syrup (Metzol) Syrp 200mg/5ml 100ml', '5.9000', '5.9000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '88.5000', '', 0, 'standard', '5.9000', 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1015, 54, 6688, '1285', 'Travatan Eye Drops 2.5ml', '80.8000', '80.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '161.6000', '', 0, 'standard', '80.8000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1013, 54, 6545, '1142', 'Immunocin Capsules 30\'s', '43.8000', '43.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '131.4000', '', 0, 'standard', '43.8000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1011, 54, 6438, '1035', 'Cataflam 50mg Tablets 20\'s', '34.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', 0, 'standard', '34.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1012, 54, 6508, '1105', 'Alpha Garlic Capsules', '13.3000', '13.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.5000', '', 0, 'standard', '13.3000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1010, 54, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', '6.3800', '6.3800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '63.8000', '', 0, 'standard', '6.3800', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1009, 54, 6401, '998', 'Aciclovir 400mg Tablets 56\'s', '37.3200', '37.3200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.9600', '', 0, 'standard', '37.3200', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1008, 54, 6320, '917', 'Nifedi-Denk 20mg 100\'s', '63.2200', '63.2200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.4400', '', 0, 'standard', '63.2200', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1007, 54, 6268, '865', 'Sildenafil 50mg Tablets Teva 4s', '10.6000', '10.6000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', 0, 'standard', '10.6000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1006, 54, 6260, '857', 'Hydrogen Peroxide 200ml ECL', '5.7000', '5.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', 0, 'standard', '5.7000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1005, 54, 6254, '851', 'Extraflex Glucosamine Chondroitin Capsules 30s', '36.8000', '36.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.6000', '', 0, 'standard', '36.8000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1004, 54, 6202, '799', 'Starwin Milk of Magnesia 120ml', '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', 0, 'standard', '9.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 54, 6139, '736', 'Amino pep Syrup 200ml', '15.9500', '15.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.7500', '', 0, 'standard', '15.9500', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, 54, 6078, '675', 'Mr. Q', '42.0000', '42.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '210.0000', '', 0, 'standard', '42.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1002, 54, 6104, '701', 'Histergan Cream 25g', '30.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '150.0000', '', 0, 'standard', '30.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, 54, 6077, '674', 'Fiesta Condom All Night', '4.0000', '4.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', 0, 'standard', '4.0000', 1, 'pc', '24.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, 54, 6020, '617', 'ORS Plain 25\'s', '20.9000', '20.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '104.5000', '', 0, 'standard', '20.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (999, 54, 6024, '621', 'Vaginax Cream 30gm', '4.9900', '4.9900', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.9000', '', 0, 'standard', '4.9900', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (997, 54, 6000, '597', 'Vigorix Forte Syr 200ml', '11.1000', '11.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', 0, 'standard', '11.1000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (988, 54, 5419, '16', 'Acidom 20mg Capsules', '14.9000', '14.9000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.9000', '', 0, 'standard', '14.9000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (996, 54, 5963, '560', 'Zipman Capsules', '15.9500', '15.9500', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.7500', '', 0, 'standard', '15.9500', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (995, 54, 5814, '411', 'Panadol Advance 500mg 16\'s', '24.0900', '24.0900', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '289.0800', '', 0, 'standard', '24.0900', 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (994, 54, 5801, '398', 'O-Formin 500mg (Metformin)', '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', 0, 'standard', '6.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (993, 54, 5740, '337', 'Lufart DS Tablets', '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', 0, 'standard', '15.5000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (992, 54, 5711, '308', 'Lemsip Cold and flu Max 10\'s', '44.8000', '44.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '224.0000', '', 0, 'standard', '44.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, 54, 5657, '254', 'Haemoglobin B12 syrup 200ml (Letap)', '4.2000', '4.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', 0, 'standard', '4.2000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (990, 54, 5616, '213', 'Fisherman\'s Friend All Flavours 24\'s', '8.0000', '8.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '384.0000', '', 0, 'standard', '8.0000', 1, 'pc', '48.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (989, 54, 5541, '138', 'Combact N', '5.5000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', 0, 'standard', '5.5000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (745, 37, 5975, '572', 'Durol Tonic 200ml', '12.2100', '12.2100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '61.0500', '', 0, 'standard', '12.2100', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (746, 37, 5984, '581', 'Starwin Milk of Magnesia 360ml', '22.9100', '22.9100', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '114.5500', '', 0, 'standard', '22.9100', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (747, 37, 6095, '692', 'Cartef-DS Tablet', '8.3200', '8.3200', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '332.8000', '', 0, 'standard', '8.3200', 1, 'pc', '40.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (748, 37, 6105, '702', 'Kefrox 125mg/5ml suspension 70ml', '12.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', 0, 'standard', '12.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (681, 35, 5640, '237', 'Gebedol Tablet', '11.1000', '11.1000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.4000', '', NULL, 'standard', '11.1000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (682, 35, 5641, '238', 'Gebedol Extra', '31.1000', '31.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.1000', '', NULL, 'standard', '31.1000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (683, 35, 6386, '983', 'Paingay Capsules', '3.2000', '3.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', NULL, 'standard', '3.2000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (684, 35, 5967, '564', 'Zulu 100mg Tablet', '4.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', NULL, 'standard', '4.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (685, 35, 5926, '523', 'Vermox 500mg Tablets', '10.9000', '10.9000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.2000', '', NULL, 'standard', '10.9000', 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (686, 35, 5949, '546', 'Wormplex 400 Tablets', '7.3000', '7.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', NULL, 'standard', '7.3000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (687, 35, 6220, '817', 'Dynewell Syrup 200ml', '5.0000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (688, 35, 6408, '1005', 'E-Panol 100ml Syrup Plain', '6.0300', '6.0300', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.1200', '', NULL, 'standard', '6.0300', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (689, 35, 5689, '286', 'Joy Ointment', '3.3000', '3.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', NULL, 'standard', '3.3000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (690, 35, 5451, '48', 'Arfan 20/120mg', '5.8600', '5.8600', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '35.1600', '', NULL, 'standard', '5.8600', 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (691, 35, 5418, '15', 'Aboniki', '5.5000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', NULL, 'standard', '5.5000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1025, 54, 6538, '1135', 'Drez Solution 30ml', '10.3000', '10.3000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', NULL, 'standard', '10.3000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1024, 54, 5513, '110', 'Celebrex Celecoxib 200mg (pfizer)', '94.0200', '94.0200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '94.0200', '', NULL, 'standard', '94.0200', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (755, 37, 6677, '1274', 'Azirocin 250mg Capules', '10.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', 0, 'standard', '10.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (754, 37, 6668, '1265', 'Arziglobin Plus 200ml Syrup', '8.9000', '8.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '44.5000', '', 0, 'standard', '8.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (753, 37, 6528, '1125', 'Levon 2 Postpill CRD', '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', 0, 'standard', '5.9800', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (752, 37, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', '43.9000', '43.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '219.5000', '', 0, 'standard', '43.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (750, 37, 6293, '890', 'Enacef (Cefuroxime)125ml Suspension', '14.6000', '14.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '146.0000', '', 0, 'standard', '14.6000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (751, 37, 6328, '925', 'Gynomycolex 400mg Pessaries 3\'s', '26.9000', '26.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', 0, 'standard', '26.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (749, 37, 6202, '799', 'Starwin Milk of Magnesia 120ml', '9.5000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', 0, 'standard', '9.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (744, 37, 5969, '566', 'Teedar Syrup 125ml', '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', 0, 'standard', '10.7000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (742, 37, 5853, '450', 'Rooter Mixture', '10.5000', '10.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '126.0000', '', 0, 'standard', '10.5000', 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (743, 37, 5898, '495', 'Taabea Herbal Mixture', '13.2000', '13.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', 0, 'standard', '13.2000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (740, 37, 5740, '337', 'Lufart DS Tablets', '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', 0, 'standard', '15.5000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (741, 37, 5785, '382', 'Natrilix Sr 1.5mg Tablets 30\'s', '63.0000', '63.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '189.0000', '', 0, 'standard', '63.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (739, 37, 5452, '49', 'Arziglobin 200ml Syrup', '8.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', 0, 'standard', '8.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2588, 139, 6491, '1088', 'Co-Trimoxazole 80/400mg(Septrin)Tablets 100x10', '1.3000', '1.3000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', NULL, 'standard', '1.3000', 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2584, 138, 6320, '917', 'Nifedi-Denk 20mg 100\'s', '87.4100', '87.4100', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '174.8200', '', NULL, 'standard', '87.4100', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2585, 139, 6219, '816', 'Chloramphenicol 250mg Capsules Letap 50x10', '2.6900', '2.6900', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '134.5000', '', NULL, 'standard', '2.6900', 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2586, 139, 6007, '604', 'Penicillin V 125mg Letap', '1.5000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', NULL, 'standard', '1.5000', 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2583, 137, 6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', 0, 'standard', '7.9800', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2582, 137, 6389, '986', 'Salocold Syrup', '13.4000', '13.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', 0, 'standard', '13.4000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2581, 137, 6379, '976', 'Dexone 0.5mg', '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', 0, 'standard', '2.1000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2577, 137, 5828, '425', 'Polyfer Forte Syrup 150ML', '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', 0, 'standard', '12.3000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2578, 137, 5986, '583', 'Rapinol Tab 25X4\'s', '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', 0, 'standard', '15.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2562, 136, 6379, '976', 'Dexone 0.5mg', '2.1000', '2.1000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', NULL, 'standard', '2.1000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2561, 136, 5418, '15', 'Aboniki', '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', NULL, 'standard', '6.7600', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1309, 66, 6457, '1054', 'Naklofen Duo Capsules 75mg 20\'s', '43.9000', '43.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '87.8000', '', 0, 'standard', '43.9000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1310, 66, 6528, '1125', 'Levon 2 Postpill CRD', '5.9800', '5.9800', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', 0, 'standard', '5.9800', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1311, 66, 6609, '1206', 'Skyclav 228.5mg', '12.7000', '12.7000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.8000', '', 0, 'standard', '12.7000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1312, 66, 6896, '94310781', 'Fleming 457MG Suspension', '32.1000', '32.1000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '96.3000', '', 0, 'standard', '32.1000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2597, 139, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', '1.9000', '1.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', NULL, 'standard', '1.9000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2596, 139, 5828, '425', 'Polyfer Forte Syrup 150ML', '12.3000', '12.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.3000', '', NULL, 'standard', '12.3000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2595, 139, 6665, '1262', 'Plaster Strips Easy Care', '11.0000', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', NULL, 'standard', '11.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2594, 139, 5674, '271', 'Ibucap Capsules 10C (BamBam)', '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', NULL, 'standard', '2.1000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2593, 139, 5768, '365', 'Metronidazole 200mg Tablets 50X10 Letap', '28.8000', '28.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.8000', '', NULL, 'standard', '28.8000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2592, 139, 6517, '1114', 'Res-Q Antacid Suspension', '11.0000', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', NULL, 'standard', '11.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1308, 66, 6415, '1012', 'Nestrim 100ml Suspension Co-trimoxazole 240 mg 5 ml', '4.6200', '4.6200', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '13.8600', '', 0, 'standard', '4.6200', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1307, 66, 6366, '963', 'Flotac Capsules 75mg 20\'s', '85.7800', '85.7800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '85.7800', '', 0, 'standard', '85.7800', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1306, 66, 6301, '898', 'Comit-50', '10.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', 0, 'standard', '10.5000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1303, 66, 5532, '129', 'Coartem 80/480 6s', '60.7800', '60.7800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '121.5600', '', 0, 'standard', '60.7800', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1304, 66, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', '66.5300', '66.5300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.0600', '', 0, 'standard', '66.5300', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1305, 66, 6253, '850', 'Exforge 10/160mg Tablets 28s', '168.6000', '168.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '168.6000', '', 0, 'standard', '168.6000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1262, 64, 5979, '576', 'Menthox Adult Cough Syrup 125ml', '6.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', NULL, 'standard', '6.0000', 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1263, 64, 6764, '1361', 'Bells Normal Saline Drops 0.9ml', '6.3500', '6.3500', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '127.0000', '', NULL, 'standard', '6.3500', 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1261, 64, 6753, '1350', 'COA Mixture', '85.0000', '85.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '425.0000', '', NULL, 'standard', '85.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1260, 64, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', '18.0000', '18.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '432.0000', '', NULL, 'standard', '18.0000', 1, 'pc', '24.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2228, 115, 6215, '812', 'Amciclox 250mg Capsules 10x10 Letap', '36.9000', '36.9000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '73.8000', '', NULL, 'standard', '36.9000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2227, 115, 5986, '583', 'Rapinol Tab 25X4\'s', '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', NULL, 'standard', '15.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2226, 115, 6358, '955', 'Fenbase Extra', '3.4000', '3.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', NULL, 'standard', '3.4000', 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2225, 115, 5451, '48', 'Arfan 20/120mg', '7.3200', '7.3200', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '14.6400', '', NULL, 'standard', '7.3200', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2223, 115, 6374, '971', 'Amoxicillin 250mg (Letap)', '1.8000', '1.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', NULL, 'standard', '1.8000', 1, 'pc', '100.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2224, 115, 5640, '237', 'Gebedol Tablet', '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', NULL, 'standard', '12.3000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2219, 113, 6007, '604', 'Penicillin V 125mg Letap', '11.3800', '11.3800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.3800', '', NULL, 'standard', '11.3800', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2220, 113, 5906, '503', 'Tetracycline Capsules', '15.8200', '15.8200', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.1000', '', NULL, 'standard', '15.8200', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2218, 113, 6374, '971', 'Amoxicillin 250mg (Letap)', '1.8000', '1.8000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', NULL, 'standard', '1.8000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1733, 91, 6353, '950', 'Ronfit Forte Tablets', '3.7500', '3.7500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.7500', '', NULL, 'standard', '3.7500', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1732, 91, 5593, '190', 'Efpac Tablets', '38.5000', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', NULL, 'standard', '38.5000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1730, 91, 6691, '1288', 'Lonart 20/120mg Tablets 24\'s', '6.5000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', NULL, 'standard', '6.5000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1731, 91, 6316, '913', 'Tothema Box of 20 Bulbs', '74.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '148.0000', '', NULL, 'standard', '74.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1728, 91, 6112, '709', 'Metrolex F Tablets 21\'s', '14.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', NULL, 'standard', '14.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1729, 91, 6807, '1404', 'Folic Acid 5mg Crescent', '9.0000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', NULL, 'standard', '9.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1727, 91, 6528, '1125', 'Levon 2 Postpill CRD', '5.9800', '5.9800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '29.9000', '', NULL, 'standard', '5.9800', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1726, 91, 6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', '10.8000', '10.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', NULL, 'standard', '10.8000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1725, 91, 5827, '424', 'Polyfer Capsules 30\'s', '6.6000', '6.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '26.4000', '', NULL, 'standard', '6.6000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1724, 91, 6753, '1350', 'COA Mixture', '85.0000', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', NULL, 'standard', '85.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1721, 91, 6537, '1134', 'Enacin-C (Clindamycin) 300mg Caps 100\'', '93.6000', '93.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '93.6000', '', 0, 'standard', '93.6000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1722, 91, 6479, '1076', 'Dulcolax 10mg Suppositories 12\'s', '39.7000', '39.7000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4000', '', NULL, 'standard', '39.7000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1723, 91, 6394, '991', 'Mycostat 150mg Capsules 1\'s', '6.6000', '6.6000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', NULL, 'standard', '6.6000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2215, 113, 5677, '274', 'Imboost Herbal Mixture 500ml', '15.4000', '15.4000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.4000', '', NULL, 'standard', '15.4000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2216, 113, 6605, '1202', 'Maxmox 500mg (Amoxicillin) Eskay', '5.8000', '5.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '11.6000', '', NULL, 'standard', '5.8000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2217, 113, 6216, '813', 'Ampicillin 250mg Capsules 50x10 Letap', '1.9000', '1.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', NULL, 'standard', '1.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2213, 113, 5714, '311', 'Letamol Elixir 125ml', '3.3000', '3.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.3000', '', NULL, 'standard', '3.3000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2214, 113, 5713, '310', 'Letacam (Piroxicam)', '6.6500', '6.6500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6500', '', NULL, 'standard', '6.6500', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2212, 113, 6169, '766', 'Vitamin B-Complex S yrup 125ml M & G', '4.3000', '4.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.3000', '', NULL, 'standard', '4.3000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2210, 113, 6227, '824', 'Promecine Syrup 125ml', '2.8400', '2.8400', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '2.8400', '', NULL, 'standard', '2.8400', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2211, 113, 5582, '179', 'Domi 30mg Suppositories', '12.5000', '12.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', NULL, 'standard', '12.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2207, 113, 5654, '251', 'Gentian violet (GV PAINT)', '2.0000', '2.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', NULL, 'standard', '2.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2208, 113, 6141, '738', 'Gauze Bandage 6 Inches Xtra Care', '15.9500', '15.9500', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '15.9500', '', NULL, 'standard', '15.9500', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2209, 113, 6285, '882', 'Auntie Mary Gripewater 150ml', '10.9800', '10.9800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.9800', '', NULL, 'standard', '10.9800', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2205, 113, 6663, '1260', 'Cotton Wool 25gm', '2.5000', '2.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '2.5000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2206, 113, 5548, '145', 'Crepe Bandage 2Inches Xtra care', '2.9800', '2.9800', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.9600', '', NULL, 'standard', '2.9800', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2204, 113, 6463, '1060', 'Hydrogen Peroxide Mal-Titi', '4.5000', '4.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', NULL, 'standard', '4.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2202, 113, 5674, '271', 'Ibucap Capsules 10C (BamBam)', '2.1000', '2.1000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', NULL, 'standard', '2.1000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2201, 113, 6900, '47596555', 'Badruf Cream', '6.6000', '6.6000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', NULL, 'standard', '6.6000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2200, 113, 6348, '945', 'Loperon', '10.5000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', NULL, 'standard', '10.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2203, 113, 6621, '1218', 'Lumetrust Suspension 150ml', '9.5000', '9.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', NULL, 'standard', '9.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1944, 98, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', '18.0000', '18.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '900.0000', '', NULL, 'standard', '18.0000', 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1942, 96, 5640, '237', 'Gebedol Tablet', '12.3000', '12.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.6000', '', NULL, 'standard', '12.3000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1943, 97, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', '18.0000', '18.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '900.0000', '', NULL, 'standard', '18.0000', 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2580, 137, 6358, '955', 'Fenbase Extra', '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', 0, 'standard', '3.4000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2563, 136, 6389, '986', 'Salocold Syrup', '13.4000', '13.4000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '53.6000', '', NULL, 'standard', '13.4000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2560, 136, 6358, '955', 'Fenbase Extra', '3.4000', '3.4000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', NULL, 'standard', '3.4000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2559, 136, 6409, '1006', 'EPanol 100ml Syrup Strawberry Flav', '7.9800', '7.9800', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9200', '', NULL, 'standard', '7.9800', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2557, 136, 5677, '274', 'Imboost Herbal Mixture 500ml', '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', NULL, 'standard', '15.4000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2558, 136, 5828, '425', 'Polyfer Forte Syrup 150ML', '12.3000', '12.3000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '36.9000', '', NULL, 'standard', '12.3000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2488, 130, 5655, '252', 'Gvither Forte 80mg Injection 10\'s', '34.0000', '34.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', NULL, 'standard', '34.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2347, 123, 6158, '755', 'Ascoryl Plus syrup 125ml', '10.8000', '10.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', NULL, 'standard', '10.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2348, 123, 6286, '883', 'Kidivite Syrup 200ml', '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', NULL, 'standard', '11.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2349, 123, 6234, '831', 'Amoksiklav 625mg Tablet 14s', '40.3000', '40.3000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '282.1000', '', NULL, 'standard', '40.3000', 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2350, 123, 5858, '455', 'Seven Seas Cod Liver Oil 100ml ECL', '38.0000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', NULL, 'standard', '38.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2351, 123, 5439, '36', 'Amoksiklav 1g Tablet 10s', '58.4000', '58.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '292.0000', '', NULL, 'standard', '58.4000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2352, 123, 6453, '1050', 'Primolut N 5mg 30\'s', '60.8000', '60.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.8000', '', NULL, 'standard', '60.8000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2353, 123, 6744, '1341', 'Nexcofer Blood Tonic 200ml', '12.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', NULL, 'standard', '12.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2354, 123, 6879, '34265543', 'Zulu Extra ', '5.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2355, 123, 6860, '1457', 'Bestvit C (Vitamin C with Zinc)', '22.3000', '22.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.8000', '', NULL, 'standard', '22.3000', 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2356, 123, 6936, '65328927', 'Bestvit C (Vitamin C Effervescent)', '22.3000', '22.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '133.8000', '', NULL, 'standard', '22.3000', 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2357, 123, 5535, '132', 'Coldrilif Capsules 10X10', '3.9100', '3.9100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '39.1000', '', NULL, 'standard', '3.9100', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2358, 123, 5740, '337', 'Lufart DS Tablets', '15.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '155.0000', '', NULL, 'standard', '15.5000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2359, 123, 5731, '328', 'Lonart DS Tablets', '24.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', NULL, 'standard', '24.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2360, 123, 5830, '427', 'Pregnacare Plus', '143.3000', '143.3000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '286.6000', '', NULL, 'standard', '143.3000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2361, 123, 5959, '556', 'Zincovit Tablets', '29.8000', '29.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '149.0000', '', NULL, 'standard', '29.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2362, 123, 6095, '692', 'Cartef-DS Tablet', '9.2000', '9.2000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '92.0000', '', NULL, 'standard', '9.2000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2363, 123, 6213, '810', 'Hemoforce Plus Syrup 200ml', '9.3000', '9.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', NULL, 'standard', '9.3000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2364, 123, 6242, '839', 'Doreta 37.5/325mg Tablets 20s', '66.5300', '66.5300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '199.5900', '', NULL, 'standard', '66.5300', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2365, 123, 6250, '847', 'Paracetamol 500mg Tablets 16\'s uk', '5.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', NULL, 'standard', '5.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2366, 123, 6455, '1052', 'Paracetamol 500mg Tablets 100\'s EXE', '21.7000', '21.7000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '108.5000', '', NULL, 'standard', '21.7000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2367, 123, 6418, '1015', 'Cetrizan 10mg Tablets 20\'s', '6.3800', '6.3800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '31.9000', '', NULL, 'standard', '6.3800', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2368, 123, 6514, '1111', 'Salicylics Ointment 40g', '9.3100', '9.3100', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '55.8600', '', NULL, 'standard', '9.3100', 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2369, 123, 5969, '566', 'Teedar Syrup 125ml', '10.7000', '10.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', NULL, 'standard', '10.7000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2370, 123, 6285, '882', 'Auntie Mary Gripewater 150ml', '11.8000', '11.8000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', NULL, 'standard', '11.8000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2371, 123, 6082, '679', 'Coldrilif Syrup', '6.9000', '6.9000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', NULL, 'standard', '6.9000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2372, 123, 6581, '1178', 'Cirotamin Caplets 28\'s', '11.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '57.5000', '', NULL, 'standard', '11.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2373, 123, 6389, '986', 'Salocold Syrup', '9.7000', '9.7000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '97.0000', '', NULL, 'standard', '9.7000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2374, 123, 6812, '1409', 'Sudocrem 60g', '34.8000', '34.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '69.6000', '', NULL, 'standard', '34.8000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2375, 123, 6435, '1032', 'Coldiron Syrup 125ml', '9.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', NULL, 'standard', '9.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2376, 123, 6849, '1446', 'Kelcuf Junior Syrup 100ml', '6.5000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', NULL, 'standard', '6.5000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2377, 123, 6446, '1043', 'Dermiron Plus', '4.9000', '4.9000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '78.4000', '', NULL, 'standard', '4.9000', 1, 'pc', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2378, 123, 6929, '32027899', 'Gynicare', '52.0000', '52.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '260.0000', '', NULL, 'standard', '52.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2379, 123, 6930, '68829408', 'Pylin Capsules ', '44.0000', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '220.0000', '', NULL, 'standard', '44.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2380, 123, 6931, '90823267', 'Pylin Ointment ', '34.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', NULL, 'standard', '34.0000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2381, 123, 6893, '233', 'Impressor Capsules', '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', NULL, 'standard', '55.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2382, 123, 6928, '72296204', 'Impressor Oil', '55.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '165.0000', '', NULL, 'standard', '55.0000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2383, 123, 6260, '857', 'Hydrogen Peroxide 200ml ECL', '6.4000', '6.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', NULL, 'standard', '6.4000', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2384, 123, 5967, '564', 'Zulu 100mg Tablet', '4.9000', '4.9000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', NULL, 'standard', '4.9000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2579, 137, 6295, '892', 'Cyprodine 200ml Syrup', '59.8000', '59.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', 0, 'standard', '59.8000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2554, 136, 6295, '892', 'Cyprodine 200ml Syrup', '59.8000', '59.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '59.8000', '', NULL, 'standard', '59.8000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2555, 136, 5640, '237', 'Gebedol Tablet', '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', NULL, 'standard', '12.3000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2556, 136, 5986, '583', 'Rapinol Tab 25X4\'s', '15.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', NULL, 'standard', '15.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2489, 130, 5897, '494', 'Syringe and Needle 5ml Letaject', '23.0000', '23.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', NULL, 'standard', '23.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2486, 130, 6373, '970', 'Letamol Tablets 100\'s', '79.4200', '79.4200', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '79.4200', '', NULL, 'standard', '79.4200', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2487, 130, 6922, '60528151', 'Santriax 1000 (Ceftriaxone 1000mg Injection)', '8.2000', '8.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '8.2000', '', NULL, 'standard', '8.2000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2575, 137, 5640, '237', 'Gebedol Tablet', '12.3000', '12.3000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '49.2000', '', 0, 'standard', '12.3000', 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2576, 137, 5677, '274', 'Imboost Herbal Mixture 500ml', '15.4000', '15.4000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '46.2000', '', 0, 'standard', '15.4000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2574, 137, 5418, '15', 'Aboniki', '6.7600', '6.7600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '33.8000', '', 0, 'standard', '6.7600', 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_tax_rates
#

DROP TABLE IF EXISTS `sma_tax_rates`;

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

#
# TABLE STRUCTURE FOR: sma_transfer_items
#

DROP TABLE IF EXISTS `sma_transfer_items`;

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

#
# TABLE STRUCTURE FOR: sma_transfers
#

DROP TABLE IF EXISTS `sma_transfers`;

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

#
# TABLE STRUCTURE FOR: sma_units
#

DROP TABLE IF EXISTS `sma_units`;

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

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (1, 'pc', 'default', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_user_logins
#

DROP TABLE IF EXISTS `sma_user_logins`;

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

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1, 1, NULL, '154.160.22.26', 'owner', '2022-08-08 05:37:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (2, 2, NULL, '179.43.159.197', 'appiah', '2022-08-08 06:13:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (3, 1, NULL, '102.176.65.79', 'owner', '2022-08-08 22:34:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (4, 2, NULL, '154.160.22.81', 'appiah', '2022-08-10 08:47:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (5, 2, NULL, '154.160.20.132', 'appiah', '2022-08-10 18:25:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (6, 2, NULL, '102.176.65.47', 'appiah', '2022-08-11 07:41:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (7, 2, NULL, '102.176.65.143', 'appiah', '2022-08-11 14:37:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (8, 2, NULL, '102.176.65.83', 'appiah', '2022-08-11 15:53:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (9, 2, NULL, '102.176.65.255', 'appiah', '2022-08-12 04:32:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (10, 2, NULL, '102.176.65.255', 'appiah', '2022-08-12 04:43:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (11, 2, NULL, '102.176.65.35', 'appiah', '2022-08-12 06:48:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (12, 2, NULL, '102.176.65.9', 'appiah', '2022-08-12 11:19:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (13, 2, NULL, '102.176.65.195', 'appiah', '2022-08-12 17:24:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (14, 2, NULL, '102.176.65.120', 'appiah', '2022-08-12 20:50:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (15, 2, NULL, '102.176.65.80', 'appiah', '2022-08-13 03:56:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (16, 2, NULL, '102.176.65.225', 'appiah', '2022-08-13 11:18:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (17, 2, NULL, '102.176.65.58', 'appiah', '2022-08-13 11:41:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (18, 4, NULL, '102.176.65.90', 'Raabi', '2022-08-13 13:26:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (19, 2, NULL, '102.176.65.13', 'appiah', '2022-08-14 08:23:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (20, 2, NULL, '102.176.65.141', 'appiah', '2022-08-14 14:42:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (21, 2, NULL, '102.176.65.111', 'appiah', '2022-08-14 15:36:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (22, 2, NULL, '102.176.65.29', 'appiah', '2022-08-14 18:05:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (23, 2, NULL, '102.176.65.13', 'appiah', '2022-08-14 20:54:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (24, 2, NULL, '102.176.65.177', 'appiah', '2022-08-16 11:47:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (25, 2, NULL, '102.176.65.235', 'appiah', '2022-08-16 15:34:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (26, 2, NULL, '102.176.65.130', 'appiah', '2022-08-16 18:02:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (27, 2, NULL, '102.176.65.105', 'appiah', '2022-08-16 19:09:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (28, 2, NULL, '102.176.65.75', 'appiah', '2022-08-17 10:17:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (29, 2, NULL, '102.176.65.19', 'appiah', '2022-08-17 14:59:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (30, 2, NULL, '102.176.65.213', 'appiah', '2022-08-18 08:04:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (31, 2, NULL, '197.159.139.219', 'appiah', '2022-08-18 12:19:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (32, 2, NULL, '154.160.2.3', 'appiah', '2022-08-23 01:56:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (33, 2, NULL, '154.160.2.105', 'appiah', '2022-08-23 20:19:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (34, 2, NULL, '154.160.1.44', 'appiah', '2022-08-27 05:20:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (35, 2, NULL, '154.160.5.133', 'appiah', '2022-08-27 06:07:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (36, 2, NULL, '154.160.1.25', 'appiah', '2022-08-27 08:49:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (37, 2, NULL, '197.159.139.219', 'appiah', '2022-08-27 18:47:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (38, 2, NULL, '197.159.139.219', 'appiah', '2022-08-27 19:10:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (39, 2, NULL, '197.159.139.219', 'appiah', '2022-08-27 19:11:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (40, 2, NULL, '154.160.19.110', 'appiah', '2022-09-07 11:28:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (41, 2, NULL, '102.176.65.224', 'appiah', '2022-09-08 15:34:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (42, 2, NULL, '102.176.65.224', 'appiah', '2022-09-08 15:37:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (43, 5, NULL, '102.176.65.224', 'appiahs ', '2022-09-08 16:17:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (44, 2, NULL, '197.159.139.219', 'appiah', '2022-09-08 16:20:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (45, 2, NULL, '102.176.65.224', 'appiah', '2022-09-08 16:39:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (46, 2, NULL, '102.176.65.182', 'appiah', '2022-09-08 22:38:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (47, 2, NULL, '102.176.65.182', 'appiah', '2022-09-09 00:31:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (48, 2, NULL, '102.176.65.209', 'appiah', '2022-09-09 06:24:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (49, 2, NULL, '102.176.65.204', 'appiah', '2022-09-09 08:29:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (50, 2, NULL, '197.159.139.219', 'appiah', '2022-09-09 08:46:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (51, 2, NULL, '197.159.139.219', 'appiah', '2022-09-09 10:22:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (52, 2, NULL, '102.176.65.157', 'appiah', '2022-09-09 12:43:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (53, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-09 13:29:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (54, 2, NULL, '102.176.65.85', 'appiah', '2022-09-09 14:44:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (55, 2, NULL, '197.159.139.219', 'appiah', '2022-09-09 20:59:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (56, 2, NULL, '197.159.139.219', 'appiah', '2022-09-09 21:02:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (57, 2, NULL, '102.176.65.193', 'appiah', '2022-09-10 03:01:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (58, 2, NULL, '102.176.65.0', 'appiah', '2022-09-10 04:35:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (59, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-10 10:01:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (60, 2, NULL, '197.159.139.219', 'appiah', '2022-09-10 10:12:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (61, 2, NULL, '197.159.139.219', 'appiah', '2022-09-10 11:18:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (62, 2, NULL, '102.176.65.139', 'appiah', '2022-09-10 11:42:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (63, 2, NULL, '197.159.139.219', 'appiah', '2022-09-10 16:59:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (64, 2, NULL, '102.176.65.159', 'appiah', '2022-09-10 17:21:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (65, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-10 23:14:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (66, 2, NULL, '197.159.139.219', 'appiah', '2022-09-11 08:44:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (67, 2, NULL, '102.176.65.59', 'appiah', '2022-09-11 09:17:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (68, 2, NULL, '102.176.65.59', 'appiah', '2022-09-11 09:41:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (69, 2, NULL, '197.159.139.219', 'appiah', '2022-09-11 12:06:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (70, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-11 14:56:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (71, 2, NULL, '197.159.139.219', 'appiah', '2022-09-11 17:15:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (72, 6, NULL, '197.159.139.219', 'grace', '2022-09-11 20:43:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (73, 2, NULL, '197.159.139.219', 'appiah', '2022-09-11 22:11:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (74, 2, NULL, '102.176.65.135', 'appiah', '2022-09-12 05:12:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (75, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-12 08:42:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (76, 6, NULL, '197.159.139.219', 'grace', '2022-09-12 08:42:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (77, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-12 09:11:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (78, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-12 10:26:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (79, 2, NULL, '197.159.139.219', 'appiah', '2022-09-12 11:33:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (80, 7, NULL, '154.160.1.238', 'tabitha', '2022-09-12 15:47:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (81, 6, NULL, '154.160.22.87', 'grace ', '2022-09-12 16:15:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (82, 2, NULL, '197.159.139.219', 'appiah', '2022-09-12 18:07:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (83, 2, NULL, '102.176.65.56', 'appiah', '2022-09-12 19:24:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (84, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-12 20:37:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (85, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-12 22:00:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (86, 2, NULL, '102.176.65.170', 'appiah', '2022-09-13 06:47:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (87, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-13 07:36:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (88, 6, NULL, '197.159.139.219', 'grace', '2022-09-13 07:51:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (89, 2, NULL, '197.159.139.219', 'appiah', '2022-09-13 08:16:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (90, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-13 10:23:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (91, 2, NULL, '197.159.139.219', 'appiah', '2022-09-13 11:20:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (92, 2, NULL, '102.176.65.124', 'appiah', '2022-09-13 19:31:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (93, 2, NULL, '102.176.65.149', 'appiah', '2022-09-14 07:24:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (94, 2, NULL, '102.176.65.149', 'appiah', '2022-09-14 07:30:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (95, 6, NULL, '197.159.139.219', 'grace', '2022-09-14 07:35:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (96, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-14 07:53:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (97, 2, NULL, '197.159.139.219', 'appiah', '2022-09-14 09:06:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (98, 2, NULL, '102.176.65.66', 'appiah', '2022-09-14 10:33:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (99, 2, NULL, '102.176.65.39', 'appiah', '2022-09-14 10:52:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (100, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-14 12:12:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (101, 2, NULL, '197.159.139.219', 'appiah', '2022-09-14 16:18:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (102, 2, NULL, '51.161.130.110', 'appiah', '2022-09-14 17:41:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (103, 2, NULL, '102.176.65.110', 'appiah', '2022-09-14 20:09:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (104, 6, NULL, '197.159.139.219', 'grace', '2022-09-15 07:51:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (105, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-15 08:02:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (106, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-15 13:08:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (107, 2, NULL, '197.159.139.219', 'appiah', '2022-09-15 16:23:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (108, 6, NULL, '154.160.10.10', 'grace', '2022-09-15 20:31:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (109, 6, NULL, '197.159.139.219', 'grace', '2022-09-16 07:55:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (110, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-16 08:09:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (111, 2, NULL, '197.159.139.219', 'appiah', '2022-09-16 08:17:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (112, 2, NULL, '102.176.94.87', 'appiah', '2022-09-16 12:30:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (113, 7, NULL, '154.160.17.230', 'tabitha', '2022-09-16 13:21:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (114, 6, NULL, '154.160.25.61', 'grace', '2022-09-16 14:48:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (115, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-16 15:50:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (116, 2, NULL, '197.159.139.219', 'appiah', '2022-09-16 15:50:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (117, 6, NULL, '197.159.139.219', 'grace', '2022-09-16 16:09:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (118, 2, NULL, '102.176.94.86', 'appiah', '2022-09-16 18:29:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (119, 7, NULL, '154.160.22.15', 'tabitha', '2022-09-17 07:52:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (120, 6, NULL, '197.159.139.219', 'grace', '2022-09-17 08:18:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (121, 6, NULL, '197.159.139.219', 'grace', '2022-09-17 12:32:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (122, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-17 12:44:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (123, 2, NULL, '197.159.139.219', 'appiah', '2022-09-17 13:09:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (124, 5, NULL, '154.160.6.117', 'appiahs', '2022-09-17 18:05:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (125, 2, NULL, '102.176.65.43', 'appiah', '2022-09-17 18:25:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (126, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-17 22:40:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (127, 2, NULL, '197.159.139.219', 'appiah', '2022-09-18 09:02:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (128, 2, NULL, '102.176.65.146', 'appiah', '2022-09-18 12:08:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (129, 6, NULL, '154.160.7.227', 'grace ', '2022-09-18 15:10:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (130, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-18 18:49:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (131, 2, NULL, '197.159.139.219', 'appiah', '2022-09-18 19:01:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (132, 2, NULL, '197.159.139.219', 'appiah', '2022-09-19 06:08:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (133, 6, NULL, '197.159.139.219', 'grace', '2022-09-19 07:34:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (134, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-19 08:18:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (135, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-19 10:25:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (136, 2, NULL, '197.159.139.219', 'appiah', '2022-09-19 11:09:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (137, 2, NULL, '197.159.139.219', 'appiah', '2022-09-19 11:49:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (138, 2, NULL, '197.159.139.219', 'appiah', '2022-09-19 19:56:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (139, 6, NULL, '197.159.139.219', 'grace', '2022-09-20 07:17:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (140, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-20 07:48:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (141, 2, NULL, '102.176.65.9', 'appiah', '2022-09-20 08:14:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (142, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-20 11:38:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (143, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-20 11:58:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (144, 2, NULL, '197.159.139.219', 'appiah', '2022-09-20 14:07:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (145, 2, NULL, '197.159.139.219', 'appiah', '2022-09-20 17:32:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (146, 2, NULL, '197.159.139.219', 'appiah', '2022-09-20 20:03:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (147, 2, NULL, '197.159.139.219', 'appiah', '2022-09-20 20:23:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (148, 2, NULL, '102.176.65.106', 'appiah', '2022-09-20 22:46:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (149, 2, NULL, '102.176.65.200', 'appiah', '2022-09-21 00:44:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (150, 6, NULL, '197.159.139.219', 'grace', '2022-09-21 07:41:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (151, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-21 07:52:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (152, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-21 09:29:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (153, 2, NULL, '102.176.65.147', 'appiah', '2022-09-21 11:18:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (154, 2, NULL, '197.159.139.219', 'appiah', '2022-09-21 11:42:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (155, 2, NULL, '197.159.139.219', 'appiah', '2022-09-21 16:13:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (156, 2, NULL, '102.176.65.202', 'appiah', '2022-09-21 22:47:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (157, 2, NULL, '41.215.171.62', 'appiah', '2022-09-22 00:54:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (158, 2, NULL, '102.176.65.132', 'appiah', '2022-09-22 05:23:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (159, 2, NULL, '197.159.139.219', 'appiah', '2022-09-22 06:53:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (160, 6, NULL, '197.159.139.219', 'grace', '2022-09-22 07:36:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (161, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-22 08:03:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (162, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-22 09:42:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (163, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-22 10:09:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (164, 2, NULL, '197.159.139.219', 'appiah', '2022-09-22 10:51:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (165, 2, NULL, '197.159.139.219', 'appiah', '2022-09-22 11:48:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (166, 2, NULL, '197.159.139.219', 'appiah', '2022-09-22 12:28:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (167, 2, NULL, '102.176.65.130', 'appiah', '2022-09-22 12:46:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (168, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-22 15:10:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (169, 2, NULL, '197.159.139.219', 'appiah', '2022-09-22 15:40:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (170, 2, NULL, '41.66.234.22', 'appiah', '2022-09-22 17:35:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (171, 2, NULL, '102.176.65.37', 'appiah', '2022-09-23 03:16:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (172, 2, NULL, '102.176.65.37', 'appiah', '2022-09-23 03:36:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (173, 2, NULL, '102.176.65.37', 'appiah', '2022-09-23 04:11:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (174, 2, NULL, '102.176.65.37', 'appiah', '2022-09-23 05:31:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (175, 2, NULL, '41.215.173.102', 'appiah', '2022-09-23 06:37:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (176, 6, NULL, '197.159.139.219', 'grace', '2022-09-23 07:20:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (177, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-23 07:59:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (178, 2, NULL, '102.176.65.37', 'appiah', '2022-09-23 08:00:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (179, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-23 12:52:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (180, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-23 15:07:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (181, 2, NULL, '197.159.139.219', 'appiah', '2022-09-23 15:52:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (182, 6, NULL, '154.160.11.109', 'grace', '2022-09-23 17:41:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (183, 2, NULL, '102.176.65.254', 'appiah', '2022-09-23 20:49:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (184, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-24 07:51:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (185, 6, NULL, '197.159.139.219', 'grace', '2022-09-24 08:37:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (186, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-24 10:24:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (187, 2, NULL, '197.159.139.219', 'appiah', '2022-09-24 15:51:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (188, 2, NULL, '102.176.94.236', 'appiah', '2022-09-24 17:07:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (189, 6, NULL, '154.160.10.222', 'grace', '2022-09-24 17:43:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (190, 2, NULL, '197.159.139.219', 'appiah', '2022-09-25 08:03:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (191, 6, NULL, '154.160.10.222', 'grace', '2022-09-26 00:36:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (192, 6, NULL, '197.159.139.219', 'grace', '2022-09-26 07:32:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (193, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-26 07:45:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (194, 2, NULL, '154.160.6.26', 'appiah', '2022-09-26 09:59:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (195, 2, NULL, '197.159.139.219', 'appiah', '2022-09-26 11:11:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (196, 2, NULL, '197.159.139.219', 'appiah', '2022-09-26 13:47:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (197, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-26 14:18:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (198, 6, NULL, '197.159.139.219', 'grace', '2022-09-27 07:47:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (199, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-27 07:55:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (200, 2, NULL, '197.159.139.219', 'appiah', '2022-09-27 09:43:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (201, 2, NULL, '197.159.139.219', 'appiah', '2022-09-27 11:59:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (202, 2, NULL, '197.159.139.219', 'appiah', '2022-09-27 14:24:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (203, 2, NULL, '197.159.139.219', 'appiah', '2022-09-27 16:50:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (204, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-27 17:04:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (205, 5, NULL, '154.160.3.241', 'appiahs', '2022-09-27 18:30:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (206, 6, NULL, '197.159.139.219', 'grace', '2022-09-28 07:58:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (207, 7, NULL, '197.159.139.219', 'tabitha', '2022-09-28 08:10:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (208, 2, NULL, '102.176.65.242', 'appiah', '2022-09-28 09:34:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (209, 2, NULL, '102.176.94.146', 'appiah', '2022-09-28 12:32:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (210, 2, NULL, '102.176.94.240', 'appiah', '2022-09-28 17:02:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (211, 2, NULL, '102.176.65.220', 'appiah', '2022-09-28 20:16:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (212, 2, NULL, '102.176.65.37', 'appiah', '2022-09-29 06:10:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (213, 6, NULL, '197.159.139.219', 'grace', '2022-09-29 07:38:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (214, 6, NULL, '197.159.139.219', 'grace', '2022-09-29 09:05:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (215, 5, NULL, '197.159.139.219', 'appiahs', '2022-09-29 10:21:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (216, 2, NULL, '197.159.139.219', 'appiah', '2022-09-29 11:50:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (217, 6, NULL, '197.159.139.219', 'grace', '2022-09-29 12:57:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (218, 2, NULL, '197.159.139.219', 'appiah', '2022-09-29 13:38:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (219, 6, NULL, '197.159.139.219', 'grace', '2022-09-30 07:48:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (220, 6, NULL, '197.159.139.219', 'grace', '2022-09-30 10:57:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (221, 2, NULL, '102.176.94.22', 'appiah', '2022-09-30 12:10:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (222, 2, NULL, '197.159.139.219', 'appiah', '2022-09-30 13:27:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (223, 2, NULL, '197.159.139.219', 'appiah', '2022-09-30 15:54:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (224, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-01 08:06:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (225, 6, NULL, '197.159.139.219', 'grace', '2022-10-01 08:19:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (226, 2, NULL, '154.114.252.60', 'appiah', '2022-10-01 08:42:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (227, 2, NULL, '154.114.252.60', 'appiah', '2022-10-01 08:51:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (228, 2, NULL, '197.159.139.219', 'appiah', '2022-10-01 14:23:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (229, 7, NULL, '154.160.10.141', 'tabitha ', '2022-10-01 16:55:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (230, 5, NULL, '197.159.139.219', 'appiahs', '2022-10-02 18:31:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (231, 2, NULL, '102.176.65.170', 'appiah', '2022-10-03 05:20:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (232, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-03 07:51:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (233, 6, NULL, '197.159.139.219', 'grace', '2022-10-03 08:40:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (234, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-03 10:07:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (235, 2, NULL, '102.176.66.254', 'appiah', '2022-10-03 12:34:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (236, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-03 14:17:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (237, 6, NULL, '197.159.139.219', 'grace', '2022-10-03 15:39:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (238, 6, NULL, '197.159.139.219', 'grace', '2022-10-03 15:43:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (239, 2, NULL, '102.176.65.194', 'appiah', '2022-10-03 16:12:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (240, 2, NULL, '102.176.65.208', 'appiah', '2022-10-03 21:23:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (241, 6, NULL, '197.159.139.219', 'grace', '2022-10-04 07:48:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (242, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-04 07:58:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (243, 6, NULL, '154.160.11.171', 'grace', '2022-10-04 08:31:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (244, 2, NULL, '197.159.139.219', 'appiah', '2022-10-04 08:33:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (245, 2, NULL, '102.176.65.223', 'appiah', '2022-10-04 08:41:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (246, 6, NULL, '154.160.7.151', 'grace', '2022-10-04 10:35:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (247, 5, NULL, '197.159.139.219', 'appiahs', '2022-10-04 14:17:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (248, 2, NULL, '102.176.65.153', 'appiah', '2022-10-04 16:12:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (249, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-04 17:03:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (250, 6, NULL, '102.176.65.134', 'grace', '2022-10-04 23:17:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (251, 6, NULL, '197.159.139.219', 'grace', '2022-10-05 07:46:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (252, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-05 07:57:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (253, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-05 08:47:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (254, 6, NULL, '102.176.65.185', 'grace', '2022-10-05 08:52:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (255, 2, NULL, '102.176.94.161', 'appiah', '2022-10-05 10:13:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (256, 6, NULL, '197.159.139.219', 'grace', '2022-10-06 07:32:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (257, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-06 07:49:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (258, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-06 09:22:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (259, 2, NULL, '197.159.139.219', 'appiah', '2022-10-06 11:57:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (260, 2, NULL, '102.176.65.19', 'appiah', '2022-10-06 15:24:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (261, 7, NULL, '154.160.21.74', 'tabitha', '2022-10-06 15:39:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (262, 6, NULL, '102.176.65.164', 'grace', '2022-10-06 15:51:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (263, 2, NULL, '197.159.139.219', 'appiah', '2022-10-06 15:56:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (264, 5, NULL, '197.159.139.219', 'appiahs', '2022-10-06 23:28:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (265, 6, NULL, '197.159.139.219', 'grace', '2022-10-07 07:35:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (266, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-07 08:03:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (267, 6, NULL, '154.160.27.203', 'grace', '2022-10-07 08:52:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (268, 2, NULL, '197.159.139.219', 'appiah', '2022-10-07 08:57:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (269, 6, NULL, '102.176.65.117', 'grace', '2022-10-07 09:32:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (270, 7, NULL, '102.176.65.117', 'tabitha', '2022-10-07 09:41:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (271, 2, NULL, '197.159.139.219', 'appiah', '2022-10-07 12:47:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (272, 6, NULL, '102.176.65.251', 'grace', '2022-10-07 20:17:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (273, 6, NULL, '197.159.139.219', 'grace', '2022-10-08 07:48:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (274, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-08 08:06:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (275, 7, NULL, '197.159.139.219', 'tabitha', '2022-10-08 08:14:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (276, 6, NULL, '102.176.65.33', 'grace', '2022-10-08 08:26:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (277, 6, NULL, '102.176.65.33', 'grace', '2022-10-08 10:41:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (278, 2, NULL, '102.176.94.68', 'appiah', '2022-10-08 10:57:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (279, 2, NULL, '102.176.94.98', 'appiah', '2022-10-08 15:33:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (280, 2, NULL, '102.176.65.190', 'appiah', '2022-10-09 01:26:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (281, 2, NULL, '197.159.139.219', 'appiah', '2022-10-09 08:17:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (282, 6, NULL, '102.176.65.72', 'grace', '2022-10-10 07:58:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (283, 6, NULL, '102.176.65.72', 'grace', '2022-10-10 09:18:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (284, 6, NULL, '154.160.23.74', 'grace', '2022-10-10 11:30:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (285, 6, NULL, '102.176.65.197', 'grace', '2022-10-11 07:23:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (286, 6, NULL, '102.176.65.197', 'grace', '2022-10-11 07:26:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (287, 2, NULL, '197.159.139.219', 'appiah', '2022-10-11 15:03:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (288, 2, NULL, '197.159.139.219', 'appiah', '2022-10-11 16:26:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (289, 2, NULL, '102.176.65.5', 'appiah', '2022-10-11 17:36:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (290, 6, NULL, '197.159.139.219', 'grace', '2022-10-12 07:50:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (291, 6, NULL, '197.159.139.219', 'grace', '2022-10-12 08:31:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (292, 5, NULL, '197.159.139.219', 'appiahs', '2022-10-12 09:26:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (293, 2, NULL, '197.159.139.219', 'appiah', '2022-10-12 10:31:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (294, 2, NULL, '197.159.139.219', 'appiah', '2022-10-12 11:03:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (295, 2, NULL, '197.159.139.219', 'appiah', '2022-10-12 11:37:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (296, 2, NULL, '197.159.139.219', 'appiah', '2022-10-12 15:15:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (297, 6, NULL, '102.176.65.216', 'grace', '2022-10-12 17:36:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (298, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-12 18:12:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (299, 6, NULL, '102.176.65.4', 'grace', '2022-10-12 20:18:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (300, 6, NULL, '197.159.139.219', 'grace', '2022-10-13 07:45:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (301, 6, NULL, '197.159.139.219', 'grace', '2022-10-13 07:56:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (302, 6, NULL, '197.159.139.219', 'grace', '2022-10-13 07:59:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (303, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-13 10:34:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (304, 5, NULL, '102.176.94.173', 'kojoappiah', '2022-10-13 13:59:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (305, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-13 19:37:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (306, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-13 21:47:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (307, 6, NULL, '197.159.139.219', 'grace', '2022-10-14 07:41:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (308, 6, NULL, '197.159.139.219', 'grace', '2022-10-14 07:41:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (309, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-14 16:07:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (310, 6, NULL, '197.159.139.219', 'grace', '2022-10-15 07:10:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (311, 6, NULL, '197.159.139.219', 'grace', '2022-10-15 07:11:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (312, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-15 13:39:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (313, 6, NULL, '154.160.6.119', 'grace', '2022-10-15 14:14:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (314, 2, NULL, '102.176.94.196', 'appiah', '2022-10-15 16:14:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (315, 6, NULL, '154.160.5.49', 'grace', '2022-10-16 18:46:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (316, 6, NULL, '197.159.139.219', 'grace', '2022-10-17 08:07:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (317, 6, NULL, '197.159.139.219', 'grace', '2022-10-17 08:52:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (318, 6, NULL, '197.159.139.219', 'grace', '2022-10-17 10:59:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (319, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-17 11:23:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (320, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-17 13:54:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (321, 5, NULL, '102.176.94.106', 'kojoappiah', '2022-10-17 20:13:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (322, 6, NULL, '197.159.139.219', 'grace', '2022-10-18 07:36:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (323, 6, NULL, '197.159.139.219', 'grace', '2022-10-18 07:40:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (324, 5, NULL, '102.176.94.212', 'kojoappiah', '2022-10-18 14:57:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (325, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-18 15:08:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (326, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-18 17:03:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (327, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-18 17:18:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (328, 6, NULL, '154.160.25.36', 'grace ', '2022-10-19 04:00:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (329, 2, NULL, '197.159.139.219', 'appiah', '2022-10-19 06:26:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (330, 2, NULL, '197.159.139.219', 'appiah', '2022-10-19 06:37:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (331, 6, NULL, '154.160.19.173', 'grace', '2022-10-19 07:25:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (332, 6, NULL, '197.159.139.219', 'grace', '2022-10-19 07:37:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (333, 6, NULL, '197.159.139.219', 'grace', '2022-10-19 07:40:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (334, 2, NULL, '154.160.11.184', 'appiah', '2022-10-19 09:37:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (335, 2, NULL, '154.160.4.141', 'appiah', '2022-10-19 11:52:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (336, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-19 13:36:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (337, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-19 18:38:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (338, 6, NULL, '154.160.3.227', 'grace', '2022-10-19 20:59:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (339, 6, NULL, '102.176.65.140', 'grace', '2022-10-20 08:28:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (340, 6, NULL, '154.160.16.115', 'grace', '2022-10-20 08:40:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (341, 6, NULL, '197.159.139.219', 'grace', '2022-10-20 09:24:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (342, 6, NULL, '197.159.139.219', 'grace', '2022-10-20 09:30:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (343, 2, NULL, '154.160.0.98', 'appiah', '2022-10-20 10:18:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (344, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-20 10:20:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (345, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-20 14:14:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (346, 6, NULL, '154.160.26.52', 'grace', '2022-10-20 14:34:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (347, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-20 17:11:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (348, 6, NULL, '154.160.26.52', 'grace', '2022-10-20 17:16:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (349, 2, NULL, '197.159.139.219', 'appiah', '2022-10-21 00:34:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (350, 6, NULL, '197.159.139.219', 'grace', '2022-10-21 07:53:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (351, 6, NULL, '197.159.139.219', 'grace', '2022-10-21 08:04:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (352, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-21 13:53:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (353, 6, NULL, '154.160.9.251', 'grace ', '2022-10-21 18:23:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (354, 6, NULL, '197.159.139.219', 'grace', '2022-10-22 07:29:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (355, 6, NULL, '197.159.139.219', 'grace', '2022-10-22 07:32:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (356, 2, NULL, '154.160.16.76', 'appiah', '2022-10-22 09:53:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (357, 5, NULL, '154.160.11.203', 'kojoappiah', '2022-10-22 14:26:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (358, 2, NULL, '154.160.21.76', 'appiah', '2022-10-22 16:49:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (359, 6, NULL, '197.159.139.219', 'grace', '2022-10-24 07:32:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (360, 6, NULL, '197.159.139.219', 'grace', '2022-10-24 07:33:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (361, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-24 10:24:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (362, 6, NULL, '197.159.139.219', 'grace', '2022-10-24 15:34:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (363, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-24 16:25:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (364, 6, NULL, '197.159.139.219', 'grace', '2022-10-25 06:44:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (365, 6, NULL, '197.159.139.219', 'grace', '2022-10-25 07:29:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (366, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-25 12:40:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (367, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-25 14:54:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (368, 6, NULL, '154.160.20.177', 'grace', '2022-10-25 15:37:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (369, 5, NULL, '154.160.7.136', 'kojoappiah', '2022-10-25 16:17:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (370, 6, NULL, '197.159.139.219', 'grace', '2022-10-26 07:09:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (371, 6, NULL, '197.159.139.219', 'grace', '2022-10-26 07:29:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (372, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-26 12:46:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (373, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-26 14:19:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (374, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-26 17:20:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (375, 6, NULL, '154.160.19.108', 'grace', '2022-10-27 05:24:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (376, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-27 07:47:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (377, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-27 09:55:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (378, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-27 10:02:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (379, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-27 10:05:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (380, 10, NULL, '197.159.139.219', 'nanayaa', '2022-10-27 10:11:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (381, 10, NULL, '197.159.139.219', 'nanayaa', '2022-10-27 10:21:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (382, 10, NULL, '197.159.139.219', 'nanayaa', '2022-10-27 10:37:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (383, 10, NULL, '154.160.18.105', 'nanayaa', '2022-10-27 15:03:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (384, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-27 18:55:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (385, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-27 19:49:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (386, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-27 22:59:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (387, 6, NULL, '197.159.139.219', 'grace', '2022-10-28 08:12:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (388, 10, NULL, '197.159.139.219', 'nanayaa', '2022-10-28 08:12:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (389, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-28 11:15:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (390, 2, NULL, '154.160.6.9', 'appiah', '2022-10-28 11:19:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (391, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-28 13:32:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (392, 2, NULL, '154.160.16.12', 'appiah', '2022-10-29 05:41:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (393, 9, NULL, '197.159.139.219', 'stellappiah', '2022-10-29 07:11:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (394, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-29 07:30:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (395, 6, NULL, '197.159.139.219', 'grace', '2022-10-29 07:42:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (396, 10, NULL, '197.159.139.219', 'nanayaa', '2022-10-29 08:06:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (397, 5, NULL, '197.159.139.219', 'kojoappiah', '2022-10-29 13:40:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (398, 2, NULL, '154.160.3.176', 'appiah', '2022-10-29 14:52:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (399, 2, NULL, '154.160.2.124', 'appiah', '2022-10-29 17:17:55');


#
# TABLE STRUCTURE FOR: sma_users
#

DROP TABLE IF EXISTS `sma_users`;

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

INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (10, '197.159.139.219', '197.159.139.219', 'nanayaa', '6ba7c7c24f13e6cce8f67968c2121b423e839417', NULL, 'nanayaa@fmmsgh.com', NULL, NULL, NULL, NULL, 1666162680, 1667030799, 1, 'Nana Yaa', 'Agyemaa', 'FMMS Pharmacy  Co. Ltd', '+233247770207', NULL, 'female', 8, 1, 3, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (8, NULL, '197.159.139.219', 'sumaila', 'f3392a9b827405b813b5ea81a377ecd33f110656', NULL, 'sumnda7@gmail.com', NULL, NULL, NULL, NULL, 1663766045, 1663766045, 1, 'Sumaila', 'Ndebugri', 'FMMS', '0240987635', NULL, 'male', 7, 1, 3, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (2, '154.160.2.124', '154.160.22.26', 'appiah', '0510c5574ff1a0dc53ebd7cbe87cce66bdbcc71d', NULL, 'manager@fmmsgh.com', NULL, NULL, NULL, NULL, 1659938478, 1667063875, 1, 'fmms', 'fmms', 'Fmms Pharmacy wholesale Madina Market', ' +2330244282043', NULL, 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (3, NULL, '102.176.65.35', 'eben1xx', '56d260922615bdbafa63a6ca56588eb19d04fde5', NULL, 'eben1xx@gmail.com', 'f8ffb864b5244d13d8db086423b862bfc958ca50', NULL, NULL, NULL, 1660287207, 1660287207, 0, 'Ebenezer', 'Abakah', 'Sims Soft', '+233243835463', NULL, 'male', 3, NULL, NULL, 4, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (4, '102.176.65.90', '102.176.65.90', 'raabi', '096711664d11809aed84a0169d92359b8cc2273c', NULL, 'raabi@fmms.com', NULL, NULL, NULL, NULL, 1660396998, 1660397174, 1, 'Raabi', 'rabi', 'fmms', '020202020', NULL, 'female', 8, 1, 3, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (5, '197.159.139.219', '102.176.65.224', 'kojoappiah', 'b0c1b7669fbd2346d98a39b193d777b5cd82f6dd', NULL, 'kojoappiah@fmmsgh.com', NULL, NULL, NULL, NULL, 1662653771, 1667050858, 1, 'kojoappiah', 'hon', 'FMMS Co. Ltd', '+233282043', NULL, 'male', 1, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (6, '197.159.139.219', '197.159.139.219', 'grace', '53933c2e1f9545e651951c57dcb5d439cd2494eb', NULL, 'grace@fmmsgh.com', NULL, NULL, NULL, '8e89d75f213a4b61fa7e5b3aaf9c3768ad90bec0', 1662928668, 1667029346, 1, 'Grace', 'Bosompem', 'fmms madina wholesale', '0243338735', NULL, 'female', 2, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (7, '197.159.139.219', '197.159.139.219', 'tabitha', 'a1f5428d92455339ad52abf17dbfeca35a83ed3a', NULL, 'tabitha@fmmsgh.com', '8bd9bbce37b9d4fdec947fdd266e3227d91ab80a', NULL, NULL, NULL, 1662928830, 1665216861, 0, 'Tabitha', 'Mensah', 'fmms madina wholesale', '0550605133', NULL, 'female', 8, 1, 3, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (9, '197.159.139.219', '197.159.139.219', 'stellappiah', 'd86e5b193683cc02856a6b1561dcd414b046d1d1', NULL, 'stellappiah@fmmsgh.com', NULL, NULL, NULL, NULL, 1665588276, 1667027471, 1, 'Stella', 'Appia-Kubi', 'FMMS Co. Ltd', '+233244385405', NULL, 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 0, 0);


#
# TABLE STRUCTURE FOR: sma_variants
#

DROP TABLE IF EXISTS `sma_variants`;

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

#
# TABLE STRUCTURE FOR: sma_warehouses
#

DROP TABLE IF EXISTS `sma_warehouses`;

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

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, 'WHI', 'Madina Market', '<p>Madina</p>', NULL, '', '', 0);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (3, 'FMMSWH1', 'Top Warehouse', '<p>To Receive goods only</p>', NULL, '', '', 1);


#
# TABLE STRUCTURE FOR: sma_warehouses_products
#

DROP TABLE IF EXISTS `sma_warehouses_products`;

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

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4707, 6328, 1, '33.0000', NULL, '24.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4708, 6329, 1, '1.0000', NULL, '16.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4709, 6330, 1, '17.0000', NULL, '67.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4710, 6331, 1, '159.0000', NULL, '1.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4711, 6332, 1, '14.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4712, 6333, 1, '69.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4713, 6334, 1, '0.0000', NULL, '14.5422');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4714, 6335, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4715, 6336, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4716, 6337, 1, '55.0000', NULL, '49.5359');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4717, 6338, 1, '44.0000', NULL, '79.7291');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4718, 6339, 1, '39.0000', NULL, '70.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4719, 6340, 1, '0.0000', NULL, '60.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4720, 6341, 1, '80.0000', NULL, '65.7923');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4721, 6342, 1, '8.0000', NULL, '58.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4722, 6343, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4723, 6344, 1, '11.0000', NULL, '257.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4724, 6345, 1, '40.0000', NULL, '3.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4725, 6346, 1, '220.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4726, 6347, 1, '34.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4727, 6348, 1, '19.0000', NULL, '64.8559');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4728, 6349, 1, '16.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4729, 6350, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4730, 6351, 1, '28.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4731, 6352, 1, '75.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4732, 6353, 1, '2.0000', NULL, '3.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4733, 6354, 1, '975.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4734, 6355, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4735, 6356, 1, '-21.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4736, 6357, 1, '53.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4737, 6358, 1, '3936.0000', NULL, '3.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4738, 6359, 1, '100.0000', NULL, '1.7604');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4739, 6360, 1, '365.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4740, 6361, 1, '4281.0000', NULL, '49.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4741, 6362, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4742, 6363, 1, '130.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4743, 6364, 1, '23.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4744, 6365, 1, '116.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4745, 6366, 1, '3.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4746, 6367, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4747, 6368, 1, '-18.0000', NULL, '12.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4748, 6369, 1, '28.0000', NULL, '11.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4749, 6370, 1, '0.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4750, 6371, 1, '21.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4751, 6372, 1, '18.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4752, 6373, 1, '78.0000', NULL, '72.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4753, 6374, 1, '3492.0000', NULL, '1.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4754, 6375, 1, '174.0000', NULL, '3.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4755, 6376, 1, '1963.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4756, 6377, 1, '12.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4757, 6378, 1, '162.0000', NULL, '26.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4758, 6379, 1, '63.0000', NULL, '8.7056');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4759, 6380, 1, '42.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4760, 6381, 1, '586.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4761, 6382, 1, '150.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4762, 6383, 1, '90.0000', NULL, '8.7203');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4763, 6384, 1, '80.0000', NULL, '9.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4764, 6385, 1, '97.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4765, 6386, 1, '2093.0000', NULL, '3.5873');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4766, 6387, 1, '185.0000', NULL, '7.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4767, 6388, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4768, 6389, 1, '288.0000', NULL, '8.7525');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4769, 6390, 1, '-3.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4770, 6391, 1, '9.0000', NULL, '3.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4771, 6392, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4772, 6393, 1, '29.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4773, 6394, 1, '169.0000', NULL, '5.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4774, 6395, 1, '0.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4775, 6396, 1, '42.0000', NULL, '14.4657');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4776, 6397, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4777, 6398, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4778, 6399, 1, '209.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4779, 6400, 1, '25.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4780, 6401, 1, '0.0000', NULL, '37.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4781, 6402, 1, '6.0000', NULL, '18.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4782, 6403, 1, '49.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4783, 6404, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4784, 6405, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4785, 6406, 1, '2.0000', NULL, '26.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4786, 6407, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4787, 6408, 1, '69.0000', NULL, '4.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4788, 6409, 1, '87.0000', NULL, '4.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4789, 6410, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4790, 6411, 1, '61.0000', NULL, '17.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4791, 6412, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4792, 6413, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4793, 6414, 1, '23.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4794, 6415, 1, '201.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4795, 6416, 1, '60.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4796, 6417, 1, '35.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4797, 6418, 1, '705.0000', NULL, '6.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4798, 6419, 1, '227.0000', NULL, '4.1457');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4799, 6420, 1, '47.0000', NULL, '15.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4800, 6421, 1, '53.0000', NULL, '15.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4801, 6422, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4802, 6423, 1, '55.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4803, 6424, 1, '35.0000', NULL, '7.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4804, 6425, 1, '48.0000', NULL, '7.8667');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4805, 6426, 1, '5.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4806, 6427, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4807, 6428, 1, '29.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4808, 6429, 1, '4.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4809, 6430, 1, '345.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4810, 6431, 1, '261.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4811, 6432, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4812, 6433, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4813, 6434, 1, '99.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4814, 6435, 1, '54.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4815, 6436, 1, '100.0000', NULL, '3.5319');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4816, 6437, 1, '6.0000', NULL, '18.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4817, 6438, 1, '36.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4818, 6439, 1, '0.0000', NULL, '10.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4819, 6440, 1, '14.0000', NULL, '88.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4820, 6441, 1, '7.0000', NULL, '207.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4821, 6442, 1, '3.0000', NULL, '75.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4822, 6443, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4823, 6444, 1, '5.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4824, 6445, 1, '149.0000', NULL, '21.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4825, 6446, 1, '53.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4826, 6447, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4827, 6448, 1, '59.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4828, 6449, 1, '19.0000', NULL, '25.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4829, 6450, 1, '22.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4830, 6451, 1, '4.0000', NULL, '53.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4831, 6452, 1, '4.0000', NULL, '115.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4832, 6453, 1, '0.0000', NULL, '50.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4833, 6454, 1, '104.0000', NULL, '1.9038');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4834, 6455, 1, '100.0000', NULL, '19.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4835, 6456, 1, '19.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4836, 6457, 1, '59.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4837, 6458, 1, '89.0000', NULL, '22.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4838, 6459, 1, '26.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4839, 6460, 1, '50.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4840, 6461, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4841, 6462, 1, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4842, 6463, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4843, 6464, 1, '7.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4844, 6465, 1, '13.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4845, 6466, 1, '20.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4846, 6467, 1, '46.0000', NULL, '44.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4847, 6468, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4848, 6469, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4849, 6470, 1, '20.0000', NULL, '38.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4850, 6471, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4851, 6472, 1, '13.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4852, 6473, 1, '0.0000', NULL, '54.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4853, 6474, 1, '84.0000', NULL, '71.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4854, 6475, 1, '4.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4855, 6476, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4856, 6477, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4857, 6478, 1, '59.0000', NULL, '7.8980');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4858, 6479, 1, '32.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4859, 6480, 1, '2.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4860, 6481, 1, '0.0000', NULL, '23.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4861, 6482, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4862, 6483, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4863, 6484, 1, '8.0000', NULL, '59.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4864, 6485, 1, '13.0000', NULL, '109.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4865, 6486, 1, '54.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4866, 6487, 1, '100.0000', NULL, '21.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4867, 6488, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4868, 6489, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4869, 6490, 1, '49.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4870, 6491, 1, '3370.0000', NULL, '1.8260');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4871, 6492, 1, '0.0000', NULL, '39.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4872, 6493, 1, '10.0000', NULL, '38.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4873, 6494, 1, '6.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4874, 6495, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4875, 6496, 1, '80.0000', NULL, '5.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4876, 6497, 1, '10.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4877, 6498, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4878, 6499, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4879, 6500, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4880, 6501, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4881, 6502, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4882, 6503, 1, '1.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4883, 6504, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4884, 6505, 1, '92.0000', NULL, '30.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4885, 6506, 1, '11.0000', NULL, '3.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4886, 6507, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4887, 6508, 1, '0.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4888, 6509, 1, '130.0000', NULL, '13.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4889, 6510, 1, '95.0000', NULL, '3.7773');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4890, 6511, 1, '282.0000', NULL, '1.1490');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4891, 6512, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4892, 6513, 1, '12.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4893, 6514, 1, '48.0000', NULL, '8.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4894, 6515, 1, '64.0000', NULL, '18.3625');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4895, 6516, 1, '50.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4896, 6517, 1, '73.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4897, 6518, 1, '27.0000', NULL, '61.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4898, 6519, 1, '4.0000', NULL, '120.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4899, 6520, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4900, 6521, 1, '6.0000', NULL, '42.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4676, 6297, 1, '31.0000', NULL, '9.8672');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4675, 6296, 1, '169.0000', NULL, '25.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4674, 6295, 1, '61.0000', NULL, '36.6868');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4673, 6294, 1, '74.0000', NULL, '24.2015');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4672, 6293, 1, '137.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4671, 6292, 1, '40.0000', NULL, '8.0455');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4670, 6291, 1, '29.0000', NULL, '49.2356');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4669, 6290, 1, '18.0000', NULL, '122.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4668, 6289, 1, '6.0000', NULL, '117.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4667, 6288, 1, '59.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4666, 6287, 1, '25.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4665, 6286, 1, '44.0000', NULL, '10.6033');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4664, 6285, 1, '64.0000', NULL, '9.6868');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4663, 6284, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4662, 6283, 1, '275.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4661, 6282, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4660, 6281, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4659, 6280, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4658, 6279, 1, '35.0000', NULL, '26.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4657, 6278, 1, '9.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4656, 6277, 1, '18.0000', NULL, '24.2816');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4655, 6276, 1, '57.0000', NULL, '16.1965');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4654, 6275, 1, '283.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4653, 6274, 1, '37.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4652, 6273, 1, '101.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4651, 6272, 1, '0.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4650, 6271, 1, '21.0000', NULL, '62.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4649, 6270, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4648, 6269, 1, '28.0000', NULL, '23.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4647, 6268, 1, '75.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4646, 6267, 1, '-9.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4645, 6266, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4644, 6265, 1, '11.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4643, 6264, 1, '52.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4642, 6263, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4641, 6262, 1, '100.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4640, 6261, 1, '118.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4639, 6260, 1, '59.0000', NULL, '5.7594');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4638, 6259, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4637, 6258, 1, '57.0000', NULL, '9.3060');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4636, 6257, 1, '40.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4635, 6256, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4634, 6255, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4633, 6254, 1, '0.0000', NULL, '36.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4632, 6253, 1, '6.0000', NULL, '168.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4631, 6252, 1, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4630, 6251, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4629, 6250, 1, '47.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4628, 6249, 1, '0.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4627, 6248, 1, '159.0000', NULL, '9.5390');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4626, 6247, 1, '43.0000', NULL, '78.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4625, 6246, 1, '3.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4624, 6245, 1, '205.0000', NULL, '2.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4623, 6244, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4622, 6243, 1, '29.0000', NULL, '59.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4621, 6242, 1, '112.0000', NULL, '58.3529');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4620, 6241, 1, '15.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4619, 6240, 1, '48.0000', NULL, '10.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4618, 6239, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4617, 6238, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4616, 6237, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4615, 6236, 1, '5.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4614, 6235, 1, '12.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4613, 6234, 1, '11.0000', NULL, '34.8921');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4612, 6233, 1, '1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4611, 6232, 1, '388.0000', NULL, '7.6225');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4610, 6231, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5530, 6906, 1, '55.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4608, 6229, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4607, 6228, 1, '33.0000', NULL, '25.5271');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4606, 6227, 1, '92.0000', NULL, '2.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4605, 6226, 1, '56.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4604, 6225, 1, '221.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4603, 6224, 1, '55.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4601, 6222, 1, '67.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4600, 6221, 1, '161.0000', NULL, '15.6990');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4599, 6220, 1, '381.0000', NULL, '5.3412');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4598, 6219, 1, '-374.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4597, 6218, 1, '238.0000', NULL, '15.3740');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4596, 6217, 1, '882.0000', NULL, '3.0402');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4595, 6216, 1, '2010.0000', NULL, '1.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4594, 6215, 1, '65.0000', NULL, '30.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4593, 6214, 1, '109.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4592, 6213, 1, '117.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4591, 6212, 1, '139.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4590, 6211, 1, '59.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4589, 6210, 1, '81.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4588, 6209, 1, '37.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4587, 6208, 1, '109.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4586, 6207, 1, '29.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4585, 6206, 1, '43.0000', NULL, '7.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4584, 6205, 1, '33.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4583, 6204, 1, '8.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4582, 6203, 1, '84.0000', NULL, '5.6643');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4581, 6202, 1, '409.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4580, 6201, 1, '194.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4579, 6200, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4578, 6199, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4577, 6198, 1, '32.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4576, 6197, 1, '-9.0000', NULL, '45.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4575, 6196, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4574, 6195, 1, '171.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4573, 6194, 1, '150.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4572, 6193, 1, '-1.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4571, 6192, 1, '66.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4570, 6191, 1, '76.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4569, 6190, 1, '45.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4568, 6189, 1, '-23.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4567, 6188, 1, '36.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4566, 6187, 1, '42.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4565, 6186, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4564, 6185, 1, '14.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4563, 6184, 1, '20.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4562, 6183, 1, '178.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4561, 6182, 1, '23.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4560, 6181, 1, '5.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4559, 6180, 1, '74.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4558, 6179, 1, '1740.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4557, 6178, 1, '1492.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4556, 6177, 1, '328.0000', NULL, '293935099227180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4555, 6176, 1, '277.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4554, 6175, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4553, 6174, 1, '18.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4552, 6173, 1, '10.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4551, 6172, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4550, 6171, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4549, 6170, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4548, 6169, 1, '42.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4547, 6168, 1, '19.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4546, 6167, 1, '0.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4545, 6166, 1, '117.0000', NULL, '6.5087');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4544, 6165, 1, '80.0000', NULL, '5.8901');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4543, 6164, 1, '50.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4542, 6163, 1, '72.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4541, 6162, 1, '62.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4540, 6161, 1, '16.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4539, 6160, 1, '76.0000', NULL, '6.1349');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4538, 6159, 1, '124.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4537, 6158, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4536, 6157, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4535, 6156, 1, '59.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4534, 6155, 1, '72.0000', NULL, '8.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4533, 6154, 1, '105.0000', NULL, '39.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4532, 6153, 1, '5.0000', NULL, '77.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4531, 6152, 1, '884.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4530, 6151, 1, '46.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4529, 6150, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4528, 6149, 1, '2.0000', NULL, '41.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4527, 6148, 1, '3.0000', NULL, '24.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4526, 6147, 1, '35.0000', NULL, '35.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4525, 6146, 1, '73.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4524, 6145, 1, '49.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4523, 6144, 1, '7.0000', NULL, '88.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4522, 6143, 1, '64.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4521, 6142, 1, '-1.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4520, 6141, 1, '17.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4519, 6140, 1, '4.0000', NULL, '30.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4518, 6139, 1, '39.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4517, 6138, 1, '26.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4516, 6137, 1, '175.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4515, 6136, 1, '265.0000', NULL, '3.5778');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4514, 6135, 1, '10.0000', NULL, '35.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4513, 6134, 1, '108.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4512, 6133, 1, '16.0000', NULL, '25.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4511, 6132, 1, '126.0000', NULL, '4.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4510, 6131, 1, '10.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4509, 6130, 1, '25.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4508, 6129, 1, '44.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4507, 6128, 1, '134.0000', NULL, '8.1429');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4506, 6127, 1, '80.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4505, 6126, 1, '34.0000', NULL, '11.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4504, 6125, 1, '119.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4503, 6124, 1, '114.0000', NULL, '18.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4502, 6123, 1, '10.0000', NULL, '52.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4500, 6121, 1, '86.0000', NULL, '30.4986');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4499, 6120, 1, '38.0000', NULL, '16.1686');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4498, 6119, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4497, 6118, 1, '3.0000', NULL, '172.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4496, 6117, 1, '247.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4495, 6116, 1, '4.0000', NULL, '362.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4494, 6115, 1, '5.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4493, 6114, 1, '187.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4492, 6113, 1, '150.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4491, 6112, 1, '185.0000', NULL, '12.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4490, 6111, 1, '41.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4489, 6110, 1, '9.0000', NULL, '34.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4488, 6109, 1, '23.0000', NULL, '48.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4487, 6108, 1, '28.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4486, 6107, 1, '160.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4485, 6106, 1, '-30.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4484, 6105, 1, '196.0000', NULL, '10.8856');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4483, 6104, 1, '10.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4482, 6103, 1, '34.0000', NULL, '15.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4481, 6102, 1, '63.0000', NULL, '27.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4480, 6101, 1, '61.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4479, 6100, 1, '7.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4478, 6099, 1, '30.0000', NULL, '29.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4477, 6098, 1, '1312.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4476, 6097, 1, '241.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4475, 6096, 1, '-9.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4474, 6095, 1, '417.0000', NULL, '8.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4473, 6094, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4472, 6093, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4471, 6092, 1, '31.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4470, 6091, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4469, 6090, 1, '65.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4468, 6089, 1, '28.0000', NULL, '73.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4467, 6088, 1, '28.0000', NULL, '24.0714');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4466, 6087, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4465, 6086, 1, '9.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4464, 6085, 1, '13.0000', NULL, '160.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4463, 6084, 1, '30.0000', NULL, '72.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4462, 6083, 1, '1220.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4461, 6082, 1, '132.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4460, 6081, 1, '84.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5327, 5652, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4458, 6079, 1, '3.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4457, 6078, 1, '499.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4456, 6077, 1, '41.0000', NULL, '3.9894');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4455, 6076, 1, '1986.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4454, 6075, 1, '1438.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4453, 6074, 1, '1601.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4452, 6073, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4451, 6072, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4450, 6071, 1, '4.0000', NULL, '19.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4449, 6070, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4448, 6069, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4447, 6068, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5536, 6262, 3, '0.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4445, 6066, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4444, 6065, 1, '0.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4443, 6064, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4442, 6063, 1, '13.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4441, 6062, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4440, 6061, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4439, 6060, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4438, 6059, 1, '19.0000', NULL, '-816802073.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4437, 6058, 1, '3.0000', NULL, '20.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4436, 6057, 1, '77.0000', NULL, '33.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4435, 6056, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4434, 6055, 1, '18.0000', NULL, '27.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4433, 6054, 1, '9.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4432, 6053, 1, '-5.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4431, 6052, 1, '19.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4430, 6051, 1, '42.0000', NULL, '19.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4429, 6050, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4428, 6049, 1, '12.0000', NULL, '7.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4427, 6048, 1, '5.0000', NULL, '7.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4426, 6047, 1, '40.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4425, 6046, 1, '81.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4424, 6045, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4423, 6044, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4422, 6043, 1, '1.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4421, 6042, 1, '45.0000', NULL, '25.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4420, 6041, 1, '3.0000', NULL, '35.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4419, 6040, 1, '0.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4418, 6039, 1, '0.0000', NULL, '4.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4417, 6038, 1, '132.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4416, 6037, 1, '0.0000', NULL, '9.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4415, 6036, 1, '52.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4414, 6035, 1, '19.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4413, 6034, 1, '10.0000', NULL, '41.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4412, 6033, 1, '110.0000', NULL, '31.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4411, 6032, 1, '132.0000', NULL, '17.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4410, 6031, 1, '59.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4409, 6030, 1, '143.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4408, 6029, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4407, 6028, 1, '5.0000', NULL, '18.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4406, 6027, 1, '30.0000', NULL, '17.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4405, 6026, 1, '64.0000', NULL, '2.0143');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4404, 6025, 1, '368.0000', NULL, '0.7347');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4403, 6024, 1, '42.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4402, 6023, 1, '25.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4401, 6022, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4399, 6020, 1, '107.0000', NULL, '18.3553');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4398, 6019, 1, '208.0000', NULL, '2.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4397, 6018, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4396, 6017, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4395, 6016, 1, '86.0000', NULL, '92.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4394, 6015, 1, '37.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4393, 6014, 1, '2.0000', NULL, '10.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4392, 6013, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4391, 6012, 1, '13.0000', NULL, '16.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4390, 6011, 1, '60.0000', NULL, '14.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4389, 6010, 1, '408.0000', NULL, '15.4888');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4388, 6009, 1, '61.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4387, 6008, 1, '236.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4386, 6007, 1, '2558.0000', NULL, '1.4788');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4385, 6006, 1, '14.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4384, 6005, 1, '54.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4383, 6004, 1, '40.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4382, 6003, 1, '65.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4381, 6002, 1, '118.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4380, 6001, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4379, 6000, 1, '91.0000', NULL, '11.0487');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4378, 5999, 1, '0.0000', NULL, '25.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4377, 5998, 1, '53.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4376, 5997, 1, '-14.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4375, 5996, 1, '644.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4374, 5995, 1, '59.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4373, 5994, 1, '0.0000', NULL, '33.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4372, 5993, 1, '55.0000', NULL, '8.8873');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4371, 5992, 1, '44.0000', NULL, '9.7273');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4370, 5991, 1, '62.0000', NULL, '42.0960');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4369, 5990, 1, '58.0000', NULL, '8.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4368, 5989, 1, '67.0000', NULL, '27.8449');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4367, 5988, 1, '35.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4366, 5987, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4365, 5986, 1, '117.0000', NULL, '13.6040');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4364, 5985, 1, '84.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4363, 5984, 1, '115.0000', NULL, '20.6622');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4362, 5983, 1, '200.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4361, 5982, 1, '376.0000', NULL, '9.4113');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4360, 5981, 1, '-3.0000', NULL, '12.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4359, 5980, 1, '83.0000', NULL, '6.8688');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4358, 5979, 1, '532.0000', NULL, '6.0097');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4357, 5978, 1, '13.0000', NULL, '21.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4356, 5977, 1, '54.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4355, 5976, 1, '392.0000', NULL, '7.5312');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4354, 5975, 1, '125.0000', NULL, '11.5382');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4353, 5974, 1, '193.0000', NULL, '8.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4352, 5973, 1, '37.0000', NULL, '7.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4351, 5972, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4350, 5971, 1, '40.0000', NULL, '20.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4349, 5970, 1, '110.0000', NULL, '11.5903');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4348, 5969, 1, '18.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4347, 5968, 1, '34.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4346, 5967, 1, '5368.0000', NULL, '3.6596');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5413, 6124, 3, '0.0000', NULL, '18.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4344, 5965, 1, '138.0000', NULL, '12.3634');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4343, 5964, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4342, 5963, 1, '37.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4341, 5962, 1, '45.0000', NULL, '6.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4340, 5961, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4339, 5960, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4338, 5959, 1, '31.0000', NULL, '25.7381');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4337, 5958, 1, '28.0000', NULL, '15.6532');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4336, 5957, 1, '3.0000', NULL, '3.7691');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4335, 5956, 1, '17.0000', NULL, '19.9535');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4334, 5955, 1, '39.0000', NULL, '20.0648');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4333, 5954, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4332, 5953, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5283, 5771, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5284, 5770, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5285, 5757, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4328, 5949, 1, '60.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4327, 5948, 1, '322.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4326, 5947, 1, '215.0000', NULL, '13.2092');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4325, 5946, 1, '35.0000', NULL, '68.1943');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4324, 5945, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5286, 5677, 3, '0.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5287, 5418, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5248, 6869, 1, '1.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5249, 6870, 1, '66.0000', NULL, '36.4852');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5288, 5540, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4318, 5939, 1, '20.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5371, 6614, 3, '0.0000', NULL, '116.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5289, 6053, 3, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4315, 5936, 1, '0.0000', NULL, '45.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5250, 6871, 1, '18.0000', NULL, '38.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5270, 6890, 1, '1340.0000', NULL, '3.7809');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5290, 5948, 3, '0.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4311, 5932, 1, '21.0000', NULL, '11.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4310, 5931, 1, '33.0000', NULL, '12.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5291, 6445, 3, '0.0000', NULL, '21.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5292, 6277, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5293, 6893, 1, '157.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5294, 6893, 3, '0.0000', NULL, '53.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4305, 5926, 1, '31.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5295, 5827, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5296, 5453, 3, '0.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5297, 6158, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5298, 6160, 3, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5299, 6163, 3, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3780, 4210, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3781, 4209, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3782, 4211, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4682, 6303, 1, '431.0000', NULL, '1.9950');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4683, 6304, 1, '233.0000', NULL, '14.9059');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4684, 6305, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4685, 6306, 1, '39.0000', NULL, '6.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4686, 6307, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4687, 6308, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4688, 6309, 1, '14.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4689, 6310, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4690, 6311, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4691, 6312, 1, '5.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4692, 6313, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4693, 6314, 1, '2.0000', NULL, '33.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4694, 6315, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4695, 6316, 1, '57.0000', NULL, '54.8358');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4696, 6317, 1, '67.0000', NULL, '19.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4697, 6318, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4698, 6319, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4699, 6320, 1, '17.0000', NULL, '63.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4700, 6321, 1, '29.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4701, 6322, 1, '41.0000', NULL, '21.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4702, 6323, 1, '42.0000', NULL, '35.4980');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4703, 6324, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4704, 6325, 1, '18.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4705, 6326, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4706, 6327, 1, '-18.0000', NULL, '28.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4681, 6302, 1, '82.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4680, 6301, 1, '144.0000', NULL, '10.8601');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4679, 6300, 1, '116.0000', NULL, '17.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4678, 6299, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4677, 6298, 1, '94.0000', NULL, '5.5742');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4602, 6223, 1, '180.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4501, 6122, 1, '2.0000', NULL, '47.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4400, 6021, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4219, 5840, 1, '213.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4220, 5841, 1, '71.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5320, 6533, 3, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4222, 5843, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5319, 6607, 3, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5318, 6031, 3, '0.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5317, 6027, 3, '0.0000', NULL, '17.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4226, 5847, 1, '236.0000', NULL, '3.1651');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4227, 5848, 1, '61.0000', NULL, '8.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4228, 5849, 1, '58.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5316, 6505, 3, '0.0000', NULL, '30.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5315, 5915, 3, '0.0000', NULL, '127.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5314, 6436, 3, '0.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4232, 5853, 1, '432.0000', NULL, '8.8287');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4233, 5854, 1, '68.0000', NULL, '8.8462');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5312, 6702, 3, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4235, 5856, 1, '16.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5280, 6059, 3, '0.0000', NULL, '20.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4237, 5858, 1, '69.0000', NULL, '27.3468');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4238, 5859, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5362, 6751, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5361, 6178, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5360, 5674, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5359, 5965, 3, '0.0000', NULL, '12.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5358, 6622, 3, '0.0000', NULL, '43.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4244, 5865, 1, '744.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5357, 6497, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5356, 6757, 3, '0.0000', NULL, '207.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4247, 5868, 1, '15.0000', NULL, '20.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5268, 6888, 1, '20.0000', NULL, '38.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4249, 5870, 1, '65.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4250, 5871, 1, '-1.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5355, 6234, 3, '0.0000', NULL, '36.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4252, 5873, 1, '32.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5353, 6608, 3, '0.0000', NULL, '12.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5354, 5439, 3, '0.0000', NULL, '52.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5352, 6609, 3, '0.0000', NULL, '11.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5351, 6612, 3, '0.0000', NULL, '16.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5350, 6611, 3, '0.0000', NULL, '9.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5349, 6739, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5348, 6839, 3, '0.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4260, 5881, 1, '43.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4261, 5882, 1, '83.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5347, 6603, 3, '0.0000', NULL, '6.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4263, 5884, 1, '0.0000', NULL, '3.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4264, 5885, 1, '64.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4265, 5886, 1, '99.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4266, 5887, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5346, 5441, 3, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4268, 5889, 1, '18.0000', NULL, '44.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5345, 5673, 3, '0.0000', NULL, '15.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5344, 5554, 3, '0.0000', NULL, '278.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4271, 5892, 1, '0.0000', NULL, '8.5642');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4272, 5893, 1, '23.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5251, 1625, 1, '2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5343, 6088, 3, '0.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5342, 6316, 3, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4276, 5897, 1, '11.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4277, 5898, 1, '125.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5341, 6496, 3, '0.0000', NULL, '5.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5340, 5971, 3, '0.0000', NULL, '20.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4280, 5901, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5339, 5501, 3, '0.0000', NULL, '36.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5338, 5500, 3, '0.0000', NULL, '46.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4283, 5904, 1, '12.0000', NULL, '24.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5311, 5562, 3, '0.0000', NULL, '47.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4285, 5906, 1, '-8.0000', NULL, '15.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5310, 6034, 3, '0.0000', NULL, '41.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5309, 6361, 3, '0.0000', NULL, '49.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5308, 5472, 3, '500.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5307, 6057, 3, '0.0000', NULL, '33.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4290, 5911, 1, '19.0000', NULL, '18.2490');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5304, 5828, 3, '0.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5305, 6167, 3, '0.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5306, 6501, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4294, 5915, 1, '4.0000', NULL, '127.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4295, 5916, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5302, 6166, 3, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5303, 6165, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5301, 6164, 3, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5300, 6162, 3, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4218, 5839, 1, '83.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5321, 6333, 3, '0.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5322, 6117, 3, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5323, 6115, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4214, 5835, 1, '3.0000', NULL, '33.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4213, 5834, 1, '1.0000', NULL, '41.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5324, 5967, 3, '0.0000', NULL, '3.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5325, 5911, 3, '0.0000', NULL, '23.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5326, 5710, 3, '0.0000', NULL, '4.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5267, 6887, 1, '25.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3784, 5405, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5281, 5898, 3, '0.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5282, 5853, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3787, 5408, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3788, 5409, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3789, 5410, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5534, 6250, 3, '0.0000', NULL, '4.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3791, 5412, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5266, 6886, 1, '18.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5263, 6883, 1, '46.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3794, 5415, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5522, 6240, 3, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5365, 6895, 3, '0.0000', NULL, '9.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3797, 5418, 1, '460.0000', NULL, '6.0344');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3798, 5419, 1, '99.0000', NULL, '16.1385');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5364, 6895, 1, '80.0000', NULL, '9.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3800, 5421, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3801, 5422, 1, '50.0000', NULL, '21.5769');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5508, 6236, 3, '0.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5507, 6127, 3, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5506, 6595, 3, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5505, 6292, 3, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3806, 5427, 1, '84.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5504, 5958, 3, '0.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5503, 6454, 3, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5502, 5792, 3, '0.0000', NULL, '33.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5501, 6320, 3, '0.0000', NULL, '63.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5500, 6457, 3, '0.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5499, 6813, 3, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5498, 5955, 3, '0.0000', NULL, '17.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3814, 5435, 1, '164.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5497, 5956, 3, '0.0000', NULL, '17.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5833, 6768, 3, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5495, 6232, 3, '0.0000', NULL, '6.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3818, 5439, 1, '80.0000', NULL, '27.2586');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3819, 5440, 1, '395.0000', NULL, '3.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3820, 5441, 1, '1370.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5494, 5959, 3, '0.0000', NULL, '23.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5493, 6777, 3, '0.0000', NULL, '21.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5492, 5858, 3, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5491, 6903, 3, '0.0000', NULL, '22.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5490, 6903, 1, '75.0000', NULL, '26.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3826, 5447, 1, '181.0000', NULL, '24.7066');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3827, 5448, 1, '73.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3828, 5449, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5489, 6273, 3, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3830, 5451, 1, '1171.0000', NULL, '5.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3831, 5452, 1, '-1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3832, 5453, 1, '62.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5488, 6558, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3834, 5455, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3835, 5456, 1, '4.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3836, 5457, 1, '38.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3837, 5458, 1, '24.0000', NULL, '18.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3838, 5459, 1, '5.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3839, 5460, 1, '4.0000', NULL, '235.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3840, 5461, 1, '4.0000', NULL, '194.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3841, 5462, 1, '27.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3842, 5463, 1, '98.0000', NULL, '10.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3843, 5464, 1, '-1.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3844, 5465, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5487, 5813, 3, '0.0000', NULL, '5.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3846, 5467, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5537, 6291, 3, '0.0000', NULL, '53.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5269, 6889, 1, '42.0000', NULL, '24.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5279, 6121, 3, '0.0000', NULL, '25.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3850, 5471, 1, '55.0000', NULL, '5.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3851, 5472, 1, '232.0000', NULL, '1385.1086');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3852, 5473, 1, '437.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5535, 6289, 3, '0.0000', NULL, '117.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5363, 6087, 3, '0.0000', NULL, '75.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3855, 5476, 1, '0.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3856, 5477, 1, '31.0000', NULL, '22.0699');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3857, 5478, 1, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5485, 6902, 3, '0.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5486, 6383, 3, '0.0000', NULL, '8.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5484, 6902, 1, '32.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3861, 5482, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5533, 6294, 3, '0.0000', NULL, '26.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5532, 6260, 3, '0.0000', NULL, '5.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5531, 6906, 3, '0.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5529, 6396, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3866, 5487, 1, '152.0000', NULL, '17.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5528, 6518, 3, '0.0000', NULL, '61.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5527, 6860, 3, '0.0000', NULL, '15.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5511, 5854, 3, '0.0000', NULL, '8.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5510, 6295, 3, '0.0000', NULL, '33.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5509, 5553, 3, '0.0000', NULL, '33.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5483, 6386, 3, '0.0000', NULL, '3.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5482, 6901, 3, '0.0000', NULL, '4.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5481, 6901, 1, '84.0000', NULL, '4.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5480, 5986, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3876, 5497, 1, '58.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5479, 5982, 3, '0.0000', NULL, '9.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3878, 5499, 1, '100.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3879, 5500, 1, '0.0000', NULL, '41.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3880, 5501, 1, '16.0000', NULL, '44.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5478, 5976, 3, '0.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5264, 6884, 1, '67.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5262, 6882, 1, '22.0000', NULL, '22.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5240, 6861, 1, '14.0000', NULL, '74.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5526, 6905, 3, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3886, 5507, 1, '5.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3887, 5508, 1, '6.0000', NULL, '77.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3888, 5509, 1, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3889, 5510, 1, '0.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3890, 5511, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5265, 6885, 1, '18.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3892, 5513, 1, '0.0000', NULL, '94.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5261, 6881, 1, '23.0000', NULL, '49.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3894, 5515, 1, '65.0000', NULL, '4.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5525, 6905, 1, '67.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5260, 6880, 1, '381.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5524, 6644, 3, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3898, 5519, 1, '218.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5259, 6879, 1, '286.0000', NULL, '3.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5369, 6896, 1, '42.0000', NULL, '28.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5252, 6872, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5258, 6878, 1, '350.0000', NULL, '2.1375');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5257, 6877, 1, '38.0000', NULL, '12.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3904, 5525, 1, '0.0000', NULL, '41.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3905, 5526, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3906, 5527, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3907, 5528, 1, '40.0000', NULL, '13.2556');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5523, 6548, 3, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5456, 6028, 3, '0.0000', NULL, '18.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3910, 5531, 1, '12.0000', NULL, '80.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3911, 5532, 1, '181.0000', NULL, '56.9412');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5521, 6258, 3, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5520, 6535, 3, '0.0000', NULL, '3.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3914, 5535, 1, '1658.0000', NULL, '3.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3915, 5536, 1, '13.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5519, 5477, 3, '0.0000', NULL, '18.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5518, 5889, 3, '0.0000', NULL, '32.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5517, 6904, 3, '0.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3919, 5540, 1, '40.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3920, 5541, 1, '4.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5455, 5641, 3, '0.0000', NULL, '31.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5454, 6032, 3, '0.0000', NULL, '17.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5453, 5642, 3, '0.0000', NULL, '24.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3924, 5545, 1, '19.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3925, 5546, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5452, 6025, 3, '0.0000', NULL, '0.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3927, 5548, 1, '372.0000', NULL, '2.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3928, 5549, 1, '472.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5337, 5465, 3, '0.0000', NULL, '72.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3930, 5551, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3931, 5552, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3932, 5553, 1, '33.0000', NULL, '33.1388');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3933, 5554, 1, '3.0000', NULL, '278.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3934, 5555, 1, '4.0000', NULL, '107.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3935, 5556, 1, '4.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3936, 5557, 1, '19.0000', NULL, '175.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5451, 6026, 3, '0.0000', NULL, '1.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3938, 5559, 1, '72.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5278, 6197, 3, '0.0000', NULL, '45.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5277, 6411, 3, '0.0000', NULL, '17.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3941, 5562, 1, '9.0000', NULL, '47.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5450, 5979, 3, '0.0000', NULL, '6.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5449, 6656, 3, '0.0000', NULL, '11.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5448, 5980, 3, '0.0000', NULL, '11.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5447, 5989, 3, '0.0000', NULL, '26.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5446, 6419, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5445, 5973, 3, '0.0000', NULL, '7.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3948, 5569, 1, '4.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3949, 5570, 1, '0.0000', NULL, '148.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3950, 5571, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5409, 6112, 3, '0.0000', NULL, '12.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3952, 5573, 1, '1057.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5444, 6655, 3, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5443, 6421, 3, '0.0000', NULL, '15.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3955, 5576, 1, '122.0000', NULL, '8.4705');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3956, 5577, 1, '0.0000', NULL, '81.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5442, 6899, 3, '0.0000', NULL, '24.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5441, 6899, 1, '46.0000', NULL, '24.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3959, 5580, 1, '109.0000', NULL, '7.2414');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3960, 5581, 1, '153.0000', NULL, '11.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3961, 5582, 1, '408.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5440, 6665, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3963, 5584, 1, '222.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3964, 5585, 1, '4.0000', NULL, '23.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3965, 5586, 1, '146.0000', NULL, '28.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3966, 5587, 1, '301.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3967, 5588, 1, '218.0000', NULL, '14.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3968, 5589, 1, '267.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3969, 5590, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3970, 5591, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3971, 5592, 1, '1.0000', NULL, '7.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3972, 5593, 1, '1.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5477, 5990, 3, '0.0000', NULL, '8.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3974, 5595, 1, '-9.0000', NULL, '158.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3975, 5596, 1, '204.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5476, 6322, 3, '0.0000', NULL, '21.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3977, 5598, 1, '517.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5475, 5947, 3, '240.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3979, 5600, 1, '855.0000', NULL, '2.6233');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3980, 5601, 1, '618.0000', NULL, '4.2917');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5474, 6696, 3, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3982, 5603, 1, '61.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3983, 5604, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3984, 5605, 1, '-4.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5473, 6697, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3986, 5607, 1, '0.0000', NULL, '11.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5471, 6591, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5470, 6389, 3, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3989, 5610, 1, '22.0000', NULL, '29.2166');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3990, 5611, 1, '7.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5469, 6872, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5468, 6755, 3, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5467, 6360, 3, '400.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5466, 6358, 3, '4200.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3995, 5616, 1, '-24.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3996, 5617, 1, '30.0000', NULL, '39.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3997, 5618, 1, '86.0000', NULL, '7.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3998, 5619, 1, '63.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5275, 6670, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5276, 6455, 3, '0.0000', NULL, '17.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4001, 5622, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4002, 5623, 1, '9.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4003, 5624, 1, '146.0000', NULL, '20.9320');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4004, 5625, 1, '-1.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5472, 6698, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5465, 5473, 3, '500.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5464, 6900, 3, '200.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4008, 5629, 1, '320.0000', NULL, '8.9474');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4009, 5630, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4010, 5631, 1, '101.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4011, 5632, 1, '122.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4012, 5633, 1, '4.0000', NULL, '226.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4013, 5634, 1, '31.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4014, 5635, 1, '-12.0000', NULL, '14.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5463, 6900, 1, '175.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4016, 5637, 1, '24.0000', NULL, '55.3629');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5462, 5835, 3, '0.0000', NULL, '33.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5461, 6024, 3, '0.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4019, 5640, 1, '354.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4020, 5641, 1, '79.0000', NULL, '31.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4021, 5642, 1, '132.0000', NULL, '24.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5253, 6873, 1, '40.0000', NULL, '1.7189');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5460, 6030, 3, '0.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5459, 6036, 3, '0.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5458, 6387, 3, '0.0000', NULL, '7.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5457, 6095, 3, '0.0000', NULL, '8.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4027, 5648, 1, '1.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5439, 6664, 3, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4029, 5650, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4030, 5651, 1, '27.0000', NULL, '6.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4031, 5652, 1, '52.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5438, 6890, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4033, 5654, 1, '394.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4034, 5655, 1, '55.0000', NULL, '30.6356');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4035, 5656, 1, '-17.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4036, 5657, 1, '634.0000', NULL, '5.0048');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5437, 5447, 3, '0.0000', NULL, '24.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5436, 5978, 3, '0.0000', NULL, '21.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5431, 5991, 3, '0.0000', NULL, '37.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5432, 6340, 3, '0.0000', NULL, '60.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5433, 5640, 3, '0.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5434, 6610, 3, '0.0000', NULL, '70.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5435, 5974, 3, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5430, 6524, 3, '0.0000', NULL, '170.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5429, 6560, 3, '0.0000', NULL, '41.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4046, 5667, 1, '57.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5428, 6821, 3, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5427, 5734, 3, '0.0000', NULL, '19.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5425, 5676, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5426, 5733, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5424, 5675, 3, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4052, 5673, 1, '38.0000', NULL, '15.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4053, 5674, 1, '330.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4054, 5675, 1, '11.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4055, 5676, 1, '197.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4056, 5677, 1, '337.0000', NULL, '13.7556');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5423, 6323, 3, '0.0000', NULL, '35.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5422, 6563, 3, '0.0000', NULL, '60.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5421, 6562, 3, '0.0000', NULL, '72.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5420, 6154, 3, '0.0000', NULL, '39.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5419, 6841, 3, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4062, 5683, 1, '54.0000', NULL, '49.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5418, 5711, 3, '0.0000', NULL, '44.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5417, 6435, 3, '0.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5272, 6892, 1, '1.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5273, 6843, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5274, 6749, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4068, 5689, 1, '3.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5514, 6744, 3, '0.0000', NULL, '9.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5513, 5637, 3, '0.0000', NULL, '27.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5416, 6431, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5415, 6667, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5414, 6570, 3, '0.0000', NULL, '3.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4074, 5695, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4075, 5696, 1, '43.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5412, 6116, 3, '0.0000', NULL, '362.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5411, 6394, 3, '0.0000', NULL, '5.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4078, 5699, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5516, 6904, 1, '56.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5410, 5778, 3, '0.0000', NULL, '16.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5408, 6109, 3, '0.0000', NULL, '48.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5406, 6328, 3, '0.0000', NULL, '24.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4083, 5704, 1, '5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4084, 5705, 1, '129.0000', NULL, '8.0933');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5405, 5487, 3, '0.0000', NULL, '17.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5404, 6296, 3, '0.0000', NULL, '25.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5402, 6871, 3, '0.0000', NULL, '36.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5403, 6635, 3, '0.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4089, 5710, 1, '0.0000', NULL, '4.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4090, 5711, 1, '5.0000', NULL, '44.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4091, 5712, 1, '1140.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4092, 5713, 1, '52.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4093, 5714, 1, '372.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4094, 5715, 1, '0.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4095, 5716, 1, '-15.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4096, 5717, 1, '312.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5241, 6862, 1, '157.0000', NULL, '3.5455');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5401, 6578, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4099, 5720, 1, '2.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5400, 6577, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5399, 6576, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4102, 5723, 1, '12.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4103, 5724, 1, '68.0000', NULL, '11.5269');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4104, 5725, 1, '94.0000', NULL, '12.2814');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4105, 5726, 1, '0.0000', NULL, '17.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5398, 6575, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5397, 6552, 3, '0.0000', NULL, '186.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4108, 5729, 1, '8.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4109, 5730, 1, '212.0000', NULL, '6.4114');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4110, 5731, 1, '1088.0000', NULL, '18.2383');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5396, 6613, 3, '0.0000', NULL, '45.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4112, 5733, 1, '41.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4113, 5734, 1, '17.0000', NULL, '19.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5395, 6585, 3, '0.0000', NULL, '46.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5394, 6330, 3, '0.0000', NULL, '67.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4116, 5737, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4117, 5738, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4118, 5739, 1, '63.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4119, 5740, 1, '432.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5393, 6110, 3, '0.0000', NULL, '34.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4121, 5742, 1, '3.0000', NULL, '311.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5391, 6084, 3, '0.0000', NULL, '72.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5392, 6085, 3, '0.0000', NULL, '160.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5390, 5779, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5389, 5777, 3, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5388, 5739, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5387, 5738, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4128, 5749, 1, '44.0000', NULL, '8.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5386, 6393, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4130, 5751, 1, '101.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5407, 6105, 3, '0.0000', NULL, '10.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4132, 5753, 1, '44.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4133, 5754, 1, '-2.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4134, 5755, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5384, 6569, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4136, 5757, 1, '85.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5383, 5720, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4138, 5759, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5382, 6568, 3, '0.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5381, 6092, 3, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4141, 5762, 1, '16.0000', NULL, '20.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5380, 5459, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5379, 5419, 3, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4144, 5765, 1, '0.0000', NULL, '63.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5515, 5532, 3, '0.0000', NULL, '54.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4146, 5767, 1, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4147, 5768, 1, '183.0000', NULL, '26.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5377, 6898, 1, '15.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4149, 5770, 1, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4150, 5771, 1, '67.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4151, 5772, 1, '-6.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5378, 6898, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4153, 5774, 1, '6.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4154, 5775, 1, '52.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5376, 6441, 3, '0.0000', NULL, '207.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4156, 5777, 1, '14.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4157, 5778, 1, '73.0000', NULL, '16.3911');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4158, 5779, 1, '131.0000', NULL, '14.6863');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4159, 5780, 1, '0.0000', NULL, '198.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5375, 6442, 3, '0.0000', NULL, '75.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5374, 5528, 3, '0.0000', NULL, '14.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5313, 6703, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4163, 5784, 1, '14.0000', NULL, '82.6875');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4164, 5785, 1, '14.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5512, 6812, 3, '0.0000', NULL, '26.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4166, 5787, 1, '-3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4167, 5788, 1, '23.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4168, 5789, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4169, 5790, 1, '15.0000', NULL, '149.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5373, 6897, 3, '0.0000', NULL, '42.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4171, 5792, 1, '74.0000', NULL, '34.1634');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4172, 5793, 1, '27.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5372, 6897, 1, '174.0000', NULL, '3.8910');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4174, 5795, 1, '28.0000', NULL, '35.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4175, 5796, 1, '30.0000', NULL, '4.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4176, 5797, 1, '87.0000', NULL, '17.0048');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4177, 5798, 1, '10.0000', NULL, '19.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4178, 5799, 1, '26.0000', NULL, '20.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5370, 6896, 3, '0.0000', NULL, '28.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4180, 5801, 1, '57.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5368, 6581, 3, '0.0000', NULL, '10.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4182, 5803, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4183, 5804, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4184, 5805, 1, '15.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5366, 6156, 3, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5367, 6403, 3, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4187, 5808, 1, '81.0000', NULL, '21.1537');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4188, 5809, 1, '35.0000', NULL, '15.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4189, 5810, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5336, 6894, 3, '0.0000', NULL, '12.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5335, 6894, 1, '100.0000', NULL, '12.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4192, 5813, 1, '46.0000', NULL, '5.4022');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4193, 5814, 1, '71.0000', NULL, '24.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4194, 5815, 1, '39.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5334, 6599, 3, '0.0000', NULL, '17.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5333, 6598, 3, '0.0000', NULL, '16.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5332, 6597, 3, '0.0000', NULL, '17.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5330, 6557, 3, '0.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5331, 5797, 3, '0.0000', NULL, '17.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4200, 5821, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5329, 6753, 3, '0.0000', NULL, '85.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5328, 6555, 3, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4203, 5824, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4204, 5825, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4205, 5826, 1, '352.0000', NULL, '5.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4206, 5827, 1, '17.0000', NULL, '5.9947');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4207, 5828, 1, '12.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4208, 5829, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4209, 5830, 1, '22.0000', NULL, '117.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4901, 6522, 1, '0.0000', NULL, '49.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4902, 6523, 1, '2.0000', NULL, '131.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4903, 6524, 1, '10.0000', NULL, '187.4672');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4904, 6525, 1, '25.0000', NULL, '106.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4905, 6526, 1, '9.0000', NULL, '154.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4906, 6527, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4907, 6528, 1, '160.0000', NULL, '5.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4908, 6529, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4909, 6530, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4910, 6531, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4911, 6532, 1, '244.0000', NULL, '8.0796');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4912, 6533, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4913, 6534, 1, '34.0000', NULL, '142.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4914, 6535, 1, '70.0000', NULL, '3.3184');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4915, 6536, 1, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4916, 6537, 1, '32.0000', NULL, '93.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4917, 6538, 1, '33.0000', NULL, '10.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4918, 6539, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4919, 6540, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4920, 6541, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4921, 6542, 1, '51.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4922, 6543, 1, '59.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4923, 6544, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4924, 6545, 1, '9.0000', NULL, '43.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4925, 6546, 1, '-3.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4926, 6547, 1, '3.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4927, 6548, 1, '46.0000', NULL, '8.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4928, 6549, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4929, 6550, 1, '72.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4930, 6551, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4931, 6552, 1, '9.0000', NULL, '186.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4932, 6553, 1, '75.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4933, 6554, 1, '0.0000', NULL, '130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4934, 6555, 1, '48.0000', NULL, '2.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4935, 6556, 1, '94.0000', NULL, '3.4022');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4936, 6557, 1, '99.0000', NULL, '8.0659');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4937, 6558, 1, '-4.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4938, 6559, 1, '40.0000', NULL, '71.2908');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4939, 6560, 1, '18.0000', NULL, '41.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4940, 6561, 1, '17.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4941, 6562, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4942, 6563, 1, '34.0000', NULL, '61.1590');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4943, 6564, 1, '0.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4944, 6565, 1, '1.0000', NULL, '64.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4945, 6566, 1, '8.0000', NULL, '88.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4946, 6567, 1, '2.0000', NULL, '59.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4947, 6568, 1, '35.0000', NULL, '13.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4948, 6569, 1, '141.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4949, 6570, 1, '34.0000', NULL, '7.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4950, 6571, 1, '0.0000', NULL, '15.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4951, 6572, 1, '156.0000', NULL, '16.5785');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4952, 6573, 1, '30.0000', NULL, '21.7224');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4953, 6574, 1, '32.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4954, 6575, 1, '19.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4955, 6576, 1, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4956, 6577, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4957, 6578, 1, '29.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4958, 6579, 1, '12.0000', NULL, '35.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4959, 6580, 1, '6.0000', NULL, '328.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4960, 6581, 1, '25.0000', NULL, '10.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4961, 6582, 1, '91.0000', NULL, '15.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4962, 6583, 1, '12.0000', NULL, '14.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4963, 6584, 1, '1.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4964, 6585, 1, '1.0000', NULL, '46.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4965, 6586, 1, '18.0000', NULL, '62.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4966, 6587, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4967, 6588, 1, '23.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4968, 6589, 1, '7.0000', NULL, '121.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4969, 6590, 1, '6.0000', NULL, '25.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4970, 6591, 1, '91.0000', NULL, '10.4348');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4971, 6592, 1, '171.0000', NULL, '3.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4972, 6593, 1, '592.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4973, 6594, 1, '71.0000', NULL, '9.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4974, 6595, 1, '56.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4975, 6596, 1, '1.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4976, 6597, 1, '44.0000', NULL, '17.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4977, 6598, 1, '79.0000', NULL, '17.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4978, 6599, 1, '33.0000', NULL, '17.0015');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4979, 6600, 1, '6.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4980, 6601, 1, '5.0000', NULL, '44.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4981, 6602, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4982, 6603, 1, '34.0000', NULL, '6.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4983, 6604, 1, '406.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4984, 6605, 1, '-44.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4985, 6606, 1, '30.0000', NULL, '15.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4986, 6607, 1, '56.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4987, 6608, 1, '115.0000', NULL, '12.9538');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4988, 6609, 1, '93.0000', NULL, '11.6821');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4989, 6610, 1, '54.0000', NULL, '70.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4990, 6611, 1, '121.0000', NULL, '9.0906');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4991, 6612, 1, '60.0000', NULL, '16.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4992, 6613, 1, '177.0000', NULL, '45.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4993, 6614, 1, '25.0000', NULL, '110.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4994, 6615, 1, '43.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4995, 6616, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4996, 6617, 1, '8.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4997, 6618, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4998, 6619, 1, '2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4999, 6620, 1, '26.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5000, 6621, 1, '20.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5001, 6622, 1, '1.0000', NULL, '43.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5002, 6623, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5003, 6624, 1, '1.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5004, 6625, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5005, 6626, 1, '4.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5006, 6627, 1, '61.0000', NULL, '79.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5007, 6628, 1, '39.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5008, 6629, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5009, 6630, 1, '7.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5010, 6631, 1, '20.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5011, 6632, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5012, 6633, 1, '2.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5013, 6634, 1, '0.0000', NULL, '13.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5014, 6635, 1, '-1.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5015, 6636, 1, '67.0000', NULL, '-3.0661');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5016, 6637, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5017, 6638, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5018, 6639, 1, '2.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5019, 6640, 1, '16.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5020, 6641, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5021, 6642, 1, '-1.0000', NULL, '-10.8972');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5022, 6643, 1, '19.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5023, 6644, 1, '52.0000', NULL, '4.6428');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5024, 6645, 1, '113.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5025, 6646, 1, '5.0000', NULL, '224.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5026, 6647, 1, '0.0000', NULL, '8.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5027, 6648, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5028, 6649, 1, '54.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5029, 6650, 1, '15.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5030, 6651, 1, '0.0000', NULL, '7.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5031, 6652, 1, '13.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5032, 6653, 1, '12.0000', NULL, '27.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5033, 6654, 1, '70.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5034, 6655, 1, '28.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5035, 6656, 1, '58.0000', NULL, '11.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5036, 6657, 1, '13.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5037, 6658, 1, '0.0000', NULL, '65.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5038, 6659, 1, '4.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5039, 6660, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5040, 6661, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5385, 5737, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5042, 6663, 1, '214.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5043, 6664, 1, '527.0000', NULL, '0.6197');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5044, 6665, 1, '95.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5045, 6666, 1, '24.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5046, 6667, 1, '935.0000', NULL, '2.7159');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5047, 6668, 1, '-1.0000', NULL, '8.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5048, 6669, 1, '12.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5049, 6670, 1, '30.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5050, 6671, 1, '175.0000', NULL, '8.0110');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5051, 6672, 1, '10.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5052, 6673, 1, '67.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5053, 6674, 1, '243.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5054, 6675, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5055, 6676, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5056, 6677, 1, '240.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5057, 6678, 1, '9.0000', NULL, '14.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5058, 6679, 1, '-13.0000', NULL, '9.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5059, 6680, 1, '3.0000', NULL, '8.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5060, 6681, 1, '55.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5061, 6682, 1, '47.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5062, 6683, 1, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5063, 6684, 1, '20.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5064, 6685, 1, '292.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5065, 6686, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5066, 6687, 1, '37.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5067, 6688, 1, '10.0000', NULL, '80.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5068, 6689, 1, '109.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5069, 6690, 1, '0.0000', NULL, '8.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5070, 6691, 1, '193.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5071, 6692, 1, '224.0000', NULL, '4.1595');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5072, 6693, 1, '0.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5073, 6694, 1, '2.0000', NULL, '52.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5074, 6695, 1, '189.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5075, 6696, 1, '534.0000', NULL, '4.2337');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5076, 6697, 1, '102.0000', NULL, '10.6294');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5077, 6698, 1, '59.0000', NULL, '12.6590');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5078, 6699, 1, '150.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5079, 6700, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5080, 6701, 1, '0.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5081, 6702, 1, '5.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5082, 6703, 1, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5083, 6704, 1, '26.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5084, 6705, 1, '22.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5085, 6706, 1, '84.0000', NULL, '256.6012');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5086, 6707, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5087, 6708, 1, '61.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5088, 6709, 1, '8.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5089, 6710, 1, '23.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5090, 6711, 1, '14.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5091, 6712, 1, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5092, 6713, 1, '16.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5093, 6714, 1, '6.0000', NULL, '84.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5094, 6715, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5095, 6716, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5096, 6717, 1, '6.0000', NULL, '38.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5097, 6718, 1, '0.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5098, 6719, 1, '9.0000', NULL, '17.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5099, 6720, 1, '1.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5100, 6721, 1, '3.0000', NULL, '220.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5101, 6722, 1, '4.0000', NULL, '252.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5102, 6723, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5103, 6724, 1, '15.0000', NULL, '45.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5104, 6725, 1, '22.0000', NULL, '62.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5105, 6726, 1, '-9.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5106, 6727, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5107, 6728, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5108, 6729, 1, '1.0000', NULL, '40.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5109, 6730, 1, '5.0000', NULL, '27.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5110, 6731, 1, '8.0000', NULL, '43.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5111, 6732, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5112, 6733, 1, '6.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5113, 6734, 1, '1.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5114, 6735, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5115, 6736, 1, '0.0000', NULL, '38.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5116, 6737, 1, '10.0000', NULL, '40.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5117, 6738, 1, '7.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5118, 6739, 1, '87.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5119, 6740, 1, '9.0000', NULL, '36.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5120, 6741, 1, '6.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5121, 6742, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5122, 6743, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5123, 6744, 1, '18.0000', NULL, '10.2184');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5124, 6745, 1, '0.0000', NULL, '12.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5125, 6746, 1, '12.0000', NULL, '10.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5126, 6747, 1, '3.0000', NULL, '12.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5127, 6748, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5128, 6749, 1, '135.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5129, 6750, 1, '26.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5130, 6751, 1, '-5.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5131, 6752, 1, '-1.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5132, 6753, 1, '173.0000', NULL, '72.8788');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5133, 6754, 1, '378.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5134, 6755, 1, '170.0000', NULL, '5.8525');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5135, 6756, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5136, 6757, 1, '7.0000', NULL, '158.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5137, 6758, 1, '5.0000', NULL, '54.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5138, 6759, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5139, 6760, 1, '12.0000', NULL, '45.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5140, 6761, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5141, 6762, 1, '71.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5142, 6763, 1, '45.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5143, 6764, 1, '150.0000', NULL, '5.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5144, 6765, 1, '22.0000', NULL, '59.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5145, 6766, 1, '32.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5146, 6767, 1, '40.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5147, 6768, 1, '24.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5271, 6891, 1, '0.0000', NULL, '26.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5149, 6770, 1, '5.0000', NULL, '168.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5150, 6771, 1, '0.0000', NULL, '19.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5151, 6772, 1, '0.0000', NULL, '19.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5152, 6773, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5153, 6774, 1, '17.0000', NULL, '32.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5154, 6775, 1, '4.0000', NULL, '49.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5155, 6776, 1, '9.0000', NULL, '59.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5156, 6777, 1, '25.0000', NULL, '23.2540');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5157, 6778, 1, '150.0000', NULL, '19.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5158, 6779, 1, '2.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5159, 6780, 1, '10.0000', NULL, '90.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5160, 6781, 1, '17.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5161, 6782, 1, '10.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5162, 6783, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5163, 6784, 1, '35.0000', NULL, '58.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5164, 6785, 1, '52.0000', NULL, '13.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5165, 6786, 1, '52.0000', NULL, '33.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5166, 6787, 1, '28.0000', NULL, '44.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5167, 6788, 1, '82.0000', NULL, '20.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5168, 6789, 1, '60.0000', NULL, '18.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5169, 6790, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5170, 6791, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5171, 6792, 1, '149.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5172, 6793, 1, '16.0000', NULL, '91.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5173, 6794, 1, '18.0000', NULL, '59.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5174, 6795, 1, '0.0000', NULL, '55.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5175, 6796, 1, '6.0000', NULL, '58.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5176, 6797, 1, '4.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5177, 6798, 1, '4.0000', NULL, '119.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5178, 6799, 1, '6.0000', NULL, '86.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5179, 6800, 1, '16.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5180, 6801, 1, '18.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5181, 6802, 1, '6.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5182, 6803, 1, '107.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5183, 6804, 1, '0.0000', NULL, '54.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5184, 6805, 1, '19.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5185, 6806, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5186, 6807, 1, '-1.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5187, 6808, 1, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5188, 6809, 1, '54.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5189, 6810, 1, '15.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5190, 6811, 1, '26.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5191, 6812, 1, '16.0000', NULL, '26.3790');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5192, 6813, 1, '109.0000', NULL, '12.6220');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5193, 6814, 1, '41.0000', NULL, '66.6139');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5194, 6815, 1, '0.0000', NULL, '9.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5195, 6816, 1, '51.0000', NULL, '375476536.5811');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5196, 6817, 1, '57.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5197, 6818, 1, '202.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5198, 6819, 1, '-5.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5199, 6820, 1, '417.0000', NULL, '5.2982');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5200, 6821, 1, '31.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5201, 6822, 1, '623.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5202, 6823, 1, '39.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5203, 6824, 1, '4.0000', NULL, '18.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5204, 6825, 1, '544.0000', NULL, '46.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5205, 6826, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5206, 6827, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5207, 6828, 1, '-13.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5208, 6829, 1, '1.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5209, 6830, 1, '40.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5210, 6831, 1, '650.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5211, 6832, 1, '272.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5212, 6833, 1, '157.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5213, 6834, 1, '60.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5214, 6835, 1, '-13.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5215, 6836, 1, '23.0000', NULL, '5.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5216, 6837, 1, '8.0000', NULL, '87.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5217, 6838, 1, '3.0000', NULL, '17.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5218, 6839, 1, '34.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5219, 6840, 1, '19.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5220, 6841, 1, '62.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5221, 6842, 1, '6.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5222, 6843, 1, '45.0000', NULL, '22.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5223, 6844, 1, '-18.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5224, 6845, 1, '87.0000', NULL, '18.2655');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5225, 6846, 1, '139.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5226, 6847, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5227, 6848, 1, '-2.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5228, 6849, 1, '7.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5229, 6850, 1, '-1.0000', NULL, '2.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5230, 6851, 1, '47.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5231, 6852, 1, '27.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5232, 6853, 1, '-5.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5233, 6854, 1, '67.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5234, 6855, 1, '22.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5235, 6856, 1, '25.0000', NULL, '14.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5236, 6857, 1, '20.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5237, 6858, 1, '80.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5238, 6859, 1, '498.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5239, 6860, 1, '-1.0000', NULL, '15.4923');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5242, 6863, 1, '-33.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5243, 6864, 1, '4735.0000', NULL, '14.4690');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5244, 6865, 1, '-4.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5245, 6866, 1, '91.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5246, 6867, 1, '2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5247, 6868, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5832, 6767, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5255, 6875, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5256, 6876, 1, '0.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5538, 6400, 3, '0.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5539, 6298, 3, '0.0000', NULL, '9.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5540, 6297, 3, '0.0000', NULL, '9.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5541, 6286, 3, '0.0000', NULL, '10.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5542, 6248, 3, '0.0000', NULL, '9.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5543, 5968, 3, '0.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5544, 5754, 3, '0.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5545, 6233, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5546, 6601, 3, '0.0000', NULL, '44.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5547, 6212, 3, '0.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5548, 6213, 3, '0.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5549, 6173, 3, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5550, 6391, 3, '0.0000', NULL, '3.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5551, 5997, 3, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5552, 6699, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5553, 5460, 3, '0.0000', NULL, '235.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5554, 5461, 3, '0.0000', NULL, '194.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5555, 6523, 3, '0.0000', NULL, '131.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5556, 6078, 3, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5557, 6209, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5558, 6205, 3, '0.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5559, 6211, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5560, 6210, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5561, 5497, 3, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5562, 5592, 3, '0.0000', NULL, '7.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5563, 6206, 3, '0.0000', NULL, '7.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5564, 6191, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5565, 6188, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5566, 6502, 3, '0.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5567, 6195, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5568, 6194, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5569, 6189, 3, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5570, 6180, 3, '0.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5571, 6184, 3, '0.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5572, 6176, 3, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5573, 6177, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5574, 6190, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5575, 5892, 3, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5576, 5893, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5577, 6175, 3, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5578, 6879, 3, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5579, 6556, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5580, 6452, 3, '0.0000', NULL, '115.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5581, 6528, 3, '0.0000', NULL, '5.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5582, 6530, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5583, 6681, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5584, 6682, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5585, 6342, 3, '0.0000', NULL, '69.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5586, 6338, 3, '0.0000', NULL, '46.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5587, 5610, 3, '0.0000', NULL, '53.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5588, 6337, 3, '0.0000', NULL, '49.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5589, 6344, 3, '0.0000', NULL, '257.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5590, 6559, 3, '0.0000', NULL, '77.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5591, 6339, 3, '0.0000', NULL, '70.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5592, 6526, 3, '0.0000', NULL, '154.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5593, 6814, 3, '0.0000', NULL, '72.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5594, 5946, 3, '0.0000', NULL, '79.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5595, 6341, 3, '0.0000', NULL, '71.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5596, 5830, 3, '0.0000', NULL, '126.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5597, 6520, 3, '0.0000', NULL, '87.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5598, 6785, 3, '0.0000', NULL, '13.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5599, 6786, 3, '0.0000', NULL, '33.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5600, 6011, 3, '0.0000', NULL, '14.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5601, 6787, 3, '0.0000', NULL, '44.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5602, 6907, 1, '181.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5603, 6907, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5604, 5726, 3, '0.0000', NULL, '17.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5605, 6467, 3, '0.0000', NULL, '44.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5606, 6478, 3, '0.0000', NULL, '8.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5607, 6908, 1, '74.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5608, 6908, 3, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5609, 6909, 1, '135.0000', NULL, '11.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5610, 6909, 3, '0.0000', NULL, '12.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5611, 5725, 3, '0.0000', NULL, '16.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5612, 6910, 1, '44.0000', NULL, '11.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5613, 6910, 3, '0.0000', NULL, '12.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5614, 5463, 3, '0.0000', NULL, '10.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5615, 5882, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5616, 6725, 3, '0.0000', NULL, '62.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5617, 6724, 3, '0.0000', NULL, '45.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5618, 6911, 1, '30.0000', NULL, '97.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5619, 6911, 3, '0.0000', NULL, '97.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5620, 6912, 1, '3.0000', NULL, '10.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5621, 6912, 3, '0.0000', NULL, '10.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5622, 6913, 1, '8.0000', NULL, '19.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5623, 6913, 3, '0.0000', NULL, '19.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5624, 6914, 1, '3.0000', NULL, '30.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5625, 6914, 3, '0.0000', NULL, '30.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5626, 6915, 1, '14.0000', NULL, '35.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5627, 6915, 3, '0.0000', NULL, '35.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5628, 5724, 3, '0.0000', NULL, '16.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5629, 6789, 3, '0.0000', NULL, '18.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5630, 6916, 1, '100.0000', NULL, '10.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5631, 6916, 3, '0.0000', NULL, '10.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5632, 6487, 3, '0.0000', NULL, '21.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5633, 6798, 3, '0.0000', NULL, '119.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5634, 6799, 3, '0.0000', NULL, '86.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5635, 6714, 3, '0.0000', NULL, '84.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5636, 6917, 1, '27.0000', NULL, '14.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5637, 6917, 3, '0.0000', NULL, '14.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5638, 6327, 3, '0.0000', NULL, '28.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5639, 6918, 1, '50.0000', NULL, '8.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5640, 6918, 3, '0.0000', NULL, '8.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5641, 6919, 1, '50.0000', NULL, '13.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5642, 6919, 3, '0.0000', NULL, '13.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5643, 5629, 3, '0.0000', NULL, '9.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5644, 5731, 3, '0.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5645, 6301, 3, '0.0000', NULL, '11.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5646, 6304, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5647, 6920, 1, '36.0000', NULL, '10.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5648, 6920, 3, '0.0000', NULL, '10.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5649, 5730, 3, '0.0000', NULL, '7.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5650, 6510, 3, '0.0000', NULL, '4.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5651, 6511, 3, '0.0000', NULL, '1.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5652, 6300, 3, '0.0000', NULL, '17.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5653, 6921, 1, '40.0000', NULL, '8.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5654, 6921, 3, '0.0000', NULL, '8.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5655, 5655, 3, '0.0000', NULL, '30.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5656, 6922, 1, '28.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5657, 6922, 3, '0.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5658, 6303, 3, '0.0000', NULL, '1.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5659, 5586, 3, '0.0000', NULL, '28.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5660, 5585, 3, '0.0000', NULL, '23.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5661, 6818, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5662, 6600, 3, '0.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5663, 6596, 3, '0.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5664, 6732, 3, '0.0000', NULL, '38.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5665, 6736, 3, '0.0000', NULL, '38.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5666, 6833, 3, '0.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5667, 6834, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5668, 6606, 3, '0.0000', NULL, '15.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5669, 6750, 3, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5670, 6738, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5671, 6628, 3, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5672, 6003, 3, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5673, 5975, 3, '0.0000', NULL, '9.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5674, 5972, 3, '0.0000', NULL, '12.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5675, 6002, 3, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5676, 6426, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5677, 5998, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5678, 6001, 3, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5679, 6852, 3, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5680, 6201, 3, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5681, 6204, 3, '0.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5682, 6006, 3, '0.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5683, 6627, 3, '0.0000', NULL, '79.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5684, 5993, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5685, 5559, 3, '0.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5686, 5992, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5687, 6515, 3, '0.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5688, 6516, 3, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5689, 6005, 3, '0.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5690, 6425, 3, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5691, 5988, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5692, 6020, 3, '0.0000', NULL, '13.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5693, 5808, 3, '0.0000', NULL, '13.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5694, 6202, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5695, 5984, 3, '0.0000', NULL, '19.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5696, 6517, 3, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5697, 6203, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5698, 6923, 1, '457.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5699, 6923, 3, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5700, 6924, 1, '493.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5701, 6924, 3, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5702, 6925, 1, '53.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5703, 6925, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5704, 6926, 1, '194.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5705, 6926, 3, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5706, 6927, 1, '124.0000', NULL, '8.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5707, 6927, 3, '0.0000', NULL, '8.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5708, 5790, 3, '0.0000', NULL, '149.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5709, 6225, 3, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5710, 5581, 3, '0.0000', NULL, '11.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5711, 5582, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5712, 6290, 3, '0.0000', NULL, '122.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5713, 5631, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5714, 5632, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5715, 6302, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5716, 5729, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5717, 6691, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5718, 6513, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5719, 6276, 3, '0.0000', NULL, '17.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5720, 6373, 3, '0.0000', NULL, '72.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5721, 6228, 3, '0.0000', NULL, '20.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5722, 6677, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5723, 6354, 3, '0.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5724, 6352, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5725, 5804, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5726, 5805, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5727, 6928, 1, '104.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5728, 6928, 3, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5729, 6929, 1, '100.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5730, 6929, 3, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5731, 6930, 1, '73.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5732, 6930, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5733, 6931, 1, '80.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5734, 6931, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5735, 6932, 1, '98.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5736, 6932, 3, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5737, 6933, 1, '330.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5738, 6933, 3, '0.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5739, 6934, 1, '278.0000', NULL, '3.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5740, 6934, 3, '0.0000', NULL, '3.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5741, 6217, 3, '0.0000', NULL, '3.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5742, 5657, 3, '0.0000', NULL, '5.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5743, 6381, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5744, 6218, 3, '0.0000', NULL, '16.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5745, 6007, 3, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5746, 6220, 3, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5747, 6221, 3, '0.0000', NULL, '15.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5748, 5584, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5749, 6935, 1, '0.0000', NULL, '25.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5750, 6935, 3, '0.0000', NULL, '25.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5751, 6936, 1, '79.0000', NULL, '17.8783');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5752, 6936, 3, '0.0000', NULL, '19.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5753, 6937, 1, '11.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5754, 6937, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5755, 6828, 3, '0.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5756, 5499, 3, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5757, 6938, 1, '16.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5758, 6938, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5759, 6382, 3, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5760, 6939, 1, '22.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5761, 6939, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5762, 5625, 3, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5763, 5714, 3, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5764, 5717, 3, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5765, 6227, 3, '0.0000', NULL, '2.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5766, 5716, 3, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5767, 6940, 1, '221.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5768, 6940, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5769, 5440, 3, '0.0000', NULL, '3.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5770, 6377, 3, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5771, 6376, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5772, 5451, 3, '0.0000', NULL, '5.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5773, 6147, 3, '0.0000', NULL, '35.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5774, 6159, 3, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5775, 6223, 3, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5776, 6685, 3, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5777, 6831, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5778, 5715, 3, '0.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5779, 6309, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5780, 6215, 3, '0.0000', NULL, '30.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5781, 6848, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5782, 6453, 3, '0.0000', NULL, '50.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5783, 6246, 3, '0.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5784, 5616, 3, '0.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5785, 6692, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5786, 6842, 3, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5787, 6283, 3, '0.0000', NULL, '5.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5788, 6532, 3, '0.0000', NULL, '8.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5789, 6285, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5790, 6408, 3, '0.0000', NULL, '5.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5791, 6409, 3, '0.0000', NULL, '5.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5792, 5617, 3, '0.0000', NULL, '39.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5793, 6375, 3, '0.0000', NULL, '3.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5794, 6888, 3, '0.0000', NULL, '38.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5795, 6129, 3, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5796, 6673, 3, '0.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5797, 6672, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5798, 6671, 3, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5799, 6542, 3, '0.0000', NULL, '8.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5800, 5455, 3, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5801, 5462, 3, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5802, 6726, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5803, 5471, 3, '0.0000', NULL, '5.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5804, 6261, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5805, 6235, 3, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5806, 6169, 3, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5807, 6774, 3, '0.0000', NULL, '35.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5808, 6775, 3, '0.0000', NULL, '49.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5809, 5569, 3, '0.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5810, 6243, 3, '0.0000', NULL, '61.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5811, 6293, 3, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5812, 5596, 3, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5813, 6365, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5814, 6537, 3, '0.0000', NULL, '93.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5815, 6247, 3, '0.0000', NULL, '80.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5816, 6539, 3, '0.0000', NULL, '10.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5817, 6770, 3, '0.0000', NULL, '168.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5818, 6540, 3, '0.0000', NULL, '45.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5819, 6639, 3, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5820, 5611, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5821, 6823, 3, '0.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5822, 6265, 3, '0.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5823, 6456, 3, '0.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5824, 5635, 3, '0.0000', NULL, '14.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5825, 6543, 3, '0.0000', NULL, '12.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5826, 5650, 3, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5827, 6640, 3, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5828, 6257, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5829, 6766, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5830, 6746, 3, '0.0000', NULL, '10.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5831, 5751, 3, '0.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5834, 5784, 3, '0.0000', NULL, '85.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5835, 6245, 3, '0.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5836, 6650, 3, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5837, 6417, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5838, 6264, 3, '0.0000', NULL, '6.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5839, 6378, 3, '0.0000', NULL, '26.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5840, 6862, 3, '0.0000', NULL, '3.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5841, 6416, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5842, 6649, 3, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5843, 5885, 3, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5844, 5886, 3, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5845, 6287, 3, '0.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5846, 6349, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5850, 6390, 3, '0.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5849, 6385, 3, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5851, 6840, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5852, 5536, 3, '0.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5853, 6711, 3, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5854, 6015, 3, '0.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5855, 6253, 3, '0.0000', NULL, '168.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5856, 5633, 3, '0.0000', NULL, '226.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5857, 6366, 3, '0.0000', NULL, '76.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5858, 6837, 3, '0.0000', NULL, '87.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5859, 6708, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5860, 6565, 3, '0.0000', NULL, '64.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5861, 6566, 3, '0.0000', NULL, '88.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5862, 6567, 3, '0.0000', NULL, '59.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5863, 5435, 3, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5864, 5772, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5865, 6626, 3, '0.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5866, 5829, 3, '0.0000', NULL, '37.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5867, 6580, 3, '0.0000', NULL, '328.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5868, 6592, 3, '0.0000', NULL, '3.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5869, 6491, 3, '0.0000', NULL, '9.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5870, 5742, 3, '0.0000', NULL, '311.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5871, 5557, 3, '0.0000', NULL, '175.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5872, 6145, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5873, 5576, 3, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5874, 6942, 1, '310.0000', NULL, '5.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5875, 6942, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5876, 6128, 3, '0.0000', NULL, '8.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5877, 5705, 3, '0.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5878, 6120, 3, '0.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5879, 6943, 1, '60.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5880, 6943, 3, '0.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5881, 5926, 3, '0.0000', NULL, '9.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5882, 5556, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5883, 6364, 3, '0.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5884, 6437, 3, '0.0000', NULL, '18.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5885, 6269, 3, '0.0000', NULL, '23.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5886, 5795, 3, '0.0000', NULL, '31.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5887, 6588, 3, '0.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5888, 6444, 3, '0.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5889, 5983, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5890, 5849, 3, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5891, 6589, 3, '0.0000', NULL, '121.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5892, 6587, 3, '0.0000', NULL, '32.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5893, 6446, 3, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5894, 5577, 3, '0.0000', NULL, '81.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5895, 6438, 3, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5896, 6688, 3, '0.0000', NULL, '80.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5897, 5759, 3, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5898, 6107, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5899, 6427, 3, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5900, 6090, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5901, 5526, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5902, 5527, 3, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5903, 6091, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5904, 6490, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5905, 6157, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5906, 6574, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5907, 5774, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5908, 6853, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5909, 5573, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5910, 6086, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5911, 6089, 3, '0.0000', NULL, '73.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5912, 6503, 3, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5913, 5788, 3, '0.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5914, 6122, 3, '0.0000', NULL, '47.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5915, 6362, 3, '0.0000', NULL, '24.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5916, 6347, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5917, 6351, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5918, 6593, 3, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5919, 5775, 3, '0.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5920, 5897, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5921, 6224, 3, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5922, 6514, 3, '0.0000', NULL, '8.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5923, 6752, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5924, 6058, 3, '0.0000', NULL, '20.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5925, 6758, 3, '0.0000', NULL, '54.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5926, 6653, 3, '0.0000', NULL, '27.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5927, 5525, 3, '0.0000', NULL, '41.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5928, 6321, 3, '0.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5929, 5570, 3, '0.0000', NULL, '148.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5930, 6313, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5931, 6314, 3, '0.0000', NULL, '33.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5932, 6317, 3, '0.0000', NULL, '19.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5933, 6534, 3, '0.0000', NULL, '142.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5934, 6815, 3, '0.0000', NULL, '9.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5935, 6384, 3, '0.0000', NULL, '9.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5936, 6679, 3, '0.0000', NULL, '9.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5937, 6680, 3, '0.0000', NULL, '8.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5938, 6035, 3, '0.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5939, 6023, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5940, 6579, 3, '0.0000', NULL, '35.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5941, 6506, 3, '0.0000', NULL, '3.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5942, 5601, 3, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5943, 6185, 3, '0.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5944, 6187, 3, '0.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5945, 5870, 3, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5946, 6573, 3, '0.0000', NULL, '21.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5947, 6604, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5948, 6181, 3, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5949, 6182, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5950, 6183, 3, '0.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5951, 6214, 3, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5952, 6192, 3, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5953, 6944, 1, '22.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5954, 6944, 3, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5955, 5624, 3, '0.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5956, 5826, 3, '0.0000', NULL, '5.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5957, 6867, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5958, 6683, 3, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5959, 6106, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5960, 6331, 3, '0.0000', NULL, '1.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5961, 6554, 3, '0.0000', NULL, '130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5962, 6100, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5963, 6495, 3, '0.0000', NULL, '53.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5964, 5901, 3, '0.0000', NULL, '134.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5965, 6847, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5966, 6849, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5967, 5949, 3, '0.0000', NULL, '6.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5968, 6945, 1, '110.0000', NULL, '43.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5969, 6945, 3, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5970, 5740, 3, '0.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5971, 6125, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5972, 6765, 3, '0.0000', NULL, '59.0000');


#
# TABLE STRUCTURE FOR: sma_warehouses_products_variants
#

DROP TABLE IF EXISTS `sma_warehouses_products_variants`;

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

#
# TABLE STRUCTURE FOR: sma_wishlist
#

DROP TABLE IF EXISTS `sma_wishlist`;

CREATE TABLE `sma_wishlist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

